diff --git a/.github/workflows/pytests-upstream.yml b/.github/workflows/pytests-upstream.yml index 7cde501c..1abcbdfd 100644 --- a/.github/workflows/pytests-upstream.yml +++ b/.github/workflows/pytests-upstream.yml @@ -70,7 +70,7 @@ jobs: defaults: run: shell: bash -l {0} - timeout-minutes: 45 +# timeout-minutes: 45 strategy: fail-fast: true matrix: @@ -196,7 +196,7 @@ jobs: defaults: run: shell: bash -l {0} - timeout-minutes: 45 +# timeout-minutes: 45 strategy: fail-fast: true matrix: diff --git a/.github/workflows/pytests.yml b/.github/workflows/pytests.yml index 23afc8f5..0e582d8e 100644 --- a/.github/workflows/pytests.yml +++ b/.github/workflows/pytests.yml @@ -47,7 +47,7 @@ jobs: run: shell: bash -l {0} continue-on-error: ${{ matrix.experimental }} - timeout-minutes: 45 +# timeout-minutes: 45 strategy: max-parallel: 12 fail-fast: false @@ -169,7 +169,7 @@ jobs: run: shell: bash -l {0} continue-on-error: ${{ matrix.experimental }} - timeout-minutes: 45 +# timeout-minutes: 45 strategy: max-parallel: 12 fail-fast: false diff --git a/argopy/__init__.py b/argopy/__init__.py index 824dbf70..1ed013c4 100644 --- a/argopy/__init__.py +++ b/argopy/__init__.py @@ -42,6 +42,7 @@ from .utils import MonitoredThreadPoolExecutor # noqa: E402, F401 from .utils import monitor_status as status # noqa: E402 from .related import TopoFetcher, OceanOPSDeployments, ArgoNVSReferenceTables, ArgoDocs, ArgoDOI # noqa: E402 +from .extensions import CanyonMED # @@ -77,6 +78,10 @@ "ArgoColors", # Class "stores", "tutorial", + + # Argo xarray accessor extensions + "CanyonMED", + # Constants "__version__" ) diff --git a/argopy/data_fetchers/argovis_data.py b/argopy/data_fetchers/argovis_data.py old mode 100644 new mode 100755 index ad820b2e..4786081f --- a/argopy/data_fetchers/argovis_data.py +++ b/argopy/data_fetchers/argovis_data.py @@ -82,6 +82,7 @@ def __init__( """ self.definition = "Argovis Argo data fetcher" self.dataset_id = OPTIONS["dataset"] if ds == "" else ds + self.user_mode = kwargs["mode"] if "mode" in kwargs else OPTIONS["mode"] self.server = kwargs["server"] if "server" in kwargs else api_server timeout = OPTIONS["api_timeout"] if api_timeout == 0 else api_timeout self.store_opts = { @@ -379,14 +380,20 @@ def to_xarray(self, errors: str = "ignore"): ds = ds[np.sort(ds.data_vars)] return ds + def transform_data_mode(self, ds: xr.Dataset, **kwargs): + # Argovis data are already curated ! + if ds.argo._type == "point": + ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) + return ds + def filter_data_mode(self, ds: xr.Dataset, **kwargs): - # Argovis data already curated ! + # Argovis data are already curated ! if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds def filter_qc(self, ds: xr.Dataset, **kwargs): - # Argovis data already curated ! + # Argovis data are already curated ! if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds @@ -396,7 +403,7 @@ def filter_researchmode(self, ds: xr.Dataset, *args, **kwargs) -> xr.Dataset: This filter will select only QC=1 delayed mode data with pressure errors smaller than 20db - Use this filter instead of filter_data_mode and filter_qc + Use this filter instead of transform_data_mode and filter_qc """ ds = ds.argo.filter_researchmode() if ds.argo._type == "point": @@ -521,7 +528,12 @@ def uri(self): ) boxes = self.Chunker.fit_transform() for box in boxes: - urls.append(Fetch_box(box=box, ds=self.dataset_id).get_url()) + opts = { + "ds": self.dataset_id, + "fs": self.fs, + "server": self.server, + } + urls.append(Fetch_box(box=box, **opts).get_url()) else: urls.append(self.get_url()) else: @@ -549,6 +561,16 @@ def uri(self): ) boxes = self.Chunker.fit_transform() for box in boxes: - urls.append(Fetch_box(box=box, ds=self.dataset_id).get_url()) + opts = { + "ds": self.dataset_id, + "fs": self.fs, + "server": self.server, + } + urls.append( + Fetch_box( + box=box, + **opts, + ).get_url() + ) return self.url_encode(urls) diff --git a/argopy/data_fetchers/erddap_data.py b/argopy/data_fetchers/erddap_data.py index 7f9e59d6..92e79fef 100644 --- a/argopy/data_fetchers/erddap_data.py +++ b/argopy/data_fetchers/erddap_data.py @@ -25,6 +25,7 @@ from ..options import OPTIONS from ..utils.format import format_oneline +from ..utils.lists import list_bgc_s_variables, list_core_parameters from ..stores import httpstore from ..errors import ErddapServerError, DataNotFound from ..stores import ( @@ -38,7 +39,7 @@ access_points = ["wmo", "box"] exit_formats = ["xarray"] -dataset_ids = ["phy", "ref", "bgc"] # First is default +dataset_ids = ["phy", "ref", "bgc", "bgc-s"] # First is default api_server = OPTIONS["erddap"] # API root url api_server_check = ( OPTIONS["erddap"] + "/info/ArgoFloats/index.json" @@ -48,7 +49,7 @@ class ErddapArgoDataFetcher(ArgoDataFetcherProto): """Manage access to Argo data through Ifremer ERDDAP - ERDDAP transaction are managed with the erddapy library + ERDDAP transaction are managed with the https://github.com/ioos/erddapy library This class is a prototype not meant to be instantiated directly @@ -98,7 +99,7 @@ def __init__( # noqa: C901 Parameters ---------- ds: str (optional) - Dataset to load: 'phy' or 'ref' or 'bgc' + Dataset to load: 'phy' or 'ref' or 'bgc-s' cache: bool (optional) Cache data or not (default: False) cachedir: str (optional) @@ -130,6 +131,7 @@ def __init__( # noqa: C901 timeout = OPTIONS["api_timeout"] if api_timeout == 0 else api_timeout self.definition = "Ifremer erddap Argo data fetcher" self.dataset_id = OPTIONS["dataset"] if ds == "" else ds + self.user_mode = kwargs["mode"] if "mode" in kwargs else OPTIONS["mode"] self.server = kwargs["server"] if "server" in kwargs else OPTIONS["erddap"] self.store_opts = { "cache": cache, @@ -156,8 +158,8 @@ def __init__( # noqa: C901 self.init(**kwargs) self._init_erddapy() - if self.dataset_id == "bgc": - # Create an ArgoIndex instance: + if self.dataset_id in ["bgc", "bgc-s"]: + # Create an internal ArgoIndex instance: # This will be used to: # - retrieve the list of BGC variables to ask the erddap server # - get _data_mode information because we can't get it from the server @@ -171,15 +173,11 @@ def __init__( # noqa: C901 timeout=timeout, ) ) + self.indexfs.fs['src'] = self.fs # Use only one httpstore instance # To handle bugs in the erddap server, we need the list of parameters on the server: # todo: Remove this when bug fixed - data = self.fs.open_json( - self.server + "/info/ArgoFloats-synthetic-BGC/index.json" - ) - self._bgc_vlist_erddap = [ - row[1] for row in data["table"]["rows"] if row[0] == "variable" - ] + self._bgc_vlist_erddap = [v.lower() for v in list_bgc_s_variables()] # Handle the 'params' argument: self._bgc_params = to_list(params) @@ -195,39 +193,52 @@ def __init__( # noqa: C901 elif not is_list_of_strings(params): raise ValueError("'params' argument must be a list of strings") # raise ValueError("'params' argument must be a list of strings (possibly with a * wildcard)") - self._bgc_vlist_requested = [p.upper() for p in params] - # self._bgc_vlist_requested = self._bgc_handle_wildcard(self._bgc_vlist_requested) + self._bgc_vlist_params = [p.upper() for p in params] + # self._bgc_vlist_params = self._bgc_handle_wildcard(self._bgc_vlist_params) + + for v in self._bgc_vlist_params: + if v not in self._bgc_vlist_avail: + raise ValueError("'%s' not available for this access point. The 'params' argument must have values in [%s]" % (v, ",".join(self._bgc_vlist_avail))) - for p in ["PRES", "TEMP", "PSAL"]: - if p not in self._bgc_vlist_requested: - self._bgc_vlist_requested.append(p) + for p in list_core_parameters(): + if p not in self._bgc_vlist_params: + self._bgc_vlist_params.append(p) + + if self.user_mode in ['standard', 'research'] and 'CDOM' in self._bgc_vlist_params: + self._bgc_vlist_params.remove('CDOM') + log.warning("CDOM was requested but was removed from the fetcher because executed in '%s' user mode" % self.user_mode) # Handle the 'measured' argument: self._bgc_measured = to_list(measured) if isinstance(measured, str): if measured == "all": - measured = self._bgc_vlist_requested + measured = self._bgc_vlist_params else: measured = to_list(measured) elif self._bgc_measured[0] is None: measured = [] elif self._bgc_measured[0] == "all": - measured = self._bgc_vlist_requested + measured = self._bgc_vlist_params elif not is_list_of_strings(self._bgc_measured): raise ValueError("'measured' argument must be a list of strings") # raise ValueError("'measured' argument must be a list of strings (possibly with a * wildcard)") self._bgc_vlist_measured = [m.upper() for m in measured] # self._bgc_vlist_measured = self._bgc_handle_wildcard(self._bgc_vlist_measured) + for v in self._bgc_vlist_measured: + if v not in self._bgc_vlist_avail: + raise ValueError("'%s' not available for this access point. The 'measured' argument must have values in [%s]" % (v, ", ".join(self._bgc_vlist_avail))) + + def __repr__(self): summary = [""] summary.append("Name: %s" % self.definition) summary.append("API: %s" % self.server) summary.append("Domain: %s" % format_oneline(self.cname())) - if self.dataset_id == "bgc": - summary.append("BGC variables: %s" % self._bgc_vlist_requested) + if self.dataset_id in ["bgc", "bgc-s"]: + summary.append("Parameters: %s" % self._bgc_vlist_params) summary.append( - "BGC 'must be measured' variables: %s" % self._bgc_vlist_measured + "BGC 'must be measured' parameters: %s" % self._bgc_vlist_measured ) return "\n".join(summary) @@ -372,8 +383,8 @@ def _add_attributes(self, this): # noqa: C901 else 0, } - if self.dataset_id == "bgc": - for param in self._bgc_vlist_requested: + if self.dataset_id in ["bgc", "bgc-s"]: + for param in self._bgc_vlist_params: if "%s_DATA_MODE" % param in this.data_vars: this["%s_DATA_MODE" % param].attrs = { "long_name": "Delayed mode or real time data", @@ -394,7 +405,7 @@ def _init_erddapy(self): if self.dataset_id == "phy": self.erddap.dataset_id = "ArgoFloats" - elif self.dataset_id == "bgc": + elif self.dataset_id in ["bgc", "bgc-s"]: self.erddap.dataset_id = "ArgoFloats-synthetic-BGC" elif self.dataset_id == "ref": self.erddap.dataset_id = "ArgoFloats-reference" @@ -404,13 +415,13 @@ def _init_erddapy(self): self.erddap.dataset_id = "invalid_db" else: raise ValueError( - "Invalid database short name for Ifremer erddap (use: 'phy', 'bgc' or 'ref')" + "Invalid database short name for Ifremer erddap (use: 'phy', 'bgc'/'bgc-s' or 'ref')" ) return self @property def _bgc_vlist_avail(self): - """Return the list of BGC parameters available for this access point + """Return the list of the erddap BGC dataset available for this access point Apply search criteria in the index, then retrieve the list of parameters """ @@ -463,7 +474,7 @@ def _bgc_vlist_avail(self): @property def _minimal_vlist(self): - """Return the minimal list of variables to retrieve measurements for""" + """Return the list of variables to retrieve measurements for""" vlist = list() if self.dataset_id == "phy": plist = [ @@ -481,14 +492,15 @@ def _minimal_vlist(self): ] [vlist.append(p) for p in plist] - plist = ["pres", "temp", "psal"] + # Core/Deep variables: + plist = [p.lower() for p in list_core_parameters()] [vlist.append(p) for p in plist] [vlist.append(p + "_qc") for p in plist] [vlist.append(p + "_adjusted") for p in plist] [vlist.append(p + "_adjusted_qc") for p in plist] [vlist.append(p + "_adjusted_error") for p in plist] - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: plist = [ # "parameter_data_mode", # never !!! "latitude", @@ -504,24 +516,39 @@ def _minimal_vlist(self): [vlist.append(p) for p in plist] # Search in the profile index the list of parameters to load: - params = self._bgc_vlist_requested + params = self._bgc_vlist_params # rq: include 'core' variables # log.debug("erddap-bgc parameters to load: %s" % params) for p in params: vname = p.lower() - vlist.append("%s" % vname) - vlist.append("%s_qc" % vname) - vlist.append("%s_adjusted" % vname) - vlist.append("%s_adjusted_qc" % vname) - vlist.append("%s_adjusted_error" % vname) + if self.user_mode in ['expert']: + vlist.append("%s" % vname) + vlist.append("%s_qc" % vname) + vlist.append("%s_adjusted" % vname) + vlist.append("%s_adjusted_qc" % vname) + vlist.append("%s_adjusted_error" % vname) + + elif self.user_mode in ['standard']: + vlist.append("%s" % vname) + vlist.append("%s_qc" % vname) + vlist.append("%s_adjusted" % vname) + vlist.append("%s_adjusted_qc" % vname) + vlist.append("%s_adjusted_error" % vname) + + elif self.user_mode in ['research']: + vlist.append("%s_adjusted" % vname) + vlist.append("%s_adjusted_qc" % vname) + vlist.append("%s_adjusted_error" % vname) + # vlist.append("profile_%s_qc" % vname) # not in the database - elif self.dataset_id == "ref": + if self.dataset_id == "ref": plist = ["latitude", "longitude", "time", "platform_number", "cycle_number"] [vlist.append(p) for p in plist] plist = ["pres", "temp", "psal", "ptmp"] [vlist.append(p) for p in plist] + vlist.sort() return vlist def cname(self): @@ -567,16 +594,27 @@ def get_url(self): self.define_constraints() # from Fetch_box or Fetch_wmo # Possibly add more constraints for the BGC dataset: - if self.dataset_id == "bgc": - params = self._bgc_vlist_measured - for p in params: - self.erddap.constraints.update({"%s!=" % p.lower(): "NaN"}) - - # Possibly add more constraints to make requests smaller: - for p in ["latitude", "longitude"]: - self.erddap.constraints.update({"%s!=" % p.lower(): "NaN"}) - # for p in ['platform_number']: - # self.erddap.constraints.update({"%s!=" % p.lower(): '"NaN"'}) + # 2024/07/19: In fact, this is not a good idea. After a while we found that it is slower to ask the + # erddap to filter parameters (and rather unstable) than to download unfiltered parameters and to + # apply the filter_measured + # if self.dataset_id in ["bgc", "bgc-s"]: + # params = self._bgc_vlist_measured + # # For 'expert' and 'standard' user modes, we cannot filter param and param_adjusted + # # because it depends on the unavailable param data mode. + # # The only erddap constraints possible is for 'research' user mode because we only request for + # # adjusted values. + # if self.user_mode == 'research': + # for p in params: + # self.erddap.constraints.update({"%s_adjusted!=" % p.lower(): "NaN"}) + + if self.dataset_id not in ['ref']: + if self.user_mode == 'research': + for p in ['pres', 'temp', 'psal']: + self.erddap.constraints.update({"%s_adjusted!=" % p.lower(): "NaN"}) + + # Possibly add more constraints to make requests even smaller: + for p in ["latitude", "longitude"]: + self.erddap.constraints.update({"%s!=" % p.lower(): "NaN"}) # Post-process all constraints: constraints = self.erddap.constraints @@ -585,6 +623,7 @@ def get_url(self): if k.startswith("time"): _constraints.update({k: parse_dates(v)}) _constraints = quote_string_constraints(_constraints) + # Remove double-quote around NaN for numerical values: for k, v in _constraints.items(): if v == '"NaN"': @@ -595,7 +634,10 @@ def get_url(self): # Last part: url += "&distinct()" - url += '&orderBy("time,pres")' + if self.user_mode in ['research'] and self.dataset_id not in ['ref']: + url += '&orderBy("time,pres_adjusted")' + else: + url += '&orderBy("time,pres")' return url @property @@ -633,7 +675,7 @@ def post_process( # Set coordinates: coords = ("LATITUDE", "LONGITUDE", "TIME", "N_POINTS") this_ds = this_ds.reset_coords() - this_ds["N_POINTS"] = this_ds["N_POINTS"] + this_ds["N_POINTS"] = np.arange(0, len(this_ds["N_POINTS"])) # Convert all coordinate variable names to upper case for v in this_ds.data_vars: @@ -646,13 +688,14 @@ def post_process( # Cast data types: # log.debug("erddap.post_process WMO=%s" % to_list(np.unique(this_ds['PLATFORM_NUMBER'].values))) this_ds = this_ds.argo.cast_types() + # log.debug("erddap.post_process WMO=%s" % to_list(np.unique(this_ds['PLATFORM_NUMBER'].values))) # if '999' in to_list(np.unique(this_ds['PLATFORM_NUMBER'].values)): # log.error(this_ds.attrs) # With BGC, some points may not have a PLATFORM_NUMBER ! # So, we remove these - if self.dataset_id == "bgc" and "999" in to_list( + if self.dataset_id in ["bgc", "bgc-s"] and "999" in to_list( np.unique(this_ds["PLATFORM_NUMBER"].values) ): log.error("Found points without WMO !") @@ -664,12 +707,12 @@ def post_process( ) # log.debug("erddap.post_process (add_dm=%s): %s" % (add_dm, str(this_ds))) - if self.dataset_id == "bgc" and add_dm: + if self.dataset_id in ["bgc", "bgc-s"] and add_dm: this_ds = self._add_parameters_data_mode_ds(this_ds) this_ds = this_ds.argo.cast_types(overwrite=False) # log.debug("erddap.post_process (add_dm=%s): %s" % (add_dm, str(this_ds))) - # Overwrite Erddap attributes with those from Argo standards: + # Overwrite Erddap variables attributes with those from Argo standards: this_ds = self._add_attributes(this_ds) # In the case of a parallel download, this is a trick to preserve the chunk uri in the chunk dataset: @@ -678,11 +721,23 @@ def post_process( Fetched_constraints = this_ds.attrs.get("Fetched_constraints", False) # Finally overwrite erddap attributes with those from argopy: + # raw_attrs = this_ds.attrs + # print(len(this_ds.attrs)) + if 'Processing_history' in this_ds.attrs: + this_ds.attrs = {'Processing_history': this_ds.attrs['Processing_history']} + else: + this_ds.attrs = {} + # this_ds.attrs.update({'raw_attrs': raw_attrs}) + # print(len(this_ds.attrs)) + raw_attrs = this_ds.attrs.copy() this_ds.attrs = {} if self.dataset_id == "phy": this_ds.attrs["DATA_ID"] = "ARGO" this_ds.attrs["DOI"] = "http://doi.org/10.17882/42182" + elif self.dataset_id in ["bgc", "bgc-s"]: + this_ds.attrs["DATA_ID"] = "ARGO-BGC" + this_ds.attrs["DOI"] = "http://doi.org/10.17882/42182" elif self.dataset_id == "ref": this_ds.attrs["DATA_ID"] = "ARGO_Reference" this_ds.attrs["DOI"] = "-" @@ -691,9 +746,6 @@ def post_process( this_ds.attrs["DATA_ID"] = "ARGO_Reference_CTD" this_ds.attrs["DOI"] = "-" this_ds.attrs["Fetched_version"] = raw_attrs.get('version', '?') - elif self.dataset_id == "bgc": - this_ds.attrs["DATA_ID"] = "ARGO-BGC" - this_ds.attrs["DOI"] = "http://doi.org/10.17882/42182" this_ds.attrs["Fetched_from"] = self.erddap.server try: @@ -709,11 +761,12 @@ def post_process( this_ds.attrs["Fetched_uri"] = URI if not Fetched_url else Fetched_url this_ds = this_ds[np.sort(this_ds.data_vars)] - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: n_zero = np.count_nonzero(np.isnan(np.unique(this_ds["PLATFORM_NUMBER"]))) if n_zero > 0: log.error("Some points (%i) have no PLATFORM_NUMBER !" % n_zero) + # print(len(this_ds.attrs)) return this_ds def to_xarray( # noqa: C901 @@ -728,7 +781,7 @@ def to_xarray( # noqa: C901 URI = self.uri # Call it once # Should we compute (from the index) and add DATA_MODE for BGC variables: - add_dm = self.dataset_id == "bgc" if add_dm is None else bool(add_dm) + add_dm = self.dataset_id in ["bgc", "bgc-s"] if add_dm is None else bool(add_dm) # Download data if not self.parallel: @@ -745,6 +798,11 @@ def to_xarray( # noqa: C901 "to chunk it into small requests." ) log.debug(str(e)) + elif "Payload Too Large" in e.message: + raise ErddapServerError("Your request is generating too much data on the server" + "You can try to use the 'parallel' option to chunk it " + "into smaller requests." + ) else: raise ErddapServerError(e.message) @@ -792,7 +850,7 @@ def to_xarray( # noqa: C901 results, **{"add_dm": add_dm, "URI": URI} ) except DataNotFound: - if self.dataset_id == "bgc" and len(self._bgc_vlist_measured) > 0: + if self.dataset_id in ["bgc", "bgc-s"] and len(self._bgc_vlist_measured) > 0: msg = ( "Your BGC request returned no data. This may be due to the 'measured' " "argument that imposes constraints impossible to fulfill for the " @@ -806,31 +864,45 @@ def to_xarray( # noqa: C901 except ClientResponseError as e: raise ErddapServerError(e.message) - if concat: - results = self.filter_points(results) - # Final checks - if self.dataset_id == "bgc" and concat and len(self._bgc_vlist_measured) > 0: - empty = [] - for v in self._bgc_vlist_measured: - if np.count_nonzero(results[v]) != len(results["N_POINTS"]): - empty.append(v) - if len(empty) > 0: - msg = ( - "After processing, your BGC request still return final data with NaNs (%s). " - "This may be due to the 'measured' argument ('%s') that imposes a no-NaN constraint " - "impossible to fulfill for the access point defined (%s)]. " - "\nUsing the 'measured' argument, you can try to minimize the list of variables to " - "return without NaNs, or set it to 'None' to return all samples." - % (",".join(to_list(v)), ",".join(self._bgc_measured), self.cname()) - ) - raise ValueError(msg) + if self.dataset_id in ["bgc", "bgc-s"] and concat and len(self._bgc_vlist_measured) > 0: + if not isinstance(results, list): + results = self.filter_measured(results) + else: + filtered = [] + [filtered.append(self.filter_measured(r)) for r in results] + results = filtered + + # empty = [] + # for v in self._bgc_vlist_measured: + # if v in results and np.count_nonzero(results[v]) != len(results["N_POINTS"]): + # empty.append(v) + # if len(empty) > 0: + # msg = ( + # "After processing, your BGC request returned final data with NaNs (%s). " + # "This may be due to the 'measured' argument ('%s') that imposes a no-NaN constraint " + # "impossible to fulfill for the access point defined (%s)]. " + # "\nUsing the 'measured' argument, you can try to minimize the list of variables to " + # "return without NaNs, or set it to 'None' to return all samples." + # % (",".join(to_list(v)), ",".join(self._bgc_measured), self.cname()) + # ) + # raise ValueError(msg) + + if concat and results is not None: + results["N_POINTS"] = np.arange(0, len(results["N_POINTS"])) return results + def transform_data_mode(self, ds: xr.Dataset, **kwargs): + """Apply xarray argo accessor transform_data_mode method""" + ds = ds.argo.transform_data_mode(**kwargs) + if ds.argo._type == "point": + ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) + return ds + def filter_data_mode(self, ds: xr.Dataset, **kwargs): """Apply xarray argo accessor filter_data_mode method""" - ds = ds.argo.filter_data_mode(errors="ignore", **kwargs) + ds = ds.argo.filter_data_mode(**kwargs) if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds @@ -847,34 +919,42 @@ def filter_researchmode(self, ds: xr.Dataset, *args, **kwargs) -> xr.Dataset: This filter will select only QC=1 delayed mode data with pressure errors smaller than 20db - Use this filter instead of filter_data_mode and filter_qc + Use this filter instead of transform_data_mode and filter_qc """ ds = ds.argo.filter_researchmode() if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds - def filter_points(self, ds): - """Enforce request criteria + def filter_measured(self, ds): + """Re-enforce the 'measured' criteria for BGC requests + + Parameters + ---------- + ds: :class:`xr.Dataset` - Sometimes, erddap data postprocessing may modify the content wrt user requirements. So we need - to adjust for this. """ # Enforce the 'measured' argument for BGC: - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: if len(self._bgc_vlist_measured) == 0: return ds - else: - this_mask = xr.DataArray( - np.zeros_like(ds["N_POINTS"]), - dims=["N_POINTS"], - coords={"N_POINTS": ds["N_POINTS"]}, - ) - log.debug("Keep samples without NaN in %s" % self._bgc_vlist_measured) + elif len(ds["N_POINTS"]) > 0: + log.debug("Keep only samples without NaN in %s" % self._bgc_vlist_measured) for v in self._bgc_vlist_measured: - this_mask += ds[v].notnull() - this_mask = this_mask == len(self._bgc_vlist_measured) - ds = ds.argo._where(this_mask, drop=True) + this_mask = None + if v in ds and "%s_ADJUSTED" % v in ds: + this_mask = np.logical_or.reduce(( + ds[v].notnull(), + ds["%s_ADJUSTED" % v].notnull() + )) + elif v in ds: + this_mask = ds[v].notnull() + elif "%s_ADJUSTED" % v in ds: + this_mask = ds["%s_ADJUSTED" % v].notnull() + else: + log.debug("'%s' or '%s_ADJUSTED' not in the dataset to apply the 'filter_measured' method" % (v, v)) + if this_mask is not None: + ds = ds.loc[dict(N_POINTS=this_mask)] ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds @@ -909,9 +989,9 @@ def complete_df(this_df, params): this_df["cyc"] = this_df["file"].apply( lambda x: int(x.split("_")[-1].split(".nc")[0].replace("D", "")) ) - this_df["variables"] = df["parameters"].apply(lambda x: x.split()) + this_df["variables"] = this_df["parameters"].apply(lambda x: x.split()) for param in params: - df["%s_data_mode" % param] = this_df.apply( + this_df["%s_data_mode" % param] = this_df.apply( lambda x: x["parameter_data_mode"][x["variables"].index(param)] if param in x["variables"] else "", @@ -924,7 +1004,7 @@ def read_DM(this_df, wmo, cyc, param): filt = [] filt.append(this_df["wmo"].isin([wmo])) filt.append(this_df["cyc"].isin([cyc])) - sub_df = df[np.logical_and.reduce(filt)] + sub_df = this_df[np.logical_and.reduce(filt)] if sub_df.shape[0] == 0: log.debug( "Found a profile in the dataset, but not in the index ! wmo=%i, cyc=%i" @@ -944,14 +1024,15 @@ def print_etime(txt, t0): # timer = time.process_time() profiles = list_WMO_CYC(this_ds) + self.indexfs.search_wmo(list_WMO(this_ds)) params = [ p - for p in self.indexfs.search_wmo(list_WMO(this_ds)).read_params() - if p in this_ds + for p in self.indexfs.read_params() + if p in this_ds or "%s_ADJUSTED" % p in this_ds ] # timer = print_etime('Read profiles and params from ds', timer) - df = self.indexfs.search_wmo(list_WMO(this_ds)).to_dataframe(completed=False) + df = self.indexfs.to_dataframe(completed=False) df = complete_df(df, params) # timer = print_etime('Index search wmo and export to dataframe', timer) @@ -977,6 +1058,7 @@ def print_etime(txt, t0): # t0 = now param_data_mode = read_DM(df, wmo, cyc, param) + # log.debug("data mode='%s' for %s/%i/%i" % (param_data_mode, param, wmo, cyc)) # now = time.process_time() # tims['read_DM'] += now - t0 # t0 = now @@ -992,7 +1074,8 @@ def print_etime(txt, t0): # tims['where'] += now - t0 # t0 = now - this_ds["%s_DATA_MODE" % param][i_points] = param_data_mode + # this_ds["%s_DATA_MODE" % param][i_points] = param_data_mode + this_ds["%s_DATA_MODE" % param].loc[dict(N_POINTS=i_points)] = param_data_mode # now = time.process_time() # tims['fill'] += now - t0 @@ -1029,7 +1112,7 @@ def init(self, WMO=[], CYC=None, **kw): self.definition = "?" if self.dataset_id == "phy": self.definition = "Ifremer erddap Argo data fetcher" - elif self.dataset_id == "bgc": + elif self.dataset_id in ["bgc", "bgc-s"]: self.definition = "Ifremer erddap Argo BGC data fetcher" elif self.dataset_id == "ref": self.definition = "Ifremer erddap Argo REFERENCE data fetcher" @@ -1063,12 +1146,12 @@ def uri(self): if not self.parallel: chunks = "auto" chunks_maxsize = {"wmo": 5} - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: chunks_maxsize = {"wmo": 1} else: chunks = self.chunks chunks_maxsize = self.chunks_maxsize - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: chunks_maxsize["wmo"] = 1 self.Chunker = Chunker( {"wmo": self.WMO}, chunks=chunks, chunksize=chunks_maxsize @@ -1077,12 +1160,13 @@ def uri(self): urls = [] opts = { "ds": self.dataset_id, + "mode": self.user_mode, "fs": self.fs, "server": self.server, "parallel": False, "CYC": self.CYC, } - if self.dataset_id == "bgc": + if self.dataset_id in ["bgc", "bgc-s"]: opts["params"] = self._bgc_params opts["measured"] = self._bgc_measured opts["indexfs"] = self.indexfs @@ -1118,7 +1202,7 @@ def init(self, box: list, **kw): if self.dataset_id == "phy": self.definition = "Ifremer erddap Argo data fetcher for a space/time region" - elif self.dataset_id == "bgc": + elif self.dataset_id in ["bgc", "bgc-s"]: self.definition = ( "Ifremer erddap Argo BGC data fetcher for a space/time region" ) @@ -1135,8 +1219,12 @@ def define_constraints(self): self.erddap.constraints.update({"longitude<=": self.BOX[1]}) self.erddap.constraints.update({"latitude>=": self.BOX[2]}) self.erddap.constraints.update({"latitude<=": self.BOX[3]}) - self.erddap.constraints.update({"pres>=": self.BOX[4]}) - self.erddap.constraints.update({"pres<=": self.BOX[5]}) + if self.user_mode in ['research'] and self.dataset_id not in ['ref']: + self.erddap.constraints.update({"pres_adjusted>=": self.BOX[4]}) + self.erddap.constraints.update({"pres_adjusted<=": self.BOX[5]}) + else: + self.erddap.constraints.update({"pres>=": self.BOX[4]}) + self.erddap.constraints.update({"pres<=": self.BOX[5]}) if len(self.BOX) == 8: self.erddap.constraints.update({"time>=": self.BOX[6]}) self.erddap.constraints.update({"time<=": self.BOX[7]}) @@ -1158,8 +1246,11 @@ def uri(self): ) boxes = self.Chunker.fit_transform() urls = [] - opts = {"ds": self.dataset_id, "fs": self.fs, "server": self.server} - if self.dataset_id == "bgc": + opts = {"ds": self.dataset_id, + "mode": self.user_mode, + "fs": self.fs, + "server": self.server} + if self.dataset_id in ["bgc", "bgc-s"]: opts["params"] = self._bgc_params opts["measured"] = self._bgc_measured opts["indexfs"] = self.indexfs diff --git a/argopy/data_fetchers/gdacftp_data.py b/argopy/data_fetchers/gdacftp_data.py index 10442340..264bf078 100644 --- a/argopy/data_fetchers/gdacftp_data.py +++ b/argopy/data_fetchers/gdacftp_data.py @@ -21,7 +21,7 @@ log = logging.getLogger("argopy.gdacftp.data") access_points = ["wmo", "box"] exit_formats = ["xarray"] -dataset_ids = ["phy", "bgc"] # First is default +dataset_ids = ["phy", "bgc", "bgc-s", "bgc-b"] # First is default api_server = OPTIONS["ftp"] # API root url api_server_check = ( api_server # URL to check if the API is alive, used by isAPIconnected @@ -49,18 +49,18 @@ def init(self, *args, **kwargs): # Methods that must not change ### def __init__( - self, - ftp: str = "", - ds: str = "", - cache: bool = False, - cachedir: str = "", - dimension: str = "point", - errors: str = "raise", - parallel: bool = False, - parallel_method: str = "thread", - progress: bool = False, - api_timeout: int = 0, - **kwargs + self, + ftp: str = "", + ds: str = "", + cache: bool = False, + cachedir: str = "", + dimension: str = "point", + errors: str = "raise", + parallel: bool = False, + parallel_method: str = "thread", + progress: bool = False, + api_timeout: int = 0, + **kwargs ): """ Init fetcher @@ -92,16 +92,16 @@ def __init__( """ self.timeout = OPTIONS["api_timeout"] if api_timeout == 0 else api_timeout self.dataset_id = OPTIONS["dataset"] if ds == "" else ds + self.user_mode = kwargs["mode"] if "mode" in kwargs else OPTIONS["mode"] self.server = OPTIONS["ftp"] if ftp == "" else ftp self.errors = errors # Validate server, raise FtpPathError if not valid. check_gdac_path(self.server, errors="raise") - if self.dataset_id == "phy": - index_file = "ar_index_global_prof.txt" - elif self.dataset_id == "bgc": - index_file = "argo_synthetic-profile_index.txt" + index_file = "core" + if self.dataset_id in ["bgc-s", "bgc-b"]: + index_file = self.dataset_id # Validation of self.server is done by the ArgoIndex: self.indexfs = ArgoIndex( @@ -111,7 +111,7 @@ def __init__( cachedir=cachedir, timeout=self.timeout, ) - self.fs = self.indexfs.fs["src"] + self.fs = self.indexfs.fs["src"] # Re-use the appropriate file system nrows = None if "N_RECORDS" in kwargs: @@ -140,7 +140,7 @@ def __repr__(self): summary = [""] summary.append("Name: %s" % self.definition) summary.append("Index: %s" % self.indexfs.index_file) - summary.append("FTP: %s" % self.server) + summary.append("Host: %s" % self.server) if hasattr(self, "BOX"): summary.append("Domain: %s" % self.cname()) else: @@ -177,7 +177,7 @@ def uri(self): def uri_mono2multi(self, URIs: list): """ Convert mono-profile URI files to multi-profile files - Multi-profile file name is based on the dataset requested ('phy' or 'bgc') + Multi-profile file name is based on the dataset requested ('phy', 'bgc'/'bgc-s') This method does not ensure that multi-profile files exist ! @@ -193,6 +193,7 @@ def uri_mono2multi(self, URIs: list): def mono2multi(mono_path): meta = argo_split_path(mono_path) + if self.dataset_id == "phy": return self.indexfs.fs["src"].fs.sep.join( [ @@ -203,7 +204,8 @@ def mono2multi(mono_path): "%s_prof.nc" % meta["wmo"], ] ) - elif self.dataset_id == "bgc": + + elif self.dataset_id in ["bgc", "bgc-s"]: return self.indexfs.fs["src"].fs.sep.join( [ meta["origin"], @@ -214,6 +216,9 @@ def mono2multi(mono_path): ] ) + else: + raise ValueError("Dataset '%s' not supported !" % self.dataset_id) + new_uri = [mono2multi(uri) for uri in URIs] new_uri = list(set(new_uri)) return new_uri @@ -247,7 +252,12 @@ def _preprocess_multiprof(self, ds): :class:`xarray.Dataset` """ - # Replace JULD and JULD_QC by TIME and TIME_QC + # Remove raw netcdf file attributes and replace them with argopy ones: + raw_attrs = ds.attrs + ds.attrs = {} + ds.attrs.update({'raw_attrs': raw_attrs}) + + # Rename JULD and JULD_QC to TIME and TIME_QC ds = ds.rename( {"JULD": "TIME", "JULD_QC": "TIME_QC", "JULD_LOCATION": "TIME_LOCATION"} ) @@ -255,10 +265,11 @@ def _preprocess_multiprof(self, ds): "long_name": "Datetime (UTC) of the station", "standard_name": "time", } + # Cast data types: ds = ds.argo.cast_types() - # Enforce real pressure resolution: 0.1 db + # Enforce real pressure resolution : 0.1 db for vname in ds.data_vars: if "PRES" in vname and "QC" not in vname: ds[vname].values = np.round(ds[vname].values, 1) @@ -271,10 +282,8 @@ def _preprocess_multiprof(self, ds): ds = ( ds.argo.profile2point() - ) # Default output is a collection of points along N_POINTS + ) # Default output is a collection of points, along N_POINTS - # Remove netcdf file attributes and replace them with argopy ones: - ds.attrs = {} if self.dataset_id == "phy": ds.attrs["DATA_ID"] = "ARGO" if self.dataset_id == "bgc": @@ -343,18 +352,22 @@ def to_xarray(self, errors: str = "ignore"): ds = ds.sortby("TIME") # Remove netcdf file attributes and replace them with simplified argopy ones: - ds.attrs = {} - if self.dataset_id == "phy": - ds.attrs["DATA_ID"] = "ARGO" - if self.dataset_id == "bgc": - ds.attrs["DATA_ID"] = "ARGO-BGC" - ds.attrs["DOI"] = "http://doi.org/10.17882/42182" - ds.attrs["Fetched_from"] = self.server - try: - ds.attrs["Fetched_by"] = getpass.getuser() - except: # noqa: E722 - ds.attrs["Fetched_by"] = 'anonymous' - ds.attrs["Fetched_date"] = pd.to_datetime("now", utc=True).strftime("%Y/%m/%d") + if "Fetched_from" not in ds.attrs: + raw_attrs = ds.attrs + ds.attrs = {} + ds.attrs.update({'raw_attrs': raw_attrs}) + if self.dataset_id == "phy": + ds.attrs["DATA_ID"] = "ARGO" + if self.dataset_id == "bgc": + ds.attrs["DATA_ID"] = "ARGO-BGC" + ds.attrs["DOI"] = "http://doi.org/10.17882/42182" + ds.attrs["Fetched_from"] = self.server + try: + ds.attrs["Fetched_by"] = getpass.getuser() + except: + ds.attrs["Fetched_by"] = 'anonymous' + ds.attrs["Fetched_date"] = pd.to_datetime("now", utc=True).strftime("%Y/%m/%d") + ds.attrs["Fetched_constraints"] = self.cname() if len(self.uri) == 1: ds.attrs["Fetched_uri"] = self.uri[0] @@ -377,7 +390,7 @@ def filter_points(self, ds): .where(ds["LONGITUDE"] < self.BOX[1], drop=True) .where(ds["LATITUDE"] >= self.BOX[2], drop=True) .where(ds["LATITUDE"] < self.BOX[3], drop=True) - .where(ds["PRES"] >= self.BOX[4], drop=True) + .where(ds["PRES"] >= self.BOX[4], drop=True) # todo what about PRES_ADJUSTED ? .where(ds["PRES"] < self.BOX[5], drop=True) ) if len(self.BOX) == 8: @@ -400,8 +413,16 @@ def filter_points(self, ds): return ds + def transform_data_mode(self, ds: xr.Dataset, **kwargs): + """Apply xarray argo accessor transform_data_mode method""" + ds = ds.argo.transform_data_mode(**kwargs) + if ds.argo._type == "point": + ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) + return ds + def filter_data_mode(self, ds: xr.Dataset, **kwargs): - ds = ds.argo.filter_data_mode(errors="ignore", **kwargs) + """Apply xarray argo accessor filter_data_mode method""" + ds = ds.argo.filter_data_mode(**kwargs) if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds @@ -417,9 +438,9 @@ def filter_researchmode(self, ds: xr.Dataset, *args, **kwargs) -> xr.Dataset: This filter will select only QC=1 delayed mode data with pressure errors smaller than 20db - Use this filter instead of filter_data_mode and filter_qc + Use this filter instead of transform_data_mode and filter_qc """ - ds = ds.argo.filter_researchmode() + ds = ds.argo.filter_researchmode(**kwargs) if ds.argo._type == "point": ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) return ds diff --git a/argopy/data_fetchers/proto.py b/argopy/data_fetchers/proto.py index a47b3ec8..8e73c703 100644 --- a/argopy/data_fetchers/proto.py +++ b/argopy/data_fetchers/proto.py @@ -4,16 +4,24 @@ import xarray import hashlib import warnings +import logging from ..plot import dashboard -from ..utils.lists import list_standard_variables +from ..utils.lists import list_standard_variables, list_bgc_s_variables from ..utils.format import UriCName +log = logging.getLogger("argopy.fetcher.proto") + + class ArgoDataFetcherProto(ABC): @abstractmethod def to_xarray(self, *args, **kwargs) -> xarray.Dataset: raise NotImplementedError("Not implemented") + @abstractmethod + def transform_data_mode(self, ds: xarray.Dataset, *args, **kwargs) -> xarray.Dataset: + raise NotImplementedError("Not implemented") + @abstractmethod def filter_data_mode(self, ds: xarray.Dataset, *args, **kwargs) -> xarray.Dataset: raise NotImplementedError("Not implemented") @@ -26,22 +34,50 @@ def filter_qc(self, ds: xarray.Dataset, *args, **kwargs) -> xarray.Dataset: def filter_researchmode(self, ds: xarray.Dataset, *args, **kwargs) -> xarray.Dataset: raise NotImplementedError("Not implemented") - def filter_variables(self, ds: xarray.Dataset, mode: str, *args, **kwargs) -> xarray.Dataset: - """Filter variables according to user mode""" - if mode == "standard": - to_remove = sorted( - list(set(list(ds.data_vars)) - set(list_standard_variables())) - ) - return ds.drop_vars(to_remove) - elif mode == "research": - to_remove = sorted( - list(set(list(ds.data_vars)) - set(list_standard_variables())) - ) - to_remove.append('DATA_MODE') - [to_remove.append(v) for v in ds.data_vars if "QC" in v] - return ds.drop_vars(to_remove) + def filter_variables(self, ds: xarray.Dataset, *args, **kwargs) -> xarray.Dataset: + """Filter variables according to dataset and user mode""" + if self.dataset_id in ['phy']: + + if self.user_mode == "standard": + to_remove = sorted( + list(set(list(ds.data_vars)) - set(list_standard_variables())) + ) + return ds.drop_vars(to_remove) + + elif self.user_mode == "research": + to_remove = sorted( + list(set(list(ds.data_vars)) - set(list_standard_variables())) + ) + to_remove.append('DATA_MODE') + [to_remove.append(v) for v in ds.data_vars if "QC" in v] + return ds.drop_vars(to_remove) + + else: + return ds + + elif self.dataset_id in ['bgc', 'bgc-s']: + + if self.user_mode == "standard": + to_remove = sorted( + list(set(list(ds.data_vars)) - set(list_standard_variables(ds=self.dataset_id))) + ) + [to_remove.append(v) for v in ds.data_vars if 'CDOM' in v] + return ds.drop_vars(to_remove) + + elif self.user_mode == "research": + to_remove = sorted( + list(set(list(ds.data_vars)) - set(list_standard_variables(ds=self.dataset_id))) + ) + [to_remove.append(v) for v in ds.data_vars if 'CDOM' in v] + [to_remove.append(v) for v in ds.data_vars if "DATA_MODE" in v] + [to_remove.append(v) for v in ds.data_vars if "QC" in v] + return ds.drop_vars(to_remove) + + else: + return ds + else: - return ds + raise ValueError("No filter_variables support for ds='%s'" % self.dataset_id) def clear_cache(self): """ Remove cache files and entries from resources opened with this fetcher """ @@ -68,14 +104,14 @@ def _cname(self) -> str: @property def sha(self) -> str: """ Returns a unique SHA for a specific cname / fetcher implementation""" - path = "%s-%s" % (self.definition, self.cname()) - if self.dataset_id == 'bgc': + path = "%s-%s-%s" % (self.definition, self.cname(), self.user_mode) + if self.dataset_id in ['bgc', 'bgc-s']: path = "%s-%s-%s" % (path, self._bgc_params, self._bgc_measured) return hashlib.sha256(path.encode()).hexdigest() def dashboard(self, **kw): """Return 3rd party dashboard for the access point""" - if 'type' not in kw and self.dataset_id == 'bgc': + if 'type' not in kw and self.dataset_id in ['bgc', 'bgc-s']: kw['type'] = 'bgc' if self.WMO is not None: if len(self.WMO) == 1 and self.CYC is not None and len(self.CYC) == 1: diff --git a/argopy/errors.py b/argopy/errors.py index 1e81af68..98d51bc7 100644 --- a/argopy/errors.py +++ b/argopy/errors.py @@ -5,10 +5,8 @@ log = logging.getLogger("argopy.errors") - -class DataNotFound(ValueError): - """Raise when a data selection returns nothing.""" - +class NoData(ValueError): + """Raise for no data""" def __init__(self, path: str = "?"): self.value = "%s" % path self.path = path @@ -18,6 +16,16 @@ def __str__(self): return repr(self.value) +class DataNotFound(NoData): + """Raise when a data fetching returns nothing""" + pass + + +class NoDataLeft(NoData): + """Raise when a data post-processing returns an empty dataset or dataframe""" + pass + + class FtpPathError(ValueError): """Raise when a ftp path is not appropriate.""" diff --git a/argopy/extensions/__init__.py b/argopy/extensions/__init__.py new file mode 100644 index 00000000..a1431718 --- /dev/null +++ b/argopy/extensions/__init__.py @@ -0,0 +1,7 @@ +from .utils import register_argo_accessor, ArgoAccessorExtension +from .canyon_med import CanyonMED + +# +__all__ = ( + "CanyonMED", +) diff --git a/argopy/extensions/canyon_med.py b/argopy/extensions/canyon_med.py new file mode 100644 index 00000000..c263d81c --- /dev/null +++ b/argopy/extensions/canyon_med.py @@ -0,0 +1,357 @@ +from pathlib import Path +import numpy as np +import pandas as pd +import xarray as xr +from typing import Union, List + +from ..utils import path2assets, to_list +from . import register_argo_accessor, ArgoAccessorExtension + + +@register_argo_accessor('canyon_med') +class CanyonMED(ArgoAccessorExtension): + """ + Implementation of the CANYON-MED method. + + CANYON-MED is a Regional Neural Network Approach to Estimate Water-Column Nutrient Concentrations + and Carbonate System Variables in the Mediterranean Sea ([1]_, [2]_). + + When using this method, please cite the papers. + + Examples + -------- + Load data, they must contain oxygen measurements: + + >>> from argopy import DataFetcher + >>> ArgoSet = DataFetcher(ds='bgc', mode='standard', params='DOXY', measured='DOXY').float(1902605) + >>> ds = ArgoSet.to_xarray() + + Once input data are loaded, make all or selected parameters predictions: + + >>> ds.argo.canyon_med.predict() + >>> ds.argo.canyon_med.predict('PO4') + >>> ds.argo.canyon_med.predict(['PO4', 'NO3']) + + + Notes + ----- + This Python implementation is largely inspired by work from Marine Fourrier (https://github.com/MarineFou) + and Florian Ricour (https://github.com/fricour) from LOV. + + First Python implementation was published here: https://github.com/euroargodev/CANYON-MED + + References + ---------- + .. [1] Fourrier, M., Coppola, L., Claustre, H., D’Ortenzio, F., Sauzède, R., and Gattuso, J.-P. (2020). A Regional Neural Network Approach to Estimate Water-Column Nutrient Concentrations and Carbonate System Variables in the Mediterranean Sea: CANYON-MED. Frontiers in Marine Science 7. doi:10.3389/fmars.2020.00620. + + .. [2] Fourrier, M., Coppola, L., Claustre, H., D’Ortenzio, F., Sauzède, R., and Gattuso, J.-P. (2021). Corrigendum: A Regional Neural Network Approach to Estimate Water-Column Nutrient Concentrations and Carbonate System Variables in the Mediterranean Sea: CANYON-MED. Frontiers in Marine Science 8. doi:10.3389/fmars.2021.650509. + """ + + # todo This class work with pandas dataframe, but we should keep xarray dataset internaly for the predictions + + ne = 7 + """Number of inputs""" + + output_list = ['PO4', 'NO3', 'DIC', 'SiOH4', 'AT', 'pHT'] + """List of parameters that can be predicted with this Neural Network""" + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + self.n_list = 5 + self.path2coef = Path(path2assets).joinpath('canyon-med') + self._input = None # Private CANYON-MED input dataframe + + def get_param_attrs(self, param: str) -> dict: + """Provides attributes to be added to a given predicted parameter""" + attrs = {} + if param in ['PO4', 'NO3', 'CT', 'SiOH4', 'PAT']: + attrs.update({'units': 'micromole/kg'}) + if param == 'pHT': + attrs.update({'units': 'Total scale at insitu PTS'}) + + if param == 'PO4': + attrs.update({'long_name': 'Phosphate concentration'}) + + if param == 'NO3': + attrs.update({'long_name': 'Nitrate concentration'}) + + if param == 'DIC': + attrs.update({'long_name': 'Total dissolved inorganic carbon'}) + + if param == 'SiOH4': + attrs.update({'long_name': 'Silicate concentration'}) + + if param == 'AT': + attrs.update({'long_name': 'Total alkalinity'}) + + if param == 'pHT': + attrs.update({'long_name': 'Total pH'}) + + attrs.update({'comment': 'Synthetic variable predicted using CANYON-MED'}) + attrs.update({'reference': 'http://dx.doi/10.3389/fmars.2020.00620'}) + + return attrs + + def param2suff(self, param): + """File suffix to use for a given parameter to predict""" + if param == 'PO4': + suff = 'phos' + elif param == 'NO3': + suff = 'nit' + elif param == 'DIC': + suff = 'CT' + elif param == 'SiOH4': + suff = 'sil' + elif param == 'AT': + suff = 'AT' + elif param == 'pHT': + suff = 'ph' + return suff + + def mask_medsea(self, df): + """Mask points not in the Mediterranean Sea""" + + def isin_medsea(row): + isin = False + if row['lat'] > 34 and row['lat'] < 44 and row['lon'] > -6 and row['lon'] < 10: + isin = True + if row['lat'] > 30 and row['lat'] < 46 and row['lon'] >= 10 and row['lon'] < 23: + isin = True + if row['lat'] > 30 and row['lat'] < 41 and row['lon'] >= 23 and row['lon'] < 36: + isin = True + return isin + + df[~df.apply(isin_medsea, axis=1)] = np.NaN + return df + + def load_normalisation_factors(self, param, subset='F'): + suff = self.param2suff(param) + + moy_sub = pd.read_table(self.path2coef.joinpath("moy_%s_%s.txt" % (suff, subset)), + sep=" {3}", + header=None, + engine='python').values + std_sub = pd.read_table(self.path2coef.joinpath("std_%s_%s.txt" % (suff, subset)), + sep=" {3}", + header=None, + engine='python').values + return moy_sub, std_sub + + def load_weights(self, param, subset, i): + suff = self.param2suff(param) + + b1 = pd.read_csv(self.path2coef.joinpath("poids_%s_b1_%s_%i.txt" % (suff, subset, i)), header=None) + b2 = pd.read_csv(self.path2coef.joinpath("poids_%s_b2_%s_%i.txt" % (suff, subset, i)), header=None) + b3 = pd.read_csv(self.path2coef.joinpath("poids_%s_b3_%s_%i.txt" % (suff, subset, i)), header=None) + IW = pd.read_csv(self.path2coef.joinpath("poids_%s_IW_%s_%i.txt" % (suff, subset, i)), sep="\s+", header=None) + LW1 = pd.read_csv(self.path2coef.joinpath("poids_%s_LW1_%s_%i.txt" % (suff, subset, i)), sep="\s+", header=None) + LW2 = pd.read_csv(self.path2coef.joinpath("poids_%s_LW2_%s_%i.txt" % (suff, subset, i)), sep="\s+", header=None) + + # Using float128 arrays avoid the error or warning "overflow encountered in exp" raised by the + # activation function + b1 = np.array(b1, dtype=np.float128) + b2 = np.array(b2, dtype=np.float128) + b3 = np.array(b3, dtype=np.float128) + + return b1, b2, b3, IW, LW1, LW2 + + @property + def decimal_year(self): + """Return the decimal year of the :class:`xr.Dataset` `TIME` variable""" + return self._obj['TIME'].dt.year + (86400 * self._obj['TIME'].dt.dayofyear + + 3600 * self._obj['TIME'].dt.hour + + self._obj['TIME'].dt.second) / (365.0 * 24 * 60 * 60) + + def ds2df(self) -> pd.DataFrame: + """Create a CANYON-MED input :class:`pd.DataFrame` from :class:`xr.Dataset`""" + + if self._obj.argo.N_POINTS > 1: + df = pd.DataFrame({'lat': self._obj['LATITUDE'], + 'lon': self._obj['LONGITUDE'], + 'dec_year': self.decimal_year, + 'temp': self._obj['TEMP'], + 'psal': self._obj['PSAL'], + 'doxy': self._obj['DOXY'], + 'pres': self._obj['PRES'], + }) + else: # Handle single point dataset: + df = pd.DataFrame.from_dict({'lat': self._obj['LATITUDE'].values, + 'lon': self._obj['LONGITUDE'], + 'dec_year': self.decimal_year, + 'temp': self._obj['TEMP'], + 'psal': self._obj['PSAL'], + 'doxy': self._obj['DOXY'], + 'pres': self._obj['PRES'], + }, orient='index').T + + # Modify pressure + # > The pressure input is transformed according to the combination of a linear + # and a logistic curve to limit the degrees of freedom of the ANN in deep + # waters and to account for the large range of pressure values (from the + # surface to 4000 m depth) and a non-homogeneous distribution of data + # within this range + # See Eq. 3 in 10.3389/fmars.2020.00620 + df['pres'] = df['pres'].apply(lambda x: (x / 2e4) + (1 / ((1 + np.exp(-x / 300)) ** 3))) + + # Mask points not in the Mediterranean Sea: + df = self.mask_medsea(df) + + return df + + @property + def input(self) -> pd.DataFrame: + """CANYON-MED input :class:`pd.DataFrame` + + This :class:`pd.DataFrame` is stored internally to avoid to re-compute it for each prediction + + Returns + ------- + :class:`pd.DataFrame` + """ + if self._input is None: + self._input = self.ds2df() + + return self._input + # return self.ds2df() + + def _predict(self, param: str): + """Private predictor to be used for a single parameter""" + + # Define the activation function between the neurons, + # See Eq. 1 in 10.3389/fmars.2020.00620 + def custom_MF(x: np.ndarray): + tmp = 1.7159 * ((np.exp((4 / 3) * x) - 1) / (np.exp((4 / 3) * x) + 1)) + return (tmp) + + # Read/create NN input as a dataframe: + df = self.input + + # Load normalisation factors + moy_F, std_F = self.load_normalisation_factors(param, 'F') + + # Normalisation + # See Eq. 2 in 10.3389/fmars.2020.00620 + # (The factor 2/3 brings at least 80% of the data in the range [−1;1]) + data_N = df.iloc[:, :self.ne].copy() + for i in range(self.ne): + data_N.iloc[:, i] = (2 / 3) * ((df.iloc[:, i] - moy_F[:, i]) / std_F[:, i]) + data_N = np.array(data_N) + + # rx = data_N.shape[0] # Not used + param_outputs_s = [] + + for i in range(1, self.n_list + 1): + b1, b2, b3, IW, LW1, LW2 = self.load_weights(param, 'F', i) + + # Calculate a + a = custom_MF(np.dot(data_N, IW.T).T + b1) + + # Calculate b + b = custom_MF(np.dot(LW1, a) + b2) + + # Calculate y + y = np.dot(LW2, b) + b3 + y = y.T + + # Calculate phos_outputs + param_outputs = 1.5 * y * std_F[0][self.ne] + moy_F[0][self.ne] + param_outputs_s.append(param_outputs) + + # reshape array + param_outputs_s1 = np.array(param_outputs_s).T + + # Load normalisation factors + moy_G, std_G = self.load_normalisation_factors(param, 'G') + + # Normalisation + data_N = df.iloc[:, :self.ne].copy() + for i in range(self.ne): + data_N.iloc[:, i] = (2 / 3) * ((df.iloc[:, i] - moy_G[:, i]) / std_G[:, i]) + data_N = np.array(data_N) + + param_outputs_s = [] + for i in range(1, self.n_list + 1): + b1, b2, b3, IW, LW1, LW2 = self.load_weights(param, 'G', i) + + # Calculate a + a = custom_MF(np.dot(data_N, IW.T).T + b1) + + # Calculate b + b = custom_MF(np.dot(LW1, a) + b2) + + # Calculate y + y = np.dot(LW2, b) + b3 + y = y.T + + # Calculate phos_outputs + param_outputs = 1.5 * y * std_G[0][self.ne] + moy_G[0][self.ne] + param_outputs_s.append(param_outputs) + + # flatten array because it's nice #2 + param_outputs_s2 = np.array(param_outputs_s).T + + # concat F and G data + param_outputs_s = np.hstack((np.squeeze(param_outputs_s1, axis=0), np.squeeze(param_outputs_s2, axis=0))) + + # neural network + mean_nn = np.mean(param_outputs_s, axis=1) + std_nn = np.std(param_outputs_s, axis=1, ddof=1) + + # + lim_inf = mean_nn - std_nn + lim_sup = mean_nn + std_nn + + param_t = param_outputs_s.copy() + + for i in range(param_outputs_s.shape[0]): + param_t[i, :] = np.where(param_t[i, :] < lim_inf[i], np.nan, param_t[i, :]) + param_t[i, :] = np.where(param_t[i, :] > lim_sup[i], np.nan, param_t[i, :]) + + param_mean = np.nanmean(param_t, axis=1) + param_std = np.nanstd(param_t, axis=1) + + # + # return mean_nn, std_nn + return param_mean, param_std + + def predict(self, params: Union[str, List[str]] = None) -> xr.Dataset: + """Make predictions using the CANYON-MED neural network + + Parameters + ---------- + params: str, List[str], optional, default=None + List of parameters to predict. If None is specified, all possible parameters will be predicted. + + Returns + ------- + :class:`xr.Dataset` + """ + # Validation of requested parameters to predict: + if params is None: + params = self.output_list + else: + params = to_list(params) + for p in params: + if p not in self.output_list: + raise ValueError( + "Invalid parameter ('%s') to predict, must be in [%s]" % (p, ",".join(self.output_list))) + + # Make predictions of each of the requested parameters: + for param in params: + mean_nn, std_nn = self._predict(param) + + self._obj[param] = xr.zeros_like(self._obj['TEMP']) + self._obj[param].attrs = self.get_param_attrs(param) + self._obj[param].values = mean_nn.astype(np.float32).squeeze() + + self._obj['%s_ERROR' % param] = xr.zeros_like(self._obj[param]) + self._obj['%s_ERROR' % param].attrs = self.get_param_attrs(param) + self._obj['%s_ERROR' % param].attrs['long_name'] = "Error on %s" % self.get_param_attrs(param)['long_name'] + self._obj['%s_ERROR' % param].values = std_nn.astype(np.float32).squeeze() + + # Return xr.Dataset with predicted variables: + if self._argo: + self._argo.add_history("Added CANYON-MED predictions") + + return self._obj diff --git a/argopy/extensions/utils.py b/argopy/extensions/utils.py new file mode 100644 index 00000000..87a8d3be --- /dev/null +++ b/argopy/extensions/utils.py @@ -0,0 +1,146 @@ +""" + +Disclosure +---------- +The following methods `AccessorRegistrationWarning`, `_CachedAccessor` and `_register_accessor` are +sourced from https://github.com/pydata/xarray/blob/main/xarray/core/extensions.py + +The class `register_argo_accessor` is an adaption of the `register_dataset_accessor` from xarray. + +""" + +import warnings +from ..xarray import xr, ArgoAccessor + + +class AccessorRegistrationWarning(Warning): + """Warning for conflicts in accessor registration. + + Disclosure + ---------- + This class was copied from [xarray](https://github.com/pydata/xarray/blob/main/xarray/core/extensions.py) + under Apache License 2.0 + """ + + +class _CachedAccessor: + """Custom property-like object (descriptor) for caching accessors. + + Disclosure + ---------- + This class was copied from [xarray](https://github.com/pydata/xarray/blob/main/xarray/core/extensions.py) + under Apache License 2.0 + """ + + def __init__(self, name, accessor): + self._name = name + self._accessor = accessor + + def __get__(self, obj, cls): + if obj is None: + # we're accessing the attribute of the class, i.e., Dataset.argo.canyon + return self._accessor + + # Use the same dict as @pandas.util.cache_readonly. + # It must be explicitly declared in obj.__slots__. + try: + cache = obj._cache + except AttributeError: + cache = obj._cache = {} + + try: + return cache[self._name] + except KeyError: + pass + + try: + accessor_obj = self._accessor(obj) + except AttributeError: + # __getattr__ on data object will swallow any AttributeErrors + # raised when initializing the accessor, so we need to raise as + # something else (GH933): + raise RuntimeError(f"error initializing {self._name!r} accessor.") + + cache[self._name] = accessor_obj + return accessor_obj + + +def _register_accessor(name, cls): + def decorator(accessor): + if hasattr(cls, name): + warnings.warn( + f"registration of accessor {accessor!r} under name {name!r} for type {cls!r} is " + "overriding a preexisting attribute with the same name.", + AccessorRegistrationWarning, + stacklevel=2, + ) + setattr(cls, name, _CachedAccessor(name, accessor)) + return accessor + + return decorator + + +def register_argo_accessor(name): + """A decorator to register an accessor as a custom property on :class:`xarray.Dataset.argo` objects. + + Parameters + ---------- + name : str + Name under which the accessor should be registered. A warning is issued + if this name conflicts with a preexisting attribute. + + Examples + -------- + Somewhere in your code, you can register a class inheriting from :class:`argopy.extensions.ArgoAccessorExtension` + with this decorator:: + + @register_argo_accessor('floats') + class WorkWithWMO(ArgoAccessorExtension): + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self._uid = argopy.utils.to_list(np.unique(self._obj["PLATFORM_NUMBER"].values)) + + @property + def wmo(self): + return self._uid + + @property + def N(self): + return len(self.wmo) + + It will be available to an Argo dataset, like this:: + + ds.argo.floats.N + ds.argo.floats.wmo + + See also + -------- + :class:`argopy.extensions.ArgoAccessorExtension` + + """ + return _register_accessor(name, ArgoAccessor) + + +class ArgoAccessorExtension: + """Prototype for Argo accessor extensions + + All extensions should inherit from this class + + This prototype makes available: + + - the parent :class:`xarray.Dataset` instance as ``self._obj`` + - the :class:`Dataset.argo` instance as ``self._argo`` + + See also + -------- + :class:`argopy.extensions.register_argo_accessor` + """ + + def __init__(self, obj): + if isinstance(obj, xr.Dataset): + self._obj = obj # Xarray object + self._argo = None + else: + self._obj = obj._obj # Xarray object from ArgoAccessor + self._argo = obj diff --git a/argopy/fetchers.py b/argopy/fetchers.py index dd748545..1dced1c2 100755 --- a/argopy/fetchers.py +++ b/argopy/fetchers.py @@ -29,8 +29,11 @@ from .utils.lists import ( list_available_data_src, list_available_index_src, + list_core_parameters, + list_radiometry_parameters, + list_bgc_s_parameters, ) -from .plot import plot_trajectory, bar_plot, open_sat_altim_report +from .plot import plot_trajectory, bar_plot, open_sat_altim_report, scatter_plot AVAILABLE_DATA_SOURCES = list_available_data_src() @@ -102,6 +105,9 @@ def __init__(self, mode: str = "", src: str = "", ds: str = "", **fetcher_kwargs self._dataset_id = OPTIONS["dataset"] if ds == "" else ds self._src = OPTIONS["src"] if src == "" else src + if self._dataset_id == "bgc": + self._dataset_id = "bgc-s" + if not _VALIDATORS["mode"](self._mode): raise OptionValueError( f"option 'mode' given an invalid value: {self._mode}" @@ -137,8 +143,9 @@ def __init__(self, mode: str = "", src: str = "", ds: str = "", **fetcher_kwargs % (self._dataset_id, self._src) ) self.fetcher_kwargs = {**fetcher_kwargs} - self.fetcher_options = {**{"ds": self._dataset_id}, **fetcher_kwargs} - self.postproccessor = self.__empty_processor + self.fetcher_options = {**{"ds": self._dataset_id, "mode": self._mode}, **fetcher_kwargs} + + self.define_postprocessor() self._AccessPoint = None # Init data structure holders: @@ -156,13 +163,6 @@ def __init__(self, mode: str = "", src: str = "", ds: str = "", **fetcher_kwargs # Dev warnings # Todo Clean-up before each release - if self._dataset_id == "bgc" and ( - self._mode == "standard" or self._mode == "research" - ): - warnings.warn( - "The 'bgc' dataset fetching is only available in 'expert' user modes at this point." - ) - if self._src == "argovis" and ( self._mode == "expert" or self._mode == "research" ): @@ -199,17 +199,14 @@ def __repr__(self): summary.append("Dataset: %s" % self._dataset_id) return "\n".join(summary) - def __empty_processor(self, xds): - """Do nothing to a dataset""" - return xds - def __getattr__(self, key): """Validate access points""" valid_attrs = [ "Fetchers", "fetcher", "fetcher_options", - "postproccessor", + "define_postprocessor", + "postprocess", "data", "index", "domain", @@ -329,6 +326,124 @@ def dashboard(self, **kw): % (self._src, self._AccessPoint) ) + def postprocess(self, *args, **kwargs): + return self._pp_workflow(*args, **kwargs) + + def define_postprocessor(self): + """Define the post-processing workflow according to the dataset and user-mode""" + if self.fetcher: + + if self._dataset_id == 'phy' and self._mode == "standard": + def workflow(xds): + xds = self.fetcher.transform_data_mode(xds) + xds = self.fetcher.filter_qc(xds, QC_list=[1, 2]) + xds = self.fetcher.filter_variables(xds) + return xds + + elif self._dataset_id == 'phy' and self._mode == "research": + def workflow(xds): + xds = self.fetcher.filter_researchmode(xds) + xds = self.fetcher.filter_variables(xds) + return xds + + elif self._dataset_id in ['bgc', 'bgc-s'] and self._mode == "standard": + # https://github.com/euroargodev/argopy/issues/280 + def workflow(xds): + # Merge parameters according to data mode values: + xds = self.fetcher.transform_data_mode(xds) + + # Process core variables: + xds = self.fetcher.filter_qc(xds, + QC_list=[1, 2], + QC_fields=['POSITION_QC', 'TIME_QC']) + + xds = self.fetcher.filter_data_mode(xds, + params=list_core_parameters(), + dm=['R', 'A', 'D'], + logical='and' + ) + xds = self.fetcher.filter_qc(xds, + QC_list=[1, 2], + QC_fields=["%s_QC" % p for p in list_core_parameters()]) + + # Process radiometry variables: + params1 = [v for v in xds if v in list_radiometry_parameters()] + if len(params1) > 0: + xds = self.fetcher.filter_data_mode(xds, + params=params1, + dm=['R', 'A', 'D'], + logical='and' + ) + # Process BBP700 variables: + params2 = [v for v in xds if 'BBP700' in v and v in list_bgc_s_parameters()] + if len(params2) > 0: + xds = self.fetcher.filter_data_mode(xds, + params=params2, + dm=['R', 'A', 'D'], + logical='and' + ) + # Process all other BGC variables: + all_other_bgc_variables = list(set(list_bgc_s_parameters()) - set(list_core_parameters() + params1 + params2 )) + all_other_bgc_variables = [p for p in all_other_bgc_variables if p in xds] + xds = self.fetcher.filter_data_mode(xds, + params=all_other_bgc_variables, + dm=['A', 'D'], + logical='or' + ) + + # Apply QC filter on BGC parameters: + xds = self.fetcher.filter_qc(xds, + QC_list=[1, 2, 5, 8], + QC_fields=["%s_QC" % p for p in all_other_bgc_variables], + mode='all', + ) + + # And adjust list of variables: + xds = self.fetcher.filter_variables(xds) + + return xds + + elif self._dataset_id in ['bgc', 'bgc-s'] and self._mode == "research": + # https://github.com/euroargodev/argopy/issues/280 + def workflow(xds): + + # Apply research mode transform/filter on core/deep params: + xds = self.fetcher.filter_researchmode(xds) + + # Apply data mode transform and filter on BGC parameters: + all_bgc_parameters = list(set(list_bgc_s_parameters()) - set(list_core_parameters())) + all_bgc_parameters = [p for p in all_bgc_parameters if p in xds or "%s_ADJUSTED" % p in xds] + if len(all_bgc_parameters) > 0: + xds = self.fetcher.transform_data_mode(xds, + params=all_bgc_parameters) + xds = self.fetcher.filter_data_mode(xds, + params=all_bgc_parameters, + dm=['D'], + logical='or' + ) + + # Apply QC filter on BGC parameters: + xds = self.fetcher.filter_qc(xds, + QC_list=[1, 5, 8], + QC_fields=["%s_QC" % p for p in all_bgc_parameters], + mode='all', + ) + + # And adjust list of variables: + xds = self.fetcher.filter_variables(xds) + + return xds + + else: + workflow = lambda x: x # Empty processor + + else: + workflow = lambda x: x # Empty processor + + self._pp_workflow = workflow + + return self + @checkAccessPoint def float(self, wmo, **kw): """Float data fetcher @@ -357,24 +472,7 @@ def float(self, wmo, **kw): "wmo": wmo } # Register the requested access point data - if self._mode == "standard" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_data_mode(xds) - xds = self.fetcher.filter_qc(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing - - elif self._mode == "research" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_researchmode(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing + self.define_postprocessor() return self @@ -406,24 +504,7 @@ def profile(self, wmo, cyc): "cyc": cyc, } # Register the requested access point data - if self._mode == "standard" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_data_mode(xds) - xds = self.fetcher.filter_qc(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing - - elif self._mode == "research" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_researchmode(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing + self.define_postprocessor() return self @@ -457,29 +538,12 @@ def region(self, box: list): "box": box } # Register the requested access point data - if self._mode == "standard" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_data_mode(xds) - xds = self.fetcher.filter_qc(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing - - elif self._mode == "research" and self._dataset_id != "ref": - - def postprocessing(xds): - xds = self.fetcher.filter_researchmode(xds) - xds = self.fetcher.filter_variables(xds, self._mode) - return xds - - self.postproccessor = postprocessing + self.define_postprocessor() return self - def to_xarray(self, **kwargs): - """Fetch and return data as xarray.DataSet + def to_xarray(self, **kwargs) -> xr.Dataset: + """Fetch and return data as :class:`xarray.DataSet` Trigger a fetch of data by the specified source and access point. @@ -494,12 +558,14 @@ def to_xarray(self, **kwargs): % ",".join(self.Fetchers.keys()) ) xds = self.fetcher.to_xarray(**kwargs) - xds = self.postproccessor(xds) + xds = self.postprocess(xds) + if xds is not None: + xds = xds.load() return xds - def to_dataframe(self, **kwargs): - """Fetch and return data as pandas.Dataframe + def to_dataframe(self, **kwargs) -> pd.DataFrame: + """Fetch and return data as :class:`pandas.DataFrame` Trigger a fetch of data by the specified source and access point. @@ -515,8 +581,8 @@ def to_dataframe(self, **kwargs): ) return self.load().data.to_dataframe(**kwargs) - def to_index(self, full: bool = False, coriolis_id: bool = False): - """Create a profile index of Argo data, fetch data if necessary + def to_index(self, full: bool = False, coriolis_id: bool = False) -> pd.DataFrame: + """Return a profile index of Argo data, fetch data if necessary Build an Argo-like index of profiles from fetched data. @@ -556,9 +622,7 @@ def fc(row): # With the gdac and erddap+bgc, # we rely on the fetcher ArgoIndex: # (hence we always return a full index) - if (self._src == "erddap" and self._dataset_id == "bgc") or ( - self._src == "gdac" - ): + if (self._src == 'erddap' and 'bgc' in self._dataset_id) or (self._src == 'gdac'): prt("to_index working with fetcher ArgoIndex instance") idx = self.fetcher.indexfs if self._AccessPoint == "region": @@ -625,6 +689,17 @@ def fc(row): prt("to_index replaced the light index with the full version") self._index = df + if 'wmo' in df and 'cyc' in df and self._loaded and self._data is not None: + # Ensure that all profiles reported in the index are indeed in the dataset + # This is not necessarily the case when the index is based on an ArgoIndex instance that may come to differ from postprocessed dataset + irow_remove = [] + for irow, row in df.iterrows(): + i_found = np.logical_and.reduce((self._data['PLATFORM_NUMBER'] == row['wmo'], + self._data['CYCLE_NUMBER'] == row['cyc'])) + if i_found.sum() == 0: + irow_remove.append(irow) # Remove this profile from the index + df = df.drop(irow_remove, axis=0) + return df def load(self, force: bool = False, **kwargs): @@ -702,16 +777,23 @@ def plot(self, ptype: str = "trajectory", **kwargs): if "institution" not in self.index: self.to_index(full=True) return bar_plot(self.index, by="institution", **kwargs) + elif ptype == "profiler": if "profiler" not in self.index: self.to_index(full=True) return bar_plot(self.index, by="profiler", **kwargs) + elif ptype == "trajectory": defaults = {"style": "white"} return plot_trajectory(self.index, **{**defaults, **kwargs}) + elif ptype == "qc_altimetry": WMOs = np.unique(self.data["PLATFORM_NUMBER"]) return open_sat_altim_report(WMOs, **kwargs) + + elif ptype in self.data.data_vars: + return scatter_plot(self.data, ptype, **kwargs) + else: raise ValueError( "Type of plot unavailable. Use: 'trajectory', 'dac', 'profiler', 'qc_altimetry'" @@ -794,7 +876,6 @@ def __init__( ) # self.fetcher_kwargs = {**fetcher_kwargs} self.fetcher_options = {**{"ds": self._dataset_id}, **fetcher_kwargs} - self.postproccessor = self.__empty_processor self._AccessPoint = None # Init data structure holders: @@ -829,7 +910,6 @@ def __getattr__(self, key): "Fetchers", "fetcher", "fetcher_options", - "postproccessor", "index", "_loaded", ] diff --git a/argopy/options.py b/argopy/options.py index 1d016b63..76b61d2c 100644 --- a/argopy/options.py +++ b/argopy/options.py @@ -57,7 +57,7 @@ # Define the list of possible values _DATA_SOURCE_LIST = frozenset(["erddap", "argovis", "gdac"]) -_DATASET_LIST = frozenset(["phy", "bgc", "ref"]) +_DATASET_LIST = frozenset(["phy", "bgc", "ref", "bgc-s", "bgc-b"]) _USER_LEVEL_LIST = frozenset(["standard", "expert", "research"]) diff --git a/argopy/related/__init__.py b/argopy/related/__init__.py index 68f16bd7..465bc5de 100644 --- a/argopy/related/__init__.py +++ b/argopy/related/__init__.py @@ -4,7 +4,7 @@ from .argo_documentation import ArgoDocs from .doi_snapshot import ArgoDOI from .euroargo_api import get_coriolis_profile_id, get_ea_profile_page -from .utils import load_dict, mapp_dict +from .utils import load_dict, mapp_dict # Should come last # __all__ = ( diff --git a/argopy/related/euroargo_api.py b/argopy/related/euroargo_api.py index 0d495ae6..fe982fb6 100644 --- a/argopy/related/euroargo_api.py +++ b/argopy/related/euroargo_api.py @@ -4,10 +4,12 @@ from ..stores import httpstore -def get_coriolis_profile_id(WMO, CYC=None, **kwargs): - """ Return a :class:`pandas.DataFrame` with CORIOLIS ID of WMO/CYC profile pairs +def get_coriolis_profile_id(WMO, CYC=None, **kwargs) -> pd.DataFrame: + """Get Coriolis ID of WMO/CYC - This method get ID by requesting the dataselection.euro-argo.eu trajectory API. + Return a :class:`pandas.DataFrame` with CORIOLIS ID for WMO/CYC profile pairs + + This method get ID using the https://dataselection.euro-argo.eu trajectory API. Parameters ---------- diff --git a/argopy/related/ocean_ops_deployments.py b/argopy/related/ocean_ops_deployments.py index 3350ebd6..0635d544 100644 --- a/argopy/related/ocean_ops_deployments.py +++ b/argopy/related/ocean_ops_deployments.py @@ -6,7 +6,9 @@ class OceanOPSDeployments: - """Use the OceanOPS API for metadata access to retrieve Argo floats deployment information. + """Argo floats deployment plans + + Use the OceanOPS API for metadata access to retrieve Argo floats deployment information. The API is documented here: https://www.ocean-ops.org/api/swagger/?url=https://www.ocean-ops.org/api/1/oceanops-api.yaml diff --git a/argopy/static/assets/canyon-med/moy_AT_F.txt b/argopy/static/assets/canyon-med/moy_AT_F.txt new file mode 100644 index 00000000..d296fe7c --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_AT_F.txt @@ -0,0 +1 @@ + 3.7155592e+01 1.4702813e+01 2.0079813e+03 1.4953142e+01 3.8493063e+01 2.0618330e+02 4.9952825e-01 2.5827899e+03 diff --git a/argopy/static/assets/canyon-med/moy_AT_G.txt b/argopy/static/assets/canyon-med/moy_AT_G.txt new file mode 100644 index 00000000..a8d46ea6 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_AT_G.txt @@ -0,0 +1 @@ + 3.7168104e+01 1.5081077e+01 2.0079630e+03 1.5016377e+01 3.8504982e+01 2.0676711e+02 4.9610302e-01 2.5833909e+03 diff --git a/argopy/static/assets/canyon-med/moy_CT_F.txt b/argopy/static/assets/canyon-med/moy_CT_F.txt new file mode 100644 index 00000000..6edd6c0a --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_CT_F.txt @@ -0,0 +1 @@ + 3.7700888e+01 1.4803513e+01 2.0116205e+03 1.4851872e+01 3.8569574e+01 2.0428221e+02 5.3162316e-01 2.2987070e+03 diff --git a/argopy/static/assets/canyon-med/moy_CT_G.txt b/argopy/static/assets/canyon-med/moy_CT_G.txt new file mode 100644 index 00000000..bf7e91a1 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_CT_G.txt @@ -0,0 +1 @@ + 3.7628135e+01 1.4727951e+01 2.0116032e+03 1.4855017e+01 3.8559547e+01 2.0430849e+02 5.3110843e-01 2.2983816e+03 diff --git a/argopy/static/assets/canyon-med/moy_nit_F.txt b/argopy/static/assets/canyon-med/moy_nit_F.txt new file mode 100644 index 00000000..1bd6251f --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_nit_F.txt @@ -0,0 +1 @@ + 3.9231186e+01 9.8016044e+00 2.0119773e+03 1.4423943e+01 3.8428757e+01 2.0460841e+02 5.0073213e-01 4.7678030e+00 diff --git a/argopy/static/assets/canyon-med/moy_nit_G.txt b/argopy/static/assets/canyon-med/moy_nit_G.txt new file mode 100644 index 00000000..91f1e4c4 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_nit_G.txt @@ -0,0 +1 @@ + 3.9196064e+01 9.7813112e+00 2.0116655e+03 1.4444069e+01 3.8418306e+01 2.0499243e+02 4.9372140e-01 4.7372713e+00 diff --git a/argopy/static/assets/canyon-med/moy_ph_F.txt b/argopy/static/assets/canyon-med/moy_ph_F.txt new file mode 100644 index 00000000..c3e208e1 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_ph_F.txt @@ -0,0 +1 @@ + 3.7637242e+01 1.3012489e+01 2.0106837e+03 1.4779375e+01 3.8465762e+01 2.0609981e+02 5.0117781e-01 8.0781617e+00 diff --git a/argopy/static/assets/canyon-med/moy_ph_G.txt b/argopy/static/assets/canyon-med/moy_ph_G.txt new file mode 100644 index 00000000..5967d788 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_ph_G.txt @@ -0,0 +1 @@ + 3.7526317e+01 1.3095955e+01 2.0103510e+03 1.4791982e+01 3.8460248e+01 2.0598329e+02 4.9969387e-01 8.0791820e+00 diff --git a/argopy/static/assets/canyon-med/moy_phos_F.txt b/argopy/static/assets/canyon-med/moy_phos_F.txt new file mode 100644 index 00000000..c6a6b432 --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_phos_F.txt @@ -0,0 +1 @@ + 3.9428701e+01 9.9900786e+00 2.0099541e+03 1.4414859e+01 3.8420847e+01 2.0506489e+02 4.9633396e-01 2.0926530e-01 diff --git a/argopy/static/assets/canyon-med/moy_phos_G.txt b/argopy/static/assets/canyon-med/moy_phos_G.txt new file mode 100644 index 00000000..80c41d7b --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_phos_G.txt @@ -0,0 +1 @@ + 3.9443210e+01 1.0028126e+01 2.0099833e+03 1.4450311e+01 3.8422079e+01 2.0529594e+02 4.9226545e-01 2.0711432e-01 diff --git a/argopy/static/assets/canyon-med/moy_sil_F.txt b/argopy/static/assets/canyon-med/moy_sil_F.txt new file mode 100644 index 00000000..3fa954fc --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_sil_F.txt @@ -0,0 +1 @@ + 3.8492567e+01 1.2368031e+01 2.0097791e+03 1.4767999e+01 3.8477832e+01 2.0638638e+02 4.9409277e-01 4.5779422e+00 diff --git a/argopy/static/assets/canyon-med/moy_sil_G.txt b/argopy/static/assets/canyon-med/moy_sil_G.txt new file mode 100644 index 00000000..90b652fd --- /dev/null +++ b/argopy/static/assets/canyon-med/moy_sil_G.txt @@ -0,0 +1 @@ + 3.8512345e+01 1.2153086e+01 2.0097149e+03 1.4726356e+01 3.8465553e+01 2.0638221e+02 4.9520941e-01 4.5902785e+00 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_IW_F_1.txt new file mode 100644 index 00000000..ac988194 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_F_1.txt @@ -0,0 +1,36 @@ + 6.6351046e-01 -7.4785382e-01 3.5461126e-01 7.8705031e-02 2.5118051e-01 -3.1532918e-01 5.3097248e-03 + -5.8019909e-01 1.4031211e-01 5.2188659e-01 2.1213546e-01 3.4045789e-01 2.9781372e-01 -2.5118278e-01 + 1.6917097e-01 -1.9679277e-02 -1.6527160e-01 6.6273487e-02 2.1446480e-01 2.8360513e-01 2.6457743e-01 + -6.2035483e-02 1.0657350e-02 -7.7061852e-02 1.1399443e-01 1.4325752e-01 -4.8035648e-03 4.0940170e-02 + 4.5150817e-02 3.5958165e-02 -4.1902227e-02 1.1016607e-01 7.4925220e-02 -1.1431225e-02 2.2738292e-02 + 1.5010902e-01 -4.8117885e-02 -3.3558957e-02 7.9869136e-02 -1.6673924e-01 6.7182909e-02 -2.9763629e-02 + 1.1991769e+00 -9.3301107e-01 1.2748989e-01 -1.2983855e-01 -6.5714677e-01 2.4973269e-02 -3.6454643e-03 + -4.1732590e-01 3.6286466e-01 -4.1683393e-02 -2.0873887e-01 -1.8558432e-01 3.9798964e-02 -9.7738991e-03 + -1.0827138e-01 -4.2557826e-02 -9.7966449e-02 -1.1282895e-01 1.0859859e-01 -3.8167138e-02 6.2169893e-02 + 2.1446791e-01 -2.3539773e-01 -5.2029409e-01 -8.1209778e-02 5.4830093e-01 7.7109206e-01 -8.6954392e-02 + -1.0694417e-01 3.5487211e-02 -2.3134279e-02 6.1202034e-02 1.7738098e-01 -3.8469527e-02 3.3042248e-02 + -7.9350781e-02 5.9115939e-03 5.3710843e-02 -1.4410320e-01 -1.1135463e-01 -1.5671256e-02 -2.2741792e-02 + -4.6623082e-01 -6.5183616e-01 1.8766371e+00 -2.5668835e-01 6.0086486e-01 2.9987840e-03 3.7659109e-01 + 2.8067372e-01 1.0551894e-01 7.3911408e-02 2.5542892e-01 1.5426870e-02 5.9251342e-02 1.0051795e-01 + -1.1476318e-01 4.2554607e-02 2.7582894e-02 -3.0454017e-02 1.3526576e-01 -5.3974311e-02 3.4996217e-02 + 2.0771553e-02 1.2311825e-02 -8.0053088e-02 1.6501147e-01 9.3785089e-02 -2.4687588e-02 1.0014819e-02 + -1.2393531e-01 -1.4070758e-01 -1.4041270e-01 9.1020340e-02 8.3000852e-02 9.4246854e-02 2.8728587e-03 + 6.6638878e-03 2.0993373e-02 5.4166756e-02 8.9052374e-02 3.3230692e-02 -7.3641990e-02 -2.5565368e-02 + -1.1823226e-01 4.9766015e-03 -1.3391753e-01 -5.5911907e-03 8.9899708e-02 1.4780424e-02 4.0645539e-02 + -3.9914588e-02 4.3239052e-02 -5.8986215e-02 7.6582516e-02 1.5281685e-01 -9.4455563e-03 4.9422419e-02 + -1.1948231e+00 1.0976817e+00 -1.7823938e-01 1.1955946e+00 8.2385025e-01 -6.4174140e-01 1.0282721e-01 + 1.3569318e-01 1.5402037e-02 1.5880607e-01 -1.7058674e-02 -5.4541020e-02 1.0143177e-03 -4.3491109e-03 + 9.1510391e-01 2.3205012e-01 3.6455058e-01 -2.5903820e-01 -2.2246541e-01 -2.6536525e-01 -2.6984266e-01 + -1.5561677e-01 -1.4223008e-01 5.8125238e-03 -3.7648352e-02 -3.9521223e-02 -1.0497519e-03 -6.9961795e-02 + 1.2843639e+00 2.1643693e+00 9.4873077e-02 2.4600306e-01 8.4396666e-04 2.1146757e-01 -1.0143893e+00 + -5.0548057e-01 1.1934564e-01 3.2307556e-01 5.7515254e-01 -3.0818200e-01 6.4462452e-01 -7.0479766e-02 + -9.0118588e-01 4.3343343e-01 -1.8416373e-01 -4.3909405e-01 -7.8291914e-02 -5.4225270e-01 9.6180550e-02 + -2.8751569e-02 4.3384359e-02 -1.1206713e-01 1.6876162e-02 1.1797751e-01 2.3158667e-02 2.9912956e-02 + -4.7435074e-02 -5.8904598e-02 -1.2712259e-01 -6.4177042e-01 -4.4859040e-02 -1.6119890e-02 1.1453113e+00 + -7.2651753e-02 -1.9209738e-02 7.9545393e-03 3.2070860e-01 -2.1526776e-01 3.3513379e-02 -9.4315019e-02 + 9.1384614e-02 -9.7735191e-03 1.2892213e-01 -6.4968335e-02 -9.0212105e-02 1.5700835e-02 -1.0827857e-02 + 7.5607498e-04 -2.2637108e-01 -2.6069461e-01 2.0922957e-01 1.7319489e-01 9.6870236e-02 -1.2978647e-01 + 2.8204338e-02 2.4016955e-02 9.1508946e-02 -4.4724627e-02 -9.1067747e-02 6.3502478e-03 -2.3047014e-02 + 9.4824852e-02 3.4294734e-02 1.3371150e-01 -7.5092970e-02 -7.5060669e-02 -1.3599608e-02 -3.4715910e-02 + 1.0651580e-01 -1.3535524e-01 4.0524958e-02 -6.5466924e-02 1.2503296e-01 -2.7639555e-02 2.8610949e-03 + 1.5270070e-01 -3.6971429e-02 4.2457622e-02 5.1319449e-02 -1.3661476e-01 2.0662787e-02 -5.1680383e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_IW_F_2.txt new file mode 100644 index 00000000..b603680b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_F_2.txt @@ -0,0 +1,39 @@ + 1.2204008e-02 2.7875710e-02 -9.9287749e-02 -1.5405807e-01 -1.4967262e-01 -2.1216144e-01 1.6904638e-01 + -9.0917389e-02 -4.0581051e-02 5.8332251e-02 -5.8765923e-03 -1.5169946e-01 -1.1635707e-01 -1.0809712e-02 + -7.4375400e-01 -1.0028647e+00 3.9816033e-01 -1.4943950e-01 -2.5141297e-02 -4.3654629e-02 4.2442055e-01 + 3.5773066e-02 5.5931327e-02 2.3594557e-02 -1.4735700e-01 -8.3437649e-02 -5.0383589e-02 8.2943428e-02 + 1.5298265e-01 -1.5015253e-01 -3.4819786e-01 1.4730565e-01 4.0261283e-01 2.2908001e-01 -7.4591388e-01 + 7.3364717e-02 -6.3755501e-03 1.9871677e-01 1.6402966e-01 5.0304460e-02 -2.0196739e-01 -2.3350756e-02 + 1.4182068e-01 -7.5072477e-02 9.1632072e-02 -7.8093697e-02 -2.7538149e-02 2.9738891e-02 2.2028660e-02 + -3.0250843e-02 -5.1063435e-01 3.5200870e-01 5.3488670e-02 2.7842682e-01 -1.9567396e-01 -1.0496438e-01 + 3.7742370e-02 -7.7961766e-02 1.7036791e-01 1.3913661e-03 4.2323400e-02 -1.1584246e-01 1.6422621e-02 + -7.4387009e-01 -5.0325534e-01 -2.3270981e-01 -2.0429799e-01 -7.2319179e-02 -2.8582280e-01 4.0593352e-01 + 3.5169074e-02 -5.3876108e-02 1.8905960e-01 3.6188485e-02 -1.6639088e-01 -1.3780093e-01 -6.1669565e-03 + -9.1123949e-02 -1.2837661e-01 1.1564422e-01 -1.7448371e-02 -1.6326219e-01 -1.2530514e-01 1.8394475e-02 + -4.1250696e-01 6.7903717e-01 -9.3827647e-01 2.8708301e-01 -5.9313120e-02 3.9545293e-01 4.9203308e-01 + 2.7024446e-01 -1.4138327e-01 -6.1909488e-02 -1.3076787e-01 8.4273768e-02 2.2009373e-01 9.0625352e-02 + 2.5408729e-02 -1.4788094e-01 -5.6422029e-01 -2.8813990e-01 -2.2740957e-01 -1.0633529e+00 -1.9152287e-01 + -7.4894450e-01 4.0991445e-01 -1.2263426e-01 -1.2658909e-01 -4.3020824e-02 -7.4419921e-02 -1.9066761e-01 + 9.1391112e-02 -3.2900600e-02 -1.1446085e-02 6.3938880e-02 1.8072300e-01 1.5754570e-01 -2.8658073e-02 + 1.7161877e-01 -1.9451691e-01 2.3364282e-01 6.3467620e-01 -3.0817336e-01 -6.3452675e-02 -1.9387020e-02 + -8.1180753e-01 4.4281854e-01 7.9881076e-01 2.1999029e-01 1.0876231e+00 -6.6344742e-01 -1.5965708e-01 + 2.0580678e-01 2.2891123e-02 -1.0203779e-01 -1.4156551e-01 -6.4922737e-02 -1.4924289e-01 7.2878112e-02 + 1.9525496e-01 -2.6893677e-01 7.1970210e-01 2.2482939e-01 1.0188512e+00 3.4112860e-01 3.6252990e-01 + -1.2927585e-01 -7.7663006e-01 2.2624339e-01 1.5121022e-01 2.1079133e-02 3.1643031e-01 -3.3525567e-01 + 4.2111715e-02 -4.3899383e-02 -2.3061869e-01 -1.5276098e-01 -2.0972259e-01 -3.6068310e-01 1.8278375e-01 + -1.3424804e-01 2.0070089e-02 -4.2755192e-02 8.8100645e-02 -9.9615828e-02 -3.9677586e-02 -2.8454799e-02 + -6.4653323e-01 -7.7302909e-01 8.9539544e-02 2.1265066e-02 -8.6884233e-02 -1.7180589e-01 3.2548110e-01 + 9.9262983e-03 -5.3622231e-02 -2.0279470e-01 -3.2563568e-01 2.3917221e-02 1.3927524e-01 7.3366390e-02 + -6.3128069e-01 3.2744175e-01 -6.0593363e-01 7.8117766e-01 -3.6039281e-02 6.1183002e-01 1.1926396e-01 + -2.5674288e-02 -6.4004926e-03 7.2180297e-02 -2.6789473e-02 -1.1793739e-01 -1.0263736e-01 -2.3117989e-02 + 1.4455145e-01 -7.5836102e-01 8.1957167e-01 -1.6968351e+00 4.0502546e-01 1.8328371e-01 2.4330010e-01 + 1.8075160e+00 9.3792504e-02 1.7600783e-01 -3.0963846e-01 -4.5434501e-01 2.9972446e-01 -1.0874647e-01 + 1.0185132e-01 -2.4496825e-02 -4.3500609e-02 -1.3588901e-02 1.0191293e-01 1.9454332e-01 -6.5311770e-02 + -8.4560036e-02 -3.2123429e-02 -4.2172621e-02 9.9538923e-02 8.5727841e-02 3.1415853e-02 -1.1072176e-02 + 4.6091436e-01 7.3180435e-01 -3.0590485e-01 -1.0895324e-01 -1.4023594e-01 1.0435097e-01 -2.8285361e-01 + -9.7862065e-02 3.8893289e-02 2.5600526e-03 -9.5584726e-02 -1.2088700e-01 7.9661364e-03 3.5219609e-02 + 4.4253436e-02 -1.8550874e-01 1.8606943e-01 3.2077965e-02 6.8939804e-02 -6.0174663e-02 4.8392034e-03 + -1.6267786e-01 -8.5323091e-01 -1.1593477e+00 1.2014726e+00 -8.7279102e-01 -3.2887744e-01 -4.4000738e-01 + 9.1581142e-02 -5.9666134e-02 -3.3944262e-02 -6.4459430e-02 6.9621390e-02 2.3518640e-01 1.5936950e-02 + -1.7679153e-01 -7.8505073e-02 4.7572171e-02 1.0248141e-01 -3.1605535e-02 5.8457520e-02 6.5867192e-02 + -7.4794670e-02 -3.3251775e-02 1.5417839e-02 5.3530349e-02 4.7894834e-02 -2.6606576e-01 9.4313520e-03 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_IW_F_3.txt new file mode 100644 index 00000000..d9c209d3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_F_3.txt @@ -0,0 +1,39 @@ + 2.2354614e-01 -1.1809355e-01 -3.9485203e-04 5.1747740e-02 2.2006243e-01 2.9588452e-02 1.6765844e-01 + 1.9960352e-01 1.8349538e-01 -8.7068834e-02 -2.2204600e-02 7.0360970e-03 -7.8582900e-02 -1.8844132e-01 + -3.1940520e-01 -9.6816881e-01 -3.6592474e-02 -2.1356500e-01 1.0916169e-02 -1.7295534e-01 4.9502101e-01 + -2.3427328e-01 5.9201396e-02 3.0548522e-01 1.0580209e-01 1.6742203e-01 7.0545522e-02 8.7539900e-03 + -4.9755442e-01 7.3177563e-02 9.1062173e-01 4.8523189e-01 5.0993752e-01 -1.1402800e-01 -2.5795721e-01 + 2.7629319e-02 3.7320108e-01 3.5709556e-01 1.3545653e-02 -4.8765292e-02 4.6095229e-02 -8.1403612e-03 + 4.0355481e-03 4.0258696e-01 1.2606787e-01 -5.8993136e-02 -1.1001649e-01 8.0784050e-02 -8.7923255e-02 + 4.0231008e-02 -2.2119775e-01 -1.8360861e-02 -6.7575813e-02 -4.6454247e-02 -2.1187191e-01 6.2160891e-02 + -1.9138020e-01 9.2436737e-02 -7.4079520e-01 1.6631616e-01 -5.2762301e-02 1.6957803e-02 -7.5830474e-02 + -3.2658908e-02 7.6505379e-02 1.8386360e-01 -1.7956964e-01 -4.0381962e-01 -1.0556510e-01 1.8881585e-01 + 1.8613134e-01 3.9430078e-01 2.8280540e-02 -1.3523378e+00 -3.1317113e-01 7.3138229e-01 -8.9769896e-02 + -4.0041782e-02 4.4219748e-02 -2.1198163e-01 -1.0607629e-01 2.9762790e-01 -3.1298523e-01 5.1043063e-02 + 1.3594392e-01 2.5628805e-01 -2.6381025e-02 -1.2085438e-01 -1.6034831e-01 -5.7646351e-02 8.3213507e-02 + -9.5725236e-02 -4.0394781e-02 -1.8790257e-01 5.8405286e-02 3.4364724e-02 -5.4175978e-03 -1.0258663e-02 + -2.0454651e-01 -2.5853989e-01 -3.9440075e-02 3.5966395e-02 3.0772977e-01 -7.6158708e-02 2.1903755e-02 + -1.5823011e-01 -1.0433041e-01 8.9799466e-02 -2.2260959e-02 -3.9808498e-02 -1.8964582e-02 7.7360875e-03 + -9.3992879e-02 -8.9978548e-02 3.1504119e-02 -8.1290196e-02 -2.4177846e-01 2.2360027e-02 1.8248848e-01 + 4.2360973e-01 -1.3166565e-01 -1.7383661e-01 -3.4214093e-02 1.2627728e-01 -1.1562969e-01 2.6597289e-01 + -4.5693515e-02 -8.5604347e-02 7.4044746e-03 5.1056448e-02 -2.8113010e-02 1.8213230e-02 -4.8950404e-02 + 2.7553415e-02 1.4776402e-01 -9.4029728e-03 4.5886697e-01 -1.4612109e-01 -8.4827160e-02 -2.7284272e-01 + 1.6798902e-01 -7.1949073e-01 -4.3036865e-02 -7.9259924e-02 -6.1494257e-01 -3.5237890e-01 7.0934498e-02 + 2.9932878e-02 1.5679745e-01 -2.6413793e-01 5.5312879e-03 1.1594615e-01 -1.5004375e-01 6.3372319e-02 + -3.9976847e-01 1.5832241e-02 3.0469450e-01 -1.1129162e-01 -4.1824197e-02 -1.0325158e-01 2.8825955e-01 + -9.6951913e-02 -1.7428805e-01 -5.8275424e-02 8.3563708e-02 1.1824788e-01 6.0751960e-02 -7.0179909e-02 + 6.4450222e-02 -6.3699469e-04 4.4993687e-01 -1.3688130e-01 1.8846753e-01 -1.0381804e-01 1.5254845e-01 + 1.6492280e-01 -8.1240795e-02 1.0772644e-01 -5.1158187e-02 6.5238688e-02 1.2071068e-02 -7.8886734e-02 + 2.3285796e-02 -1.4927084e-01 -1.1659330e-01 7.2804453e-02 1.6982305e-01 5.2399643e-02 -4.7732432e-02 + 7.3277067e-02 -2.3917838e-01 -1.8771148e-01 -1.9762454e-01 4.6590430e-02 -1.8557914e-01 4.9937467e-02 + 1.1771735e-01 1.8781221e-01 3.2595881e-02 -1.2015940e-01 -1.2295650e-01 -5.4639552e-02 8.3209239e-02 + -1.6601507e-01 8.9070025e-02 7.8541696e-02 1.7864381e-02 -2.7985059e-01 1.2876356e-02 1.7346028e-02 + 8.5836387e-02 3.5343694e-01 6.5048094e-02 -4.2753373e-02 -1.5509292e-01 -4.1792516e-02 7.9342890e-02 + 1.0549923e-01 -4.5836951e-01 1.9528717e-01 -8.6837696e-02 3.3260818e-01 -2.9664728e-01 -6.8627061e-02 + -2.2872660e-01 -1.1042865e-02 2.9997787e-02 3.3080071e-02 -5.8088955e-03 2.7477428e-02 -1.4214239e-02 + 2.1452053e-01 -9.8518154e-02 -1.7134384e-01 -1.4707791e-01 -1.5163552e-01 -1.3246618e-01 3.7487299e-02 + 3.6818450e-02 2.3698061e-01 -2.2894620e-01 7.2760824e-02 -8.0938640e-02 1.6033460e-02 -1.2228244e-01 + 5.2515883e-02 -2.2023713e-01 1.3502568e-01 -1.1213654e-01 9.9186367e-03 -1.4862588e-01 -5.8324927e-02 + 5.4344325e-02 -2.8916721e-02 -5.5504885e-04 1.7001887e-02 -1.1044232e-01 -7.9342043e-02 -4.0510591e-02 + 1.4071195e-01 3.5816118e-01 1.0600384e-01 -1.1012628e-01 -2.0504090e-02 -7.1406122e-02 2.9156018e-02 + -7.5306489e-01 -2.5641488e-02 -4.0026061e-01 2.5211442e-01 -1.2565246e-01 2.1238523e-01 2.9808624e-03 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_IW_F_4.txt new file mode 100644 index 00000000..229cacd0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_F_4.txt @@ -0,0 +1,40 @@ + -1.5214608e-02 5.9521690e-02 -1.3733124e-01 -9.6607216e-02 -1.4379903e-01 -8.7789144e-02 -2.4124996e-01 + 1.4445557e-01 -2.5870135e-02 3.6673815e-01 -9.9591669e-03 3.9415520e-01 -2.1208302e-02 9.1010282e-02 + 9.1427830e-02 -1.8994978e-02 -3.2592451e-03 -1.6136720e-02 -2.6548772e-02 4.0414019e-02 3.1369096e-02 + -2.3141756e-02 1.8262615e-01 -2.2457041e-02 -1.4229475e-01 -1.2556727e-01 -7.9265830e-02 -1.0869823e-01 + 2.0150805e-01 3.2141201e-01 -6.1400548e-01 3.7156222e-02 -4.4253214e-01 -8.0844718e-01 1.3549643e-01 + 4.5773329e-02 1.1903110e-01 -2.5154829e-02 5.3312613e-03 -5.5277176e-02 2.8824795e-02 -2.3804046e-02 + -2.9256288e-02 1.4001616e-01 2.1046431e-01 3.8980904e-01 1.1046497e-01 1.1000559e+00 5.3543076e-01 + -9.4769763e-02 2.3745935e-01 -2.9477436e-02 -1.4090970e-01 -1.3643728e-01 -1.9591952e-02 -1.1769293e-01 + 7.4358574e-02 2.3089942e-01 -9.8875011e-03 -1.1223803e-01 -5.0905893e-02 -3.4298967e-02 -3.8814212e-02 + 1.4264248e-01 1.1196243e-01 1.4232578e-01 -1.1317737e-01 -1.4091561e-01 -3.9579691e-02 1.9086746e-01 + -5.4340252e-01 -2.4963912e-01 4.9688287e-02 1.2105709e+00 -1.0380767e+00 2.4723264e-01 -3.3093662e-01 + -4.1668519e-01 2.6144728e-02 8.3285030e-01 -5.0300736e-03 3.0619474e-01 3.6036587e-01 -1.1130991e-01 + 7.8398227e-02 -1.9163652e-01 -7.6951447e-03 9.1458113e-02 1.2290489e-01 2.4926438e-02 1.1967313e-01 + -6.4149875e-01 1.1048043e+00 4.5908050e-01 5.5657903e-01 2.7124969e-01 4.1032228e-02 -2.6864361e-01 + -5.6024645e-01 -7.0232490e-01 2.7545748e-01 3.7904240e-01 -1.0304546e+00 4.9561893e-01 -9.7645649e-02 + 5.1851759e-02 5.5512944e-02 9.2919129e-02 3.9491939e-01 -1.6877658e-01 -1.4736981e-01 1.3680353e-01 + 1.5456319e-01 5.5977426e-01 -5.4614824e-01 -1.4841692e-01 2.2444356e-01 -2.2376891e-01 -3.5283240e-03 + 1.8478119e-02 1.6144676e-01 -5.4060373e-02 -9.8714861e-02 -1.4034137e-01 -6.7622470e-02 -6.5538861e-02 + -1.1547274e-01 4.2786028e-02 9.4659700e-02 -6.7500831e-02 -8.4066092e-03 -6.6408674e-02 7.1760102e-02 + -2.5887192e-01 -4.3124382e-01 -1.4353951e-02 -1.2742438e-01 -4.6291724e-02 -2.3145748e-01 3.8193580e-01 + -7.5990189e-01 2.0430652e-01 -9.6341064e-01 -1.6899130e-01 -2.8762326e-01 1.5090282e-01 -2.3652295e-01 + 1.8162769e-01 -3.0524454e-01 2.5624612e-01 3.0775203e-02 -1.7685022e-01 7.8705106e-02 -7.4852201e-02 + -1.7978740e-01 -7.8942403e-02 -1.0573104e-01 1.1775503e-02 -1.8366764e-02 1.8027839e-03 -5.2799502e-02 + -2.3054203e-01 -3.1491108e-01 -1.7363033e+00 3.2653630e-02 1.3889373e-01 -2.3737695e-02 -7.4345334e-03 + -4.6917042e-01 -5.6495439e-01 1.4675480e+00 -6.0268371e-01 8.6979161e-01 -5.3307763e-01 2.3674331e-01 + -1.1193384e-01 -6.0580285e-01 3.1518670e-01 4.1714791e-01 1.1316658e-01 2.3780468e-01 -2.3489173e-01 + 1.2406811e-01 1.4807458e-01 -7.2439353e-02 -4.9505477e-02 -7.0203842e-02 -3.8578637e-02 3.1798144e-02 + -1.7656426e-02 2.6505808e-01 -1.8521593e-02 -1.4746909e-01 -9.3589098e-02 -1.0931006e-02 1.0882131e-02 + -4.7206288e-02 -3.9872513e-01 3.0693365e-02 -1.0774800e-01 1.2679477e-01 -8.1010093e-02 -9.6961527e-02 + 1.7081272e-01 9.2919263e-02 -7.8240863e-02 -1.0993136e-01 2.9030611e-01 -3.1151351e-02 4.9791349e-02 + -4.7733166e-02 -1.9037487e-01 2.2730925e-02 1.0430418e-01 8.8249720e-02 6.2803936e-02 6.8301254e-02 + 1.0191453e-01 1.4227403e-01 -4.2012435e-02 -5.1494387e-02 -2.9578679e-02 1.0242725e-02 5.3232622e-02 + -3.7820496e-02 1.1219249e-01 2.7671833e-03 -7.7292631e-02 -1.5435687e-01 -8.8107963e-02 -1.6802404e-01 + -5.2128859e-02 -6.0047672e-02 -4.4017487e-02 1.2264667e-01 1.3276941e-01 4.8200043e-03 -4.2709478e-02 + 1.2953131e+00 -3.8088209e-01 -2.5640741e-01 -2.9497228e-01 -2.9184338e-01 -3.2427603e-01 6.2335480e-01 + -9.4203462e-02 -6.9849404e-02 2.5760423e-02 -5.3601831e-02 -7.9743552e-03 -9.0032747e-02 -4.0945422e-02 + 5.1853359e-02 -2.4324563e-01 -6.0754897e-02 -6.3136986e-01 2.7254847e-01 6.8889696e-01 1.8050254e-01 + 4.6021237e-01 -1.7511091e-01 -1.0947403e+00 4.7133364e-01 -2.1475066e-01 5.6214306e-01 -4.0471886e-01 + -8.8065375e-02 -6.9550099e-01 1.1397023e-01 1.3364051e-01 1.3988915e-01 -7.4955568e-02 1.2210249e-01 + -3.3775935e-02 2.5314742e-01 -6.9764469e-03 -2.7840165e-02 -1.0273715e-01 6.1782973e-02 -7.6346698e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_IW_F_5.txt new file mode 100644 index 00000000..51d9287b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_F_5.txt @@ -0,0 +1,43 @@ + 7.1529573e-01 7.0839266e-01 -8.4753617e-02 -1.3319123e+00 -4.1738880e-01 1.0850088e+00 3.1626366e-01 + 5.2248665e-01 -1.6783033e-01 1.0575922e+00 -3.7138343e-01 5.8870389e-02 1.6633628e-01 1.0842096e-01 + 1.4912915e+00 -2.1106029e-01 -1.4985335e+00 -2.0336015e-01 -1.8312926e-01 -2.5687586e-01 1.4580802e-01 + 2.6025238e-02 -3.4497109e-01 1.0249145e-01 1.3206195e-01 1.8890389e-01 1.8723658e-01 1.8447371e-02 + 2.0097341e-02 -2.8630106e-01 6.4600614e-02 8.1337450e-02 1.7871791e-01 1.3078865e-01 4.2978933e-02 + 1.0491638e-01 -3.9842770e-01 1.6297020e-01 2.2407653e-01 1.9999628e-01 2.4057660e-01 3.4296556e-02 + -2.1284004e+00 5.8114133e-01 -2.9067012e-01 2.2156452e-01 -4.4078912e-01 -2.2838064e-01 -7.1359120e-01 + 7.3757371e-02 2.0103059e-01 1.4722507e-01 1.0167307e-01 -2.3209938e-01 -1.2844219e-01 1.8091517e-02 + -3.0647913e-03 7.1284007e-02 -5.8981065e-02 -1.3953954e-02 -1.5906739e-01 -8.7408321e-02 -3.2333555e-02 + -1.8812305e-01 -2.5352692e-01 -1.3846077e-01 4.4220528e-02 -1.5520465e-01 7.2164983e-02 -1.7960637e-01 + 5.7924965e-02 1.1756930e+00 -4.8527441e-02 2.6730133e-01 -3.9168330e-02 5.8247235e-01 -3.7598434e-01 + -1.4946558e-02 -8.1959292e-02 4.2325655e-02 8.7868782e-03 1.4857524e-01 6.9861126e-02 2.3921786e-02 + 7.3581385e-02 -5.3307990e-01 -3.0437670e-01 -3.3747336e-01 3.3913617e-02 2.0146776e-01 -2.2038797e-01 + 9.6872617e-01 6.2059869e-01 1.3247787e-01 -9.3402829e-01 6.9862413e-01 -3.6691830e-01 -3.7432892e-02 + -4.9289362e-02 -2.0469296e-01 1.8756713e-02 -7.2590213e-03 1.1429210e-01 -1.5083533e-02 4.2166909e-02 + 2.7895301e-02 6.4687857e-02 -5.0739707e-02 2.3533009e-04 -1.3194141e-01 -3.9860923e-02 -3.8251866e-02 + -5.1347396e-02 -7.3562625e-02 1.0385827e-02 8.1855306e-03 8.4607747e-02 -1.1768547e-02 7.5632167e-03 + -7.0359388e-02 -1.4935629e-01 1.3895667e-02 7.6684724e-03 7.1793938e-02 -2.9197274e-02 7.9952074e-03 + 4.0327090e-01 2.3395860e-01 -1.6946002e+00 -7.3112325e-02 -2.7492145e-01 -7.6332587e-02 -2.0502375e-02 + -3.5264740e-01 9.7731205e-02 2.0381260e-01 3.9448279e-01 -6.6206885e-01 2.9000741e-01 -4.1923467e-02 + 4.8456196e-02 4.0691784e-01 -4.3344987e-02 1.0665139e-02 -8.7173811e-02 1.0703913e-01 -8.7961018e-02 + 9.9857234e-03 1.5956596e-01 -4.7786654e-02 -2.6863155e-02 -1.5014058e-01 -7.1425420e-02 -3.1620445e-02 + -1.6327845e-01 -3.2218992e-01 -1.7730628e-02 -1.5186069e-02 -1.3005702e-01 5.5643420e-02 -1.1916183e-01 + 3.8370238e-01 -6.5085636e-01 -2.5275334e-01 -2.7256012e-01 -1.1409903e+00 2.2756806e-01 -2.5606785e-01 + 8.3653471e-02 2.2396256e-01 -7.2520554e-03 5.2548785e-03 -4.4965539e-02 5.6530849e-02 -1.3012944e-02 + -4.9231468e-02 2.3476813e-01 -3.6799554e-02 -5.6361307e-02 -1.7048728e-01 -1.0703936e-01 1.4405628e-02 + -1.1496219e-02 1.6409879e-01 -6.5418372e-02 -4.5777690e-02 -1.7401032e-01 -1.1888014e-01 -2.7185735e-02 + 1.3173816e-01 3.1541061e-01 -3.8673300e-02 2.6288933e-02 -2.0803565e-02 1.1544181e-01 -4.2527580e-02 + -5.3320172e-01 1.7822723e-01 2.4691598e-01 -5.2423275e-02 -2.6304393e-03 -1.0124050e+00 1.3845950e-02 + -1.0753891e-01 -5.3015725e-01 1.0019440e-01 -8.0139582e-04 -1.4150088e-01 2.9375077e-02 -7.8485115e-02 + 3.2827105e-03 -5.4806109e-02 6.8062411e-02 7.4622770e-03 1.6461827e-01 9.1176676e-02 3.9471376e-02 + 4.8540723e-02 2.8646384e-01 -3.1729830e-02 2.0413619e-02 -1.0205062e-01 7.0060513e-02 -7.7960653e-02 + -1.3954929e-01 -1.5915844e-01 3.5601687e-03 9.3505907e-03 2.8765550e-02 -4.9170225e-02 -1.1367096e-02 + 2.5165339e-03 -5.7998965e-02 7.2844385e-02 -9.6043527e-05 1.6444179e-01 9.2244319e-02 4.1976024e-02 + -3.3935890e-02 -5.6085548e-02 -4.2078872e-02 3.2113068e-02 1.4301884e-01 5.6491589e-02 -4.2899507e-02 + 1.2027901e-02 7.9850322e-02 -5.3071112e-02 -8.2010108e-03 -1.4935494e-01 -7.0612806e-02 -3.2711697e-02 + 1.9284018e-01 2.1376725e-01 5.3168159e-02 -2.9697668e-03 1.6727395e-01 -3.4372077e-02 1.0965616e-01 + -2.2996085e-02 -1.2581590e-01 4.1248451e-02 1.2238821e-02 1.4077367e-01 5.5044036e-02 2.8798317e-02 + -2.9402018e-02 -2.5722391e-01 3.1129718e-02 8.6821413e-03 1.2884391e-01 4.8791680e-03 5.6527677e-02 + 2.2823491e-01 8.1243608e-01 -3.2760440e-01 -1.1165013e-01 2.2271111e-01 1.2541846e-01 -5.6714617e-03 + 8.5162908e-02 1.9593194e-01 -1.3086547e-02 2.0999163e-02 3.8107872e-02 4.8166570e-02 4.6303569e-03 + 2.2781804e-01 3.9965419e-01 -1.2918675e-02 -1.8913031e-01 1.7612539e-01 -2.1672154e-01 1.9322676e-01 + -7.9615356e-01 -7.7057307e-01 -6.0122904e-02 -1.0312739e+00 2.1712011e-01 6.6080156e-02 -2.6643731e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_IW_G_1.txt new file mode 100644 index 00000000..7db720a2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_G_1.txt @@ -0,0 +1,27 @@ + -2.1062248e+00 -7.7788635e-01 -2.2160031e-01 7.9023770e-01 -6.8037940e-01 -4.7087880e-01 -4.6130790e-01 + 4.0863765e-01 3.0581913e-01 -3.6489653e-01 9.0695544e-03 -2.1059178e-01 -1.0194599e-01 3.3278030e-03 + -7.2643713e-01 -7.8184648e-01 8.7192627e-01 -3.7787510e-01 -3.9727333e-01 1.6483657e-01 -5.1649576e-01 + 5.9362467e-01 8.2145545e-01 5.5486820e-01 -4.3991142e-01 8.4365254e-01 -1.3582406e-01 5.3570075e-03 + -1.2254846e-01 -8.5709129e-01 1.3117189e-01 -1.1149660e+00 -3.9570801e-01 -1.3839732e-01 4.5382723e-01 + 4.0426162e-02 6.3182677e-01 3.7436381e-01 3.3832350e-01 -3.5618882e-01 -5.1684853e-02 1.8418666e-02 + 7.3580998e-01 -6.2072521e-02 -3.0184642e-01 -7.7693032e-01 2.2388809e-02 1.8095365e-01 -3.3623838e-01 + 1.1849108e+00 -5.8927833e-01 -3.4768438e-01 1.8962458e-01 4.2464540e-01 -2.7461942e-01 -7.5157293e-02 + 3.2111659e-01 1.9334047e-01 -2.7618241e-01 -3.7010789e-01 -1.5930088e-01 -1.3478796e-01 6.1730150e-01 + -1.9116744e-01 6.5254014e-01 1.8875579e-01 -2.4202234e-01 3.8444678e-01 3.7658384e-01 -4.1248959e-01 + 2.5746908e-01 1.5186936e-01 3.1400534e-02 -3.3495280e-02 -1.4161327e-01 -3.0754764e-01 -2.7796796e-01 + 2.8570342e-01 1.2840004e+00 7.6324452e-02 -2.0480792e+00 8.5145085e-01 1.0559135e-01 5.6397498e-01 + 4.1698067e-01 2.1309134e-01 2.5442198e-01 1.9822338e-01 -9.1327029e-02 -1.4503807e-01 -5.3129670e-02 + -5.3971913e-01 6.9223678e-01 5.7641479e-01 -3.4400147e-01 3.7297813e-01 -9.6166710e-02 -5.9816940e-02 + -4.6988259e-01 -3.5775178e-01 -1.3526042e+00 -3.5496868e-01 2.7366457e-01 2.0702013e-01 -7.7140613e-01 + -7.7345837e-01 -5.2390931e-01 -6.0583707e-01 1.1316759e+00 -3.1152675e-01 7.6540606e-01 -5.9584923e-01 + -4.7098619e-01 -4.6359054e-01 -2.1113778e-01 -1.2037956e-01 -7.0058600e-01 -4.1556086e-02 -4.1178422e-02 + -1.2392946e-01 -2.2219230e-01 1.9152879e-01 5.5539740e-02 3.2287092e-02 -1.4760279e-01 5.1700635e-02 + 1.0722811e-01 5.5778833e-01 -7.8667186e-01 -3.2443118e-01 -5.2181898e-01 -1.0073484e+00 5.1395337e-01 + 7.4991720e-01 -3.2530714e-01 7.6275980e-01 2.2601769e-01 5.0255999e-01 8.2288027e-01 -7.3192748e-02 + -6.4501283e-02 -2.7824364e-01 8.2864699e-02 -1.2049839e-01 8.1270017e-02 -1.2063440e-01 5.5807644e-02 + -5.7658398e-01 4.9938652e-02 5.1462605e-01 -9.2193960e-03 4.3811118e-01 2.9935399e-01 1.5717156e-01 + 5.8184426e-01 -1.2394520e-01 1.4669803e-01 6.5907049e-01 -2.8575891e-01 1.2625305e-01 1.4859142e-01 + 1.8499811e-01 2.1545882e-01 5.0581369e-02 -3.6667846e-02 -7.0097924e-02 -7.7946212e-02 -1.3658402e-01 + 1.4322359e-01 1.1032917e-01 -8.8482820e-02 -6.7225569e-02 -1.1799937e-02 5.1097280e-02 3.7722425e-02 + 1.0225811e+00 1.8468800e+00 7.2196164e-02 -3.7464335e-01 -1.1679857e+00 -1.4541902e-01 -6.4780775e-02 + -1.2582852e+00 -1.2380387e+00 1.8469148e+00 -8.4872057e-01 1.3032015e+00 -3.9739155e-01 1.9610242e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_IW_G_2.txt new file mode 100644 index 00000000..54814d34 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_G_2.txt @@ -0,0 +1,33 @@ + 6.4842164e-01 -6.2095366e-01 -3.4451468e-01 -1.2677310e-01 -3.1013534e-01 -3.8467848e-01 1.4173508e-01 + 4.3582157e-03 3.3475762e-01 -1.0514816e-01 2.4126041e-02 3.0507664e-01 7.3118474e-02 1.2488140e-01 + 4.8880847e-02 1.9652739e-01 -4.1229492e-02 1.6515867e-01 -1.9535325e-01 -1.8659085e-01 -1.1658363e-01 + 2.7570751e-01 2.9168857e-01 -3.7827189e-01 -1.4428377e-01 -3.2292581e-01 -4.4455023e-02 6.3434416e-02 + 2.4356869e-02 1.5420281e-01 -8.8441569e-02 6.3953926e-02 -1.8342105e-01 -5.2262734e-02 -3.5382087e-02 + 1.3681468e-01 -1.6142638e-01 2.6792274e-02 2.8823829e-02 1.3671348e-01 -3.7051632e-02 9.8229121e-02 + 1.1073915e+00 8.2340830e-01 1.6266490e-01 -1.6130627e-01 -5.5605864e-01 2.3082578e-01 -7.4859551e-02 + 4.9635871e-01 7.4149608e-01 -8.5209693e-02 1.5869412e+00 1.5222306e-01 2.3398423e-01 -5.4719477e-01 + 2.2535175e-01 1.3175385e-01 -1.5116507e-01 -1.4459061e-01 -4.7652932e-02 -7.2341081e-02 -9.8069659e-02 + 1.5561056e-01 -1.0615956e-01 -2.0853600e-01 2.3241211e-01 -4.4436187e-02 1.1012359e-01 -1.0977642e-01 + 5.5498605e-02 -4.6867592e-02 -7.5670563e-02 -8.1751807e-02 -1.0942848e-01 3.7698025e-02 -1.0574891e-01 + -1.8376865e-01 2.0466011e-01 -8.4658967e-01 8.7984347e-02 9.0568041e-02 -4.9826850e-02 1.1810520e-01 + -9.1170505e-02 1.5261682e-01 1.5744633e-01 -3.3606322e-01 4.7961513e-02 -1.3720729e-01 1.9105168e-02 + -1.9785936e-02 -7.2695594e-02 3.4041482e-03 8.3327566e-02 -1.0321984e-01 2.0012928e-01 -4.2842232e-02 + 5.6289625e-03 2.4704972e-01 5.8345819e-01 1.7166773e-01 1.0910222e-01 7.9116361e-02 1.5051198e-05 + 1.3981878e-01 4.2649352e-02 3.4307858e-02 -1.0469828e-01 1.9428434e-01 -1.1324942e-01 8.4275046e-03 + 2.8485893e-01 -8.5458709e-02 1.8982789e-01 -4.0141388e-02 4.0049222e-02 -7.6475067e-02 -1.0489592e-02 + 1.0763177e+00 3.1522882e-02 9.1057165e-01 -6.2236985e-01 6.7874804e-01 3.3216377e-01 1.0365520e-01 + 2.1909211e-01 3.2312539e-01 5.2691776e-01 -3.6157104e-02 1.8453536e-01 -3.6615354e-02 8.4771668e-02 + -4.9398389e-01 -1.5122668e+00 1.8000910e-01 -4.0591689e-01 2.2220884e-01 7.6323929e-01 -3.7777625e-02 + -1.1098287e-01 -1.3417639e-01 -4.2291516e-01 -1.1847887e-01 -3.1139200e-01 5.3245936e-01 -1.4402605e-01 + 2.2509801e-01 4.5535172e-01 -1.4504944e-01 5.2101032e-01 -1.6703893e-01 1.3844928e-01 -2.1849729e-01 + 4.2169371e-01 -6.2540593e-01 -1.2749144e+00 -7.5604795e-02 2.6264922e-01 4.3932759e-02 2.4991021e-01 + 1.2181243e-01 -1.2727331e+00 -5.9862427e-02 -2.5933860e-01 -4.9423321e-01 -4.1971753e-01 7.9130613e-03 + -1.0907666e-01 -6.3704609e-01 5.5238440e-02 1.6966298e-01 -2.4333447e-02 -5.2463480e-02 5.9569115e-02 + 1.9065761e-03 1.4875999e-01 2.8260017e-01 -6.1146422e-01 2.1315650e-01 -2.5718977e-01 6.6503938e-02 + -1.5772384e-03 2.8471625e-01 -1.0442167e-01 8.3498461e-02 2.1200117e-02 1.7563020e-02 1.1942102e-01 + 1.3884291e-01 -3.7380128e-01 -1.1835689e-01 -8.4710273e-01 -1.0120584e-03 9.1206660e-02 1.1443488e-02 + -1.7430992e-01 -2.9847828e-01 2.0438720e-01 1.9657674e-01 2.6202346e-01 -9.5331387e-02 2.9301430e-02 + -2.2923007e-01 1.3662609e-01 1.8835213e-01 1.4468869e-02 6.6078120e-02 -1.4427600e-01 7.1497565e-02 + 1.4211533e-01 4.9835767e-02 3.6403762e-02 9.1723889e-03 2.2088825e-01 3.6408715e-02 -8.6922471e-02 + -4.2338557e-01 -3.4718524e-03 1.2019927e-01 4.2348337e-01 -3.7337594e-01 7.4304326e-02 1.2364805e-01 + 1.2829870e-01 -1.4373398e-02 -1.3427018e-01 -9.6813077e-03 -1.1995855e-01 2.4345108e-02 -6.7542635e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_IW_G_3.txt new file mode 100644 index 00000000..c517ec7f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_G_3.txt @@ -0,0 +1,36 @@ + -1.5834524e-01 5.9698037e-02 -1.3463919e-01 -2.1703874e-01 -1.9495332e-01 -7.5874621e-02 -1.6555118e-02 + 8.7030044e-02 -5.7218704e-03 3.7390664e-03 1.2028618e-01 -1.0649163e-01 4.1226228e-02 4.6022538e-02 + -1.2998901e+00 -6.1505575e-01 -2.1339615e-01 1.8981542e-01 7.9934590e-01 3.2814691e-01 6.2080060e-02 + 2.7985889e-01 -1.2142352e-01 -5.2843826e-01 -9.4448137e-02 3.3203505e-01 -1.4778173e-01 2.7708614e-01 + -1.8917727e-01 9.1318363e-02 -7.3942708e-02 -8.6826951e-01 -6.1345445e-02 2.0964893e-02 1.3219071e-01 + 1.5949240e-01 2.9389210e-01 -8.7979585e-02 -1.1617211e-01 3.7412078e-02 1.5131599e-02 3.0598938e-02 + 2.8190928e-01 -2.6019937e-01 -2.0118099e-02 4.4182883e-02 -1.2665569e-01 -2.2768373e-01 1.8334008e-01 + -1.6912627e-01 -2.5242444e-01 3.1259455e-01 4.5364366e-02 4.7629462e-01 5.1526243e-01 -1.8918800e-01 + 2.0242601e-01 -2.5830119e-03 -1.8365854e-01 -3.6882846e-02 3.0125879e-01 -4.1752756e-03 6.8102184e-02 + 1.2690620e-01 -9.3539489e-01 -2.0400435e-01 -1.0285190e-02 -7.3355430e-01 2.9299826e-01 -2.4788321e-01 + 1.2384668e-01 -2.4129305e-02 -6.7500106e-02 2.9174425e-01 2.3850686e-02 5.4565822e-02 -1.4780446e-01 + 8.6905283e-02 8.3018537e-02 -1.1434455e-01 -2.0256307e-01 2.6840082e-01 -9.2535421e-03 2.3185770e-02 + 2.3625482e-01 5.2918035e-02 3.8931618e-04 2.0781411e-02 8.9014625e-02 -4.8777647e-02 1.0840721e-01 + 2.7010925e-01 2.5888266e-02 -1.6098672e-01 -9.0723126e-02 1.2678512e-01 -2.5505884e-01 5.8000628e-02 + -1.4861215e-02 2.8732525e-02 8.8512869e-01 -2.1584229e-01 3.5432613e-01 -2.3298757e-01 2.2737336e-01 + -2.3308203e-01 1.1306401e+00 3.7691368e-01 6.8634958e-01 1.5566834e-01 -6.7196743e-01 2.0161915e-01 + 2.8029399e-01 6.4990443e-02 -1.3755642e-01 -9.4110904e-02 2.8618950e-01 -1.5783732e-02 7.1590801e-02 + 1.0076684e+00 1.5917652e+00 -4.9508001e-01 1.9108839e-01 -7.3103931e-01 1.1706727e-01 1.9831324e-02 + -3.3370521e-02 5.6860560e-02 1.1556413e-02 2.1119430e-01 -8.7498322e-03 1.7161530e-02 1.1723260e-02 + 4.8868101e-01 -3.6728091e-01 1.0947631e+00 -2.2140779e-01 5.8168121e-01 -5.0345979e-02 2.3216094e-01 + 5.5223611e-01 -2.4155103e-01 -2.4365290e-01 2.2447236e-01 8.2813041e-02 4.9005569e-02 -5.7788807e-02 + 2.3976183e-01 -3.0328084e-01 7.1996240e-02 -1.2526340e-02 1.0570878e-01 -4.3599079e-02 -2.4282084e-01 + 2.4573625e-01 -3.2790805e-02 -1.1981476e-01 -2.6648317e-01 3.8565051e-01 -3.4322328e-01 -2.2590113e-01 + -1.1648031e-01 -2.5402144e-02 1.0596048e-01 -3.4933525e-02 1.2499145e-01 -5.0122933e-02 -6.9599786e-02 + -9.4319509e-02 -1.2333434e-01 5.1560400e-02 6.7669727e-03 -2.4765343e-02 -1.2138679e-01 1.4511987e-02 + 4.5084556e-02 9.9938947e-02 1.2183492e-01 -1.5360040e-01 1.3930257e-01 2.8028390e-02 -6.5350039e-02 + -2.3448489e-01 1.0249844e-01 2.6057083e-01 -1.0250890e-01 2.6957327e-01 -4.9370406e-01 1.1491505e-01 + 9.8739155e-02 1.8699086e-02 -7.3585892e-01 9.0684159e-02 2.9259516e-01 2.3900489e-02 -2.2459690e-02 + 1.5899793e-01 4.3999640e-01 -1.0614794e-02 -1.7805708e-01 7.3644581e-02 -9.7915337e-04 -2.4498866e-02 + -5.0357717e-02 2.2386365e-03 -3.9252897e-01 -4.8859177e-01 1.0901890e-01 1.3087797e-01 1.5741622e-01 + 2.7210890e-01 7.8751054e-01 -6.0096277e-03 -4.2662373e-02 -1.2843897e-01 2.5372931e-01 -5.6283181e-02 + -1.7797217e-01 -6.7200577e-02 2.1601865e-01 -2.7809089e-01 2.4375472e-02 -3.1527882e-01 8.5744882e-02 + -1.8433203e-01 3.6971995e-02 5.0891408e-02 4.8749275e-01 -5.6588350e-02 -3.0990461e-01 -1.1377438e-01 + 4.6607879e-02 -3.3481415e-01 3.9624466e-02 -6.3408539e-02 4.6612048e-02 -4.4064564e-01 1.7834857e-02 + -4.5750101e-02 1.6151017e-01 -1.5332366e-01 5.1241004e-01 -2.9955523e-01 -2.9893046e-01 6.2961802e-03 + 7.5288440e-02 2.4933040e-01 -6.2077004e-02 3.3059684e-02 -5.9477431e-02 -1.8969440e-02 -1.2020231e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_IW_G_4.txt new file mode 100644 index 00000000..cf45adb6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_G_4.txt @@ -0,0 +1,38 @@ + -6.7035072e-02 6.1735296e-02 5.9571723e-02 -8.1278124e-02 -2.3383252e-01 -6.7535317e-02 5.5004071e-03 + -2.7829064e-02 -1.0127353e-01 1.9445293e-03 7.2670746e-02 1.0848824e-01 -2.6964821e-02 2.7211052e-02 + 3.0542163e-01 -3.0534304e-01 6.3172661e-02 -1.3605609e-01 1.9792564e-01 -4.4443874e-01 7.3277304e-02 + -5.9937047e-02 -8.0556622e-02 2.2178819e-02 -6.0684166e-02 8.5088662e-02 -6.6352946e-02 2.5682893e-02 + -1.8497524e-01 -1.1939959e-01 6.2301925e-02 -5.6021179e-04 3.4125986e-02 -2.5440513e-02 -4.4994224e-03 + -3.3876831e-01 -4.4343548e-01 2.2327622e-01 1.8324215e-01 -1.7085899e-01 2.1192863e-01 -8.2663478e-03 + 4.3569422e-01 1.5180780e-01 1.5207160e-01 -8.4237936e-02 -1.5529701e-01 -1.3126140e-01 1.5311497e-02 + -2.3433484e-01 8.5841091e-02 1.1712366e-01 -1.0734608e-01 -2.2374592e-01 -8.2795139e-02 6.4557272e-03 + 1.4631500e-01 3.2456838e-01 6.1776864e-02 -3.8993928e-02 -1.4197879e-01 -7.9888865e-04 -6.8882581e-03 + 2.1449980e-01 3.1057081e-01 -2.0872934e-01 -2.5904297e-02 -1.8844354e-01 -3.9657527e-02 7.3601682e-02 + -1.5166751e-01 1.0854981e-01 9.8682633e-01 -3.8923822e-02 -2.1258492e-01 1.2582174e-01 1.5339961e-01 + 2.6793314e-01 4.0894236e-01 -1.3480601e-01 -2.8736432e-02 -1.7907161e-01 -5.5970035e-02 5.2911468e-02 + -1.0546603e+00 -8.2891109e-01 -9.9594158e-02 -2.9997272e-03 -2.6174879e-01 -3.9568337e-01 -3.9853583e-02 + 1.8142432e-01 1.0994587e-01 -4.1051652e-02 -4.2515140e-02 -1.5831131e-02 3.2730461e-02 -4.1154891e-02 + 3.0926202e-02 -8.9978592e-03 2.0131876e-01 2.7821251e-02 2.6439130e-01 1.5637058e-02 -8.2165364e-02 + 1.1519785e-01 -2.0661474e-01 -7.9908982e-02 3.4874943e-02 1.1949745e-01 -1.2199532e-01 5.4242709e-02 + 4.9287496e-01 -1.0514380e-01 2.8308999e-02 -2.8737626e-02 -3.2893383e-01 -3.6643326e-01 5.5037088e-01 + 3.7125744e-03 1.2994779e-01 -4.8635028e-03 2.9939858e-02 1.0092511e-01 4.3447277e-02 -1.4084782e-02 + -7.9460923e-02 2.2855483e-01 9.5619790e-02 2.1322060e-02 6.5289759e-02 6.9725702e-02 -4.0301541e-02 + 1.5424365e-02 -3.4907544e-01 8.4152029e-02 -2.7489790e-02 -2.3991113e-01 -7.3314504e-02 2.1902344e-02 + 6.3637329e-02 1.8678483e-01 6.0707662e-02 -3.2826913e-02 -1.6996668e-01 1.0143385e-01 2.6777905e-02 + -1.2660431e-01 -1.5283509e-01 -1.7264860e-02 1.0099290e-02 1.2283103e-01 1.7885611e-02 -2.7204862e-02 + 1.4357639e-01 3.7392997e-01 -3.6293704e-02 -5.9898635e-02 -1.8829445e-01 -1.2263752e-02 -5.9186064e-02 + -4.5423895e-01 9.5153248e-01 -7.0763982e-01 2.6219446e-01 -6.1087924e-01 6.8972950e-02 -4.2055389e-01 + -1.1278058e-01 -1.5606498e-02 -5.9602567e-01 2.1856263e-01 -8.7039602e-01 2.8614034e-01 -3.1634587e-01 + -1.3789807e-01 2.4094148e-02 4.5488693e-02 8.7863176e-03 1.3578762e-01 7.3031283e-03 2.3871830e-02 + -6.8235041e-01 2.2614016e-01 -4.3192916e-02 1.7925487e-01 4.6974550e-01 6.5839245e-01 -5.8349278e-02 + -1.0034673e-01 -3.2040156e-01 3.3205516e-02 3.5706072e-02 1.6457308e-01 -4.6844045e-02 -1.0585852e-02 + 3.2080735e-01 -1.2899274e-01 -1.6267018e-01 5.6956023e-02 4.7908211e-01 2.4522033e-01 -5.0651603e-02 + 1.6210741e-02 1.5062089e-01 1.1571416e-01 -2.0766959e-03 -2.4953424e-01 -9.6785495e-02 6.0105582e-02 + 1.9596457e-01 1.6763107e-01 -1.0315592e-01 -3.0898201e-02 -1.2315842e-01 -2.1007893e-02 -6.2719876e-02 + 2.6906098e-01 -1.0862026e-01 -4.7478560e-01 2.7931397e-01 -5.7634046e-02 7.1293797e-02 -7.8604965e-02 + 1.2109552e-01 2.6571931e-01 8.3429572e-02 -5.0579882e-02 -1.9172489e-01 2.0936092e-02 -6.1767148e-02 + -3.7253551e-01 -3.9590926e-01 -4.6283425e-01 1.1174201e-01 5.7681636e-02 2.2205130e-01 2.7668575e-01 + -1.4574374e-01 -3.0505891e-01 1.6285919e-02 1.3704119e-02 1.1006615e-01 -1.5021602e-02 -1.8313043e-02 + -1.5658153e-01 -3.9748628e-01 4.0676075e-02 3.6978671e-02 1.5373683e-01 3.3696084e-03 -4.5023552e-02 + -1.5361538e-01 -9.1522819e-02 3.2669621e-02 4.2166225e-02 7.9630915e-02 1.1551533e-02 -8.0511741e-03 + 6.5968388e-02 -6.3776869e-02 2.4062408e-01 -2.2655227e-01 1.8544068e-01 -9.2974722e-02 8.7360332e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_IW_G_5.txt new file mode 100644 index 00000000..95978e2e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_IW_G_5.txt @@ -0,0 +1,41 @@ + 4.8141749e-03 6.3533140e-02 -8.5297494e-02 1.1699746e-01 2.6308679e-01 2.0714792e-01 -1.9828962e-03 + 1.5716511e-01 -5.7711097e-02 -7.2990457e-02 -4.3487331e-02 -1.6782674e-01 -9.3285616e-02 -5.4484258e-03 + 4.2568627e-01 -3.5955322e-02 -1.6544508e-01 -1.0506535e-01 -8.4648120e-02 -1.2232182e-01 -1.0882598e-02 + 2.2756934e-01 -2.7681935e-01 -1.4087300e-01 -3.8501064e-01 1.8181221e-01 -2.4794558e-01 1.2383539e-01 + -1.4808903e-01 1.5060539e-01 -1.8760725e-01 3.5521788e-01 -1.6580289e-01 2.3119931e-01 4.8444003e-02 + -1.8540625e-01 -2.5639483e-01 -1.7200264e-01 8.6450487e-02 8.1253215e-02 1.5063422e-01 -1.3648302e-01 + 1.1404755e-01 1.7866882e-01 6.7348939e-02 -1.2163937e-01 2.4754366e-02 -2.4819807e-01 5.1699951e-02 + 3.2744270e-01 -2.4771697e-01 3.5941577e-01 2.4476450e-03 -1.9990976e-01 -1.8172905e-01 3.4434304e-01 + 1.0964493e-02 8.5294646e-02 1.1674938e-01 -7.1291824e-02 -2.1429038e-02 -1.0923482e-01 -8.1817207e-02 + 4.0848817e-01 -2.9913643e-01 1.5546991e+00 -7.5009528e-01 3.5285480e-01 -1.9586360e-01 -1.0562582e-01 + -4.7073465e-01 1.8162387e+00 1.0120976e+00 4.0395144e-01 5.3931233e-01 -4.6844416e-01 4.1713113e-01 + 1.1503380e-02 -5.2457551e-01 -6.5028206e-02 -2.5573949e-01 1.5672924e-01 -8.0408231e-02 -9.0915249e-02 + -7.9664891e-02 -2.2944170e-01 2.3171475e-01 4.4926667e-02 -9.5075423e-02 -3.4368067e-01 -2.6727740e-01 + -2.5233868e-01 -2.5648219e-01 1.2579125e-01 4.3170906e-03 1.4214459e-01 7.5634572e-02 -9.2170520e-02 + -2.8374809e-01 -7.7613792e-01 -1.3033835e-01 1.5525512e-01 -6.8337325e-02 -3.0483959e-01 3.3188062e-01 + 3.2467475e-03 1.4417764e-01 -6.0702841e-02 -1.3407003e-02 2.3971948e-01 6.6711829e-02 -1.3104968e-01 + 1.5778160e-01 -9.1640753e-02 -3.2978833e-01 8.1672125e-02 1.8247549e-01 6.1633962e-02 -5.3021658e-02 + 1.3636771e-01 4.5420104e-01 -8.4051114e-03 -9.0270317e-02 -1.6998380e-01 -1.2426219e-01 -2.8479455e-02 + 2.6234549e-01 5.7234595e-02 1.2138159e-02 1.7741079e-01 -3.3142209e-01 6.6206650e-01 -1.0024158e-01 + 6.4176479e-02 4.0046054e-02 -3.9826089e-02 -1.3796792e-01 -4.6665104e-01 -7.9818845e-02 -4.7475685e-02 + 4.4925821e-01 3.7737781e-02 3.2084923e-01 -4.2497631e-01 9.6765105e-02 -2.7411837e-02 -1.5443501e-01 + -2.6092849e-01 -3.7458305e-01 1.9338407e-01 4.6304030e-02 4.9286821e-02 -1.6373173e-02 6.1065730e-02 + -7.4244553e-01 6.5387922e-03 5.3295037e-01 5.6653958e-01 6.6902693e-01 -1.8811425e-01 -4.4251706e-01 + 3.0395653e-01 2.5013143e-01 1.0582409e+00 -1.6222713e+00 9.4279224e-01 1.5658574e-01 6.1265901e-02 + 2.3975326e-01 2.0564636e-01 1.0477180e-01 2.1237216e-02 -2.1340035e-01 -1.2518976e-01 1.6092194e-01 + -1.1168763e+00 1.0084466e+00 -3.0969812e-01 -2.7310981e-01 1.6418990e-01 6.9211975e-01 -2.8179484e-01 + -8.0177377e-03 1.5160571e-01 -2.2467489e-01 -6.5146636e-02 -1.2511181e-01 6.6449710e-02 -6.3258869e-01 + 6.8871268e-02 -4.0565324e-01 -1.4999453e-01 -1.4076816e-01 1.1597078e-01 -3.6948143e-01 4.1179345e-01 + 5.2154136e-02 3.0202989e-01 -3.3297499e-01 5.9509329e-01 1.0414455e-02 -2.5583550e-01 -1.5851412e-01 + -2.0428466e-01 -1.4801368e-01 -1.6707752e-01 2.0889646e-02 5.7678837e-02 1.0240364e-01 -1.9052377e-01 + 7.7499132e-02 3.0700699e-01 6.1775168e-02 2.3879083e-02 9.5137366e-02 1.7581900e-01 -4.0381837e-03 + 1.8031653e-01 -5.9395356e-02 2.0485584e-01 4.8324556e-02 1.5616424e-01 -2.3430672e-02 3.9701158e-01 + -1.1955213e-01 -2.4382300e-01 1.9009251e-02 -1.1769353e-02 2.4910153e-01 1.8243216e-01 -5.6091554e-03 + 3.6837199e-01 1.0050697e+00 7.3846460e-01 1.1866718e-01 -1.3450044e+00 5.3287560e-02 -8.9942647e-01 + -6.0326955e-01 8.4021816e-02 5.7649247e-01 2.8795390e-01 -2.4064971e-01 1.0240126e-01 -6.7285293e-02 + 6.7249307e-02 8.7780537e-02 -1.1691245e+00 9.8604285e-02 -5.2826507e-01 -1.3000362e-01 -4.8571788e-01 + -7.2712582e-02 -1.8741751e-01 1.8505853e-01 2.9687508e-01 -2.2553517e-01 1.6579839e-01 -7.9536033e-02 + -1.5028922e-01 -1.8797364e-01 2.7942052e-02 4.2714638e-02 3.6470413e-01 -3.8253731e-02 3.6959173e-02 + 1.6272257e-01 3.1849515e-02 -1.2929142e-01 -6.4864077e-02 -5.2316385e-03 -2.1524089e-02 8.0220087e-02 + 1.5358587e-02 1.3311462e-01 1.2056758e-01 4.3973232e-02 -1.7759911e-01 -2.4754976e-01 -5.1725871e-02 + 1.7529452e-02 2.5754762e-01 -4.6743281e-02 2.9071241e-02 -2.9880670e-01 -3.2361885e-01 4.2148608e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_F_1.txt new file mode 100644 index 00000000..a8143e90 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_F_1.txt @@ -0,0 +1,19 @@ + -3.1729812e-02 -2.6388400e-01 1.3931143e-02 -1.4314452e-02 -2.1274127e-04 -2.9439969e-02 5.8751329e-02 -7.2183898e-03 6.3599206e-02 -8.8401273e-02 -6.2206326e-03 1.2755346e-02 -1.7150253e-01 5.4917792e-02 2.4995944e-02 -4.1409925e-02 -1.3273661e-01 -2.0622842e-02 2.9301308e-02 2.3675588e-02 -2.0306486e-02 1.3267146e-02 2.9793674e-01 -9.8625360e-02 4.1605266e-01 -3.6090378e-01 -9.1216697e-02 4.5764044e-02 5.7384362e-01 -1.6167638e-01 1.1172776e-02 -2.2597797e-01 -2.1610054e-02 1.5944728e-02 6.0156409e-02 -2.2159111e-02 + -9.6203984e-03 8.8797991e-02 -8.1140342e-03 -2.6223122e-01 -1.7832871e-02 2.8260235e-01 -2.0975876e-01 -2.8892802e-02 -1.6523811e-01 2.8298789e-01 -2.3697071e-01 3.5116885e-02 5.4847092e-02 5.1159309e-01 -1.6957494e-01 -8.4121867e-02 -1.2308854e-01 -3.3926778e-03 -2.7665690e-01 -2.0653702e-01 8.1787884e-02 3.2339790e-01 -1.1314187e-01 -2.1049625e-01 5.5379952e-01 -7.1529861e-01 2.2540290e-01 -1.4446391e-01 2.4617643e-02 9.8497060e-02 2.7120004e-01 -7.6706753e-02 1.7124515e-01 2.9360838e-01 -3.0629319e-02 3.4825316e-01 + -3.2876148e-02 -5.9141628e-02 -1.0304015e-01 2.4223840e-02 3.0549320e-02 -3.9708087e-02 3.2122090e-03 -6.1622229e-02 -3.3479459e-02 -2.4668088e-01 3.0683820e-02 -1.9007460e-02 9.7467556e-03 4.4021384e-02 3.0670404e-02 3.5755952e-02 -8.8395080e-02 5.4291691e-02 -5.8671992e-03 3.3244694e-02 4.0185550e-02 3.2463934e-03 -3.4505378e-03 -6.2674742e-02 3.3503743e-01 1.5757423e-01 4.9095454e-02 1.0639569e-02 5.5046445e-02 2.8425147e-02 -1.9084591e-02 -6.4885739e-02 -2.0172778e-03 5.9331129e-03 -1.6792711e-02 -1.4930520e-02 + -2.7654500e-02 -2.9363103e-02 -2.8620501e-02 -5.0732969e-03 6.1775898e-03 -5.3292092e-03 -7.8057125e-03 -1.8611451e-02 -2.8917263e-02 -4.4101349e-02 3.1503843e-04 2.3292229e-03 -6.1720271e-04 2.8725032e-02 4.0390026e-03 4.2909255e-03 -2.7963778e-02 9.2737026e-03 -1.5002603e-02 3.7298015e-03 -3.1164680e-04 1.1493220e-02 -4.1303319e-02 -1.6162343e-02 7.7123184e-02 1.1445349e-01 4.0238385e-02 3.8219790e-03 4.1235655e-02 1.2194206e-02 3.2318604e-03 -2.0314091e-02 6.6012406e-03 1.7394657e-02 -1.0318532e-02 8.7265543e-03 + 2.7200352e-02 -1.2586236e-02 3.0137660e-02 1.8764831e-03 -3.2587691e-03 1.3364621e-02 1.4203387e-03 8.4278813e-03 1.9341505e-02 6.2953594e-02 -5.1242209e-03 -1.9456796e-03 -4.0003931e-02 -1.9985804e-02 -1.0381735e-02 -8.4918450e-04 2.9622540e-02 -1.3311842e-02 1.1225494e-02 -4.4087673e-03 -9.7844534e-04 -1.1826454e-02 3.1179371e-02 1.4514347e-02 -7.1360916e-02 -1.1788844e-01 -5.7777375e-03 5.4316296e-04 -3.9728852e-02 -2.0862052e-03 -4.0456424e-03 2.9165191e-02 -6.8069800e-03 -1.4103637e-02 5.7570830e-03 -7.6915765e-05 + 9.7972661e-03 -8.0242462e-03 1.1447634e-02 5.6870114e-04 -7.2947574e-04 6.3809079e-03 1.1915412e-03 2.0032743e-03 6.1369048e-03 2.5128433e-02 -2.5735179e-03 -1.0906881e-03 -2.0739106e-02 -6.7689012e-03 -4.9899386e-03 4.8358085e-04 1.1831573e-02 -5.1699286e-03 3.8757183e-03 -1.8073147e-03 3.3826365e-04 -4.7263176e-03 1.0840338e-02 5.3742894e-03 -2.6131951e-02 -4.5393179e-02 8.2063091e-04 4.2032148e-04 -1.8098788e-02 1.5219159e-03 -1.8054269e-03 1.2711096e-02 -2.6351686e-03 -5.2967131e-03 1.3605863e-03 1.1382025e-03 + 9.6717847e-02 -2.5559966e-01 4.3233507e-01 1.1726194e-02 1.0522974e-01 1.8394402e-01 2.6782866e-01 -4.0283597e-01 -1.4074820e-01 2.2781722e-01 -5.2430137e-02 -1.2088691e-01 -1.3037828e-01 4.3448910e-01 -1.0821139e-01 1.2636863e-01 -2.1391731e-02 3.5718997e-02 -1.2579079e-01 -2.6090464e-03 -4.0788044e-01 1.3885785e-01 -4.5046824e-01 -2.2286350e-01 4.4912073e-01 -6.5508855e-01 -9.2004816e-02 -4.8456698e-02 -2.5476016e-01 1.9198515e-01 6.0044499e-02 2.2593531e-01 7.7302477e-02 6.3671112e-02 -1.3976851e-01 1.6193037e-01 + 2.3065952e-02 8.7939658e-02 1.8009224e-02 1.5583508e-02 -6.3629842e-03 -1.1400907e-02 -3.4850594e-03 2.7365320e-02 4.8508435e-02 -3.2352306e-03 9.4997252e-03 -8.4834967e-03 4.6184654e-02 -3.3445745e-02 8.9359126e-03 -8.3240218e-03 8.6222421e-03 1.2954269e-03 2.6241992e-02 3.7588663e-03 -1.0753289e-02 -1.1295740e-02 6.3486887e-02 1.1699083e-02 -4.6541302e-02 -1.0167565e-01 -9.4199587e-02 -6.7159034e-03 -2.3460142e-02 -3.7873192e-02 -4.1609263e-03 -6.1374435e-03 -1.1096832e-02 -2.7069919e-02 2.4290055e-02 -2.7253257e-02 + 4.5368642e-02 -5.2007254e-02 4.7769930e-02 -2.6112700e-03 -3.0425753e-03 2.7766700e-02 -4.4502468e-03 -3.9514282e-03 2.0532004e-02 1.2754828e-01 -1.4040672e-02 -2.4983752e-03 -8.4104165e-02 -2.0505220e-02 -2.1662042e-02 8.5365840e-05 4.8636788e-02 -2.4787910e-02 1.2004161e-02 -7.6637146e-03 2.7784246e-03 -1.6801375e-02 3.5866273e-02 2.4372888e-02 -1.1708479e-01 -1.6815533e-01 3.2774938e-02 6.7076871e-03 -6.1026089e-02 -4.2858744e-06 -5.4866308e-03 5.0600802e-02 -1.2013696e-02 -1.5691767e-02 1.1492868e-02 1.1010169e-02 + 3.3458900e-02 2.4258284e-01 3.7436010e-02 1.4535459e-02 1.3685785e-03 2.7689437e-02 -4.7421567e-02 -6.0277701e-03 -5.5116076e-02 1.1975888e-01 8.2059041e-03 -1.4245036e-02 2.2477261e-01 -2.7722263e-02 -2.0262555e-02 3.6841193e-02 1.2709062e-01 1.4259714e-02 -2.8208701e-02 -1.7607366e-02 3.9091399e-02 -4.9769928e-03 -2.7806630e-01 7.8914010e-02 -3.7013165e-01 3.0251956e-01 3.8174146e-02 -3.9362480e-02 -4.6601256e-01 1.3071370e-01 -5.3865964e-03 1.9811453e-01 2.0418135e-02 -1.1598759e-02 -5.0403515e-02 2.1084313e-02 + -1.1364548e-02 1.5766712e-02 -1.4153200e-02 -5.4256388e-05 2.6021389e-04 -9.2116560e-03 -1.3340081e-03 -1.6500589e-04 -5.4379407e-03 -3.3510879e-02 4.0417072e-03 1.5190912e-03 3.0990472e-02 6.3711264e-03 7.2178502e-03 -1.3602024e-03 -1.4819451e-02 6.7597781e-03 -3.8373884e-03 2.2862108e-03 -1.3765782e-03 5.6631586e-03 -1.0762047e-02 -6.2674194e-03 3.1654654e-02 5.5330272e-02 -7.4185417e-03 -1.3279244e-03 2.2453882e-02 -3.6897873e-03 2.3258376e-03 -1.6929766e-02 3.2889071e-03 5.6427125e-03 -9.6051713e-04 -3.1937062e-03 + 3.0115313e-02 -5.2727169e-02 3.4287638e-02 -1.8034799e-03 3.9920112e-04 2.4278944e-02 -4.2471544e-03 -8.7822377e-03 9.8354117e-03 9.7126728e-02 -1.1804550e-02 -3.3835479e-03 -7.9789255e-02 -1.0810844e-02 -1.8989794e-02 3.8540094e-03 3.6199556e-02 -1.7929408e-02 7.4528269e-03 -5.1381041e-03 5.9779137e-03 -1.3289779e-02 2.2210554e-02 1.5609927e-02 -7.8232300e-02 -1.2479717e-01 3.7348162e-02 6.4542638e-03 -5.1539193e-02 8.4484682e-03 -5.5554027e-03 4.2093740e-02 -9.1228937e-03 -1.1199464e-02 4.8043204e-03 1.1892819e-02 + 8.3430551e-04 2.5287555e-03 3.9676888e-04 3.4299398e-04 -3.1370556e-04 -4.4043577e-04 2.0006402e-05 1.1087747e-03 1.2672125e-03 -2.6869002e-04 3.3961649e-04 -1.3673371e-05 1.9858690e-03 -1.1773874e-03 3.4293233e-04 -3.4649546e-04 3.2672676e-04 -1.9950747e-05 6.1932776e-04 5.7743322e-06 -3.3484513e-04 -2.5726436e-04 1.6528109e-03 3.6772783e-04 -1.1829167e-03 -1.9087965e-03 -3.0380387e-03 -3.0396020e-04 -5.1592642e-04 -9.4603049e-04 -3.7625819e-05 -1.6348082e-04 -1.3277464e-04 -6.2760067e-04 4.9952219e-04 -8.3260231e-04 + 2.6260621e-02 -4.5304054e-02 3.0897703e-02 -1.1505005e-03 3.3813028e-04 2.1319414e-02 -2.3076352e-03 -6.1764126e-03 9.1263851e-03 8.3016956e-02 -1.0074486e-02 -3.2060493e-03 -7.1380926e-02 -1.0191842e-02 -1.6669009e-02 3.5761595e-03 3.2189984e-02 -1.5693823e-02 6.9678483e-03 -4.5417597e-03 5.0205513e-03 -1.1958957e-02 1.9874965e-02 1.3603075e-02 -6.8581519e-02 -1.1435735e-01 3.0244862e-02 5.3019676e-03 -4.6114699e-02 7.8799894e-03 -5.0982596e-03 3.7624782e-02 -7.9317964e-03 -1.0450558e-02 3.4640154e-03 9.8322527e-03 + -3.1758215e-02 1.7327833e-02 -3.5432907e-02 -1.6127786e-03 3.7627176e-03 -1.5887586e-02 -3.0839189e-04 -8.7824091e-03 -2.2008253e-02 -7.6194749e-02 6.4209671e-03 2.0698972e-03 4.7195747e-02 2.2460442e-02 1.2333955e-02 1.1620690e-03 -3.4576339e-02 1.6086447e-02 -1.2653899e-02 5.1783280e-03 1.0255741e-03 1.3551926e-02 -3.5259023e-02 -1.7108183e-02 8.5362458e-02 1.3653200e-01 3.2215128e-03 -1.2652274e-03 4.4445354e-02 3.0752814e-03 4.5345615e-03 -3.4049878e-02 8.0427414e-03 1.5767302e-02 -7.1335969e-03 -6.6755501e-04 + 3.2134018e-01 -6.7034090e-01 -1.9791327e-01 6.0012486e-02 4.1364661e-02 -7.7772294e-03 2.8302386e-01 -2.0074312e-01 3.8282121e-03 -2.0663099e-01 2.1476305e-02 -5.3932823e-02 4.9314483e-01 -1.1973417e-01 -2.0024363e-02 1.0191999e-01 -1.8227666e-02 2.1639803e-02 5.1490111e-02 4.1231461e-02 -3.9216058e-01 -1.0967904e-01 -9.8571868e-02 1.4241391e-02 -2.0338371e-01 -6.4378281e-02 3.9657935e-02 6.2492107e-02 -2.2199967e-01 7.3403394e-02 -1.1885215e-01 2.1595656e-01 -8.0654127e-02 -8.6573500e-02 2.7808016e-02 -1.0800672e-02 + 6.8299936e-01 2.2411144e-01 2.3745723e-01 3.1224170e-01 1.2783275e-01 -1.6376021e-01 -2.9375652e-01 -2.1592281e-01 2.2429490e-01 3.6958802e-01 1.8886044e-01 -2.5674479e-01 3.7592468e-01 -2.2076727e-01 9.4493439e-02 1.9819268e-01 1.9582060e-01 6.2075652e-02 3.2894185e-01 2.8595847e-01 -3.1674575e-01 -3.1995198e-01 -2.5080677e-01 9.7772140e-02 -1.5661340e+00 1.9176714e-01 3.7563253e-01 3.0966290e-01 -8.9804826e-01 -3.2387586e-01 -3.0443658e-01 3.9514412e-01 -3.4982722e-01 -3.4603148e-01 3.4078913e-01 -2.2657887e-01 + 7.4158183e-03 3.8322285e-03 6.9384685e-03 1.3464935e-03 -1.3896879e-03 1.7554427e-03 7.0935368e-04 4.6204088e-03 7.0050442e-03 1.1513432e-02 -2.0640711e-04 -4.5682842e-04 -3.9639030e-03 -7.0615230e-03 -1.3592735e-03 -8.8800980e-04 6.7913029e-03 -2.6219997e-03 3.8375910e-03 -9.3869716e-04 -1.2823143e-03 -3.1203345e-03 1.0618936e-02 3.7846790e-03 -1.6394133e-02 -2.8807078e-02 -9.3239006e-03 -8.4563004e-04 -1.0316743e-02 -2.0939292e-03 -9.6923936e-04 5.7059422e-03 -1.6250047e-03 -4.5787165e-03 2.0839687e-03 -2.0939767e-03 + 1.8211338e-02 1.8844915e-02 3.6936618e-02 -5.1385838e-02 -3.0717206e-02 6.7222383e-02 7.8032287e-02 1.5041996e-02 -2.3852575e-02 2.2829466e-01 -5.4914557e-02 3.6659497e-02 -1.1966195e-01 -1.3066176e-02 -5.2058986e-02 -3.1937850e-02 7.9934392e-02 -4.7353104e-02 -3.2349009e-02 -5.2641097e-02 -7.4412172e-02 1.3612201e-02 -2.1569476e-02 5.6956843e-02 -3.1004251e-01 4.2999094e-02 4.3620285e-02 -2.4793713e-02 -1.0533436e-01 4.9918819e-02 3.3124829e-02 5.7552909e-02 2.1206853e-02 2.7128986e-02 -5.2943598e-03 6.1375961e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_F_2.txt new file mode 100644 index 00000000..ef0e734a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_F_2.txt @@ -0,0 +1,19 @@ + -3.2927072e-02 1.5703700e-02 3.2272553e-02 -3.0706412e-02 9.2653800e-02 -3.8223093e-02 -6.4224297e-04 -1.1384713e-03 1.7481602e-02 -1.1266895e-02 7.1360417e-03 2.0071230e-02 5.6245551e-02 -1.6861029e-02 6.2935330e-03 -6.9589285e-03 8.2502450e-03 4.4454858e-04 -3.8501929e-02 -2.9637442e-02 -7.4934098e-02 7.8786064e-02 -2.0472477e-02 8.7799595e-04 2.3416829e-03 7.4183538e-02 -4.8571094e-02 -2.6012881e-03 3.1687125e-02 3.1571878e-02 8.8332176e-03 9.6443426e-03 -4.4878016e-02 1.0344473e-03 -6.2677242e-04 -3.8730829e-02 3.6295695e-03 -2.0671121e-02 -1.7483380e-03 + 4.0334631e-02 5.7375705e-02 1.4658528e-01 4.6871589e-02 -1.1197008e-01 1.0650686e-01 1.4586249e-01 2.4064985e-01 4.9656318e-02 1.9683412e-02 2.0357043e-01 1.5102851e-01 -8.9920846e-01 1.6014077e-01 -3.7141204e-01 7.8639929e-03 -3.4970325e-02 2.5656992e-01 -4.7591748e-02 6.2363028e-02 1.7151253e-01 1.5022974e-01 5.2621219e-03 -2.8218157e-02 -1.0417119e-01 -9.4408642e-02 1.2974806e-01 6.4129304e-02 -2.4033710e-01 -1.9767785e-01 4.4948211e-04 -8.7754579e-02 -9.5555492e-02 6.7815986e-02 4.1489768e-02 -5.0152567e-01 3.0569892e-02 4.8884312e-02 -4.4416318e-02 + -8.6024394e-03 -1.7251263e-03 1.9800121e-02 -3.5619898e-03 2.1087604e-02 -8.9267683e-03 -2.1405539e-03 -1.0640748e-02 -1.8879772e-03 -1.2147894e-02 1.3906803e-03 -3.4962696e-03 8.5142973e-03 -2.4623953e-03 -1.6509721e-03 1.7271837e-03 1.1509384e-03 -1.1470820e-02 8.6896659e-03 -9.8122921e-03 -1.8692262e-02 1.0358291e-02 -5.1035069e-03 1.1322209e-02 1.3012724e-02 9.3002257e-03 -2.2454531e-02 7.2396387e-04 7.8040320e-03 -8.0328899e-03 1.3065971e-02 4.6501107e-03 -8.2800056e-03 2.6135382e-04 1.1627621e-03 1.2564288e-03 4.4305194e-03 -2.6336452e-03 -1.1949549e-02 + 7.0930374e-02 2.1939563e-02 -7.7092776e-02 3.4476022e-02 -7.6728365e-02 1.0524067e-01 -2.0126461e-03 -1.1856830e-02 4.1040994e-02 -2.4428301e-02 5.8587227e-02 1.3696120e-02 2.6756404e-02 -2.4987330e-02 2.6108574e-02 -4.4534283e-02 -4.0903481e-02 7.3563202e-02 -1.9252508e-02 2.1283898e-02 1.4362059e-01 -1.6240823e-01 6.4177185e-02 1.7541868e-02 -1.9976712e-02 -1.2485067e-01 7.1230128e-02 1.5850890e-02 -3.5312899e-02 8.8809253e-03 -5.9880863e-02 -1.5130828e-02 4.0993712e-02 3.0846167e-03 -3.0021715e-02 2.0204841e-01 -5.8457362e-02 -1.5744803e-03 3.5678419e-02 + 1.5600870e-02 3.9944669e-03 1.1617739e-02 2.2073588e-02 -1.7140378e-02 8.9968889e-02 1.1668441e-02 1.7177160e-02 4.8334683e-02 2.2284164e-02 6.3154635e-02 1.6568765e-03 -8.0960235e-02 1.4867148e-02 -9.5907513e-02 -8.4433455e-03 -7.5443233e-03 9.5883502e-03 -3.6419543e-02 -2.5653071e-02 1.8974562e-01 -9.1322641e-02 7.3084646e-03 2.2534637e-02 3.1505342e-02 -6.9481872e-02 2.9295881e-02 9.5880879e-04 1.1213222e-02 -6.1273532e-03 -2.9901681e-02 4.4703253e-04 -2.0677286e-02 -2.2797961e-03 -2.7671219e-02 3.5746860e-02 -2.9963743e-02 1.4642288e-03 2.3934621e-02 + -2.6337698e-02 2.4048773e-03 2.7639436e-02 -6.4888884e-03 6.4020260e-02 -3.2385826e-02 -7.2826495e-03 1.8114355e-03 -2.0823698e-02 -5.0376299e-04 -1.9926899e-02 9.2586912e-03 5.1071217e-02 -9.7000685e-03 6.5820364e-02 2.9208256e-02 9.0611253e-03 -1.6341689e-02 -1.0566379e-03 7.5900861e-03 -8.1081888e-02 1.1683747e-01 -1.3743403e-02 -1.3333478e-02 1.1849274e-02 2.8644782e-02 -1.0305872e-02 -1.3788333e-03 9.3406243e-03 3.1613124e-02 2.4805179e-02 -1.0247757e-03 -1.6964256e-02 -1.1167078e-02 2.8841822e-02 -7.8416909e-02 2.6901220e-02 -2.8165106e-03 -1.3415995e-02 + -1.3500202e-01 -8.0698751e-02 7.1818213e-02 -6.6462112e-02 1.0961274e-01 -6.7416971e-02 -2.6784445e-02 4.7427452e-02 -1.1708844e-01 1.4726396e-01 -1.6136519e-01 -8.5231861e-02 -7.7980571e-02 4.0625107e-02 3.3284506e-02 1.2789352e-01 8.3941457e-02 -9.1292103e-02 -4.3273825e-02 -1.2942740e-01 2.0888326e-01 2.3992127e-01 -1.2370512e-01 -3.2553032e-02 8.3321665e-02 8.5312626e-02 2.0430907e-01 -6.9825870e-02 -7.6574406e-02 -3.9708000e-01 5.1799504e-02 6.5616371e-02 -1.6050663e-01 -4.2606513e-02 -3.4417720e-02 -1.9954220e-01 6.8418836e-02 8.6674964e-02 1.2391729e-02 + 2.3443677e-02 -5.0487658e-03 -2.8764981e-02 1.5331900e-02 -4.9948108e-02 2.3291774e-02 1.4092621e-03 1.1195035e-02 -7.8276118e-03 5.2483561e-03 -1.0688239e-03 -6.3297019e-03 -3.6133609e-02 1.3947378e-02 -1.1171427e-02 -2.4512158e-03 -3.0421888e-03 5.1375112e-03 8.7485833e-03 2.2467442e-02 4.0406744e-02 -4.7533402e-02 2.3343376e-02 2.1613786e-03 -1.1383961e-02 -4.7014337e-02 3.8250779e-02 -2.0009804e-03 -1.5607961e-02 -2.2042493e-02 -7.9201374e-03 -7.4602336e-03 2.6628000e-02 -2.4132117e-03 -7.9682898e-03 2.0211371e-02 -6.3539891e-03 7.4333075e-03 7.6015932e-03 + 4.9830679e-02 2.0754411e-03 -6.6736495e-02 3.4752901e-02 -7.8300071e-02 7.3270814e-02 1.3215612e-03 3.0153762e-04 1.1968028e-02 -4.0588801e-03 1.7999068e-02 -2.7719032e-03 -3.1391051e-02 -3.8017731e-03 1.8822611e-02 -1.3469459e-02 -1.9531659e-02 3.4287183e-02 4.4450779e-03 3.0538975e-02 1.1712498e-01 -1.1864611e-01 3.6330145e-02 -7.1920069e-03 -1.2335910e-02 -1.0244701e-01 7.5482202e-02 8.0960086e-03 -2.1568242e-02 -3.6569150e-03 -3.9797408e-02 -1.5712752e-02 5.1168038e-02 -5.8526462e-03 -1.3179133e-02 1.0045235e-01 -2.9056962e-02 3.7335259e-03 2.2362688e-02 + -1.9818046e-02 -1.5898055e-02 5.5464791e-03 -3.3291110e-02 4.9015339e-02 -2.0096069e-02 6.6228284e-03 4.1969946e-02 -1.3786594e-02 4.7740987e-02 -4.7881301e-02 3.3218826e-03 -2.9960466e-02 9.1686796e-03 6.2277544e-02 2.8888872e-02 3.2806740e-03 -1.1480445e-02 -1.5503670e-02 -2.6762916e-02 -2.6130572e-02 2.8860571e-02 -2.6053086e-02 -3.1045894e-02 2.5039891e-03 4.5975775e-02 -1.7201263e-02 8.2012733e-03 2.5772916e-02 1.4268435e-02 -3.1158811e-02 1.6429771e-02 -1.3574171e-02 -9.9763701e-03 1.0439819e-02 -1.9055782e-02 -1.0743924e-02 1.1879958e-02 2.6262178e-02 + 1.0798109e-02 -3.1562319e-03 1.1339965e-01 4.4866000e-02 -1.0376674e-01 -6.0351303e-02 -3.2349280e-02 -4.3901304e-02 -4.2702767e-02 -2.2009719e-01 1.6351090e-02 -8.1595458e-02 7.9012406e-03 -1.2698091e-02 -1.1528645e-02 -7.9409066e-02 -2.3527300e-02 -8.6341224e-02 4.9658350e-02 -3.9511448e-03 -1.2625391e-01 6.7305951e-02 1.7015527e-02 5.9949130e-02 -1.6530837e-01 2.5469476e-02 2.7360887e-02 4.1544112e-03 5.9301178e-02 -2.1773690e-01 1.1406317e-01 -2.3582354e-02 -6.5051286e-02 2.3126065e-02 -8.6411890e-02 -1.8010894e-02 5.8932508e-02 -1.0329763e-01 -6.6799969e-02 + -4.3674239e-02 1.8935597e-01 2.6693865e-02 -1.2677008e-01 3.8234112e-01 2.5819182e-01 -9.6630185e-02 3.2588580e-01 1.5557199e-01 2.0131958e-01 1.4682061e-01 1.8812206e-01 1.6126536e-02 -3.2524575e-01 5.6217362e-01 1.9308310e-01 -9.7704510e-02 1.5979567e-01 -6.8940703e-01 -9.4585548e-02 3.9045537e-01 2.7918561e-01 1.5699268e-01 1.7921608e-01 1.6594830e-01 -2.8904257e-01 -3.1098792e-02 8.8762407e-02 2.3268133e-01 4.5507006e-01 -1.9832932e-01 4.9807088e-02 -1.4587136e-01 -1.0794981e-01 1.8972943e-01 -1.6201860e-01 -3.0539475e-01 8.9373565e-02 3.0529173e-01 + -1.6216121e-01 9.4688028e-02 -3.2310964e-02 -6.4199341e-02 -2.0771516e-01 -1.2765154e-01 -1.3632259e-01 -1.3668405e-01 -5.9607386e-03 5.7171256e-01 2.2757334e-02 9.4587986e-02 2.4296140e-01 -3.1479562e-01 -3.0166778e-01 4.2522462e-01 -6.9840232e-02 2.0700340e-01 3.7720969e-01 -2.3674546e-01 -4.4852100e-01 -4.5613865e-04 -2.2487799e-01 1.2591358e-01 -3.8924533e-02 3.1739726e-02 9.7883360e-02 3.1287474e-02 1.9677002e-02 8.0218445e-02 -7.7997130e-02 8.6510938e-02 -3.7294569e-02 1.3650729e-01 5.5436780e-02 -2.2629446e-01 -3.0492103e-02 1.7245180e-01 -4.0907679e-02 + -1.3447838e-02 4.2699031e-03 -2.3773520e-03 9.0407110e-03 -5.0499724e-03 2.5820308e-02 1.4624688e-02 -1.9505560e-02 -3.4404678e-03 3.8164437e-02 4.7429945e-02 2.6748412e-02 -2.2822957e-02 1.7046367e-02 -1.7377970e-01 7.8767841e-03 -7.0251257e-03 1.0890891e-01 -2.4778034e-02 -1.7187652e-02 2.3233808e-02 -1.2891470e-02 -4.5166798e-02 -1.3370081e-04 4.4124729e-03 4.3209144e-03 2.5469737e-02 1.0353776e-02 -1.6558779e-01 9.5254236e-02 7.4911228e-03 1.1936615e-03 -1.3057316e-03 4.4757089e-02 -5.6706772e-03 6.3573742e-02 1.2240918e-02 1.2343681e-02 -2.7075927e-02 + 8.9460114e-03 -5.2925803e-05 -1.9066606e-02 2.6781817e-03 1.5922058e-02 1.2380913e-02 5.1828903e-04 -1.5144042e-02 1.5830748e-02 -3.9502971e-02 6.9176080e-03 -1.5135033e-02 1.0482579e-03 -6.3871426e-03 1.4475922e-02 -2.4833636e-02 -6.0915929e-03 -1.2755570e-02 -8.8423697e-03 -6.0329490e-03 3.4388345e-02 -3.2608244e-02 1.3912139e-02 4.8473887e-03 -9.3949723e-03 -6.6038309e-03 -9.5577563e-03 1.2835327e-03 2.6776354e-02 -8.2753573e-03 -7.5958208e-03 8.2023762e-05 6.1414781e-03 -1.2398649e-02 -1.7312533e-02 2.4136300e-02 -1.4831179e-02 -1.8627045e-02 5.7426300e-03 + 1.6994158e-01 -2.5093200e-02 -5.5228239e-01 5.1261238e-02 -7.6889542e-02 -3.0107411e-02 -4.0811191e-02 -1.3242502e-01 -5.9446909e-03 -8.2539877e-02 -5.0397494e-02 -9.3724647e-02 -2.8732073e-02 -1.2002038e-01 1.3475334e-01 -6.8395039e-02 -4.3339680e-02 -1.3095923e-02 2.1954497e-02 1.5508245e-01 -4.2344985e-01 -1.3001405e-01 7.7361385e-02 -1.5200191e-02 -2.6447911e-01 -5.7181851e-02 2.5936711e-01 6.9934838e-03 6.3544195e-01 -4.2947823e-01 -4.7926438e-02 -4.5447262e-02 4.5276689e-01 2.7237032e-02 -9.0669752e-02 9.7281515e-02 -2.6259797e-02 -1.3017509e-01 1.9481828e-02 + 5.9161206e-02 2.5626261e-03 -4.2627992e-02 4.9500730e-02 -1.3539860e-01 7.8889632e-02 7.1301403e-03 1.9948640e-02 8.1115676e-04 1.1472177e-02 2.2044460e-02 5.0465065e-04 -1.4009590e-01 6.2738596e-03 3.4086912e-03 3.5424604e-03 -2.5005228e-02 2.9663969e-02 5.8983254e-02 3.7932227e-02 9.0148451e-02 -1.3039873e-01 4.2036406e-02 -1.9136426e-03 -2.5613674e-03 -1.2893833e-01 8.5367562e-02 1.2756475e-02 -6.9298930e-02 -3.5433371e-02 -3.8440645e-02 -2.3921152e-02 6.3903523e-02 2.4577795e-03 -1.4896998e-02 7.6925699e-02 -2.8621890e-02 1.3506735e-02 2.0161623e-02 + -4.6190855e-01 -1.5701252e-01 5.4757328e-01 -2.4642504e-01 5.2487636e-01 8.5279630e-02 -9.1812984e-02 1.6434452e-01 3.8939282e-02 2.5661181e-01 -1.9464996e-01 -2.0153784e-01 1.0121030e+00 -5.9178435e-02 2.2392138e-01 4.8200535e-01 3.1053420e-01 -4.1695989e-01 -2.1069355e-01 -2.6088327e-01 1.2932252e-01 4.9916032e-01 -4.2996580e-01 1.3551269e-03 6.8437763e-01 -2.4986337e-01 -4.6875666e-01 -1.2822292e-01 2.4935072e-02 1.0540003e-01 9.1758590e-02 1.5957678e-01 -3.3650118e-01 -2.5594810e-01 1.1862025e-01 -4.1015611e-01 1.6680192e-02 7.0269815e-02 3.9782337e-02 + 8.8102445e-02 -1.5680779e-02 -1.2423637e-01 4.2985942e-02 -5.2493071e-02 4.1850115e-02 -3.0779631e-04 1.1674780e-01 1.3213002e-02 9.2895902e-02 -6.2097390e-02 1.6543174e-02 -3.8322311e-01 -6.5934318e-02 8.9769528e-02 7.0801514e-02 -7.2887969e-02 -6.3497621e-02 8.1554454e-02 2.9284705e-03 7.9945191e-02 -3.3663311e-01 -2.0049852e-02 -5.4401018e-02 -1.0099500e-01 -5.8284361e-02 5.6312561e-02 7.7026043e-02 -1.3856642e-01 -9.3742353e-02 -1.5626245e-01 5.4647420e-03 1.6275478e-01 8.4857597e-02 3.0613371e-02 3.3220929e-03 -9.3700346e-02 4.1052858e-02 7.5230871e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_F_3.txt new file mode 100644 index 00000000..ca940852 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_F_3.txt @@ -0,0 +1,20 @@ + 1.0018459e-01 5.3592013e-02 -9.7972181e-02 -3.2555834e-02 -4.5040996e-02 1.2683178e-01 3.2014013e-02 -1.7272045e-02 -1.9578271e-01 3.5183722e-02 -7.0454555e-03 4.3690981e-02 6.4553936e-02 -6.6304442e-02 -1.5305918e-02 -6.4412897e-02 2.4299906e-02 2.0733096e-01 -3.1625037e-02 -3.0666428e-02 -2.0375157e-01 -1.0269311e-01 -5.0753505e-02 -8.3570477e-02 4.7841618e-02 9.4881524e-03 -2.7612032e-02 -2.4018804e-03 3.1954452e-02 -3.7588100e-02 3.9857188e-02 3.6090050e-02 -3.8401719e-02 1.6487889e-02 7.4200374e-03 -8.4036447e-02 -1.6946733e-02 8.1657216e-02 -2.2048951e-02 + -1.2405651e-02 -3.6222271e-02 2.1508534e-02 8.3869229e-02 2.7698826e-02 -5.7611312e-02 1.8224035e-02 -7.4650127e-02 -2.0595498e-02 -6.5555218e-02 7.2810426e-02 -1.0657300e-02 1.2316745e-02 3.0781878e-02 -9.7589177e-02 6.8763895e-02 4.5414384e-02 1.1628034e-02 4.2890615e-02 -5.5515085e-02 1.5710093e-02 -1.3260104e-01 2.1935520e-02 4.2979834e-02 1.0990057e-02 5.1096005e-02 -1.0418014e-02 -5.4108787e-02 -5.4609096e-02 2.4913805e-02 -2.9941562e-02 -4.0505977e-02 2.5304518e-03 -2.7277096e-02 1.7947354e-02 -7.0146441e-03 -1.8308165e-02 -3.5854049e-02 9.1450543e-02 + 5.3583334e-03 -7.3297733e-02 -9.1965988e-03 2.2849419e-01 2.6722578e-01 2.5585739e-01 9.4488043e-02 -1.3169209e-01 -5.5968081e-01 1.1127766e-01 -1.1308452e-01 -1.4356590e-01 2.4766522e-02 -1.4009680e-01 6.1087569e-02 1.1126945e-01 1.8001052e-01 -2.8202459e-02 1.0027006e-01 -1.1306814e-02 1.6847765e-02 -3.9844465e-01 8.3145989e-02 -8.5542808e-02 2.9826137e-01 1.2455226e-01 -9.1698677e-02 -1.0862123e-01 3.5171658e-02 -7.6857362e-02 5.7420167e-02 2.6658092e-01 3.3786187e-02 5.8644873e-02 -2.1130648e-01 1.8448222e-01 4.8567993e-02 6.1150552e-03 -2.0079087e-01 + 6.1297264e-02 3.9431721e-02 6.2721566e-02 -5.2165629e-02 -4.6060364e-03 -4.7324725e-02 -4.2035126e-02 1.0945159e-02 2.6740514e-02 -2.1650381e-02 8.2333771e-02 1.0636045e-03 -1.1602891e-01 5.4316687e-02 -2.1920215e-03 -6.4705985e-02 -1.1615767e-01 -3.7249061e-02 -3.4636106e-02 1.1561999e-01 -5.0305655e-02 7.3724101e-02 4.7406241e-02 1.0025152e-01 -1.1219424e-01 -2.6808920e-02 9.9486664e-02 -4.6395113e-02 -8.5337900e-02 -6.1000230e-02 -1.0934743e-01 4.2776117e-02 -6.7227732e-02 1.4890040e-02 1.2492803e-02 -3.6056424e-02 3.7649478e-02 -3.5122050e-02 5.9601397e-02 + -2.4332148e-02 -1.1941228e-02 -2.6308242e-02 -1.1989729e-02 -4.1758196e-02 7.5219795e-02 7.6737362e-02 -2.1559841e-03 -8.6935099e-02 9.3973097e-02 -2.4639597e-02 1.0415224e-03 9.4576693e-02 1.3756023e-02 7.2150105e-02 -1.6971284e-02 -7.7353291e-03 -5.1094730e-02 -9.7736085e-03 3.0821553e-02 -7.8419912e-02 -1.0987523e-01 6.5708398e-02 -3.6955578e-02 -5.1616905e-02 -1.0717030e-01 -3.3300432e-02 -2.3270298e-02 6.5057514e-02 -7.9123161e-03 4.4382520e-02 -8.5267922e-02 -4.9665451e-02 5.0504556e-02 7.3935669e-02 -3.7128841e-02 3.9772807e-02 -2.4993047e-03 4.1492278e-02 + 5.2665268e-03 -1.9306783e-02 -2.9012531e-02 1.9243292e-02 3.3844351e-02 3.7873273e-02 2.3681475e-02 -1.7608468e-02 -8.3962166e-02 3.3131075e-02 -9.2820285e-03 1.7687216e-02 6.0933706e-02 -1.4432091e-03 3.4228973e-02 2.2134021e-02 4.9331467e-02 5.1893867e-02 5.5112170e-02 -1.6971471e-02 1.4206972e-02 -5.1070848e-02 4.6663197e-03 -3.9799069e-02 2.2784036e-02 2.8701636e-02 -2.5835397e-02 1.5764235e-02 2.2372480e-02 -4.3000740e-02 5.5757700e-02 1.2381957e-02 3.5533924e-02 2.8422234e-02 -1.1076487e-02 3.3950911e-02 -1.6700252e-02 9.1489543e-03 -1.8461252e-02 + 2.3776703e-02 -5.1905638e-02 1.3885394e-01 -1.8217125e-02 6.1253153e-02 -1.5682929e-02 -1.0135713e-01 1.0704371e-01 -6.7643497e-02 -6.7859108e-02 5.8340348e-02 -8.9222044e-02 -7.7469659e-02 4.0672586e-02 -5.2282514e-02 -2.8578773e-02 -1.0454994e-02 -1.9258959e-02 1.1508940e-01 1.0949555e-01 1.9308737e-01 -9.1226067e-02 3.1122904e-02 8.7410220e-05 -4.3599218e-02 4.8651330e-02 5.4216327e-02 4.8483869e-02 2.5883967e-03 -6.7080574e-02 -1.1803557e-01 7.8253370e-02 3.5542584e-02 3.2761128e-02 -5.9489544e-02 1.1572620e-01 5.3476907e-02 -6.4571120e-02 2.9264955e-02 + -6.0861282e-02 -6.4169137e-02 1.1645767e-02 7.7495221e-02 8.1866390e-02 -6.6035255e-02 -3.5027603e-02 -2.1856056e-02 5.8232611e-02 -2.9321197e-02 1.0014345e-01 -5.6090163e-02 -3.9222958e-02 2.7054646e-02 -5.4817572e-02 1.0856668e-01 -2.8684214e-03 -8.7941424e-02 4.3601105e-02 -4.0332050e-02 9.6228828e-02 -1.1435602e-02 -2.8562919e-02 4.4759343e-02 4.1872666e-02 -1.0065892e-02 -4.0101166e-02 -2.2496884e-02 -3.9443189e-02 7.7703192e-02 -2.9850727e-02 -5.1924577e-02 -5.6194914e-03 -1.0722815e-02 6.2362139e-03 2.9427061e-02 -5.9548456e-02 -8.9152411e-02 2.6788608e-02 + -5.3595901e-02 1.7167696e-01 -3.2824253e-01 -1.1484349e-01 -2.5786246e-01 1.6312255e-01 1.2014888e-01 5.5909631e-02 3.9868191e-02 3.3661609e-01 -2.0315563e-01 1.9557363e-02 1.6838500e-01 -5.7493158e-02 9.0762525e-02 -1.7756044e-02 -2.3873425e-02 1.3034163e-03 -1.5606860e-01 1.2545269e-02 -1.0258675e-01 1.0529276e-01 -5.1637583e-02 -1.0272640e-01 6.6153516e-02 -8.9139469e-02 -1.5448649e-01 5.6400394e-02 1.5699800e-01 4.7866793e-03 6.8080276e-02 -4.4531375e-02 -1.4658126e-01 4.1258635e-02 1.0346866e-01 -7.0074203e-02 3.7037983e-02 9.4655167e-02 -8.2872862e-02 + -2.2935679e-01 -1.7288561e-01 7.9889730e-02 1.4686625e-01 2.4492378e-01 -1.0058463e-01 3.4182546e-02 -2.6764417e-02 2.1730165e-01 8.2429252e-02 7.4572803e-02 -1.9770044e-01 1.1040042e-01 2.0956784e-02 -1.0953336e-01 2.1406591e-01 3.2805767e-03 -3.0613146e-01 -5.1357558e-02 -1.2336216e-01 -6.6776321e-02 -5.1753183e-03 1.9728261e-01 -2.4959908e-02 1.1108731e-01 -1.5018259e-01 -9.9676926e-02 -8.6655980e-02 4.1001939e-02 1.5287002e-01 6.4001840e-02 -1.9704157e-01 1.7016093e-01 -1.9906848e-01 -6.7622901e-02 -1.4536338e-02 -3.9338079e-02 -9.7426186e-02 1.1702871e-01 + 2.7653406e-02 -9.7165342e-02 7.4606365e-02 1.4151127e-01 2.4633530e-01 -5.1550899e-02 -7.6722958e-03 -4.9545635e-02 -1.1415139e-01 -1.0515922e-01 8.8724694e-02 -6.9898040e-02 -7.1328733e-02 -1.8189092e-02 1.9065817e-02 3.6758184e-02 -8.4192693e-03 -1.3203903e-01 -5.1292195e-02 3.1226081e-02 -3.3746733e-02 -7.9585570e-02 1.7345923e-01 1.1326675e-01 8.0913062e-02 8.3200848e-03 3.3074899e-02 -1.1853975e-01 -1.3625043e-01 5.2513824e-02 -8.2994761e-02 4.7626966e-02 8.4789643e-02 -1.2519123e-01 -1.0996514e-01 -5.2174620e-02 -1.0099406e-01 -3.2050924e-02 8.7362088e-02 + 3.1390934e-02 8.1949476e-02 -1.9083610e-02 -4.6176110e-02 -1.4385419e-01 2.4024594e-02 -5.1396740e-02 1.8616183e-02 7.6066958e-02 -2.7135040e-02 -6.0538301e-02 3.4652844e-02 -4.4317351e-02 2.7422562e-02 -5.5958789e-02 -5.4452846e-02 2.2058548e-03 6.2738331e-02 1.3637556e-02 3.7267767e-02 6.5261625e-02 1.1407485e-01 -6.3865235e-02 -8.0298972e-03 -9.0160274e-03 1.0570442e-01 1.3387972e-02 5.0602863e-02 1.8124005e-02 3.6905852e-02 5.1033978e-03 -7.1537567e-02 3.7978558e-02 -1.4853940e-02 4.1903003e-03 1.3597732e-02 3.3517382e-02 7.5444149e-02 -1.2787653e-02 + -1.1150894e-01 -2.6420149e-02 5.1913220e-02 3.3554968e-02 1.9355868e-02 -4.4187548e-02 -7.9279746e-02 7.6432507e-02 1.4271068e-01 -3.5987322e-02 -2.1113507e-02 -9.1363988e-02 -6.5619890e-02 3.8918261e-03 7.1909479e-02 5.3869247e-02 -8.5905280e-03 -2.0186958e-01 -1.1381751e-02 8.3797059e-02 1.8343656e-01 3.9820430e-03 1.0591236e-01 3.7566016e-02 -7.2784973e-02 -2.4264903e-02 2.7729016e-02 1.2310782e-02 5.2507856e-02 1.2138627e-01 -1.2169561e-01 -5.5359507e-02 1.3173834e-02 -1.9861507e-03 5.9077070e-03 8.3678321e-02 3.0286873e-02 -6.8985958e-02 2.7480324e-03 + 2.7280324e-02 2.7374429e-02 1.8708410e-02 -3.9901336e-02 -1.6118517e-02 -2.2986589e-02 -2.1323776e-03 -4.5456423e-02 1.9713690e-02 -7.2693916e-02 2.2765891e-02 1.0852276e-01 9.2826425e-03 -3.5296873e-02 -1.0669984e-01 -3.6648715e-02 -1.7476261e-02 6.7868947e-02 1.6685972e-02 -1.7411279e-01 -2.1385567e-02 1.1080623e-02 -2.0330960e-01 -5.5920548e-02 3.5232166e-02 6.8238660e-02 -7.6585956e-02 3.8859058e-03 1.1705211e-02 -2.2869347e-02 7.3530066e-02 -3.4426599e-02 2.4492643e-03 5.4071669e-03 -3.2898924e-03 5.1342342e-02 -3.5241659e-02 8.3920601e-02 -1.3420647e-01 + -9.3178369e-02 2.8675610e-02 -2.6730668e-01 -4.1598026e-02 -1.0971573e-02 1.4211640e-01 1.9551852e-01 -1.6182244e-01 -2.1461698e-01 3.1196956e-01 -2.0494809e-01 -9.1583139e-02 8.7235460e-02 -3.3085978e-02 1.2879101e-02 3.2748987e-02 6.3965893e-02 -2.6973389e-01 2.5547257e-03 -1.5177090e-02 -1.4796529e-01 -2.9638179e-02 -6.4034390e-02 -4.0430251e-02 4.7015024e-02 -1.9137589e-01 -1.1254996e-01 -2.4214385e-01 -3.9031366e-02 8.3894181e-02 1.5517999e-01 -2.4948019e-01 -9.7547754e-02 -4.8165988e-02 1.0857512e-01 -1.0559258e-01 -5.4580026e-02 8.0589621e-02 -3.5009772e-02 + -1.0510562e-02 2.3063897e-01 -5.9943730e-01 -1.2940765e-01 -5.7545366e-01 3.7088627e-01 4.2931920e-01 -7.2541308e-02 -1.7485256e-01 6.1751974e-02 -4.6455818e-01 -7.9748517e-02 3.8420668e-01 -1.3461716e-01 -1.2544449e-02 -2.8649197e-01 3.5264082e-01 1.5251889e-01 1.6764260e-02 1.4898022e-01 2.5116536e-01 -1.0760087e-01 1.8280677e-03 -3.2636082e-01 -1.6926723e-01 1.7184543e-01 -3.5502686e-01 -1.5432108e-01 4.8951611e-01 1.2778014e-01 4.1913448e-01 -4.1194949e-01 -2.8304704e-01 2.5989946e-01 2.5455965e-01 -5.4845710e-02 1.0954189e-01 5.0212166e-01 -6.7961490e-01 + 5.5872526e-02 3.3484159e-02 -2.7175541e-02 -2.1651456e-02 -5.3844747e-02 -8.6252340e-04 1.9519385e-03 2.8303754e-02 2.1984612e-02 -9.1666233e-02 1.4603047e-02 7.5909223e-02 9.3557949e-02 -6.7469023e-03 -4.0629892e-02 -4.1366756e-02 1.0400080e-01 2.3629961e-01 -9.0361801e-04 -1.4572320e-01 -1.9037766e-03 -3.0959153e-02 -1.0519521e-01 -6.5384268e-02 -2.3475210e-02 1.4181507e-01 -4.1657386e-02 6.7040963e-02 6.1982928e-02 1.7464943e-02 6.8956375e-02 1.4293702e-02 6.0139649e-02 -2.6680084e-02 4.8355442e-02 -7.5372937e-02 -5.9941085e-02 4.5714300e-02 -7.0781961e-02 + 3.5686651e-02 -9.2296186e-03 -9.3232261e-03 6.9156148e-03 3.9794473e-02 1.1205371e-02 2.4668501e-02 -1.3924261e-02 -4.9617843e-02 2.2322535e-02 -2.5990705e-02 3.5776547e-02 4.8047293e-03 9.8591120e-03 2.9994613e-02 7.1704609e-03 -3.8369408e-03 1.9663882e-02 -7.0681699e-04 -2.5855274e-02 -6.2811462e-02 1.8874986e-03 1.3746935e-02 1.8371447e-02 1.0266004e-02 -6.6308627e-03 1.8552496e-02 2.9330483e-03 -6.1918124e-02 -1.2732850e-02 5.0713518e-02 3.8761729e-02 1.5686753e-02 3.7575063e-03 -1.7360861e-02 -2.9297852e-02 -3.0293128e-02 4.1275985e-03 2.7157599e-02 + -5.8767881e-03 1.3608619e-02 -2.8682029e-03 -2.3109632e-02 -3.6695234e-02 -7.2883640e-03 -1.3894450e-02 2.9296996e-02 3.0266159e-02 -3.8690488e-03 6.2464443e-03 -2.2597749e-03 5.1095692e-03 -3.1463439e-03 -4.7932400e-03 -2.0865397e-02 -1.2444114e-02 5.0406141e-03 -1.3101845e-02 5.4831885e-03 2.0982740e-03 1.1074504e-02 -1.3022472e-02 -6.8118746e-03 -9.5555294e-03 4.8284960e-03 -8.3126338e-03 1.5754483e-02 2.8956305e-02 7.0744829e-04 -3.1378588e-02 -9.7483057e-03 -3.4762340e-03 -8.1770585e-03 1.6135351e-02 3.1200533e-03 1.3123013e-02 1.3422013e-03 -3.9560462e-03 + 9.9958639e-02 2.8205498e-03 7.2363569e-02 -7.6391725e-04 9.2400588e-02 -3.2627655e-02 -2.4806829e-02 4.3513438e-03 4.1703658e-02 -1.5340415e-01 -3.1294841e-02 1.5869805e-01 -4.2302545e-02 3.5795961e-02 5.9300110e-02 -2.1105834e-02 -6.0240828e-02 6.7271992e-02 -2.7930741e-02 -1.9256633e-01 -2.0533733e-01 7.0841742e-02 4.0459143e-03 8.8274293e-02 1.5698243e-03 8.5993177e-02 1.2852434e-01 8.2117838e-02 -1.6324203e-01 3.3005338e-02 9.7817620e-02 1.2827707e-01 1.6563578e-01 -8.1917759e-02 -3.7168770e-02 -6.2345854e-02 -1.3145085e-01 4.4753430e-02 -1.9591890e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_F_4.txt new file mode 100644 index 00000000..f7aa8b65 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_F_4.txt @@ -0,0 +1,17 @@ + 5.6727016e-02 -1.3325953e-01 1.7587852e-02 2.4773790e-02 5.7950601e-03 -2.0735068e-02 -4.1320496e-02 1.2365277e-02 -3.8156366e-02 -1.1487656e-02 -3.5909896e-02 -2.2241734e-03 -3.2453173e-02 9.8204043e-02 1.3386198e-01 -2.4913191e-02 4.8823249e-02 1.8049906e-02 1.6338269e-02 1.1030896e-01 1.1370480e-01 6.6997450e-02 7.2973531e-02 3.5953826e-01 6.0107671e-02 1.2343092e-02 -1.9957635e-02 -2.7066838e-02 5.0567800e-02 -1.4452320e-01 5.6501985e-03 -4.5736635e-02 5.5666451e-02 -4.2774266e-02 3.6998044e-02 4.1911323e-02 -4.4488599e-02 -1.5489402e-01 3.3645309e-02 -2.0570135e-02 + 7.1557332e-02 6.5611284e-02 -6.1467878e-02 -6.7158733e-03 7.9873666e-02 -1.0828342e-01 -3.1173059e-01 -1.3283785e-01 -4.3503901e-02 -1.8014835e-01 1.8344702e-01 -1.7568050e-01 1.1449375e-01 -4.3047502e-01 2.3401690e-01 -1.2373034e-01 -1.5073560e-01 -2.6315086e-03 9.2616668e-02 1.0889629e-01 -3.4053066e-01 2.0695970e-01 1.4639894e-02 1.0722562e-01 6.4737069e-01 1.6227651e-01 -2.6190228e-02 -1.7645124e-01 2.7251138e-01 1.8401502e-03 3.9065577e-03 -9.0410648e-02 2.0179934e-02 6.4940487e-02 2.2175321e-01 1.2121115e-01 2.3662327e-03 1.8598745e-01 2.1496588e-01 -1.7304862e-01 + 1.5157985e-02 1.7906349e-02 5.8758065e-04 1.2938236e-02 3.2333405e-02 8.7224605e-03 1.7982081e-02 1.2012864e-02 2.3743019e-02 -3.7415171e-03 4.8465339e-02 -1.3415041e-02 -5.2186646e-03 -2.0323317e-02 -2.4076213e-02 8.2120911e-03 -2.9493763e-03 1.2435781e-02 2.6341808e-03 -7.5461084e-03 -3.4355277e-02 -9.8745242e-03 -1.6374749e-02 -1.1355423e-01 -6.8110182e-02 -1.8095835e-02 1.1445833e-02 1.7294893e-03 -5.3203082e-03 1.8208276e-02 -1.9734113e-02 1.1512781e-02 1.0745960e-02 5.5419825e-03 -5.3114170e-02 -2.6687207e-03 -5.2799568e-02 2.2178790e-02 -2.0441151e-02 1.2138023e-02 + -1.5940011e-01 7.2699558e-02 -1.9138088e-02 -1.5913523e-01 -3.0273772e-01 -4.6881270e-02 2.2060637e-01 -1.8267311e-01 -1.4566724e-01 -9.5257666e-02 1.6520572e-01 9.3815217e-02 1.4420692e-01 -1.1821014e-01 1.3404111e-01 1.2479450e-01 -1.5901140e-01 -1.4228603e-01 -6.9872698e-02 2.2530276e-01 -1.3791475e-01 3.9302149e-02 3.7369595e-02 9.9327694e-02 2.5750108e-01 3.8272795e-01 -5.4402949e-02 -1.6016939e-01 5.8774793e-02 -5.3311210e-02 1.3630975e-01 -3.4632265e-02 -1.1650077e-01 1.2703333e-01 3.0587313e-01 -1.2818131e-02 2.3270931e-01 1.8978336e-01 2.9277316e-01 -1.0537373e-01 + 1.0357015e-02 -3.8943259e-03 1.3185568e-03 2.1879958e-02 2.6825009e-02 5.1444978e-03 -2.7232951e-02 -1.1004481e-03 7.5922696e-03 4.9324307e-02 3.1977296e-04 -5.2585613e-04 -1.2727911e-02 -4.2355313e-02 6.2713727e-03 3.4736120e-02 6.7119613e-02 4.8606373e-02 5.5154560e-03 -4.2588872e-02 8.6005198e-03 -3.8235334e-02 2.9643436e-02 -8.4751377e-02 -8.8132555e-02 -1.6006356e-02 5.2718422e-02 1.8531981e-02 -1.3156361e-02 -1.1208067e-02 -2.7540778e-02 -3.6518813e-02 2.3227621e-02 -2.6624734e-02 -1.0656283e-01 2.3629013e-02 -2.2223328e-02 -7.4637697e-03 -5.2196175e-02 1.6002664e-02 + -4.6761095e-02 1.3846435e-02 5.5105219e-03 -4.0400117e-02 -7.0413321e-02 -8.3340446e-03 -5.2361920e-03 -9.9917785e-03 -4.2268552e-02 -3.3326957e-03 -3.0035388e-02 4.6000401e-02 2.5203627e-02 3.2944193e-02 3.2229074e-02 -9.3953241e-04 -2.1795737e-02 -9.9167113e-03 -1.0589995e-03 1.1397141e-02 2.5919732e-02 2.8353490e-02 2.4637602e-02 1.2405009e-01 1.7533163e-01 5.6152358e-02 -2.4786684e-02 -9.0114335e-03 2.3731617e-02 -7.0645286e-03 3.5405486e-02 -3.9334186e-02 -2.0983694e-02 2.9408049e-03 1.0231166e-01 2.9944358e-03 1.2236899e-01 -4.8245054e-03 6.3724482e-02 -1.1980173e-02 + -1.3596080e-01 2.4106053e-01 9.5185208e-03 -3.1116892e-02 5.8224995e-03 4.3663494e-02 9.5850599e-02 -3.8156515e-02 6.5479737e-02 1.6618316e-01 3.4524637e-02 -3.3715168e-02 1.6673005e-02 -2.9203316e-01 -1.5250833e-01 2.6213135e-01 -1.3583238e-01 1.6502366e-02 6.6633024e-02 -1.9270349e-01 -8.5412439e-02 2.8316622e-02 -1.4979017e-01 -4.3903221e-01 2.7521661e-01 -2.1690348e-02 6.0487262e-02 1.1226054e-02 -2.0111524e-01 9.2610095e-02 -3.8674887e-02 6.7289348e-02 -3.2018741e-02 -5.6742015e-02 4.7584940e-01 -6.6583502e-02 -1.1572190e-01 -7.3989252e-02 -7.7089256e-02 4.4731764e-02 + 1.3316850e-01 -2.3655533e-01 -9.1004803e-02 1.5342790e-01 4.4870003e-02 -1.7833064e-02 4.9378513e-01 2.0085255e-01 -4.3944813e-03 -4.0728377e-02 -4.7364255e-01 1.9127934e-01 -1.7853791e-01 -1.9801841e-02 3.1117377e-01 -1.1802993e-01 4.2001249e-01 9.0825820e-02 1.1030649e-01 2.8221211e-01 1.2198867e-01 -1.1775539e-01 1.4307744e-01 -1.8752155e-02 -3.5773568e-01 1.3544255e-01 -6.7885923e-02 9.3937526e-02 2.3608866e-03 -2.3053927e-01 -4.0596249e-02 -8.8676363e-02 2.1584388e-01 -4.3497575e-02 -8.2560549e-01 1.1504429e-01 -2.9131689e-01 -5.9996029e-01 -2.0793660e-01 1.1504473e-01 + -5.0836725e-04 7.0199190e-02 -3.7944551e-02 -5.3532640e-03 5.3698208e-02 4.6285447e-02 3.1333032e-02 -7.5139034e-02 2.3566043e-02 -7.1709839e-02 4.6974256e-01 3.3057777e-02 1.4443021e-02 5.8669828e-01 -6.6448520e-02 3.2583695e-01 1.4451001e-03 7.6400759e-03 -4.6191161e-02 -1.8645438e-03 -5.0642026e-01 1.3491738e-01 -7.2566776e-02 -5.5758858e-02 -7.0381645e-02 1.7093559e-01 3.7033026e-02 -7.3498198e-02 -8.3610030e-02 -4.5247792e-02 -3.4197563e-02 3.3283144e-02 5.0661433e-03 1.0373702e-01 -3.2196248e-01 -2.1001041e-02 -2.6160477e-01 2.2382859e-01 8.7195563e-02 -4.7517550e-02 + 1.5258995e-01 -1.7780452e-01 2.3184833e-02 2.5164480e-01 5.5428137e-01 1.3912285e-01 3.0226375e-01 1.9976672e-01 2.5342466e-01 1.4054958e-01 3.8266417e-01 -2.7853023e-01 -1.5959513e-01 1.8828945e-01 -5.0395034e-01 1.4148173e-01 2.9278072e-01 2.2625316e-01 -4.1517366e-03 -1.3926853e-02 -4.1603585e-01 2.5996292e-02 -1.5164020e-01 -3.6132594e-01 -5.0956648e-01 -4.9262962e-01 2.2437858e-01 2.1723209e-01 -2.6191379e-01 7.7690248e-02 -2.4627722e-01 2.1710631e-01 1.1729089e-01 -1.3116682e-01 -1.2039105e-01 -6.2012120e-02 -2.3226832e-01 3.0988238e-01 -4.0147085e-01 1.5188565e-01 + 2.4767622e-02 -2.3000767e-02 -3.4502959e-03 3.3356398e-02 2.9094623e-01 1.8188765e-02 -1.2321084e-01 2.7900566e-02 5.8315960e-02 6.3828790e-02 7.4235526e-02 -1.8985200e-01 -2.9253808e-03 -6.0347300e-03 1.5268786e-01 9.8698203e-02 4.7697447e-02 5.6269666e-02 3.5698404e-02 -4.5181267e-02 -5.8680732e-02 -2.9415938e-02 -3.5412271e-02 -1.7639011e-01 -4.6061548e-01 -9.1365327e-02 6.1040071e-02 2.8928089e-02 -8.8861393e-02 1.9115537e-03 -5.5097423e-02 2.6238067e-02 4.0675794e-02 -1.6867023e-02 -9.1456557e-02 2.7418271e-03 -2.3172407e-01 9.6756789e-02 -1.0114513e-01 4.4630760e-02 + -4.3153934e-02 4.1814004e-02 7.7472860e-03 2.6926791e-02 -6.5569633e-03 1.5974232e-02 -8.6043238e-02 2.4801061e-02 3.7251137e-02 3.3740678e-02 -1.7577789e-01 -6.3694109e-02 4.4935789e-04 7.7054550e-02 -2.8431165e-01 -4.8150468e-02 -3.2016563e-02 -4.9074599e-02 -4.0696860e-02 3.0980035e-02 1.0507070e-01 -8.7336890e-02 -1.1305307e-01 2.6945988e-02 -2.1734857e-02 -1.7348797e-01 -1.7574344e-02 8.5779014e-02 -2.4083490e-02 1.3367236e-01 6.7965767e-03 8.5418351e-02 -1.6994935e-02 -8.5208950e-03 -6.7616719e-02 -5.9006804e-02 4.5153979e-02 8.9089067e-02 2.8191964e-02 -2.0962876e-02 + -6.3047726e-03 4.2575193e-02 -1.1275972e-02 1.6089813e-02 2.6806159e-02 1.7243395e-02 5.6109019e-03 -3.9809414e-03 1.9696459e-02 -4.3737044e-03 4.7091881e-02 -9.4381414e-03 -2.0892414e-03 -2.6318925e-02 -4.0329826e-02 2.6724003e-02 -2.2135303e-02 5.1710232e-03 -5.5684741e-03 -3.4217062e-02 -4.8465948e-02 -3.0967717e-02 -2.4323122e-02 -1.7711624e-01 -8.4462193e-02 -1.2478068e-02 2.1348896e-02 1.5747614e-02 -2.7739248e-02 5.1143569e-02 -1.4833684e-02 2.2172185e-02 1.6157663e-02 2.1504035e-02 -8.2133024e-02 -1.5951964e-02 -4.5299094e-02 2.5453581e-02 -1.9680967e-02 6.7484804e-03 + -2.9639928e-03 -4.7851571e-02 -2.6541342e-02 -6.2229135e-03 8.3022623e-03 -2.2738366e-02 -5.0825587e-02 1.5018861e-02 -2.2667352e-02 -3.9590515e-02 -7.7184233e-03 9.9059748e-03 3.0977446e-02 4.5824218e-02 -3.8664711e-02 -5.8583317e-02 -5.0778311e-03 -7.4231310e-03 -1.4363585e-02 1.6112059e-03 3.2157615e-02 2.7138334e-02 2.2414323e-02 9.5474661e-02 1.8361996e-02 -2.2166680e-02 -1.8698099e-02 1.6028316e-02 1.4346889e-02 1.7930266e-02 3.7578359e-02 5.6091419e-03 -4.7122096e-02 1.7979315e-02 8.7606669e-02 3.7793457e-02 1.5622583e-03 6.9857636e-02 6.3562311e-02 -4.1198609e-02 + -2.3571324e-03 -5.7993600e-02 1.9183326e-02 -1.9325629e-02 -7.8834914e-02 -7.8541508e-03 2.7783725e-02 -3.0813046e-02 -3.9924758e-02 7.4151339e-03 -2.6872026e-02 6.7677875e-02 1.0128396e-03 8.5901097e-02 1.2447946e-01 2.8932338e-02 6.8410109e-02 -7.6172382e-03 -1.0863501e-02 6.8878086e-02 -5.3428244e-02 6.7224125e-02 3.4361220e-02 2.1726835e-01 8.0765446e-02 1.0682208e-01 7.3097126e-03 -7.0101004e-02 1.0693371e-02 -1.1547595e-01 2.0101868e-02 -1.0423897e-02 6.1039203e-03 -1.1471318e-02 1.4519689e-01 1.8101929e-02 4.9022179e-02 -7.5792598e-02 5.0177985e-02 -7.6916005e-03 + -4.7834986e-02 -2.8879999e-03 1.9373594e-02 -3.0605748e-04 -2.8799796e-02 2.1196552e-04 -5.7965294e-02 -2.1225434e-02 -1.9070617e-02 4.1551468e-02 -5.4518090e-02 -1.4770394e-02 2.5421977e-02 3.9667074e-03 3.9667615e-02 -1.8976432e-02 -1.0269574e-02 -8.5131592e-03 9.6562623e-04 -4.8265732e-02 1.1350798e-01 -3.7501351e-02 1.1475686e-02 6.7493415e-02 4.7069649e-02 -2.1841894e-03 -1.6429110e-02 8.1386742e-04 -2.2188543e-02 9.1639622e-04 2.2822421e-02 6.8353382e-03 -3.2836032e-04 -1.0169348e-02 1.3476662e-02 -2.9750565e-02 4.1990831e-02 -5.1903059e-03 1.1782587e-02 7.2887312e-03 + -3.2018691e-01 -2.9271719e-02 -5.7016506e-02 -2.6499724e-01 -3.2088051e-01 -2.2130869e-01 -2.9871894e-01 -2.3509714e-01 -2.7474747e-01 3.0456249e-02 -3.9719004e-02 3.3060421e-01 2.7435067e-01 7.6663726e-01 3.6479007e-01 -1.4019881e-01 2.2439544e-01 -1.8485939e-01 2.3611858e-01 1.8025153e-01 2.2509657e-01 -2.0852358e-01 2.3797226e-01 1.0501543e+00 4.6578596e-01 1.7297466e-01 -1.7744640e-01 -1.1171734e-01 1.2399812e-01 -1.9308306e-02 2.6690051e-01 -2.0425877e-01 -2.3148092e-01 6.6419889e-02 -4.2192208e-01 1.1288475e-01 2.3355578e-01 -4.8747254e-02 2.9257688e-01 -2.1144024e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_F_5.txt new file mode 100644 index 00000000..5ec33d3f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_F_5.txt @@ -0,0 +1,17 @@ + -1.2147219e-02 -4.3510799e-02 -7.7623502e-03 7.5221081e-03 6.7456602e-03 8.4589612e-03 4.0878222e-02 8.4369478e-03 -3.9931646e-03 -1.1381708e-02 -2.5655099e-02 3.2999148e-03 -5.7254716e-03 6.7035260e-02 4.4256737e-03 -3.2995140e-03 2.9631248e-03 4.3758021e-03 1.9806938e-03 1.1793037e-02 -1.0018925e-02 -5.0669728e-03 -7.6456461e-03 1.1908662e-02 -3.2814578e-03 -9.3897586e-03 -4.8968642e-03 -4.7161342e-03 2.4967997e-02 -9.5444299e-04 3.4453319e-03 -7.2601073e-03 1.5228038e-03 4.2814717e-03 1.8054093e-03 -3.6341059e-03 7.9969316e-03 4.2148773e-03 6.5593223e-03 7.3997560e-03 -2.0354225e-03 4.9678085e-03 1.9769440e-03 + -6.9252389e-02 -1.0689319e-01 -2.4697030e-03 -6.7731848e-03 -5.7601693e-03 2.3802224e-03 1.9165834e-01 2.3045218e-02 7.5220620e-03 -2.2992635e-02 -6.6134811e-02 -6.7514810e-03 -2.8170486e-02 9.8123876e-02 1.2808355e-03 7.6554662e-03 -8.8924524e-04 -1.0712309e-03 -2.3951463e-02 -5.4641184e-06 -1.5023657e-02 5.7005045e-03 -2.0637403e-02 3.7580800e-02 -1.8579580e-03 -4.4140175e-03 9.4813324e-03 -2.6402160e-03 3.1921902e-02 -8.8111523e-03 -1.0709087e-02 -7.5731098e-03 -9.1881346e-03 -1.3756568e-02 1.5151928e-04 8.1263293e-03 2.6609273e-02 -6.2292184e-03 1.0836073e-03 9.3222652e-03 4.1540253e-03 7.1444092e-03 -7.1592177e-02 + -4.6345283e-03 -1.1688314e-02 -2.0100602e-03 1.8946959e-03 1.7518159e-03 2.4979487e-03 1.3268800e-02 2.0563777e-03 -1.0450201e-03 -3.3739550e-03 -7.0100893e-03 9.0427323e-04 -2.4075048e-03 1.5726744e-02 1.2984102e-03 -8.7747293e-04 8.3840849e-04 1.1149479e-03 -2.0118895e-03 2.2232996e-03 -2.7722774e-03 -1.3453992e-03 -2.3797518e-03 3.4755633e-03 -9.0864824e-04 -2.5913318e-03 -1.2520595e-03 -1.1631432e-03 6.3280310e-03 -5.7080312e-04 8.6000293e-04 -2.0456523e-03 2.1896574e-04 9.9763767e-04 4.8787494e-04 -9.5907185e-04 2.7170954e-03 1.1241183e-03 1.7792326e-03 1.4141357e-03 -3.2956521e-04 1.2645603e-03 -1.4748691e-03 + -4.0383513e-02 -2.8639317e-01 -4.2674728e-01 1.1090107e-01 9.0279099e-02 2.0369719e-01 3.8779825e-01 -1.1585804e-01 -9.7646516e-02 -3.3132244e-01 5.8042231e-02 8.0599719e-02 -5.7193131e-01 5.1791495e-01 -1.9374775e-03 -7.9311454e-02 8.2833167e-03 -3.9882659e-02 2.5287787e-01 -8.9723975e-02 4.4187244e-02 -6.2717383e-02 -3.2834029e-01 -4.5305088e-01 9.0511446e-02 5.0306639e-02 -9.6465914e-02 1.4002164e-01 -4.6512059e-01 -3.5792708e-01 1.2029939e-01 2.1799534e-02 -7.2133280e-02 1.1063188e-01 5.2309316e-02 -8.7836211e-02 3.0918520e-01 6.0573714e-02 1.1637243e-02 2.3314165e-01 1.4753316e-01 3.4544913e-01 1.0063708e-01 + -5.7132447e-02 -1.3846381e-01 1.5221057e-02 1.5966596e-02 1.5536038e-02 2.7327919e-02 1.3043568e-01 2.5796859e-02 -1.6747017e-03 -3.0718866e-02 -1.1203198e-01 2.4929164e-03 -2.4627909e-03 2.2738023e-01 1.8596152e-02 -2.6971001e-03 6.8315301e-03 1.2753302e-02 1.2278669e-02 5.9492019e-02 -3.9523953e-02 -1.0967428e-02 -1.2823198e-02 1.0883741e-01 -1.6367419e-02 -3.1973325e-02 -6.2379771e-03 -2.0248894e-02 6.5075067e-02 1.4675002e-02 -2.2896244e-03 -2.9160620e-02 1.1706381e-03 -1.5243130e-03 -6.4860390e-03 -2.5734268e-03 2.1371464e-02 8.0063488e-03 2.1942866e-02 2.4996790e-02 -1.1788783e-02 -1.0008490e-02 -3.2197445e-02 + 4.3050380e-02 1.1178244e-01 9.0739346e-03 -3.6763821e-03 -4.3224024e-03 -1.0022666e-02 -1.5962759e-01 -2.6494490e-02 -2.8595231e-03 2.6899639e-02 8.1737764e-02 2.2421341e-03 1.6662810e-02 -1.5963107e-01 -8.3955190e-03 -1.9204407e-03 -2.5849531e-03 -5.5042655e-03 1.0624252e-02 -3.3916361e-02 2.4086504e-02 2.4456673e-03 1.7517163e-02 -6.2344795e-02 7.4090516e-03 1.5899253e-02 -1.5000732e-03 9.5367839e-03 -4.8849295e-02 -6.5836036e-04 5.6045911e-03 1.6044566e-02 3.3742721e-03 6.0606346e-03 4.0201521e-03 -2.5105281e-03 -2.2073711e-02 -8.6074358e-04 -1.0215244e-02 -1.9651667e-02 3.7152645e-03 -2.3065654e-03 3.4748650e-02 + 2.5441240e-02 6.7883487e-02 7.3668250e-03 -8.7192242e-03 -8.1102838e-03 -1.2572806e-02 -7.9953362e-02 -1.3811495e-02 3.8064867e-03 1.8165116e-02 4.3869747e-02 -3.1709533e-03 1.1352553e-02 -9.6370834e-02 -6.4739433e-03 3.1552306e-03 -3.5803480e-03 -5.4029192e-03 9.7628782e-03 -1.7576386e-02 1.5687277e-02 5.9128967e-03 1.2248904e-02 -2.6998208e-02 4.8547067e-03 1.3395807e-02 4.9964872e-03 6.5349856e-03 -3.4742940e-02 1.2650555e-03 -2.6159656e-03 1.1128047e-02 -2.4790430e-04 -3.2418440e-03 -6.7412735e-04 3.4538583e-03 -1.4222964e-02 -4.6544515e-03 -9.0506852e-03 -9.2409406e-03 2.3671599e-03 -5.3816027e-03 8.4800674e-03 + 9.9881822e-02 -1.9067507e-01 3.8321970e-01 8.9176492e-02 7.5920415e-02 6.0345256e-02 -1.2519635e-01 -2.0502172e-01 -8.6389721e-03 6.4397916e-02 -2.0171396e-01 2.3431355e-02 1.4896502e-01 3.9210485e-01 6.9582975e-02 -1.1552163e-02 2.4950990e-02 4.3135258e-02 2.4938846e-01 -7.3170217e-02 -9.1792438e-02 -4.1553783e-02 8.7732089e-02 1.2568010e-01 -6.3932160e-02 -4.3808652e-02 -3.7281668e-02 -7.1547032e-02 -1.7938097e-02 8.9198036e-02 3.5442803e-03 -7.4657116e-02 5.0505889e-02 4.7445765e-04 5.9499370e-02 -1.6224048e-02 -5.6899588e-02 3.6172173e-02 7.3128385e-02 3.6250183e-02 -4.6248932e-02 -6.2504203e-02 1.9319001e-01 + 3.1591839e-01 -2.7948022e-01 -8.6721868e-02 1.9755752e-01 1.7616905e-01 2.2888214e-01 2.4233302e-01 -1.1068101e-01 -6.7346205e-02 7.8829425e-02 -2.9476566e-01 6.5471580e-02 2.5314841e-01 1.4708387e-01 9.9958723e-02 -5.2351642e-02 3.6314807e-02 6.0564926e-02 -1.1970073e-01 1.2163271e-01 -1.3922117e-01 -1.0831236e-01 7.1263248e-02 -3.9829178e-01 -7.3282201e-02 -1.9410037e-01 -1.2012426e-01 -6.1249115e-02 -6.7258741e-01 1.6324529e-01 6.0730112e-02 -1.1411508e-01 2.5358082e-02 6.4207172e-02 4.8297817e-02 -6.6367054e-02 -1.8830874e-02 8.4948718e-02 1.2458377e-01 -1.9093922e-01 -4.7475124e-02 -2.6042933e-01 -5.6298213e-01 + -2.0559484e-02 -1.0972003e-02 2.3880608e-03 6.8415835e-04 5.6918053e-04 3.4263506e-03 2.9694952e-02 -1.0138733e-03 -1.1284866e-03 -6.7297832e-03 -8.2060354e-03 7.2149796e-04 1.6881128e-04 5.4963606e-03 1.7830418e-05 6.1592159e-04 1.4215747e-04 -7.7140123e-04 -1.8211637e-02 -4.8186602e-03 -2.4799264e-03 -3.2390587e-05 -5.3862627e-03 1.1502570e-02 2.9764314e-04 -1.4213958e-03 -2.9149134e-04 1.2764593e-03 -2.6781678e-03 -3.0939693e-03 7.8480906e-05 -1.3795053e-03 -3.4329109e-03 5.9762383e-05 2.3980302e-03 -2.5416645e-04 9.0256165e-03 -1.5512377e-04 5.5725604e-04 -2.9194314e-03 2.5831765e-03 2.2664328e-03 -1.3582245e-02 + 1.6871116e-01 -9.4958244e-01 2.3207811e-01 5.1401023e-01 4.5439457e-01 6.1978819e-01 1.1556251e+00 -3.9715645e-01 -3.5222623e-01 -1.1894901e-01 -5.9430710e-01 3.2325783e-01 -9.2263410e-02 8.1889702e-01 2.5068271e-01 -2.8857383e-01 1.7201511e-01 1.8441379e-01 -7.3932319e-01 -1.2431668e-01 -2.9116644e-01 -3.5750823e-01 9.8334912e-03 4.9227087e-02 -1.4598303e-01 -4.3447924e-01 -4.1892661e-01 -1.6355167e-01 -5.4962853e-01 8.9849978e-02 3.5317976e-01 -2.6672810e-01 1.5335721e-01 3.8562516e-01 1.8809681e-01 -3.3541289e-01 7.4012292e-02 3.2468642e-01 3.1912789e-01 -3.2298117e-01 -6.2502141e-02 -1.1445308e-01 -3.1681273e-01 + -7.1098363e-01 -1.4844942e-01 -1.3098791e-01 9.4975252e-02 6.2655711e-02 8.6844420e-02 -1.3851687e-01 -1.0282010e-01 3.4341949e-02 2.2272643e-01 -8.5495224e-02 -1.1651346e-02 -3.1647117e-02 -2.1021684e-02 6.9710960e-02 1.5834446e-02 2.3499898e-02 6.4833567e-02 4.0775851e-01 6.6669058e-02 -1.2098962e-01 -2.1301168e-02 2.0968693e-01 -3.8197962e-01 -1.1062877e-01 4.0799374e-03 -1.1460444e-02 -1.5181879e-01 -6.7191375e-03 2.3776870e-01 -4.3569870e-02 -8.5514448e-02 1.1470617e-01 -5.8626339e-02 4.3853252e-02 1.9314466e-02 -1.9426758e-01 1.3668718e-02 7.0262094e-02 -1.3387729e-01 -1.0541610e-01 -2.3554649e-01 2.3516997e-01 + 2.7949236e-02 9.1485154e-02 2.2429347e-03 -1.3843766e-02 -1.2540260e-02 -1.8011573e-02 -8.0994695e-02 -1.7272258e-02 6.1924740e-03 2.0912659e-02 5.8625123e-02 -4.9802752e-03 5.2934064e-03 -1.4358953e-01 -8.8912386e-03 5.0039525e-03 -5.0142906e-03 -8.2596152e-03 -1.5645996e-03 -2.9476026e-02 2.1564828e-02 9.0268406e-03 1.2722136e-02 -3.7565109e-02 7.1915613e-03 1.9243306e-02 8.2663108e-03 1.0380190e-02 -4.8459714e-02 -1.8975117e-03 -4.7210433e-03 1.5391555e-02 -2.1231384e-03 -6.2250971e-03 -7.6676133e-04 5.6288334e-03 -1.4549856e-02 -7.1870521e-03 -1.3110805e-02 -1.4935837e-02 5.2983432e-03 -6.0325493e-03 -3.8448062e-03 + -4.5902788e-02 1.6519304e-02 2.9735255e-01 1.2003398e-01 9.1170963e-02 2.0400063e-01 -7.2073254e-01 8.8341164e-02 -4.2374205e-02 -1.0005446e-01 5.3004319e-02 2.0186853e-02 -1.6723274e-01 -2.2893947e-01 4.1229926e-05 -1.2077636e-02 -2.0846924e-02 -2.3179707e-02 -3.4181690e-01 -2.0215436e-01 -4.4665584e-02 -3.6629940e-02 -4.9658997e-02 -2.7505236e-01 2.5102500e-02 -7.0858948e-02 -6.1945827e-02 2.6727444e-02 -2.0242607e-01 5.7475100e-02 4.2456977e-02 -2.0853867e-02 -8.9154065e-02 4.1445626e-02 -3.4468934e-02 -2.7397663e-02 9.8652613e-02 1.8320263e-02 3.2380087e-02 -2.3831477e-01 2.5575348e-02 1.1741385e-02 3.9834306e-03 + -8.4147267e-01 -1.8466567e-01 3.8325387e-01 -1.6477053e-02 -3.4673883e-02 -3.5944590e-02 -1.2037538e-01 -1.6927280e-01 1.7572775e-02 2.5250366e-02 2.7277180e-02 -2.5035737e-02 1.6837126e-01 -3.5402009e-01 -7.8837170e-02 5.0992573e-02 -5.4632312e-02 -8.5706048e-02 -3.7426017e-01 -4.7020433e-01 1.0183077e-01 5.7522363e-02 -1.1491112e-02 5.4041108e-01 8.9448626e-02 4.9940158e-02 3.3264840e-02 1.1301213e-01 -2.7452129e-01 -5.6599003e-02 -1.0010454e-02 1.0312054e-01 -1.0568729e-01 -3.2268942e-02 7.1982441e-02 3.4971480e-02 3.9937056e-02 -5.5177277e-02 -7.9203403e-02 6.9287326e-02 9.4803125e-02 6.8717897e-02 1.3924592e-01 + 2.1566354e-02 6.4806739e-02 7.8396907e-03 -9.6826961e-03 -8.8047282e-03 -1.2457617e-02 -6.7544675e-02 -1.2771714e-02 4.6779755e-03 1.6723519e-02 4.0351683e-02 -3.8418420e-03 8.5487904e-03 -9.6520870e-02 -6.2970507e-03 3.8105407e-03 -3.7939473e-03 -5.7489024e-03 3.2499537e-03 -1.7764831e-02 1.4960959e-02 6.4776667e-03 1.1118702e-02 -2.2968731e-02 4.7591173e-03 1.3389584e-02 5.9247757e-03 6.6637789e-03 -3.4512975e-02 8.5967621e-04 -3.6674349e-03 1.0692586e-02 -1.1617296e-03 -4.5921148e-03 -1.4505925e-03 4.2275298e-03 -1.2425193e-02 -5.2317003e-03 -9.1376287e-03 -9.8263240e-03 2.7569679e-03 -5.7906348e-03 1.8828470e-03 + -1.6646001e-01 1.0254601e-01 -6.6216061e-02 7.9889517e-02 7.4964573e-02 1.3527104e-01 -1.1131771e-01 -8.5588191e-02 -4.5498322e-02 -2.2281098e-02 -2.1537997e-01 4.0336133e-02 1.9863021e-01 -2.3615344e-03 5.3039053e-02 -3.6817550e-02 1.3027369e-02 1.5663877e-02 -6.9465178e-01 -1.7385956e-02 -5.9110290e-02 -5.1298048e-02 -2.2393537e-02 7.4797857e-02 -2.2686548e-02 -5.1119185e-02 -5.9867586e-02 -2.4115758e-02 -2.9856636e-01 -8.1357382e-03 4.8207313e-02 -5.9471554e-02 2.1737157e-03 3.9019926e-02 2.1960233e-02 -4.2073769e-02 3.2684905e-02 4.3082041e-02 5.7371103e-02 1.2229400e-02 -4.2786933e-05 -2.9186676e-02 -3.4496079e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_G_1.txt new file mode 100644 index 00000000..1bac979c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_G_1.txt @@ -0,0 +1,26 @@ + 4.5552817e-02 -8.9914077e-02 1.8894686e-01 1.0215714e-01 -6.2251165e-02 4.7296163e-02 -2.7716434e-02 -1.4920039e-01 -1.5873442e-01 4.4331131e-02 -6.9057013e-02 2.4425868e-02 4.8204525e-02 1.9395725e-01 -5.2646449e-02 -4.3965811e-02 -1.7440613e-03 8.5487338e-02 -2.1476593e-01 -2.2453011e-02 4.5984349e-03 8.9168923e-02 9.4908808e-02 -2.1899144e-02 -4.3708116e-02 -9.1673460e-02 3.1928336e-02 + -5.5995835e-02 2.4263860e-02 1.0700010e-01 -4.8565049e-02 -1.6058103e-02 5.4086295e-02 2.2693912e-02 6.1453061e-02 2.0274795e-02 9.3658882e-02 4.2363901e-02 -6.1769949e-02 2.7962254e-02 -2.6824213e-02 -9.9564175e-02 3.3316437e-02 3.5373405e-03 -2.6069876e-02 -7.4591672e-03 8.5706004e-02 -1.8154254e-02 -7.1593455e-03 -4.9558874e-02 4.7672162e-02 2.7061400e-02 -5.9639649e-02 1.1937547e-01 + 4.3268081e-01 2.9353699e-01 5.1640243e-02 8.0296336e-02 -1.3501022e-01 1.2107805e-01 -1.9815065e-01 -1.8655526e-01 2.7766878e-01 1.2364279e-01 2.8875546e-01 -2.0980913e-01 -1.2188210e-01 9.6394974e-02 -4.3215322e-01 3.0989342e-01 -1.8449753e-01 -1.0842414e-01 2.5087128e-01 2.7306684e-01 5.9607421e-04 -2.0613571e-01 -4.7403572e-01 1.6057133e-01 1.0215931e-01 -7.0383742e-02 2.6777795e-01 + -7.3929814e-02 4.8090656e-02 1.6844253e-01 -4.5566032e-02 -1.0553636e-01 3.1479112e-02 2.0806762e-02 3.3031651e-01 4.7565721e-02 3.3794726e-02 2.7519963e-02 -3.9414061e-02 9.2767995e-02 2.5971166e-02 -1.0075022e-01 6.5199561e-03 -4.4555582e-02 -3.3281467e-02 1.3331615e-01 1.6755360e-01 -5.1381581e-03 1.6894314e-02 1.6600947e-02 6.3124101e-02 6.0928384e-02 -3.5107133e-01 3.0385805e-01 + 6.0435960e-02 1.9359346e-01 -6.0651743e-01 2.1476677e-01 -7.9082540e-01 5.5518972e-02 -2.2750734e-01 -4.7231270e-01 -2.8450264e-02 -4.1051398e-01 1.5718471e-01 -2.6606997e-01 2.1433383e-01 2.3394024e-01 -1.9336468e-01 9.9198070e-02 -1.9174161e-01 -1.6410451e-01 4.5826544e-01 -9.1925036e-02 -1.5388864e-01 -1.7132528e-01 3.4241194e-02 9.9367442e-02 1.3947859e-02 5.7842308e-01 2.6491047e-01 + 1.9887107e-02 -2.0003950e-02 -8.9544022e-03 -4.0172053e-02 5.2022174e-02 -2.8139421e-02 4.2045144e-02 4.3999621e-02 -1.1821590e-02 9.4425673e-04 -3.5425437e-02 3.5018034e-02 1.9791155e-02 -1.6247456e-03 3.2409186e-02 -8.6704235e-03 4.9657956e-02 4.5641663e-03 -1.2369971e-02 -2.7411585e-02 2.3698231e-02 6.0946920e-02 6.1887563e-02 1.4849298e-02 -1.5588537e-02 -2.1929033e-02 -1.4975459e-02 + 4.1124323e-02 -3.8365888e-02 -3.5323250e-02 -1.6690938e-03 2.7388572e-02 -4.8846379e-02 1.4469453e-02 7.9552850e-04 -4.5793765e-02 -6.8047015e-02 -4.8837195e-02 2.5679570e-02 -1.2212428e-03 1.8688950e-02 6.2111774e-02 -1.7655986e-02 2.4910228e-02 2.5376622e-02 -3.6256790e-02 -6.4550753e-02 1.7756896e-02 3.9470130e-02 9.5112091e-02 -2.9767655e-02 -3.0054665e-02 4.6628390e-02 -1.1117437e-02 + 3.9278093e-02 -1.0361031e-02 -4.6915881e-02 4.2842307e-03 1.8894379e-02 -3.5296470e-02 -1.1624306e-02 -1.4607540e-02 -1.5589851e-02 -4.0136679e-02 -2.0980841e-02 8.0211501e-03 -4.2675050e-03 5.2876591e-03 5.4789331e-02 9.5687908e-03 2.3738447e-02 1.2303880e-02 -1.2057670e-02 -4.1966523e-02 8.7393340e-03 2.4538610e-02 4.7632146e-02 -1.8330811e-02 -2.1744872e-02 1.6183396e-03 -1.6127349e-02 + -2.2214741e-02 1.7919302e-02 3.6595286e-03 -3.9171649e-02 2.5681272e-02 2.7640948e-02 1.8658573e-02 4.5456698e-02 4.8428801e-02 5.7823058e-02 1.3043453e-03 1.8360073e-02 4.5030153e-02 -2.0478561e-02 -3.4335752e-02 -8.8945441e-03 2.5007187e-02 -2.1451834e-02 2.6326633e-02 5.0213231e-02 4.8699271e-03 3.1756133e-02 -1.7676782e-02 4.1140282e-02 8.7688006e-03 -5.1992338e-02 -2.1502672e-03 + -2.5331007e-01 1.9687962e-01 -1.1247145e-02 -2.1230671e-01 -5.4807126e-02 5.9561203e-02 -9.0101996e-02 8.0356777e-02 3.5963656e-01 -1.5001611e-01 2.0009052e-02 -3.6011435e-01 -5.5388988e-03 5.2089494e-02 -1.4395555e-02 1.6628004e-01 1.0215760e-01 -1.2913169e-01 2.5185648e-01 2.5603965e-01 -1.2025744e-02 -4.7510553e-02 -2.6859804e-01 9.4689396e-02 1.2850447e-01 -3.0596091e-01 -3.0141575e-01 + 5.0217678e-02 -6.1724724e-02 -1.3314037e-02 2.7436323e-02 1.1144274e-02 -7.3868819e-02 2.4908292e-02 -6.6241201e-02 -1.1234031e-01 -1.0238684e-01 -4.6007483e-02 1.8935442e-02 -4.7422162e-02 5.2108036e-02 9.8234502e-02 6.8316903e-04 1.6296848e-02 4.4717746e-02 -9.6700413e-02 -1.3192300e-01 1.0264963e-02 1.4421610e-02 1.1845668e-01 -6.2255902e-02 -4.4265654e-02 1.7626595e-01 6.0030776e-05 + -7.5074777e-01 -4.1301549e-01 4.0584881e-01 -9.2406545e-02 3.9906883e-01 -5.7744318e-01 5.4290473e-01 2.6737922e-01 -3.4109866e-01 -4.7257821e-01 -2.6406138e-01 -5.3986033e-01 -3.5165211e-01 -5.7709678e-02 6.9010253e-02 8.0146815e-02 1.6724367e-01 7.4754119e-02 -2.7193724e-01 -4.7346462e-01 2.2538297e-01 3.9491150e-01 2.0714073e-01 -2.6303100e-01 -1.0005766e-01 3.8495875e-01 -4.7857382e-02 + -5.1491842e-02 6.1121842e-02 4.1818726e-03 -3.4677054e-02 3.0464304e-03 7.7577996e-02 -2.0211502e-02 9.6546965e-02 1.3310446e-01 9.9446932e-02 3.5415623e-02 -5.6022606e-03 6.1006588e-02 -6.4972220e-02 -1.2065590e-01 -1.9073062e-02 -1.9775127e-02 -4.7264988e-02 1.2013859e-01 1.5055630e-01 -5.8870014e-03 -6.4571822e-03 -1.0912752e-01 6.1727780e-02 4.8224827e-02 -1.9894831e-01 9.7395260e-04 + -1.7532350e-01 -2.0861323e-01 -2.4842887e-02 -6.7263934e-02 3.4354112e-01 -2.0552614e-01 1.0119244e-01 -8.1442791e-02 -1.5689952e-01 1.3946315e-01 -1.1860083e-01 7.4018428e-02 -5.6819661e-02 1.8755710e-02 4.8268005e-02 -1.7346760e-01 5.8016437e-02 1.2220620e-01 -7.3335369e-02 -3.3435851e-02 1.4843630e-01 1.7727621e-01 8.5552214e-02 -9.4211969e-02 -1.0501842e-01 -2.5542820e-01 3.4476203e-01 + 2.8954771e-02 -3.5851531e-02 -2.6803233e-02 1.5157334e-02 4.7678001e-03 -6.0969504e-02 4.7135108e-03 -2.9959840e-02 -6.1865414e-02 -8.3891398e-02 -2.4727995e-02 7.2505643e-04 -3.8571658e-02 2.2578288e-02 6.6702004e-02 3.5726103e-04 9.2804908e-05 3.0287856e-02 -4.2276959e-02 -7.9454868e-02 9.8657191e-03 -1.4212776e-03 6.7220990e-02 -4.3977866e-02 -3.1965095e-02 8.5178820e-02 5.1229847e-03 + -5.3412631e-02 7.4663964e-02 6.8997223e-03 -2.5096360e-02 -8.6816924e-03 8.4122348e-02 -1.7164837e-02 1.0298640e-01 1.5497334e-01 1.2649664e-01 5.0285857e-02 -3.1056284e-02 5.9581565e-02 -8.6036334e-02 -1.2012692e-01 -6.2153433e-03 -3.3514077e-02 -6.2221476e-02 1.3459698e-01 1.7125433e-01 -1.2088171e-02 -1.9113104e-02 -1.4870823e-01 7.3126818e-02 5.9931834e-02 -2.4715967e-01 -2.0111305e-02 + -3.7243603e-02 6.7777614e-02 4.8736546e-02 1.4904937e-02 -6.1736087e-02 7.7742194e-02 -3.3259705e-02 -3.0050389e-02 7.6424881e-02 8.6748761e-02 7.3810094e-02 -3.4864976e-02 -1.0475718e-02 -2.8626164e-02 -8.0633328e-02 4.1766658e-02 -4.3483841e-02 -4.4425857e-02 5.3129310e-02 8.8520620e-02 -3.5296548e-02 -7.1351157e-02 -1.6078480e-01 4.3670052e-02 5.3377339e-02 -7.9245073e-02 -4.5451960e-03 + -3.5052229e-01 1.6729910e-01 1.4941657e-01 2.4380255e-01 -4.4600898e-01 1.3907264e-01 2.7761679e-03 2.3293920e-01 4.5650926e-01 3.1929572e-01 -1.5782033e-02 2.3227842e-01 -1.3496810e-02 -2.4558270e-01 3.8710613e-01 -6.7547923e-02 -2.1444220e-01 -2.7325436e-01 7.4529733e-02 -3.6851759e-03 -1.7743841e-01 -1.5485930e-02 -1.2285065e-01 7.4667661e-02 1.9058859e-01 -1.6283060e-01 -1.9543881e-01 + 3.8805526e-01 -3.5020007e-02 6.0821822e-01 -4.4534882e-01 2.4648057e-01 1.7080732e-01 -1.2154746e-01 3.7155965e-01 1.4962995e-01 1.0930625e-01 -1.0326945e-01 -9.3956146e-02 8.1115142e-02 -8.4770055e-02 -1.9946929e-01 -1.8540897e-01 2.4342673e-01 -2.4446444e-02 -1.8885478e-01 2.0705802e-02 -6.6614289e-02 1.0825737e-01 1.4875152e-01 1.8290843e-02 9.5850419e-02 -7.0777658e-02 5.2533843e-01 + 1.0473298e-02 -7.4597265e-03 -6.8745372e-03 4.1083222e-03 2.4509514e-04 -1.1610758e-02 -2.2845722e-03 -5.3971691e-03 -1.1472034e-02 -1.8146087e-02 -6.9135070e-03 1.1221067e-03 -7.1725470e-03 4.7874291e-03 1.3650062e-02 -7.2230702e-04 -9.3519317e-04 6.3922519e-03 -6.9332274e-03 -1.6357275e-02 2.5595899e-03 1.3087972e-03 1.3463010e-02 -9.5694156e-03 -6.1281828e-03 9.8857522e-03 1.7698540e-03 + -2.7676396e-01 -7.1278054e-02 4.2328157e-01 -1.6738043e-02 5.0556024e-01 -2.9848166e-01 6.1616279e-01 -1.6162264e-01 -1.8975836e-02 -4.4893171e-03 -5.7489526e-02 1.3001367e-01 -2.9515513e-01 -4.3587639e-01 3.1046177e-01 1.7452693e-02 3.1150152e-01 -1.5995247e-02 -3.2607477e-01 -1.8710383e-01 2.5598989e-02 6.0279593e-03 -1.9063277e-01 -1.0342569e-02 2.9740344e-02 1.6280094e-01 5.6757932e-01 + -5.8321284e-02 2.4642550e-02 6.1915173e-02 -5.6000186e-02 -1.0962405e-03 4.2477309e-02 2.6751459e-02 7.9465388e-02 4.8246836e-02 7.3873425e-02 2.2062552e-02 3.7823504e-03 4.0623754e-02 -1.6373441e-02 -7.5730868e-02 -3.5881657e-03 1.6562117e-02 -2.9041106e-02 -1.1863627e-02 7.0765517e-02 -1.3474311e-02 1.4570213e-02 -1.9957498e-02 4.8938332e-02 2.2403686e-02 -4.3123071e-02 1.1066660e-01 + 3.4979609e-02 -2.2143610e-02 -6.7009781e-02 1.7403897e-02 1.1047010e-02 -3.0104782e-02 -1.4095117e-02 -2.4521808e-02 -2.4414050e-02 -7.3632774e-02 -3.4516966e-02 2.1138184e-02 -2.3890361e-02 1.1637275e-02 5.4049525e-02 -1.0620780e-03 -1.1187498e-03 1.7079365e-02 -2.6259938e-02 -5.6778082e-02 8.2907438e-03 8.1173352e-03 3.8832095e-02 -4.1181832e-02 -2.2472552e-02 5.9391679e-02 -3.7346663e-02 + 8.4685481e-01 -3.7716754e-01 -1.5011838e-02 7.6961349e-01 1.3882714e-01 -1.4782090e-01 -6.2777557e-01 2.1026389e-01 -2.3494449e-01 3.9154505e-01 -4.3554522e-01 8.4829865e-01 -3.0847540e-01 -3.2700799e-01 6.4823841e-01 -4.9721695e-01 -6.2955461e-01 1.3318095e-01 -5.2073963e-01 -4.7783999e-01 1.7147642e-01 5.3746920e-01 3.3946851e-01 -2.5077003e-01 -7.6520619e-02 3.2087311e-01 -7.8525619e-01 + 4.7764940e-01 -1.2391892e-01 -4.8458966e-01 2.4294734e-01 -2.9432618e-01 -2.6675106e-01 -4.3052866e-01 -1.0735658e+00 -2.0135373e-01 -5.7774926e-01 -1.8254180e-01 3.2721845e-01 -2.0352647e-01 2.9581648e-01 3.6312537e-01 -2.1456673e-01 -1.9499160e-01 -3.1753736e-02 -2.3524913e-01 -2.7510815e-01 -5.2882762e-02 1.9074887e-01 -9.3873242e-02 -2.1718128e-01 -1.5075279e-01 9.4636056e-02 1.2961538e-01 + 3.7910971e-02 -4.9047971e-02 -1.0808359e-02 2.7452354e-02 8.0837086e-04 -7.0419662e-02 1.5158155e-02 -5.7705062e-02 -9.6115305e-02 -9.1952927e-02 -2.9783158e-02 -2.4828011e-03 -5.2273778e-02 3.9389653e-02 8.7568391e-02 1.0514338e-02 6.3655583e-03 3.8773658e-02 -7.4880593e-02 -1.0990441e-01 7.7553433e-03 -9.2967393e-04 8.7626068e-02 -5.4261004e-02 -3.5791115e-02 1.2937225e-01 2.5407603e-03 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_G_2.txt new file mode 100644 index 00000000..a09fb656 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_G_2.txt @@ -0,0 +1,25 @@ + 6.0151506e-03 -5.6333585e-02 1.7965492e-02 5.4138462e-02 -2.8871426e-02 3.4669505e-02 6.4110803e-02 -1.1362144e-01 6.1152571e-02 7.0999078e-02 -1.6120169e-02 -4.4710033e-02 -5.4709976e-02 -5.1055092e-02 1.1385309e-01 7.3919861e-02 1.4608238e-02 8.7427506e-02 -1.6144012e-02 3.8287326e-02 -4.0023068e-02 8.6360031e-02 -1.2755118e-01 -4.2038688e-02 -2.6129283e-02 -1.0024279e-01 -2.0174047e-02 -1.3577501e-03 -1.1289418e-02 -3.8265252e-02 9.6755039e-02 4.0275218e-03 5.2947202e-02 + 1.0910762e-01 -9.0372704e-02 -9.9144364e-02 -2.5209772e-01 -6.5325575e-02 6.4043995e-02 1.7218012e-01 2.5622871e-01 -4.4048711e-02 -7.9852933e-02 -4.9539723e-03 8.1361307e-03 6.7624805e-02 -1.0146027e-02 -2.0296102e-02 1.9039762e-02 3.9359772e-04 -1.6100974e-01 -1.5469109e-01 3.6150171e-01 -7.7373806e-02 -3.5553491e-01 2.5367695e-01 1.5758765e-01 2.2398870e-01 8.5638463e-02 -1.2336317e-01 2.0475347e-01 2.7523193e-01 1.3870723e-01 -9.7762330e-02 -2.8489796e-01 -5.3749948e-02 + -6.0250172e-01 2.6553488e-02 -1.0880315e-01 -2.6003620e-01 1.0826848e-01 -1.0787635e-01 6.6895973e-01 -3.3287964e-01 -3.2386074e-01 -1.8718935e-01 -6.8975815e-02 4.1060473e-01 1.1463009e-01 3.7488483e-02 6.5155444e-02 -2.2165658e-01 -2.6379549e-01 -9.8520783e-02 2.3308572e-02 -1.9772674e-01 -2.6946624e-02 -3.0202353e-01 1.2341695e-01 1.1958849e-02 5.7764916e-03 4.6949904e-02 2.1790199e-02 -1.6734670e-03 8.6898006e-02 1.4573897e-01 -2.6576051e-01 3.6394727e-01 -1.1701205e-01 + 7.2848826e-02 -1.5999150e-01 -1.6063302e-01 -3.8983343e-01 -9.1555303e-02 1.2848879e-01 1.1389937e-01 4.0248603e-01 -1.4452239e-01 -3.1535225e-02 -5.2589771e-02 -3.3840955e-02 -1.2669729e-01 3.4242649e-02 -2.4830924e-02 5.2122707e-02 -2.3901129e-02 -1.1433997e-01 -2.4610514e-02 5.4988837e-01 -2.8738017e-01 -2.7025235e-01 2.0001187e-01 2.8568553e-01 2.9237233e-01 6.8249702e-02 2.9832823e-03 -3.7992039e-03 3.7159775e-01 1.3610922e-01 6.5570291e-03 -1.8803174e-01 -1.0022730e-01 + 1.4401139e-02 -1.0086788e-03 -1.2098717e-02 -7.1428830e-03 -1.0331821e-02 1.6360238e-03 -4.0152175e-03 2.7955665e-03 -7.2331066e-03 -1.5465026e-02 -8.6180566e-03 -1.8617828e-02 -9.7668296e-03 1.4022974e-04 -9.2949450e-03 1.8744826e-02 -5.7978811e-03 1.1338666e-02 -6.6891586e-05 -1.5590809e-02 -4.0483777e-03 -1.2413938e-02 -7.7067739e-03 -3.4683556e-03 5.6337489e-03 1.7310711e-02 -7.2605318e-04 1.0804714e-02 -3.2237847e-03 3.6069728e-03 1.0376620e-02 8.4105989e-03 -1.1733509e-02 + 1.0555202e-02 1.9799184e-02 1.1902430e-02 1.1466368e-02 1.0117686e-02 5.1056741e-04 4.1621702e-03 -6.9007892e-03 1.0952290e-02 1.2977510e-02 4.5899970e-03 -3.4588903e-03 2.2934881e-03 -4.7795601e-03 5.6735890e-03 4.8909543e-03 1.7167412e-02 1.4759112e-02 1.3503494e-02 9.3076492e-03 -2.0259263e-03 1.0863100e-02 -3.5792944e-03 1.2575200e-02 -2.2563237e-02 -2.3235574e-02 -1.0025611e-02 -6.9961691e-03 -7.6179633e-03 -4.6808438e-03 -4.2588644e-03 6.3182263e-03 6.9682394e-03 + -1.0908292e-02 1.4132403e-02 2.0906079e-02 3.0109635e-02 1.5387082e-02 2.0449734e-03 2.3612659e-02 -2.9415100e-02 2.3573318e-02 3.6920624e-02 1.6929522e-02 9.0459171e-03 4.2767561e-03 -2.5968727e-03 2.6059686e-02 -2.1479299e-02 2.7365776e-02 2.3844092e-02 2.4658830e-02 3.7169332e-02 3.1016310e-03 3.1134968e-02 -7.1737799e-03 1.5027865e-02 -2.0745526e-02 -3.6381601e-02 5.0926674e-03 -2.8448206e-02 -9.8078386e-03 -1.6322577e-02 -1.8297769e-04 -2.8694232e-02 2.3706588e-02 + 4.5460116e-02 2.9971183e-02 5.4560438e-02 1.0589385e-01 4.5849509e-02 1.3114003e-03 -7.7773443e-02 -2.9189826e-01 4.7410158e-02 2.8141235e-02 8.4847450e-02 -4.3311324e-02 -4.6265462e-02 -3.7935815e-03 3.9573639e-02 -3.0224351e-02 8.2343263e-02 -5.8557535e-02 2.1002386e-02 7.2553540e-03 1.4050416e-02 -2.3842844e-02 3.7785142e-02 -5.2846859e-02 -2.4415921e-01 -4.2697612e-02 5.6898334e-03 -1.7645785e-01 -5.0626651e-02 -9.8917707e-03 2.0631942e-02 -7.9241073e-02 7.8204752e-03 + 6.1664443e-02 1.3918568e-01 -2.9914451e-02 -4.6997925e-02 7.6751141e-02 -7.9700926e-03 -1.9026316e-02 -5.7165277e-02 -3.4832129e-02 -7.4957161e-02 -7.6873921e-02 1.6475868e-02 -4.6608400e-02 -9.7258450e-02 -6.9143295e-02 9.1693606e-02 -4.1192038e-02 -2.7832403e-03 5.2959030e-02 1.1040559e-01 -1.5243270e-01 -1.1512722e-01 -1.7482812e-02 -1.5741573e-02 -7.5782300e-02 9.6736108e-02 2.8429142e-02 -1.4457723e-02 -7.9660705e-03 5.2531777e-02 3.3521820e-02 7.8237457e-02 -8.0815472e-02 + -5.0318138e-03 -1.0496639e-03 1.8602777e-03 -2.3170461e-03 2.2353536e-03 -2.0066833e-03 -1.6310503e-03 3.5755622e-03 -8.3692495e-04 2.8321006e-04 6.2798232e-04 7.5554058e-03 4.0167516e-03 -6.6446795e-04 2.8822542e-04 -5.0264971e-03 -2.0567953e-03 -9.6887489e-03 -3.2146346e-03 2.0427921e-03 1.8287750e-03 8.9016084e-04 4.8819966e-03 -1.2092686e-03 1.1543219e-03 -9.7534740e-04 -5.2718359e-04 -7.0264370e-04 3.5742852e-03 1.8043366e-03 -4.8492833e-03 1.0432832e-03 9.5062376e-04 + 1.0633150e-02 -3.4754518e-02 3.7460410e-02 6.4259794e-03 1.3322210e-03 1.7872458e-03 -1.8909017e-01 -2.0585969e-01 -5.0872883e-02 -2.6006978e-02 -2.3072802e-02 -1.4749124e-01 -9.6543760e-02 -1.5855793e-03 3.9260531e-02 8.1267505e-02 -5.0331027e-02 2.7160701e-01 7.4714981e-02 9.4074405e-02 -1.1197878e-01 -3.3775440e-02 -1.8008937e-01 -2.3183594e-02 7.2148363e-02 1.7540440e-03 4.4971643e-02 -7.9139700e-02 -8.1783789e-03 9.0979113e-03 3.3452333e-02 6.4714542e-02 -1.3324791e-02 + 9.7569202e-02 9.3000207e-02 -4.1590405e-03 1.2968813e-01 -2.3774178e-02 -2.5202204e-02 3.3615114e-01 1.5700773e-01 -5.6879100e-03 5.3486397e-03 1.4804986e-02 1.4334655e-02 -5.3186892e-02 1.6408990e-01 -1.4926564e-01 -8.1041285e-02 -8.2789995e-03 -1.3126575e-01 -1.9615105e-01 -5.7638329e-01 3.1098866e-01 1.2953457e-02 1.4156579e-01 4.0967813e-02 1.3810936e-02 -6.4358985e-02 5.6821502e-02 -4.4736407e-03 -1.2975895e-01 -5.1841617e-02 -6.6851090e-02 -2.6823938e-02 6.9984520e-02 + 2.6320768e-02 -4.5676330e-03 -1.2270880e-01 2.0810803e-03 -8.1620103e-02 5.2513930e-02 -7.9724835e-02 2.2736655e-01 1.2955305e-01 -2.0689826e-02 -4.6700850e-02 2.4362872e-03 1.3382242e-01 -1.4776461e-02 1.0887035e-01 9.2373131e-02 5.9249177e-02 1.0506159e-01 4.2205077e-03 -4.9777084e-02 -1.1491297e-01 1.7836693e-01 -5.1435137e-02 -3.0842737e-01 1.1383029e-02 1.8710789e-01 -3.5172978e-02 5.3702367e-02 -8.6932968e-02 3.0962366e-04 1.6817766e-01 4.1124366e-02 -4.2956517e-02 + 4.4628747e-02 -2.8597792e-02 -3.6716984e-02 -7.7959354e-02 -2.8073379e-02 -1.0090940e-02 -4.5534742e-02 6.7113912e-02 -5.7423897e-02 -9.5781814e-02 -3.7374489e-02 -2.2207113e-02 -4.9371657e-03 -1.3284217e-03 -6.3944930e-02 5.1760605e-02 -6.6647661e-02 -5.8707889e-02 -6.0392030e-02 -8.9554971e-02 -4.6625435e-04 -8.5363419e-02 2.4941206e-02 -1.2789592e-02 5.7053652e-02 9.0119572e-02 -9.2630793e-03 7.4505371e-02 3.3759449e-02 4.6354348e-02 -1.9222309e-02 6.4477861e-02 -5.9264176e-02 + 8.9727691e-02 -8.0889069e-03 -7.6337622e-02 -6.7215974e-02 -6.2232884e-02 9.0588984e-03 -6.5188258e-04 2.9445090e-02 -7.7561650e-02 -1.2209700e-01 -5.5554510e-02 -1.0347902e-01 -3.1130146e-02 -1.6838632e-02 -3.0946963e-02 1.2032830e-01 -6.2580374e-02 1.0684588e-01 8.9275468e-03 -1.0900144e-01 -2.2209689e-02 -9.7171665e-02 -6.2438847e-02 1.0326524e-02 7.9278080e-02 1.2364893e-01 -1.3857204e-02 9.2309959e-02 -6.6357004e-03 5.7352606e-03 4.0747168e-02 8.7922743e-02 -7.9531058e-02 + 3.0703012e-02 7.0014167e-03 -1.7331394e-01 -7.0036824e-02 -1.2540810e-01 3.0872229e-02 3.1826490e-02 9.5284508e-03 -7.7027879e-02 -1.9856674e-01 -4.7244775e-02 -1.1245567e-01 1.9411735e-01 6.2452391e-04 -7.6590708e-02 9.1114953e-02 2.0101313e-02 1.5822062e-01 1.4673737e-01 -1.7504431e-01 1.3182210e-02 -2.2860531e-01 5.9196737e-02 -2.4024612e-02 1.1474388e-01 2.9741754e-01 -5.4147482e-02 3.1186688e-01 -6.7474320e-03 1.0579487e-02 8.7936146e-03 -6.7355039e-02 -9.2155867e-02 + -1.0602710e-02 1.1876731e-01 -5.4125863e-03 -1.9459048e-01 -2.5953951e-02 8.5187122e-02 -7.5364928e-02 4.4909145e-01 -1.5230116e-01 8.3938613e-02 -1.2936877e-01 2.2710098e-01 -1.2266850e-01 1.1345980e-01 1.6243602e-01 -1.3923192e-01 -4.9441433e-02 3.2661971e-01 6.8371850e-02 1.0173299e+00 -3.2335657e-02 6.1108625e-02 -4.7592046e-02 3.7432534e-01 3.6522412e-01 -1.9355745e-01 -2.8211085e-03 -1.0157523e-01 2.3458111e-01 -1.6188723e-01 -1.1494285e-01 2.4712977e-01 1.1528952e-02 + 1.5004370e-02 -9.2385296e-03 -1.8311263e-02 -3.7065915e-02 -1.4631668e-02 -5.6062500e-03 -2.8359455e-02 3.4156213e-02 -2.6899442e-02 -4.5361985e-02 -1.9740497e-02 -1.0555208e-02 -2.8998584e-03 -1.2321824e-03 -2.6666927e-02 2.4763879e-02 -3.1180410e-02 -2.8831634e-02 -2.4338157e-02 -3.9682022e-02 -1.9406083e-03 -3.4320054e-02 8.4023807e-03 -1.4340443e-02 2.3657151e-02 4.2761459e-02 -4.0158108e-03 3.1156760e-02 1.3139581e-02 2.2398364e-02 -5.4087457e-03 3.5603028e-02 -3.0033190e-02 + -5.1353776e-03 -1.9006816e-01 -1.0405580e-01 -7.9635231e-02 -8.2279824e-02 1.7720175e-02 -1.2942750e-02 -4.5487470e-02 -8.4833506e-02 -9.9293829e-02 7.3449569e-03 -2.5273747e-02 -4.1672620e-02 4.8354465e-03 2.0837702e-03 2.4653731e-02 -1.0763438e-01 -4.9373545e-02 -1.0006854e-01 -5.3047956e-02 -3.8097799e-02 -1.3257870e-01 8.8243988e-03 -3.9203926e-02 5.3282275e-02 1.5485327e-01 -1.8878356e-02 -2.8461593e-02 4.4529538e-02 1.7809721e-02 7.1082795e-02 3.5796537e-03 -4.9902347e-02 + -2.1675404e-01 -3.3617063e-02 -4.4982630e-02 -1.5244608e-01 -1.5545243e-02 -8.0822595e-02 -1.8819543e-01 4.6654717e-02 -8.4772864e-02 -1.0713591e-01 2.4091080e-02 1.9183850e-01 1.8229875e-01 1.9308820e-02 -3.7740063e-02 -1.1876968e-01 -1.1756024e-01 -3.2225359e-01 -1.9686657e-01 9.9548487e-03 8.0567790e-02 -8.3603283e-02 2.5860343e-02 -1.7479229e-04 3.5273499e-02 9.2755241e-02 -1.0061278e-01 5.9212960e-02 6.6505148e-02 4.0422365e-02 -1.3430601e-01 -7.8913960e-03 -2.2557445e-02 + 1.9022494e-03 -1.9374687e-02 -1.8476471e-02 1.1203888e-01 6.3600711e-04 1.7157157e-02 2.3853798e-02 1.0652662e-01 3.3435841e-02 3.9580015e-02 1.1506303e-02 2.4275235e-02 1.1083136e-01 -1.4689927e-03 -4.4839336e-02 6.1288733e-03 4.9961241e-02 4.1800061e-02 1.9696218e-01 -6.6021373e-02 -2.4099772e-03 6.4857214e-02 2.5300320e-02 -8.2561560e-02 3.8912209e-02 2.8818054e-02 4.4694768e-02 1.6177238e-01 -1.1893403e-01 -6.0549814e-02 1.9641289e-02 4.4476032e-02 2.9640291e-02 + 5.2219385e-02 -1.9101353e-04 -1.0410653e-01 -1.1701150e-01 -3.9248087e-02 4.9133138e-04 7.6197051e-02 6.8525841e-03 -1.1293617e-01 -1.8199430e-01 -5.9793534e-02 -9.8973269e-02 2.7352465e-02 -8.1154267e-02 -5.8084952e-02 1.3553864e-01 -9.9945006e-02 8.8679145e-02 4.4035528e-02 -1.2529048e-01 -4.9172186e-02 -1.9419705e-01 -4.9603455e-02 3.9707526e-02 8.1090322e-02 2.0815151e-01 -3.0332758e-02 1.6184754e-01 2.3373631e-02 4.4957513e-02 2.2758021e-02 8.1749034e-02 -1.0769382e-01 + -8.2646214e-02 1.9100054e-01 -2.9078592e-01 -3.9103354e-01 -2.0201020e-01 7.6983393e-02 2.4588251e-01 3.2927484e-01 -1.1305553e-01 -2.4063971e-01 -2.3946274e-01 3.1461454e-01 1.9510392e-01 -2.3015499e-01 -5.2630226e-02 1.0574282e-01 -3.5737154e-02 -8.1253621e-01 9.6842543e-02 8.9259364e-01 -2.6607316e-01 -2.4470383e-01 5.1179825e-01 -8.0748497e-01 9.9401905e-02 4.3436395e-01 3.0555126e-02 3.3269045e-01 2.1192118e-01 2.8246527e-01 2.4617239e-01 5.6045068e-01 -3.3993925e-01 + 6.0604969e-02 3.0752207e-01 2.5863264e-02 1.4934668e-01 4.7854565e-02 -2.0310473e-02 -3.3970614e-01 -1.2757420e-01 1.0136649e-01 -1.1157028e-02 -3.4027324e-02 -6.0072989e-02 2.1192336e-03 2.3968509e-02 -1.0049702e-01 1.6001459e-01 2.1483493e-02 2.4035762e-01 -2.2096930e-02 -1.0569926e-01 -2.0947167e-01 -1.9218713e-01 1.4438159e-01 -1.2760987e-01 -1.4693979e-01 -4.9604739e-02 1.7439050e-01 1.4450362e-01 -5.3897332e-02 -1.5606914e-02 -3.2892445e-02 -3.8544148e-01 -4.2182205e-02 + 1.5411615e-02 -1.0751533e-01 2.2246063e-02 -3.9621011e-03 -4.3312479e-02 -2.0122017e-02 -6.2729106e-02 -1.0520085e-02 7.6233456e-02 2.3294080e-02 2.7805281e-03 -1.6781327e-02 -8.0521732e-02 2.7061637e-02 1.1579572e-02 -6.1690341e-02 3.3148830e-02 -2.3948289e-01 -2.1214661e-01 -3.2312875e-02 3.6722867e-02 4.3975066e-02 4.5590667e-02 -1.4303297e-01 -5.2117446e-02 3.7510243e-02 -8.8054544e-03 -2.7834906e-02 4.7620070e-02 7.2529364e-02 7.5313327e-02 -7.7386395e-02 1.3936959e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_G_3.txt new file mode 100644 index 00000000..9447a0a2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_G_3.txt @@ -0,0 +1,24 @@ + 6.0739654e-02 1.5533892e-02 -3.1839033e-02 4.0552908e-02 7.0085117e-02 -4.2519090e-02 -4.8901430e-02 2.1553638e-02 1.2842387e-02 1.4200170e-01 6.9097388e-02 -9.3348086e-02 -8.4985479e-02 -1.1891624e-02 -2.5723993e-02 -2.7014777e-02 -7.0840124e-02 -1.1292876e-01 -1.1136904e-01 1.2826695e-01 5.9888780e-02 -3.7569786e-02 -3.0197370e-02 -1.2934005e-01 -1.2708829e-04 3.3623461e-02 1.0636139e-01 -1.5386980e-02 -7.5057494e-02 1.4473769e-01 -1.2164026e-01 5.9465088e-02 -2.7006802e-02 9.8872508e-03 6.4915344e-02 4.3303483e-02 + -1.5796517e-01 -2.4679114e-03 1.2455149e-01 5.2940747e-02 -1.4617112e-01 1.6976344e-01 1.4577010e-02 -4.7885618e-02 6.7766063e-02 -8.3892176e-02 7.8676522e-02 9.6042453e-02 -1.1087285e-02 7.6665565e-02 -1.3217973e-01 -1.1666407e-01 1.8467948e-01 5.3956772e-02 -8.8092878e-02 9.8638258e-02 6.7708057e-02 1.3460855e-01 2.5119747e-01 -1.0175272e-02 3.4310425e-03 3.7181913e-02 -2.2738484e-02 -4.0315968e-02 1.9041998e-01 -1.6184365e-02 2.0414966e-01 -1.7298681e-01 5.0895116e-02 -7.9335957e-02 -9.5969681e-02 1.9601269e-02 + 4.4266643e-02 -3.9921783e-02 -9.3188618e-02 9.5872475e-02 7.4715117e-02 -1.1176773e-01 -4.5703380e-02 1.6544704e-02 -8.2701132e-03 1.4752239e-01 3.0818437e-02 -2.0482808e-01 -6.2862629e-02 2.4600498e-02 -2.7256558e-02 -5.1860927e-02 -6.7051165e-02 -1.3922047e-01 -5.2201574e-02 5.0486504e-02 5.7645879e-02 -1.9907657e-01 1.4144360e-02 -5.4668197e-02 3.5345077e-03 3.2777906e-02 7.4331567e-02 1.0916973e-02 -3.1034667e-02 1.1867993e-01 -2.0033711e-01 1.3449600e-01 -2.9526510e-02 8.8804382e-02 2.5749089e-02 -1.2262717e-02 + -2.7107393e-02 7.0040525e-04 2.7433989e-02 2.8679786e-02 4.2438443e-02 -5.1291740e-03 -3.1474067e-02 6.7371767e-02 1.1169148e-01 7.3094627e-02 -1.6042228e-02 9.9748076e-02 -3.3735370e-02 1.7478071e-02 -1.9762101e-01 -8.7565350e-02 7.1659008e-02 7.9782602e-02 -8.9257676e-02 2.9597673e-02 4.2642461e-02 1.2034876e-01 1.7921858e-02 -4.5380867e-02 -1.9109621e-02 1.6882246e-03 -1.3802255e-01 1.2696605e-02 -3.5181121e-03 1.1505469e-01 -3.1204019e-02 -1.1294544e-01 6.1743184e-02 -6.0255712e-02 -7.6549641e-02 2.0519490e-02 + -1.5993852e-01 1.5289515e-02 -2.1651927e-02 7.6614134e-03 -4.6938823e-01 -3.0328924e-01 7.7317692e-03 2.9736741e-01 -8.5319696e-02 2.0562148e-01 1.9866177e-01 -1.6149110e-01 -2.4092332e-02 -2.6253465e-01 1.0045569e-01 -2.2620584e-01 -1.6259544e-01 3.3394689e-01 1.7186896e-01 1.0377079e-01 -4.5178135e-02 -5.3120159e-02 -1.7805209e-01 2.7233182e-01 8.3975309e-02 -1.4601482e-03 8.2353022e-02 -5.2940746e-02 -1.9788920e-01 -3.6038838e-01 -1.8452886e-01 -7.0454165e-02 2.7865895e-01 -9.0129143e-03 1.5739379e-02 1.4460600e-02 + 2.9751275e-02 -1.8939280e-02 -1.1158847e-01 1.9661690e-01 -4.4935239e-02 -6.4812293e-02 -2.0676436e-02 1.9178871e-01 6.8459970e-02 9.2270626e-02 -2.5058257e-02 -2.9602193e-02 -1.1104315e-01 -5.0421854e-02 -2.4851505e-01 -6.0130932e-02 1.1870345e-01 -4.9466327e-02 -1.6970314e-01 6.6433616e-02 3.7402115e-02 -9.4445741e-03 1.3353484e-02 -2.4939527e-03 -2.8360023e-03 6.9493564e-02 -5.6978207e-02 1.0474492e-01 -1.1250580e-01 1.9461643e-01 -2.7626147e-01 2.8655653e-02 1.2447213e-02 1.2479528e-02 -1.7925777e-01 -2.5135670e-02 + -6.0635087e-02 -5.0915633e-02 6.9782817e-02 2.1238491e-02 -4.8854787e-02 4.0847537e-02 -5.5173190e-02 4.5326867e-02 2.7729592e-02 -6.6402993e-02 -2.8039749e-02 7.2794308e-03 -2.9128091e-03 -2.8610997e-02 4.0003903e-02 3.4454457e-02 -3.7442819e-02 -3.0280700e-02 1.0826593e-02 4.4638060e-03 -3.7887954e-02 -3.3820273e-02 4.2969866e-02 4.2556471e-02 -1.8303216e-02 3.3252546e-02 2.9152285e-02 -6.2430262e-02 7.6512023e-02 -7.4319823e-02 5.7716220e-02 -3.8749206e-02 -2.3293115e-02 -7.8359421e-02 -4.3811149e-02 5.7381942e-02 + -3.0994186e-03 1.3539685e-02 8.8656315e-02 5.3347267e-03 -2.7721253e-02 8.3347715e-02 6.5624822e-05 4.9250410e-02 -5.8999680e-03 -5.6688740e-02 3.6495307e-02 -1.6915531e-03 -2.8898487e-02 -2.4123533e-02 2.0968248e-02 -9.1302219e-03 2.2715592e-02 -9.2648138e-02 -6.4998881e-02 6.0071726e-02 -7.2209551e-03 -2.9464050e-02 1.5222274e-02 1.0007871e-02 -6.6262465e-02 3.1161845e-02 1.9800928e-02 -2.9640248e-02 2.0892812e-02 2.5101629e-02 7.1605037e-02 -2.8695969e-02 -7.6711575e-02 -2.2916219e-02 -3.2770070e-02 2.4068000e-03 + -9.4856560e-02 1.1371984e-02 1.1577799e-01 -2.6897008e-03 -1.0130314e-01 -4.7298505e-02 1.0054224e-01 -1.0271170e-01 1.1348952e-01 2.4668105e-01 1.3233148e-01 -1.3322745e-02 1.7776890e-01 1.7544262e-01 -3.6152335e-02 -3.3040227e-01 6.4201045e-02 -1.6039689e-01 2.5372764e-02 1.6070168e-01 2.5667063e-01 1.8917210e-01 1.9200286e-01 6.8516503e-03 2.7078002e-02 3.4818633e-02 -7.5621599e-02 -1.7431903e-02 -4.0799956e-02 -2.4369576e-02 -2.9620691e-02 -6.8970040e-02 -4.9389806e-02 8.1944122e-02 6.8099003e-02 -4.0550072e-02 + -8.2895396e-02 -1.4850662e-01 -1.6045749e-01 1.8675548e-02 -1.3848748e-01 -3.2660715e-02 5.5967823e-02 3.0395006e-01 -1.8297063e-02 5.9472014e-02 -2.0637362e-01 -2.4030157e-03 -1.8531634e-02 5.7702564e-02 1.8244194e-01 -2.5951403e-01 -4.2591279e-02 -2.9807887e-01 -1.1865601e-01 1.2351920e-01 -2.6706543e-01 6.3957384e-02 1.6037350e-01 4.4419190e-02 1.2280751e-01 7.8976460e-03 8.9965849e-02 2.2594090e-04 -6.8187485e-02 -6.1001239e-02 -4.0929349e-01 7.1765942e-02 1.3981607e-01 1.1173871e-01 -2.9921048e-01 -1.8161159e-01 + -2.4356170e-02 1.5174606e-02 2.7348642e-02 -8.1906711e-02 -1.6652847e-02 -7.1528927e-02 -3.3506317e-02 -1.3177177e-01 7.6147356e-02 3.7127890e-02 4.2246754e-02 -3.9412107e-02 2.0635940e-01 1.3246562e-01 -7.2271138e-02 -6.2032381e-02 8.6593134e-02 -7.9721455e-02 6.2044078e-02 9.0523278e-02 1.1813657e-01 8.0034997e-02 5.9412407e-02 -1.4502204e-02 1.3038387e-01 2.9455925e-02 -4.4845760e-02 8.7191977e-03 4.7971308e-02 2.1455742e-02 -8.4709113e-02 -1.3963023e-02 -3.1763869e-02 2.3714193e-02 6.4979022e-03 -6.6088263e-02 + -3.0435599e-02 -4.9522210e-02 1.4030264e-01 -8.9828514e-02 -4.8218577e-02 3.2482441e-02 -8.1463014e-03 -1.1947947e-02 -1.1805383e-01 -9.0467593e-02 7.6576984e-02 -8.5643507e-02 -1.6183260e-02 -3.4536918e-02 -4.1764747e-02 -9.7239441e-02 2.3248403e-02 -2.5662388e-01 -7.7837662e-02 3.8067629e-02 -9.1188117e-02 -2.0622303e-02 1.3777052e-01 -1.6401113e-02 9.6955001e-02 -1.0502650e-02 8.7231546e-02 -1.2260555e-01 1.8456843e-01 -7.9590742e-02 1.1343166e-02 -5.8230985e-02 4.2909780e-02 3.4147041e-02 -6.6160036e-02 -8.9503127e-02 + 5.5325281e-02 -7.2488525e-02 -1.7781285e-01 2.6625630e-02 5.6438250e-02 6.4870772e-02 -5.7974238e-02 5.1361162e-02 -5.5775702e-02 -1.0014994e-01 -1.4328530e-01 1.4222173e-02 -1.2177918e-01 -4.6515972e-02 -1.7169301e-02 1.7056790e-01 -1.0856289e-01 2.2876186e-01 -5.2427147e-02 -1.0809386e-01 -2.2388607e-01 -9.6906312e-02 -3.6276959e-02 -1.3758563e-02 1.0274122e-03 -6.0054628e-02 -2.7419190e-02 1.2621501e-02 -1.4424430e-02 -2.8434746e-02 -2.9460647e-02 7.8153363e-04 1.1450492e-01 -2.1977099e-02 -7.7775430e-03 2.7627323e-02 + 4.7097479e-03 -7.6011455e-03 -4.6962464e-02 2.5637789e-02 -9.1963887e-03 3.0334225e-03 -7.0058694e-03 5.8237056e-02 -6.6301062e-03 -2.7107904e-02 -2.9582612e-02 4.4134097e-02 -7.2590400e-03 -1.6981991e-02 1.9686439e-03 3.1247449e-02 -1.4678733e-02 5.4179469e-02 -1.6060439e-02 -3.1169564e-02 -1.5049355e-02 3.3330349e-02 -9.3281822e-03 3.5064296e-02 1.7486101e-03 -2.7314205e-03 -7.6937383e-02 2.5156648e-02 -3.3310243e-02 -1.4421672e-02 -1.2394945e-02 -9.0227453e-03 -4.7029457e-03 6.0810711e-03 -3.3273011e-02 1.9437234e-03 + -3.5708265e-02 1.6011045e-02 -1.3894266e-02 1.0599297e-01 -4.7684973e-02 -7.5630656e-02 -2.1916435e-02 5.6037277e-02 1.1422277e-01 3.5274260e-02 1.4955391e-02 8.4098608e-02 1.6160685e-02 -5.1273747e-02 -3.5712149e-02 3.4365767e-02 3.1216547e-02 1.5076224e-01 1.0533014e-02 9.6743246e-03 9.4070541e-02 4.4784813e-02 -3.0833025e-02 7.7659146e-02 -6.1650691e-02 3.7342589e-02 -1.1733035e-01 3.7084326e-02 -5.0758224e-02 2.0370781e-02 -2.1526771e-02 -2.5629646e-02 -4.5558859e-02 -8.3210313e-02 3.1183069e-02 1.1593378e-01 + 9.3256942e-03 4.8242178e-02 8.7059323e-03 -2.2750114e-02 1.1004073e-02 1.5079641e-02 5.9994328e-02 1.6788173e-02 -5.1998126e-02 2.7793870e-02 7.5150394e-02 9.1563335e-03 -2.4492532e-02 6.8687294e-03 1.5289286e-02 -7.3555923e-02 1.4103844e-03 -6.4904703e-02 -5.9666695e-02 4.9655294e-02 -1.5626158e-02 3.1938172e-02 3.9620135e-03 -4.6449201e-02 4.5460033e-03 -3.3729355e-02 4.5624922e-02 -1.8242528e-03 -1.2316574e-02 4.6962288e-02 5.7245506e-03 2.3784628e-03 8.5688744e-03 1.6131923e-02 4.0127372e-02 -4.7883604e-02 + 6.4393163e-02 2.1607269e-02 -6.4902605e-01 -1.4799544e-02 5.7808259e-02 -9.9264125e-02 3.8188529e-01 -2.0804502e-01 8.8117393e-02 3.9457153e-01 -7.0367022e-02 -4.0553059e-02 1.2613307e-01 3.8564153e-01 -2.1779572e-02 -4.7013895e-01 1.8140847e-01 2.7751024e-01 -1.2178161e-01 3.8687852e-01 1.5026529e-01 2.3016756e-01 2.0159787e-01 -2.3585596e-01 2.0985054e-02 -2.0449070e-01 -1.5133459e-01 3.7870517e-02 -2.9397926e-01 2.7108410e-02 -4.6348794e-01 -2.0533286e-04 2.8704875e-01 2.4611249e-01 8.6731788e-02 -9.2779495e-02 + -6.5655820e-02 -4.9421243e-02 -5.2881838e-01 3.0015607e-01 9.1912184e-02 -2.8413083e-01 -2.2928836e-01 5.5319135e-01 2.5896027e-02 -3.3815245e-02 -1.4968802e-03 8.0721727e-02 -1.7463571e-01 -3.1116152e-01 7.9978364e-02 5.2214262e-02 -2.5904543e-01 5.7692892e-02 1.3563325e-01 -5.4319134e-01 -1.4354855e-01 -6.5328787e-02 -3.3937228e-01 1.9358147e-01 9.5822753e-02 8.7181620e-03 -3.0828188e-02 3.7120877e-01 -3.7459235e-01 1.0092758e-01 -3.7859487e-01 2.5657045e-01 -1.6036713e-01 1.6062612e-01 -7.2141747e-04 -1.5711651e-01 + 2.9746128e-02 -5.6883194e-02 -2.7974444e-01 5.9412569e-02 1.2578903e-02 -3.8949202e-02 2.6350727e-02 1.5193443e-01 -5.1466008e-02 1.0969541e-03 -6.0461562e-02 -1.8542569e-02 -4.9309917e-02 -5.8982015e-03 3.5228321e-02 1.1243330e-01 -9.6107776e-02 1.2165789e-01 -3.2639598e-02 -4.3671015e-02 -6.8983290e-02 -2.4751482e-02 -1.1892784e-02 -3.1449682e-02 -2.4357886e-02 -3.6613538e-02 -8.7901180e-02 3.7053060e-02 -1.1853476e-01 -1.9439029e-02 -1.2406886e-01 6.2416563e-02 3.9833358e-02 7.2372477e-02 -6.0917346e-02 -3.2074860e-02 + -7.4599620e-02 6.1243752e-02 2.3200712e-01 2.9552738e-02 2.2324166e-02 7.3648624e-03 1.6422822e-02 1.6580182e-03 7.6587098e-02 6.0496671e-02 1.0363803e-01 3.3376193e-02 8.8350428e-02 7.0677132e-02 3.6121743e-02 -2.0379126e-01 5.3452388e-02 -2.4657664e-01 4.0816081e-02 1.6742187e-01 2.2049103e-01 2.8267501e-03 2.5094398e-03 -9.9507497e-04 -2.9904448e-02 2.5277388e-02 5.0127171e-02 9.9787496e-04 1.5837245e-02 6.9962698e-02 7.8004673e-02 -2.1679619e-02 -1.3193265e-01 -1.4373932e-02 6.3050123e-02 -2.1224862e-02 + -1.2409682e-02 8.1103495e-02 -5.0505324e-02 -1.5307396e-01 1.6827205e-01 -2.4572397e-01 3.5520326e-03 1.6263379e-01 -1.1319491e-01 2.1534327e-01 1.4657714e-01 -2.2576075e-01 -3.5861005e-02 -8.1444955e-02 2.0143960e-01 -1.7045050e-01 -1.1884993e-01 -6.3262657e-01 7.2473789e-03 -1.6610652e-01 2.0909447e-01 5.4733003e-02 -1.0312210e-01 -8.7148581e-02 -3.8793653e-02 8.9061091e-02 2.3627213e-01 -3.2118445e-01 -1.0522876e-01 7.5531897e-02 -2.0895570e-01 1.1197687e-01 -1.4078254e-01 -4.3923655e-03 -6.8156755e-02 -5.1606676e-02 + -8.4947525e-02 1.6793217e-01 5.3735725e-02 -2.1691363e-01 -1.1562586e-01 2.2137107e-02 8.8987815e-02 -3.0184510e-02 -1.0036233e-01 4.8150752e-02 1.2979561e-01 -2.8808248e-01 -1.7282112e-01 -1.2077006e-01 -1.3261997e-01 2.0167762e-01 -2.3095136e-01 7.8575123e-02 1.3865962e-01 -7.7648849e-02 1.8527908e-01 -2.5925262e-02 -2.5066526e-01 -1.9478200e-01 -3.7712107e-03 -1.7716629e-01 1.4851492e-01 -8.0382140e-02 -1.9331829e-01 -1.5271664e-01 2.9089947e-02 -3.1558364e-02 3.9990492e-01 -5.2471424e-02 5.0625350e-01 1.0416518e-01 + 4.6222582e-02 1.3774476e-03 -2.9394040e-02 -4.2624293e-02 -5.5450885e-02 -2.8860247e-01 6.8610345e-02 -9.3656996e-02 -9.2322063e-02 5.9090107e-01 3.1284823e-02 -2.2685274e-01 1.2654572e-02 2.8463993e-02 4.7479917e-01 -5.3014268e-01 -2.0854398e-01 -1.1903987e-01 8.3038824e-02 3.9253376e-01 -1.1858153e-01 -1.3701743e-01 -2.0360720e-01 1.5417670e-02 1.1069890e-01 -9.0849758e-02 2.0648813e-01 1.5810307e-01 -3.3055126e-01 -4.1549926e-02 -3.7754484e-01 1.6904625e-01 1.5808315e-01 2.3684761e-01 2.3482734e-01 -7.5138509e-02 + 3.7014220e-02 -8.0739590e-02 -2.2425334e-01 1.2379183e-01 1.3694339e-02 2.9116076e-03 -1.3831393e-01 1.2842605e-01 2.5705489e-02 5.1636869e-03 -1.6748388e-01 7.9903951e-03 -1.4505921e-01 -8.3346310e-02 -1.3481903e-01 1.7919938e-01 -1.1199056e-01 2.3620638e-01 -9.1094775e-02 -2.0015705e-02 -1.3931409e-01 -3.7699917e-03 -1.9209487e-03 2.3032242e-03 1.2523420e-01 3.8410725e-03 -1.3572044e-03 4.9734929e-02 -9.6701129e-02 4.0586731e-02 -1.9604617e-01 3.6481959e-02 1.1539630e-01 1.1746107e-02 -6.9487244e-02 4.0640034e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_G_4.txt new file mode 100644 index 00000000..e6eda046 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_G_4.txt @@ -0,0 +1,16 @@ + 2.6974669e-02 -1.0822418e-02 2.1485084e-02 3.6392359e-02 5.0078771e-02 1.2861245e-01 2.1460711e-02 4.6900050e-02 -4.8317930e-02 -7.9451840e-02 -1.4103053e-01 -3.4578817e-02 -7.8866773e-02 -6.2631129e-03 -2.4006819e-02 -2.9872639e-02 -1.1500636e-01 -2.2944328e-02 4.2020851e-02 2.8714277e-02 1.4364171e-02 5.9341260e-02 -2.9549931e-02 -4.4044699e-03 9.9137675e-03 8.6611373e-03 -1.2402855e-01 3.5499340e-02 -8.5175456e-02 -4.5502444e-02 -5.7053755e-02 5.5359094e-03 -1.0137961e-03 1.1590769e-01 5.5233374e-02 5.4099159e-02 2.5101886e-02 5.4384927e-02 + 2.9793835e-02 5.0353690e-03 4.5747039e-01 1.0848544e-01 -7.4029308e-02 -2.9392798e-01 4.7758735e-01 -1.1398271e-01 3.9832558e-03 1.1930672e-01 -2.0316450e-01 3.1433961e-02 2.1793288e-01 7.1891521e-02 -5.6827697e-02 2.9895924e-01 2.5125988e-01 -9.2889340e-02 -1.8978358e-01 2.3884988e-01 -1.0328254e-01 -8.5080664e-02 3.1168965e-03 5.3526769e-02 1.5397460e-01 -1.8097277e-01 -2.5504870e-01 6.8052656e-02 9.4855637e-02 6.4395433e-02 2.7665839e-01 2.4472297e-01 -3.3622574e-03 -4.4924102e-01 2.8797140e-02 4.5131821e-02 -1.2547539e-01 -6.9049485e-02 + 3.9545243e-02 -9.7824475e-03 6.8190290e-02 3.0277427e-02 6.1452789e-02 1.1595932e-01 2.3295796e-02 4.6030329e-02 -5.6412533e-02 -1.1333831e-01 -1.0205724e-01 -4.9048169e-02 -1.5945542e-01 1.6289084e-02 -1.0688012e-02 -1.2283031e-02 -1.2459282e-01 -3.3186186e-02 5.3584939e-02 3.2870151e-02 1.8695425e-02 6.6007173e-02 -3.6309570e-02 -6.1313299e-02 -2.4276920e-02 -3.2006944e-03 -5.2725130e-02 4.5108036e-02 -6.3872036e-02 -2.9876839e-02 -4.4743296e-02 4.2206133e-02 7.6326999e-03 7.4231068e-02 7.0891897e-02 7.0665368e-02 2.6338126e-02 2.5194406e-02 + 2.0740216e-02 -6.8148331e-03 2.9055691e-02 3.3842084e-02 4.2342451e-02 1.0209150e-01 1.9753816e-02 3.6579890e-02 -4.5489650e-02 -6.3063666e-02 -1.1575091e-01 -3.9335583e-02 -5.3016240e-02 -1.0143014e-02 -1.4118232e-02 -1.7509125e-02 -9.1420579e-02 -1.8975590e-02 2.4802619e-02 2.8680428e-02 6.9347886e-03 4.7792688e-02 -3.2735903e-02 -3.1667146e-02 -3.5091670e-03 6.2408582e-03 -9.7320591e-02 3.5521810e-02 -6.7559270e-02 -3.7855743e-02 -5.2627918e-02 -2.9374051e-03 -8.1057205e-03 9.7885013e-02 4.9307592e-02 5.1913153e-02 1.9430091e-02 5.3711443e-02 + 2.3074532e-02 1.2370016e-01 1.2780372e-01 -2.0733589e-02 1.4811107e-01 2.9222574e-01 -4.1917136e-01 1.1833101e-01 -2.6952083e-01 -3.6214220e-01 -4.6956337e-02 -5.1425372e-01 -4.5220793e-01 -2.0961019e-01 -2.1852498e-03 1.3698367e-01 1.6427343e-02 -1.3333312e-01 -2.0556176e-01 2.8918565e-01 -2.0613431e-01 7.4368504e-02 -3.5940822e-01 1.3386876e-01 -4.4111505e-01 1.2949510e-02 -3.8571383e-01 2.7620230e-01 7.7329940e-02 -3.4883898e-02 -1.8762694e-01 -1.5186504e-01 -3.1674160e-01 4.1815326e-01 3.1480856e-01 3.6829223e-01 6.9454758e-02 1.6334416e-02 + 3.1417461e-03 4.8282839e-03 2.9358341e-02 2.7031884e-02 2.8643575e-02 6.4853745e-02 2.0229645e-02 2.1806837e-02 -3.7910156e-02 -5.0468852e-02 -9.4726194e-02 -4.3292315e-02 -3.7549752e-02 -1.9337312e-02 -5.7917376e-03 -4.3818511e-04 -5.3957441e-02 -1.6136764e-02 1.5528259e-02 2.6564285e-02 -4.5026946e-03 3.1627545e-02 -3.4281209e-02 -2.5978109e-02 -1.2581085e-02 6.5223831e-03 -7.8715511e-02 3.5728449e-02 -2.7074915e-02 -3.9818200e-02 -4.1080740e-02 -4.0379871e-03 -2.1273410e-02 7.0941605e-02 3.8487300e-02 4.5855764e-02 9.1273610e-03 5.2699655e-02 + 1.0313759e-03 8.6773005e-05 8.6834752e-03 9.0538164e-03 9.3486140e-03 1.9684772e-02 1.3816370e-03 5.3798136e-03 -1.1464886e-02 -1.3545774e-02 -2.7381009e-02 -1.2182733e-02 -4.7176777e-03 -4.4369513e-03 1.6224070e-03 -2.1880195e-03 -2.2075509e-02 -2.0607742e-03 5.4714905e-03 2.6564651e-03 -9.6874970e-04 1.0553468e-02 -1.0118198e-02 -1.0436575e-02 -8.6187363e-03 3.4409336e-03 -8.8378982e-03 9.4543670e-03 -9.1141260e-03 -1.0829212e-02 -1.3592260e-02 -3.3162706e-03 -5.3251397e-03 2.1944469e-02 1.0895093e-02 1.2897166e-02 4.5782420e-03 1.5953855e-02 + 1.4966803e-02 -5.4550699e-03 2.5342704e-02 2.7745741e-02 3.5340299e-02 8.2218206e-02 1.2183068e-02 2.6852953e-02 -3.8656878e-02 -5.3043299e-02 -9.0356789e-02 -3.7018913e-02 -4.6798842e-02 -6.7376416e-03 -6.6747023e-03 -1.2073432e-02 -7.8370005e-02 -1.4604528e-02 2.2959735e-02 2.0736305e-02 5.8444273e-03 4.0228735e-02 -2.7365889e-02 -3.5951176e-02 -9.0220701e-03 5.5020197e-03 -6.2095261e-02 2.9188119e-02 -5.1063578e-02 -3.2168158e-02 -4.4164921e-02 -1.9539468e-03 -8.6229925e-03 7.7267854e-02 3.9926648e-02 4.4069802e-02 1.6350080e-02 4.5362355e-02 + 1.6173088e-01 -6.8365581e-02 -5.9725884e-02 -1.5784778e-01 -1.3243543e-01 -2.5362090e-01 2.3620874e-01 9.1799875e-02 2.7600182e-01 3.0649281e-01 1.9100254e-01 3.3655748e-01 -3.4997186e-01 8.6478515e-02 -1.5629010e-01 -4.3519020e-02 1.8210756e-01 -3.4397592e-02 -2.5638068e-02 1.0577364e-01 1.4104348e-01 -2.1103575e-01 2.7387304e-01 -1.6501504e-01 4.7412039e-02 -1.4282378e-01 -2.8597640e-01 -2.1674886e-01 -2.1128659e-01 2.8823581e-01 1.9090901e-01 -1.5538018e-02 2.6307391e-01 -2.6105736e-01 -1.6069127e-01 -2.4238394e-01 -1.2694419e-01 -2.4222648e-01 + -4.8448417e-03 4.3493512e-02 -2.1780740e-02 -3.6523421e-02 -1.7869213e-02 -4.0857692e-02 6.4996091e-02 5.5525628e-02 8.4743827e-02 -2.7843673e-02 1.0326876e-01 4.8557433e-03 2.7685469e-01 -5.0954429e-02 -2.7506604e-02 -7.1743404e-02 2.6080564e-01 -4.9621410e-04 5.3229152e-02 -1.4859408e-01 4.1377262e-02 -7.9496880e-02 6.7537162e-02 4.6954993e-02 -2.5414513e-02 5.7987419e-02 9.9806947e-02 -4.5621803e-02 7.0856832e-05 7.3969981e-02 3.7300416e-02 5.2089718e-02 3.1182812e-02 -1.4676285e-01 -8.8937484e-02 -1.1349077e-01 -1.4047179e-02 -1.2337290e-01 + -2.1758425e-01 1.1500248e-01 1.8300461e-01 -2.9089910e-02 -5.8373301e-02 -1.7660451e-01 -5.4693890e-02 -2.5026977e-01 -7.5051703e-02 -1.4807231e-04 -1.1888421e-01 -7.3562906e-02 3.3929427e-01 2.3753362e-02 1.5611436e-01 1.9449376e-01 1.6647412e-01 2.6229920e-02 -1.1566827e-01 -6.0839489e-04 -1.2457458e-01 3.7657942e-02 -1.3514037e-01 -8.2747835e-01 5.2819780e-02 -4.8993517e-03 1.1432852e-01 1.2535373e-01 4.8671779e-01 -2.2607914e-01 -4.6291058e-02 2.7227478e-01 -1.3092602e-01 -7.2909837e-02 7.4353799e-02 1.1179761e-01 1.2868912e-03 -6.6242167e-02 + 1.7785255e-01 -8.5219988e-02 -1.3800615e-01 -9.2119968e-02 -6.0872748e-02 -7.1177798e-02 2.3405049e-01 1.2657121e-01 1.4375619e-01 1.9364147e-01 -6.8722065e-02 2.7921355e-01 -3.3546836e-01 6.7303604e-02 -2.4610437e-01 -9.6868473e-02 7.0762613e-02 -4.4589320e-02 3.7943518e-02 1.2835242e-01 1.3718400e-01 -9.8392061e-02 2.1048029e-01 2.4741097e-01 3.1759024e-01 -1.3544802e-01 -4.1416136e-01 -1.6411479e-01 -2.9463976e-01 1.3261127e-01 1.6936082e-01 1.6055083e-01 1.9251697e-01 -1.6237842e-02 -8.5217236e-02 -1.5636926e-01 -7.1909927e-02 -2.6159126e-01 + -2.0076127e-02 6.6176344e-03 -2.8969842e-02 -3.4074127e-02 -4.1735641e-02 -1.0094568e-01 -2.0566281e-02 -3.5838049e-02 4.5257178e-02 6.0713348e-02 1.1638160e-01 3.8853155e-02 4.8433777e-02 1.1094928e-02 1.3802246e-02 1.6974573e-02 8.9432203e-02 1.8436241e-02 -2.3014243e-02 -2.8918321e-02 -6.6057400e-03 -4.6997257e-02 3.2698736e-02 3.2157756e-02 2.3625382e-03 -6.1156814e-03 9.7574944e-02 -3.5298463e-02 6.8184508e-02 3.7785402e-02 5.3328690e-02 3.6887122e-03 8.6290255e-03 -9.8573898e-02 -4.8460875e-02 -5.1414490e-02 -1.9041591e-02 -5.4148090e-02 + -7.2001454e-02 -1.1721224e-02 -1.5100416e-01 -1.2348676e-01 -1.3873192e-01 -3.4067166e-01 -8.0975153e-03 -1.2826517e-01 1.6052464e-01 8.4127255e-02 1.5041934e-01 9.3583939e-02 -5.8470107e-01 1.3490766e-01 1.6501971e-02 -1.2067300e-02 9.6383917e-02 5.1584512e-02 4.9393974e-02 -2.1845088e-01 7.9815782e-02 -9.0132106e-02 1.4240881e-01 -2.1705531e-01 -2.3329148e-01 -3.2863936e-02 3.5406589e-01 -1.3336851e-01 3.4683775e-01 2.6300147e-02 1.0163492e-01 2.4729744e-02 8.8241500e-02 -2.3862189e-01 -1.4681265e-01 -1.7728788e-01 -1.1384816e-01 -9.4688847e-02 + 3.7687249e-02 -1.1683298e-02 5.2840318e-02 1.0499662e-02 2.2847733e-02 2.2564557e-02 1.8558983e-02 8.1338549e-03 -1.7935158e-02 -3.2134868e-02 -2.3898067e-02 9.3783840e-03 -1.5500787e-01 4.1012439e-02 -1.1675917e-02 2.0903002e-02 -5.1703666e-02 -1.9948733e-02 5.8642608e-03 4.4193610e-02 1.4132620e-02 2.1963786e-02 3.7289600e-03 1.0619078e-02 4.0856827e-02 -3.3357823e-02 1.8092527e-02 1.5523890e-02 -3.0063137e-02 1.2977669e-02 2.9513241e-02 5.5797399e-02 3.3527840e-02 -3.5900342e-02 3.2791970e-02 2.6937155e-02 8.2850526e-03 -5.7555506e-02 + -1.0704948e-01 4.3754756e-02 1.4198917e-01 9.3939488e-02 5.9280315e-02 -5.9756679e-02 -1.9114352e-01 -6.6210831e-02 -1.1082270e-01 -1.5938715e-01 -4.2225159e-02 -2.0077363e-01 1.6249871e-01 -2.9050223e-02 1.7266352e-01 6.5627323e-02 -1.0284727e-01 4.6935743e-02 6.0826296e-02 -1.8375113e-01 -1.2393795e-01 9.0074290e-02 -1.2824674e-01 3.6962666e-03 -3.4241606e-01 1.0947374e-01 3.9700095e-01 1.0250551e-01 2.2903336e-01 -1.4250785e-01 -5.6133856e-02 -7.0675416e-02 -1.5736898e-01 -5.9807337e-02 7.0085159e-02 9.8409543e-02 5.2624969e-02 1.7577986e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_LW1_G_5.txt new file mode 100644 index 00000000..2b99ed2f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW1_G_5.txt @@ -0,0 +1,21 @@ + 4.5566845e-02 -4.0113892e-02 -4.3794970e-02 -1.0765033e-01 4.3323227e-02 -1.2832595e-01 8.3444508e-02 1.8731327e-03 1.1444330e-01 5.8271539e-02 -8.8134078e-02 -9.8485539e-02 5.3123753e-02 -9.7687717e-03 -2.4909339e-01 5.8288726e-02 -6.3029065e-02 1.6115055e-02 -1.5257966e-01 -1.1243531e-01 1.2189069e-01 -1.3445402e-02 8.3084625e-02 -1.1270033e-01 5.7663366e-02 -1.2067618e-01 -1.9000198e-02 -7.7847314e-02 3.1771579e-03 -1.2544987e-01 1.0262006e-01 9.2534782e-02 -2.4973704e-03 9.7111070e-02 1.5533092e-02 -1.8555712e-01 -4.1815889e-02 7.6167621e-02 3.8720580e-02 1.3221463e-01 7.9405848e-02 + -1.8539637e-01 1.5400027e-01 2.9377417e-01 -2.9457224e-03 -2.0280789e-01 1.0906596e-01 -2.6552528e-01 -3.2176012e-01 -1.7463129e-01 6.8894076e-01 7.8624388e-01 1.2932019e-01 5.1812697e-01 -1.5692643e-01 1.6701762e-02 -8.3082004e-02 3.1215033e-02 2.1382039e-01 3.6909823e-01 4.5396260e-01 7.9792215e-02 -1.7960450e-01 -7.4640884e-01 7.7133381e-01 1.6937209e-01 2.3514041e-01 7.1996706e-01 -3.3346076e-01 5.7166869e-01 1.8702860e-01 -3.0699708e-01 -4.7761415e-01 -2.1216799e-01 -1.2438599e-01 -3.6061258e-02 3.1123201e-01 1.3657184e-01 -3.8019752e-01 -1.2136149e-01 -7.1573057e-02 9.1511903e-02 + 5.4824532e-02 -1.9679061e-02 -1.9943119e-02 -2.7713899e-02 7.1771450e-02 -7.4964572e-02 2.7162670e-02 5.4658655e-02 4.7866650e-02 -2.8037682e-02 -3.7373060e-03 -5.2577071e-02 -5.8312644e-02 -3.9841437e-02 -4.9584037e-02 5.4828739e-02 -2.1010144e-02 -6.5993889e-03 -1.2131067e-02 -4.9292928e-02 -2.3625186e-02 -2.5783618e-02 3.7453740e-03 -8.7494910e-02 7.8396503e-02 9.6525064e-02 5.9651406e-02 -1.8484991e-02 1.3064470e-02 -3.2861396e-02 4.4316800e-02 -2.4328642e-02 2.0729022e-03 -4.0803553e-03 4.1275141e-03 -1.6185117e-02 4.5874242e-02 7.8733676e-03 4.1840932e-03 -1.2686453e-03 -2.3218418e-02 + 7.9462334e-02 -1.5794943e-02 5.5232428e-02 5.2119379e-03 7.2519446e-02 2.8735562e-02 -9.5092697e-02 -1.0389036e-01 -4.3479287e-02 -1.5308779e-02 8.5564295e-02 -9.3758264e-02 -5.3654711e-02 -3.2091984e-03 -9.9288746e-02 7.2102842e-02 6.1209845e-02 1.7623345e-02 5.4531726e-02 -5.6965149e-02 -5.6852540e-02 -8.4918414e-02 -6.0115276e-02 -6.6458607e-02 -4.4852229e-02 1.2562363e-01 8.0449630e-02 -5.0570090e-02 -1.6211111e-02 -1.7021999e-02 1.2803707e-01 4.1271925e-02 4.2696874e-02 4.8581546e-02 -3.7972120e-02 8.3522876e-04 -7.3565074e-02 5.2944040e-02 -1.2010539e-02 -3.7855279e-02 -9.0880455e-02 + -5.9351183e-02 9.9848895e-03 -1.3809360e-02 8.1677356e-02 -6.3295809e-02 5.5863908e-02 1.7263952e-02 4.4953926e-02 -8.8161879e-03 7.6603452e-02 4.5822268e-02 1.3345073e-01 1.7773063e-02 3.6713728e-02 2.1199343e-01 -3.6490674e-02 -1.7071871e-02 1.2751123e-03 2.8053312e-02 1.0594756e-01 -2.6987887e-02 6.1375946e-02 -5.4240922e-02 1.4957326e-01 -6.2536565e-02 -2.7525257e-02 -2.7498172e-02 7.8983313e-02 -6.9252091e-02 8.2116500e-02 -9.3309880e-02 -4.5890226e-02 1.4831179e-02 3.7282506e-02 -1.4857665e-02 9.0601534e-02 1.1415479e-02 -3.7600772e-02 -3.7123425e-03 -8.8981195e-03 -8.9313982e-03 + 1.2709328e-02 -1.5467833e-03 6.4083053e-03 -7.7884111e-02 6.5224590e-02 -9.5273842e-03 -2.1629394e-02 -2.8905925e-02 -1.2333229e-02 -4.0849612e-02 -4.3503504e-02 -5.6374805e-02 -2.3102635e-02 -1.2116957e-02 -8.6266146e-02 -1.2078418e-02 9.3111907e-03 5.5683987e-03 1.0815892e-02 -3.4643954e-02 -2.9751573e-02 -3.2576224e-02 3.4784604e-02 -1.4425402e-01 2.7324565e-02 -3.7559791e-02 2.7786863e-02 -6.4393119e-02 7.1427246e-02 -2.5108038e-02 3.0712232e-02 5.9813260e-03 -1.6318329e-02 -1.4024373e-02 3.9967906e-02 -7.6772804e-03 3.2132012e-02 4.1230849e-03 -1.5179705e-02 -5.8255071e-03 7.2407499e-03 + -3.0619269e-03 2.2840608e-02 3.7266779e-02 -1.2010944e-01 1.1362386e-01 2.1189442e-02 -7.9518617e-02 -9.3938738e-02 -5.2868624e-02 7.2963413e-02 -1.5752388e-01 7.6374198e-02 -1.1767144e-02 -1.3959631e-02 1.2232538e-01 -1.0308576e-01 -3.6232627e-02 -8.5680530e-02 1.2680009e-02 9.6900209e-02 1.0060460e-01 -1.0133121e-02 -1.7241616e-02 -1.5818486e-01 1.2010245e-01 -2.5243025e-01 1.5483720e-01 -9.8147687e-02 9.9182348e-02 -1.5468484e-02 -8.0169402e-02 -6.8094715e-02 4.1372822e-03 1.2023489e-02 5.4631067e-02 5.3197497e-02 5.5111996e-02 -4.3432337e-02 -2.3487090e-02 -9.2321778e-03 -3.2832807e-02 + 1.3909177e-01 -1.1762939e-01 -1.8480281e-01 2.2207623e-01 -2.1891995e-01 4.2666048e-01 -1.3415172e-01 -9.2970787e-02 -7.1912069e-02 -1.0860562e-01 -9.0108918e-02 2.9871877e-01 3.5382863e-01 2.7069544e-01 3.9839605e-01 2.2563707e-01 3.8685921e-01 -2.5173718e-01 -1.7736709e-01 -9.5380890e-02 -3.6737662e-01 2.2062491e-01 3.1836801e-01 4.5289213e-01 -3.5958074e-01 4.4693212e-01 3.4846242e-02 4.2167660e-01 -7.2089600e-02 3.1244243e-01 -1.3578085e-01 -1.2891103e-01 2.7798830e-01 1.8933023e-01 1.5353769e-01 1.0015394e-01 -2.0800277e-01 1.5515670e-01 -1.2939893e-01 -3.0986543e-01 -3.4546138e-01 + 1.1246762e-02 1.4963084e-02 1.4795827e-02 -7.6145644e-02 6.9680813e-02 5.6889591e-03 -7.1826220e-02 -4.8281789e-02 1.3595256e-02 -3.1571116e-02 -6.9209321e-02 -3.2664909e-02 1.3310005e-02 -1.8474041e-02 -5.4743177e-02 -2.6698072e-02 1.4121385e-02 4.9888037e-02 -2.9020122e-02 -3.9388750e-02 -1.9644736e-02 -6.5802448e-02 2.8466749e-03 -1.6084910e-01 2.1678467e-02 -7.3837422e-02 4.8759975e-02 -5.5784280e-02 9.0257657e-02 -2.2452954e-02 -8.5917631e-03 1.2146607e-02 -2.3748250e-02 -4.2110174e-02 -1.4787131e-02 2.1906727e-03 3.6281462e-02 -1.3130420e-02 2.1101137e-02 2.1298952e-02 2.5979054e-03 + -3.8560854e-02 7.8379443e-02 1.0181078e-01 -3.1240908e-01 2.0840199e-01 -3.4858992e-01 2.5604111e-01 -1.1361991e-02 1.9908944e-01 1.2058968e-01 3.7303745e-01 -5.7317742e-01 -3.2662589e-01 -2.8903638e-01 -5.8493125e-01 2.2320276e-02 -2.2128366e-02 5.0962040e-01 2.4588448e-01 1.1565718e-01 1.0420108e-01 -4.5713961e-01 -2.5180525e-01 -5.2902830e-01 2.7088552e-01 -5.7762636e-01 2.7303685e-01 -4.0732959e-01 3.9235186e-01 -2.5624331e-01 2.1541387e-01 -9.5149590e-02 -3.8860251e-01 -6.7449838e-01 -1.7951891e-01 3.6341698e-01 -1.2320794e-01 -2.0809324e-01 1.1291436e-01 3.7906579e-01 4.9308794e-01 + -6.7103737e-02 1.8405862e-02 9.0896923e-02 -7.5322958e-02 9.0542467e-02 -4.8945859e-02 4.7140993e-02 2.1749874e-01 -1.1469586e-01 -6.7130366e-02 -5.3710000e-02 -3.1889746e-02 -2.1025362e-02 -1.0755477e-01 -1.2445805e-01 -1.3312126e-01 -4.0623077e-02 3.7743155e-02 5.7236693e-04 -9.2451227e-02 7.5603110e-02 -8.0106626e-02 8.3971805e-02 -2.7511638e-01 1.4333226e-01 -1.5294646e-01 -9.0637443e-02 -8.1589038e-02 1.4638538e-01 -6.1181395e-02 -6.6694295e-02 2.0078251e-02 -1.2227496e-01 -2.8249546e-01 1.2668524e-01 -5.1272390e-02 1.8431991e-01 -7.7583501e-02 -5.5380154e-02 -4.1825890e-02 1.3631375e-01 + 2.6664353e-02 -3.0292515e-02 3.8604854e-02 -3.4842743e-02 6.7161098e-02 1.7366971e-02 4.7405648e-02 1.3173251e-02 2.9229125e-03 3.3984084e-02 8.0154523e-02 -2.6391190e-02 4.3444680e-02 4.9481360e-02 -3.5036504e-02 4.0094338e-02 4.4594486e-02 -3.3260700e-02 -1.2776001e-01 5.1202862e-02 -3.5504839e-02 4.1429257e-02 2.6121985e-02 -1.1637718e-01 -1.8471277e-02 7.1799526e-03 -2.2215748e-03 2.1367474e-02 2.9571965e-02 -2.6264127e-02 -2.7715692e-02 5.5804299e-02 5.5193294e-02 2.2195266e-02 -4.6894625e-02 -1.2878206e-01 -7.9675957e-02 6.3490939e-02 3.1687396e-02 3.7338475e-02 -3.2928466e-02 + 5.6010219e-02 1.5306990e-02 9.7564972e-02 8.0288358e-04 5.8109856e-02 -1.1038575e-01 1.6718733e-01 -4.1967755e-02 1.5185885e-01 2.2552310e-01 1.0086149e-02 -1.1577640e-01 -2.7560444e-02 -6.9887256e-02 -3.1752328e-01 1.1569777e-01 3.1518971e-02 8.1525711e-02 -2.0522825e-01 -1.8996004e-02 2.7810114e-01 -1.5504406e-01 -1.1522223e-01 -5.2733726e-02 7.5732788e-03 1.1876941e-01 1.0343803e-01 -7.7039878e-02 -1.2122532e-01 -1.5529912e-01 1.1237995e-01 8.0683931e-02 -3.1758630e-02 -9.6980868e-03 -2.3947760e-01 -2.6367591e-01 -1.6437276e-01 5.2470810e-02 1.4219834e-01 1.5976044e-01 8.9184865e-02 + -2.4032283e-01 7.9284845e-02 -2.6206986e-02 -5.4882352e-03 -1.1035043e-02 1.6645853e-02 9.1286075e-02 1.9629966e-01 6.9164782e-02 -7.9440638e-02 -8.0618105e-01 1.5416044e-01 1.9196299e-02 1.1825302e-01 1.9037956e-01 -2.2658695e-01 -9.3092324e-02 -3.8251170e-02 -8.2709328e-02 3.6380470e-01 1.3619147e-02 1.6630276e-01 9.0217008e-02 -9.8692909e-02 2.7462334e-02 -5.0505464e-01 -4.6689154e-02 1.2718167e-01 -1.0914113e-01 -1.9596730e-02 -2.1122085e-01 -1.2234024e-01 -4.0482185e-02 2.5373235e-01 1.9984778e-01 -2.4682788e-01 1.8457063e-01 -9.8930935e-02 -8.7048948e-02 8.4538247e-02 1.0623554e-01 + -5.8972745e-02 3.5452271e-02 1.2261084e-02 6.0206729e-03 -4.1439910e-02 3.4447487e-02 -1.1499062e-01 -7.4221024e-02 -4.7861356e-02 5.7071055e-02 -1.0364019e-01 8.1575050e-02 1.7170508e-02 1.1315009e-02 5.1864417e-02 -6.9327971e-02 -6.8043016e-02 6.3036286e-03 1.2012729e-01 3.6238146e-02 1.9564866e-02 -2.3642480e-02 -2.3787016e-02 1.1357199e-01 9.5022356e-04 -6.0657563e-02 1.1507909e-01 -1.0567992e-01 -1.3084309e-03 8.6336080e-02 -4.0594421e-02 -1.0754396e-01 -2.9203119e-02 3.1933708e-02 9.3495420e-02 9.0358340e-02 9.6730998e-02 -5.0545058e-02 -5.6706884e-02 -7.1880812e-02 -4.8244950e-02 + 1.4240521e-01 -5.9115011e-02 -5.7937499e-02 4.2638184e-02 -2.0273700e-04 1.2116272e-01 -1.3617746e-01 -1.5066756e-01 2.1048302e-02 2.9910064e-03 3.6767674e-02 1.0603238e-03 2.6754943e-01 1.6397044e-01 1.5248918e-01 -9.7000694e-03 1.2999928e-01 -2.8179443e-01 -1.4586621e-01 -7.9899477e-02 1.1389847e-02 1.5535256e-01 1.5927650e-01 1.0726815e-01 -6.8218351e-02 3.7132486e-01 -5.1526740e-02 1.5570037e-01 -1.3911406e-01 -6.0892240e-02 -1.1642345e-03 1.0607346e-01 1.7922323e-01 -2.6241682e-01 -4.8649753e-02 -1.2473416e-01 -9.3524582e-02 1.7744904e-01 2.4435668e-02 -5.6700402e-02 -2.0580861e-01 + 1.1083073e-01 -9.4066532e-02 -1.7088539e-01 -1.8304057e-01 1.0228139e-01 1.3040105e-01 -1.4955699e-02 -2.1383937e-01 1.2399431e-01 1.0440691e-01 1.3512851e-01 9.8194081e-03 1.4903811e-02 2.0970769e-01 -8.0067934e-02 1.6277021e-01 6.6799128e-02 -1.2374507e-01 1.7033930e-02 -1.3153483e-01 -3.8725556e-02 7.7409485e-02 2.8721226e-01 -2.9059983e-01 -3.0909779e-01 9.8086398e-02 2.1401716e-01 -2.0486766e-01 -4.1580729e-02 9.6562118e-02 1.1454448e-01 -1.3354129e-01 1.6704504e-01 3.5121566e-01 2.2722557e-02 1.0925957e-01 1.9582496e-02 1.2810448e-01 -3.2449826e-02 8.5885294e-02 -4.8448399e-02 + -3.9376978e-04 1.5526251e-01 1.4683806e-01 3.8269062e-02 4.6005130e-02 8.2346592e-02 4.3665926e-02 1.1708199e-01 -1.0626240e-02 -1.0884757e-01 -2.7421138e-01 -5.4163474e-02 -1.0317767e-01 -1.0054267e-01 2.2920212e-01 -5.7228722e-02 2.5626390e-01 -7.7658049e-02 5.6480689e-02 5.0277841e-02 -2.5229527e-01 -5.9681615e-02 1.7917031e-01 7.2095903e-02 2.3319266e-02 -3.8219530e-01 1.3357525e-01 2.3136807e-01 2.9166504e-01 -3.8559192e-02 -8.6819385e-02 -9.1708646e-02 -1.0669703e-01 3.4296025e-01 -5.1706119e-01 -2.6016224e-01 -8.4598858e-02 2.2778447e-02 1.8037840e-01 4.5826725e-02 2.2706275e-01 + 2.7760801e-02 -4.3760334e-02 1.8535277e-02 -4.8314774e-02 4.4361883e-02 -5.5603139e-02 6.2532034e-02 -3.4129743e-02 -4.3179896e-02 4.5197898e-02 3.2471124e-02 -2.0063925e-02 -8.7089142e-04 -2.5353472e-02 -2.1423500e-01 -3.0000270e-03 -7.9074476e-03 4.0708975e-02 -6.8562376e-02 -1.1610295e-02 5.4988878e-02 -7.5635941e-02 -1.6192468e-01 -7.5807769e-02 -8.6350662e-02 2.3855872e-04 -7.1945568e-02 -9.8352603e-02 2.7658536e-02 -5.7494171e-02 -2.3911497e-02 1.6279373e-01 3.5749138e-02 6.6024790e-02 -1.4068114e-01 -1.3497367e-01 -9.4967073e-02 3.8684685e-02 1.0241358e-01 1.0219529e-01 2.7818107e-02 + 1.4262155e-01 -1.7205346e-01 -2.7448233e-01 -1.6109386e-01 1.8567762e-01 4.7900950e-02 -2.7140310e-02 -5.8509052e-02 9.1796971e-02 -1.6815340e-01 -3.2050486e-02 -1.5582734e-02 -7.2864467e-02 1.6944051e-01 1.2291931e-01 5.7761348e-02 1.3636612e-02 -1.5135020e-01 -4.3240020e-02 -9.4616952e-02 -2.3411237e-02 1.6512826e-01 2.8085976e-01 -2.9736528e-01 -1.7238631e-01 1.4453388e-01 -9.6479292e-02 4.7550418e-02 -1.5870231e-01 2.0026920e-02 1.1136542e-01 6.9416589e-02 2.1050883e-01 1.0430022e-01 4.2556012e-02 -7.8698496e-02 -7.4022679e-02 1.9198109e-01 3.4367405e-02 9.0017396e-02 -4.8139892e-02 + -3.6379407e-02 -7.0072319e-03 -2.8645322e-02 5.8935517e-02 -5.8036063e-02 1.6161707e-02 2.0302365e-02 3.3628786e-02 6.9153901e-03 7.9062974e-02 8.9004174e-02 8.8706614e-02 2.0698821e-02 2.5061634e-02 1.1265086e-01 -1.1291058e-02 -4.4732369e-02 7.0663453e-03 6.8802532e-03 5.5958787e-02 -8.3478837e-03 4.2176089e-02 -3.2554976e-02 1.5326485e-01 -3.9998393e-02 1.3652899e-02 -2.5429050e-02 4.3067786e-02 -7.2802630e-02 4.9474533e-02 -4.9619701e-02 -1.1773978e-02 1.4701424e-02 3.5846194e-02 1.6346192e-02 3.3722585e-02 -8.5383969e-03 -1.8448950e-02 -1.3073643e-02 -8.7405054e-03 -2.2820801e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_F_1.txt new file mode 100644 index 00000000..dac59af4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_F_1.txt @@ -0,0 +1 @@ + 3.2934176e-01 1.1618110e+00 3.4891198e-01 1.1399177e-01 -1.6811925e-01 -6.9566466e-02 3.7014243e-01 -1.8939153e-02 -3.0491748e-01 -2.7119273e-01 9.2455830e-02 -2.4137447e-01 6.5401156e-04 -2.1319989e-01 1.9909694e-01 -4.0776756e-01 6.8447102e-01 -3.2388342e-02 -3.1541267e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_F_2.txt new file mode 100644 index 00000000..d8a5a66f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_F_2.txt @@ -0,0 +1 @@ + -1.8864453e-01 6.1953076e-01 -4.6963864e-02 4.1055308e-01 2.7464763e-01 -1.8664357e-01 -4.3303951e-01 1.1450502e-01 3.1329536e-01 -7.0986691e-02 -1.4754774e-01 -6.9185442e-01 -9.2937580e-01 3.8273094e-02 4.6151950e-02 8.8231619e-01 3.5456930e-01 9.1122979e-01 5.5900810e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_F_3.txt new file mode 100644 index 00000000..aaeac15e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_F_3.txt @@ -0,0 +1 @@ + 4.3864057e-01 -1.1366153e-01 3.2891660e-01 -1.5348049e-01 1.5878928e-01 3.7324051e-02 -4.0066712e-01 -2.4529917e-01 5.7633574e-01 -7.8018359e-01 -4.7525264e-01 1.3512920e-01 -3.7455858e-01 1.8224950e-01 7.1874034e-01 -8.9258051e-01 2.1227785e-01 4.1471869e-02 1.5583911e-02 1.5812313e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_F_4.txt new file mode 100644 index 00000000..b3917561 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_F_4.txt @@ -0,0 +1 @@ + -6.2459415e-01 -7.2033790e-01 1.9719971e-01 -4.8740898e-01 1.1361280e-01 -2.7452190e-01 6.7651373e-01 -8.4940801e-01 -2.3167921e-01 -5.4292400e-01 4.2685939e-01 1.7461835e-01 3.0455432e-01 -1.3437162e-01 -4.6164910e-01 -1.8842991e-01 7.2359739e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_F_5.txt new file mode 100644 index 00000000..f8c35d5d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_F_5.txt @@ -0,0 +1 @@ + -9.6320385e-02 -2.9469923e-01 -2.7511506e-02 4.5175381e-01 -4.1149824e-01 3.2155672e-01 1.7032311e-01 -3.9438295e-01 -8.6341775e-01 -4.3776282e-02 7.5131774e-01 -5.2230055e-01 2.1603022e-01 6.0397880e-01 6.2287126e-01 1.5372074e-01 -5.6980300e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_G_1.txt new file mode 100644 index 00000000..9e7b5ea4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_G_1.txt @@ -0,0 +1 @@ + -2.0881416e-01 2.9181493e-01 9.7820734e-01 4.9895693e-01 5.4560816e-01 -5.2213625e-02 -2.1456825e-01 -1.2899594e-01 1.4766720e-01 5.9421432e-01 -4.0308547e-01 8.9394432e-01 4.3915990e-01 -3.5297013e-01 -2.4445519e-01 5.2903644e-01 3.2592190e-01 9.1191370e-01 6.2221645e-01 -4.5713757e-02 3.9996548e-01 2.3705368e-01 -1.8686816e-01 7.9269902e-01 4.2592783e-01 -3.2991305e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_G_2.txt new file mode 100644 index 00000000..f2cf5732 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_G_2.txt @@ -0,0 +1 @@ + 2.5388113e-01 -6.1104309e-01 -1.2318697e+00 -5.0839760e-01 4.4105720e-03 3.5919459e-02 7.7105611e-02 2.3096251e-01 -3.8934046e-02 -1.5843488e-02 4.6010908e-01 -3.6342357e-01 -1.8740557e-01 -1.9727801e-01 3.4319973e-03 -2.3659600e-01 -4.1658776e-01 -9.2528910e-02 -1.2320636e-01 -5.7630387e-01 -5.9429924e-03 -1.5288249e-01 8.1769393e-01 4.2993366e-01 -2.1879474e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_G_3.txt new file mode 100644 index 00000000..91990877 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_G_3.txt @@ -0,0 +1 @@ + -1.7422390e-02 1.9952172e-01 -1.5768330e-01 -1.6676592e-01 -6.2578307e-01 -4.8517918e-01 9.5716006e-02 1.2544564e-01 2.8247353e-01 -6.4376283e-01 1.0350178e-01 9.1680922e-03 -3.4680617e-01 -1.1451630e-01 2.1573580e-02 2.4285490e-02 3.7751209e-01 -1.2386765e+00 -5.2170715e-01 3.9429263e-01 7.1474784e-01 4.7179484e-01 -7.6080501e-01 -5.1200803e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_G_4.txt new file mode 100644 index 00000000..3b5fa72d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_G_4.txt @@ -0,0 +1 @@ + -3.8135988e-01 4.4244021e-01 -3.5051695e-01 -3.1319187e-01 -1.0350843e+00 -2.3933521e-01 -6.8036458e-02 -2.5675542e-01 -4.9368095e-01 5.5195398e-01 4.7240209e-01 -3.6430212e-01 3.0978777e-01 4.8631105e-01 -3.1329235e-02 2.5162754e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_LW2_G_5.txt new file mode 100644 index 00000000..771f50b5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_LW2_G_5.txt @@ -0,0 +1 @@ + 5.6708234e-01 8.6055809e-01 1.5581712e-01 1.1466916e-01 -4.7112555e-01 2.7337525e-01 1.2462217e-01 4.7377996e-01 2.8022233e-01 -3.3604262e-01 5.2542651e-01 9.8820350e-02 6.9605951e-01 -3.4688542e-01 -1.8775914e-01 1.4252329e-01 -2.5180819e-01 6.8814437e-01 2.9690284e-01 -1.4643136e-01 -3.5085822e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_b1_F_1.txt new file mode 100644 index 00000000..9bb09c26 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_F_1.txt @@ -0,0 +1,36 @@ + -7.6605315e-01 + 5.2752092e-01 + 1.6555260e-01 + -1.0749828e-01 + 3.4472882e-03 + 1.1977504e-01 + 1.4205857e-01 + 3.0402689e-01 + -1.3719445e-01 + -2.5346494e-01 + -7.7532884e-02 + 1.3507948e-02 + 3.8979192e-01 + 2.0755309e-01 + -7.2309987e-02 + -2.6517417e-02 + -6.6718065e-02 + 9.7063201e-03 + -1.7316538e-01 + -9.6292665e-02 + -6.7993610e-02 + 1.9345289e-01 + 2.5659281e-03 + -1.4245387e-01 + -2.0940512e+00 + -7.4036809e-01 + -5.4611082e-01 + -1.2599749e-01 + -2.9081781e-02 + 1.6282103e-01 + 1.5182149e-01 + -4.3775618e-02 + 1.6649483e-01 + 1.8249887e-01 + -2.0957222e-01 + 1.3023324e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_b1_F_2.txt new file mode 100644 index 00000000..ad88f2ad --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_F_2.txt @@ -0,0 +1,39 @@ + -8.1083991e-02 + -6.0927002e-02 + 9.7529684e-01 + 7.0973535e-02 + -2.3882607e-01 + 2.1124944e-02 + 7.1374064e-02 + 1.3250752e-01 + -4.8001254e-02 + 9.0256422e-01 + -6.1947919e-03 + -4.2668367e-02 + -1.5805698e+00 + 7.1036120e-02 + 2.0246714e-01 + 1.0916988e-01 + 5.0465015e-02 + -1.0514452e-02 + 3.3871077e-02 + -1.5815433e-01 + -2.9976620e-01 + -1.6326703e-02 + -2.5142259e-01 + -1.1456819e-01 + 8.7831942e-01 + -1.7254591e-02 + 3.6554168e-01 + -2.6040840e-02 + -5.5897749e-01 + -3.0468631e-01 + -8.3202183e-03 + 1.0362737e-02 + -4.8906258e-01 + 1.7731644e-02 + -1.2670351e-01 + 2.5650812e-01 + 4.4309956e-02 + 8.4659706e-02 + 3.2332938e-03 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_b1_F_3.txt new file mode 100644 index 00000000..8330a9fc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_F_3.txt @@ -0,0 +1,39 @@ + 1.4851374e-01 + -9.1029122e-02 + 8.0420989e-01 + 7.1271462e-02 + 5.3430785e-01 + -1.0518539e-01 + -6.1892886e-02 + -4.4360493e-02 + -6.2396724e-01 + -3.0220268e-01 + 3.1256168e-01 + 1.8906918e-01 + -7.8297994e-02 + -1.0919989e-01 + -3.0910662e-01 + -9.3883723e-02 + -7.6774107e-02 + 3.4035757e-01 + 1.0216526e-01 + 1.8858289e-01 + -4.8484520e-01 + -1.8780455e-01 + 1.9463860e-01 + -1.8072421e-02 + -5.4823374e-02 + 1.7389471e-01 + 3.2495010e-03 + 3.2879667e-02 + 1.6350430e-02 + -1.4826183e-01 + -1.1985235e-01 + 5.2261474e-02 + -6.9002863e-02 + -1.7436552e-02 + -3.7879640e-02 + -2.5163644e-02 + 5.7601744e-02 + 9.3871472e-02 + -6.5807517e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_b1_F_4.txt new file mode 100644 index 00000000..0d7c76be --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_F_4.txt @@ -0,0 +1,40 @@ + -3.0902709e-02 + 1.1488487e-01 + -4.9704201e-02 + 6.0339907e-02 + -4.4217346e-01 + 4.5465004e-02 + 8.5434084e-02 + 3.1617622e-03 + 3.5612977e-02 + -1.2488799e-01 + 5.3504872e-01 + 3.9641017e-01 + -5.0994266e-02 + 1.1232804e+00 + -8.2229817e-01 + 1.1035894e-01 + -5.3684933e-01 + -1.2789986e-02 + -7.9045974e-02 + 4.9829072e-01 + -1.8664304e-01 + -8.6534843e-03 + -1.3919151e-01 + -8.1488444e-01 + 1.3758495e+00 + -1.3953044e-01 + -1.9448482e-02 + 3.4529817e-02 + 1.4853012e-01 + 1.8641554e-01 + -3.8037478e-02 + 6.5727355e-02 + 3.7192468e-02 + 8.3444912e-02 + -9.2749981e-01 + -3.6339498e-02 + -1.1579740e-01 + -2.3656960e-01 + 3.5490436e-01 + -8.0057444e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_b1_F_5.txt new file mode 100644 index 00000000..bb33fb9e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_F_5.txt @@ -0,0 +1,43 @@ + 7.1954214e-01 + 2.8957817e-01 + 4.8809764e-02 + -1.3755238e-01 + -1.1651697e-01 + -2.2097031e-01 + 9.2345055e-01 + 1.3414925e-05 + 1.3541505e-01 + 1.1663382e-02 + -5.9013030e-01 + -1.2073012e-01 + -4.0472363e-01 + 5.0312488e-02 + -5.5991921e-02 + 1.1651671e-01 + -7.6962531e-02 + -7.0983398e-02 + -2.6944290e-01 + -5.4138207e-01 + -6.2879036e-02 + 1.2765948e-01 + 2.1041832e-02 + 3.3692177e-02 + 2.2214650e-02 + 2.3850141e-01 + 1.4586670e-01 + -6.4331818e-02 + -1.9332661e-01 + 4.8862808e-02 + -1.2908042e-01 + 3.7322187e-03 + -3.4475548e-02 + -1.5565107e-01 + -1.7416174e-02 + 1.2937261e-01 + -2.4266292e-02 + -1.1992024e-01 + -5.6514394e-02 + -2.4168801e-01 + 8.3991025e-03 + 2.5709004e-01 + -4.1800171e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_b1_G_1.txt new file mode 100644 index 00000000..ba0357fe --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_G_1.txt @@ -0,0 +1,27 @@ + 2.4480849e-02 + -2.9455932e-01 + -4.0698525e-01 + 2.6922476e-01 + 4.9262785e-01 + -1.1308192e-01 + 4.2000594e-01 + 6.9945077e-01 + -2.6724611e-01 + 7.7418004e-01 + 9.2198358e-03 + -8.3029367e-01 + -2.2900105e-02 + -6.4915240e-01 + -1.1481429e+00 + 5.4653515e-01 + -1.8653469e-01 + 8.0052493e-02 + -7.2494513e-02 + -4.6129144e-02 + 8.5690640e-02 + 9.2588769e-02 + 1.8665749e-01 + -3.5522643e-02 + 3.5812954e-02 + 3.5909470e-01 + 3.0565113e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_b1_G_2.txt new file mode 100644 index 00000000..672a0b76 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_G_2.txt @@ -0,0 +1,33 @@ + 2.7502247e-02 + -7.7328687e-02 + 1.1034403e-01 + -3.8015600e-01 + 7.5678274e-02 + 5.4991185e-03 + 2.4660833e-02 + 4.8514026e-01 + 3.6654142e-02 + -5.8116992e-03 + -8.9260001e-03 + -4.3285163e-01 + -1.0814521e-01 + 7.5602628e-02 + -2.3139765e-02 + 2.0962205e-01 + -2.6010195e-02 + 7.1166624e-01 + 9.0607959e-02 + 1.9025973e-01 + -1.4711031e-01 + -4.6991375e-01 + -4.3991393e-03 + -6.4003672e-01 + 1.4797000e-01 + -1.0234442e-01 + 1.7464511e-01 + 2.1492110e-01 + 4.5227081e-01 + 2.8063561e-01 + -6.6778208e-02 + -6.3592936e-01 + -4.9480059e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_b1_G_3.txt new file mode 100644 index 00000000..e5f872d3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_G_3.txt @@ -0,0 +1,36 @@ + 1.2378961e-02 + -1.6053674e-01 + -4.4890121e-01 + -2.5362065e-01 + -2.4276763e-01 + 1.4110157e-01 + 7.1048138e-02 + 1.6900262e-01 + -5.6792989e-04 + -2.4806022e-03 + -2.9227073e-01 + 1.9512143e-03 + 8.4053124e-02 + 3.6433559e-01 + -1.1149342e-01 + 2.7884405e-01 + 1.7695221e-01 + -4.4490099e-01 + -2.3898761e-01 + 2.7146501e-01 + -1.7495590e-01 + 7.7961697e-02 + 3.0204476e-01 + -2.1446043e-01 + -3.3718063e-02 + -8.2177798e-02 + -1.0565595e-01 + -2.9351562e-01 + 4.9744711e-02 + -1.8080941e-01 + -3.7399082e-01 + -1.2611943e-01 + 3.6356016e-01 + -5.2436946e-02 + -1.9277716e-01 + 5.7926904e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_b1_G_4.txt new file mode 100644 index 00000000..11c9adcf --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_G_4.txt @@ -0,0 +1,38 @@ + 4.0397967e-03 + 7.9614193e-02 + 5.5825219e-02 + -9.2398039e-02 + 1.4970065e-02 + -1.6478916e-01 + -2.3049798e-01 + 4.4245407e-02 + -6.3936433e-02 + -1.2860888e-01 + 5.6189098e-02 + -2.7811460e-01 + -3.0716226e-02 + -8.0253485e-02 + 7.1713175e-02 + 1.0930445e-01 + -1.6941640e-01 + -3.6561964e-02 + -1.0842654e-01 + -1.3334768e-02 + -1.1723469e-01 + -4.7268705e-02 + -1.5179616e-01 + -1.0123025e+00 + -2.4966354e-01 + -1.9638307e-02 + 2.1195283e-01 + 9.6865526e-02 + 2.3370574e-02 + 5.3168295e-02 + -4.7551660e-02 + -1.5243961e-01 + -1.4017610e-01 + 1.2615906e-01 + 1.3009595e-01 + 1.3967669e-01 + -2.1430233e-02 + -1.4730996e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_b1_G_5.txt new file mode 100644 index 00000000..ca5d4e98 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b1_G_5.txt @@ -0,0 +1,41 @@ + 1.3092300e-01 + -1.0632611e-01 + -1.2920656e-01 + -4.3597360e-02 + 2.5721044e-01 + -2.0300510e-01 + 4.1111927e-01 + 2.7147287e-02 + 3.2788694e-01 + -1.0119475e-01 + 6.6820549e-01 + -7.1112902e-02 + -5.0380513e-01 + 1.0771675e-01 + 1.1950720e-01 + 1.3426869e-01 + 7.4075956e-02 + -2.0727727e-02 + -2.7132043e-01 + -2.2250000e-01 + 1.7827237e-01 + 1.3547298e-01 + 7.9253010e-01 + 3.4011641e-02 + -2.0840035e-01 + 1.8303328e-01 + -3.9499291e-01 + 1.7556103e-01 + -5.5574451e-01 + -2.1413721e-01 + 2.5782643e-01 + 3.3606567e-01 + 1.0891120e-01 + 7.8753167e-01 + -4.4314537e-01 + -6.7654543e-03 + -9.8424154e-02 + 2.9830076e-01 + 2.5655357e-01 + 3.4381539e-01 + 1.2710526e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_b2_F_1.txt new file mode 100644 index 00000000..019e8bd5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_F_1.txt @@ -0,0 +1,19 @@ + -1.9529138e-01 + 6.9254246e-01 + -7.3507813e-02 + -1.6049176e-02 + 1.1482136e-02 + 4.9849358e-03 + 7.2493059e-01 + 1.0832941e-02 + 1.2628017e-02 + 1.9585126e-01 + -6.3184531e-03 + 1.1619716e-02 + -5.3445807e-06 + 1.0838485e-02 + -1.3066009e-02 + -4.8974117e-01 + -7.8540620e-01 + 2.4289485e-03 + 7.4892788e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_b2_F_2.txt new file mode 100644 index 00000000..f6f0147a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_F_2.txt @@ -0,0 +1,19 @@ + -3.0872485e-02 + -4.6687509e-02 + -3.3072364e-03 + -2.7153922e-02 + -8.3072869e-05 + 1.2662640e-02 + 3.4326755e-01 + -3.6821924e-04 + 6.4716650e-03 + -1.9372416e-02 + -1.7231015e-02 + -3.7067154e-01 + -3.1592915e-01 + 1.1102082e-01 + -1.1812946e-02 + -1.2024103e-01 + 4.1428147e-02 + -2.0898938e-01 + 7.8832587e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_b2_F_3.txt new file mode 100644 index 00000000..b5f6c711 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_F_3.txt @@ -0,0 +1,20 @@ + 9.1764807e-02 + 1.5058654e-02 + 5.3150526e-02 + 5.8134463e-02 + -1.2041283e-02 + 1.0692975e-02 + -3.5357569e-02 + -5.9635831e-02 + -1.3364178e-01 + -3.3518620e-01 + 2.8076859e-03 + -3.6525262e-02 + -1.9448210e-01 + 7.2568116e-02 + -2.2506230e-02 + 5.4574835e-01 + 4.3184673e-02 + 1.0361403e-02 + -8.1016443e-03 + -4.5718320e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_b2_F_4.txt new file mode 100644 index 00000000..011a3d7c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_F_4.txt @@ -0,0 +1,17 @@ + -2.2153725e-02 + -8.8007410e-03 + 1.3548156e-02 + 1.7152440e-01 + -2.9328079e-02 + 3.7851756e-02 + 6.3971183e-02 + -1.4497652e-01 + 2.1221379e-01 + 2.0963798e-01 + -1.5382665e-01 + 2.7420612e-01 + 2.0201706e-02 + -3.7547179e-03 + -7.5706836e-02 + -4.5676581e-02 + -6.9561771e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_b2_F_5.txt new file mode 100644 index 00000000..c150c40f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_F_5.txt @@ -0,0 +1,17 @@ + -1.1072147e-02 + -9.9795100e-03 + -4.0703954e-03 + 1.2838373e-02 + -5.6630576e-02 + 3.0880181e-02 + 2.2340093e-02 + 2.2977211e-01 + -2.9719326e-01 + -1.7635726e-02 + -9.1309624e-01 + 3.9230330e-01 + 2.7174477e-02 + -1.3370793e-01 + 4.9274676e-01 + 1.9376415e-02 + -2.7311523e-04 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_b2_G_1.txt new file mode 100644 index 00000000..03fbad68 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_G_1.txt @@ -0,0 +1,26 @@ + -8.3415498e-02 + 1.1211261e-02 + 5.7738815e-03 + 2.0876570e-04 + -4.5387084e-01 + -1.5694506e-03 + -1.3877962e-02 + -2.3670988e-02 + 4.8245246e-03 + -3.5334322e-01 + -2.1242962e-02 + -7.0846083e-03 + 2.8826303e-02 + 2.3452431e-01 + -5.6505000e-03 + 2.5957940e-02 + -3.6235926e-03 + 2.9788189e-01 + 7.6878062e-02 + -3.5925911e-03 + 9.9624076e-03 + -2.0475655e-02 + -2.6058764e-02 + 3.3441234e-02 + -5.3351463e-01 + -1.3351490e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_b2_G_2.txt new file mode 100644 index 00000000..b65859dd --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_G_2.txt @@ -0,0 +1,25 @@ + 3.8164012e-02 + 1.8278581e-01 + -7.1892793e-02 + 3.7140570e-01 + 3.4734801e-03 + -3.0771426e-03 + -3.7860752e-03 + -4.9976957e-02 + -1.0467454e-01 + -2.0198113e-03 + 1.4471384e-01 + 8.1576803e-02 + -8.9646653e-02 + 1.8269041e-02 + -1.2583414e-02 + -1.0310580e-02 + -1.2373849e-01 + 9.2126905e-04 + 7.1541847e-04 + -9.3025608e-02 + -2.3517715e-03 + -4.2160563e-02 + -4.9415614e-01 + 4.2798018e-01 + -7.4160905e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_b2_G_3.txt new file mode 100644 index 00000000..849d32fa --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_G_3.txt @@ -0,0 +1,24 @@ + 4.2969042e-03 + 9.8596630e-02 + -7.0126083e-04 + 1.0045385e-01 + -3.6448015e-02 + 1.3242556e-01 + 2.0908093e-02 + -9.3283082e-03 + -2.2183512e-02 + 3.0226026e-01 + -2.4608050e-02 + -3.7959311e-02 + 1.4054660e-01 + 2.2833718e-02 + 3.4280547e-02 + -2.8695450e-02 + 5.2977201e-01 + -5.4522778e-01 + 9.5097192e-02 + -1.0727292e-01 + -9.4193672e-02 + 1.5269768e-01 + -2.4883114e-02 + 1.4305293e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_b2_G_4.txt new file mode 100644 index 00000000..c04f74e7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_G_4.txt @@ -0,0 +1,16 @@ + -1.8393625e-01 + 1.2500686e-01 + -1.0622880e-01 + -1.2784267e-01 + 1.0234030e+00 + -8.3225797e-02 + -2.5981292e-02 + -9.9975512e-02 + 6.3713428e-01 + 1.4828795e-01 + 1.0319769e-01 + 1.2333156e-01 + 1.2701139e-01 + 2.1970577e-01 + 3.2485878e-02 + -9.9280155e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_b2_G_5.txt new file mode 100644 index 00000000..09b04c0f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b2_G_5.txt @@ -0,0 +1,21 @@ + 1.5051945e-01 + -8.2393565e-01 + 4.8830745e-02 + 8.8536571e-02 + -5.0556565e-02 + 6.5924444e-03 + -8.1116744e-02 + -5.8632877e-01 + 1.5213017e-03 + 4.4721419e-01 + -7.7929363e-02 + 1.3070328e-02 + 4.4348369e-01 + -4.0776064e-02 + -9.5411532e-02 + 2.5444288e-02 + 1.3668242e-01 + 2.2953032e-01 + 1.2371008e-01 + 4.1852158e-01 + -3.9964423e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_AT_b3_F_1.txt new file mode 100644 index 00000000..81e0f6fc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_F_1.txt @@ -0,0 +1 @@ + -5.1432567e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_AT_b3_F_2.txt new file mode 100644 index 00000000..1031e130 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_F_2.txt @@ -0,0 +1 @@ + 8.8600846e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_AT_b3_F_3.txt new file mode 100644 index 00000000..f618e3f2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_F_3.txt @@ -0,0 +1 @@ + 8.8748911e-03 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_AT_b3_F_4.txt new file mode 100644 index 00000000..888c5925 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_F_4.txt @@ -0,0 +1 @@ + 1.1347039e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_AT_b3_F_5.txt new file mode 100644 index 00000000..eb9289aa --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_F_5.txt @@ -0,0 +1 @@ + 2.6254253e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_AT_b3_G_1.txt new file mode 100644 index 00000000..9b934ac7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_G_1.txt @@ -0,0 +1 @@ + 1.6905208e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_AT_b3_G_2.txt new file mode 100644 index 00000000..338de001 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_G_2.txt @@ -0,0 +1 @@ + 7.3353558e-02 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_AT_b3_G_3.txt new file mode 100644 index 00000000..e36a872c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_G_3.txt @@ -0,0 +1 @@ + -4.6314349e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_AT_b3_G_4.txt new file mode 100644 index 00000000..06c086ca --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_G_4.txt @@ -0,0 +1 @@ + 5.2058237e-01 diff --git a/argopy/static/assets/canyon-med/poids_AT_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_AT_b3_G_5.txt new file mode 100644 index 00000000..8b78b0c4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_AT_b3_G_5.txt @@ -0,0 +1 @@ + 6.0718504e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_IW_F_1.txt new file mode 100644 index 00000000..ce4c8cc0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_F_1.txt @@ -0,0 +1,26 @@ + 9.9155720e-02 -2.4952152e-02 -1.7078654e-01 7.9947821e-02 -4.9979612e-02 -1.0916858e-01 8.7100277e-02 + 6.1719878e-02 -2.8574556e-02 2.9809293e-02 -1.2869356e-01 1.6762939e-01 -5.7132095e-02 6.5714551e-02 + -1.8188186e-01 3.0137079e-01 -1.0846603e-01 2.4179921e-01 5.2821926e-01 3.2019756e-01 -4.0762151e-01 + -7.1261103e-02 -9.0375184e-02 8.8262786e-02 -8.4640206e-02 7.2100862e-02 -2.0312270e-03 -2.5062119e-02 + 1.7907458e-04 1.0990066e-01 -6.6499161e-02 3.1269124e-01 4.7246334e-01 1.3566330e-01 8.7527042e-03 + -2.4475636e-01 4.3557686e-01 -5.6626217e-01 -4.3283010e-02 1.5321376e-01 -8.0598528e-02 2.8511283e-01 + 5.5912048e-02 5.1824064e-02 -9.9576830e-02 -1.4047329e-01 8.1116444e-02 -9.1872883e-02 2.3085460e-02 + 1.2138228e-01 -3.4723164e-02 -1.1289064e-01 9.3021614e-02 2.7068610e-02 -1.3185287e-01 -7.9942184e-03 + -3.3563494e-01 1.9099089e-01 2.8623943e-01 1.1600664e-01 3.9227315e-02 3.6076037e-01 -2.9749766e-02 + 1.2673451e-01 -2.4571834e-02 2.0002170e-01 -1.9676977e-01 5.8941403e-02 -4.7597556e-02 8.7900158e-02 + 2.1154562e-01 -6.3603357e-03 9.5974331e-02 -3.6220203e-01 -2.9242125e-02 -8.6874568e-02 1.6385959e-02 + -2.9761606e-01 2.8302405e-01 5.1186168e-01 4.0909563e-01 5.8859215e-02 2.6065083e-01 -2.8212881e-02 + -2.1791119e-01 1.5563962e-01 2.8063950e-01 8.4330764e-02 9.1008148e-02 7.4039212e-02 1.1030594e-01 + -1.5303232e-01 1.1830714e-01 -9.7526060e-02 -1.9871431e-01 1.8020793e-01 2.2460247e-01 2.7994527e-02 + -2.1648842e-01 5.1330946e-02 -1.4659720e-01 1.2195214e-01 -7.1053999e-03 -4.3976501e-02 1.2832090e-01 + -4.3725045e-04 2.5221572e-01 -3.8469787e-02 2.0250240e-01 3.7709006e-01 7.6840245e-02 1.7705936e-01 + 2.3590831e-02 4.9466615e-02 1.3419217e-01 -3.7124833e-01 1.9021423e-02 4.4656126e-02 -9.4701036e-02 + 3.6506862e-02 -2.2405157e-02 2.4047241e-01 -1.9851082e-01 -1.6087094e-01 6.1588187e-02 7.7424628e-02 + -1.1844469e-01 1.2123558e-01 7.8271550e-02 1.1471172e-03 1.6568189e-01 -1.4936878e-03 3.3467495e-02 + 4.2363357e-01 -3.9669886e-02 1.4802213e-01 8.0831094e-01 -1.8025458e-01 5.3395692e-01 -2.9649405e-01 + 5.6177902e-02 2.8874198e-01 -6.5925373e-02 -2.7766771e-01 -3.6244214e-02 1.7078386e-01 -8.5549821e-02 + -1.3867282e-01 -3.4789869e-02 6.8707913e-02 3.4809953e-02 1.4793485e-01 3.3152491e-02 -8.4054866e-02 + -6.0452534e-02 1.5617290e-01 -9.7006969e-02 -2.1613396e-01 3.1368973e-02 8.9822309e-02 -9.0233448e-02 + -9.3726619e-02 -1.0694588e-01 9.8988016e-02 7.8903836e-02 -7.4660667e-02 -1.5103344e-02 5.9458433e-02 + 2.2278766e-02 6.4245249e-02 -2.5729078e-01 -1.2248191e-01 2.2522365e-01 1.2397314e-01 -4.5888766e-02 + -1.7783153e-01 8.5697690e-02 5.7686874e-02 -4.9021022e-02 1.9420947e-01 -4.5183678e-02 -8.0616224e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_IW_F_2.txt new file mode 100644 index 00000000..9f323a7e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_F_2.txt @@ -0,0 +1,31 @@ + 2.0794625e-01 -8.5458536e-01 8.2146478e-01 -4.7140006e-01 -6.8240564e-01 -7.6172814e-01 1.3820446e-01 + -4.3148332e-01 -2.0967035e-02 1.7658245e-01 -3.4470405e-02 5.8733393e-01 -2.2695256e-01 -2.4123832e-02 + -4.5526794e-02 -9.9570642e-02 -1.1335348e-01 1.7972198e-01 1.1743216e-01 2.4294135e-02 -1.5765640e-02 + -1.0211760e-01 -9.5297226e-02 9.3240677e-02 -1.2128098e-01 -1.4317234e-01 3.3095598e-02 3.5565523e-02 + 2.7192183e-01 8.5482303e-02 -2.7718551e-01 -5.7154622e-02 5.8804133e-03 -4.5919344e-02 -3.3411446e-01 + 6.1298302e-01 3.7868853e-01 2.0913965e-01 -3.1864909e-01 -8.7892149e-02 -2.6575300e-01 9.3881202e-02 + 3.6665624e-02 2.0553698e-02 -8.5672454e-01 -1.4502481e-01 1.6418750e-02 -3.6683982e-02 -1.9518248e-01 + -2.9808765e-01 -2.3110071e-01 -1.0131911e+00 -1.2975684e+00 5.5204479e-01 -1.3258046e+00 -3.0223025e-01 + 2.3808164e-01 5.8222391e-02 1.3452222e-01 -2.5485186e-01 5.5648905e-02 -7.0719102e-02 -1.9478927e-01 + -2.0945831e-01 -2.3541822e-02 -7.6335091e-02 6.3891698e-03 2.1412759e-01 -6.5682624e-02 -1.3628148e-01 + -1.1060434e-01 -5.4029801e-02 4.3258326e-02 -3.6751327e-01 9.9315934e-02 4.1750864e-02 1.0453635e-01 + 1.3746990e-03 3.6593967e-02 8.1603359e-02 -3.2187610e-01 3.5590110e-02 4.8653511e-02 2.3927885e-02 + 1.6753602e-01 2.7147898e-01 5.9902421e-02 2.6227709e-01 -1.2827186e-01 -1.1542826e-01 -2.7389907e-01 + 1.0893211e+00 -1.3117606e+00 6.3708472e-01 -4.4336967e-01 -8.6662666e-01 -9.5079360e-01 -1.4878006e-01 + -9.4599384e-01 4.7691232e-01 -4.7811626e-01 4.1274429e-01 1.9809564e-01 8.9309144e-02 1.4908423e-01 + -7.5882536e-01 -8.4510665e-01 1.5670989e+00 1.7334975e-01 -5.6467310e-01 6.0513319e-01 2.3116249e-01 + 7.1352741e-01 1.4621933e+00 9.3867862e-01 -6.6303258e-01 5.0441137e-01 -1.2427253e-01 -3.7563129e-01 + -1.9294127e-01 -3.9326882e-01 -2.2520340e-01 -3.1083688e-01 2.2175667e-01 5.2527269e-02 7.0628286e-02 + 7.7256666e-02 2.1074351e-01 -1.6083132e-02 -2.1372659e-01 -1.2986397e-01 -5.6037414e-02 2.2831590e-01 + 8.3096345e-02 1.5043026e-01 -1.2678001e-01 2.7235026e-01 2.5382548e-01 -3.1064533e-02 -2.9488583e-01 + 8.8343517e-02 -2.9259555e-02 7.4039357e-02 -1.1303790e-01 -3.7678598e-02 -5.4834084e-02 -1.5032003e-01 + 1.4441469e-01 1.2622034e-01 -8.8110984e-02 3.0950888e-01 -8.2718104e-02 -4.5013324e-02 -1.1183775e-01 + 3.2566915e-01 -1.2029461e-01 7.8616718e-01 3.3357655e-01 6.1281185e-01 5.6102040e-01 -3.2960122e-01 + -6.5407920e-03 3.8540530e-02 4.1406600e-04 -1.0207127e-01 1.3694500e-01 2.2548788e-02 5.5792617e-02 + 1.3099368e-01 -4.6391576e-01 7.9054605e-01 -4.6853949e-01 2.9636259e-02 -3.6992976e-01 -2.8631941e-02 + -3.1276869e-01 9.2775317e-02 6.3104676e-01 9.3834777e-02 7.6781712e-01 -2.9550697e-01 5.8056537e-02 + -9.4128268e-01 -4.4450232e-01 4.7153795e-01 4.7642922e-01 -5.3137320e-01 7.3977459e-04 -7.8035431e-02 + 2.7173361e-01 1.9551011e-01 -1.5649900e-01 -5.9257615e-02 -6.7807661e-02 -1.6219261e-01 -3.4460672e-01 + -1.5719979e-01 5.7777447e-02 -9.6266049e-03 -8.8122998e-02 1.1660355e-01 -1.4790230e-02 3.0457644e-02 + -2.3597396e-01 -7.4386811e-02 3.3037391e-01 2.2419127e-02 -6.7796203e-03 2.7844310e-02 2.9868894e-01 + -1.1456400e-01 2.6379287e-02 -8.6387734e-02 1.1974351e-02 2.2147095e-01 1.3929885e-02 -1.0239694e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_IW_F_3.txt new file mode 100644 index 00000000..d6500b99 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_F_3.txt @@ -0,0 +1,33 @@ + -4.8539971e-02 3.5560049e-01 -8.6681056e-02 4.1490499e-02 1.7639959e-01 2.0619852e-01 7.1540665e-03 + -1.3087244e-01 -9.6130469e-02 -7.4580883e-02 1.4951748e-01 9.1160043e-03 2.9926285e-02 -6.8494551e-02 + -8.3832810e-03 -4.7739959e-02 -5.7283889e-03 -6.4143508e-02 1.5692912e-01 1.2284050e-01 4.7515070e-02 + -2.1174373e-02 -2.6146446e-02 -3.1206050e-03 4.6561580e-02 2.2582046e-01 4.3740948e-02 1.1342625e-01 + -4.4109972e-02 4.1562861e-02 -9.0085317e-02 -9.3763834e-02 -1.9007221e-01 8.2539440e-02 -5.3223896e-02 + -3.2838578e-01 7.8466307e-01 3.4018853e-02 -1.1473035e+00 6.3899077e-02 3.0670337e-01 7.3126409e-02 + -5.0399892e-01 2.0681572e-01 3.9650906e-02 -2.9645573e-02 -1.9625355e-02 2.2132476e-01 1.6519271e-01 + 3.9717515e-01 -2.7379356e-03 1.8965563e-01 -1.9166055e-01 4.3900883e-02 -3.4166503e-02 -6.3631001e-02 + -2.5838206e-01 9.9369866e-02 4.8939591e-02 -7.6120167e-04 1.7432960e-01 -4.2833158e-02 7.5704809e-02 + 7.6498634e-01 -7.5347787e-01 -8.3029768e-01 -2.6973356e-03 -3.6828779e-02 -4.5305482e-03 -1.6575081e-01 + 1.8714932e-01 -1.9494175e-01 3.1581507e-01 1.0111280e+00 -2.7092483e-01 2.2052012e-01 1.2718300e-01 + -1.2878317e-01 1.9375606e-02 -2.1291213e-01 8.6586548e-02 -1.9477295e-02 2.7774313e-01 1.6040148e-01 + -1.0477126e-01 3.1830305e-01 1.0855786e-01 9.9895160e-02 -5.5111293e-02 -2.6132487e-01 1.0888057e-01 + -1.1197325e-01 -1.0452113e-01 -1.9945568e+00 -6.9192566e-01 -2.2821528e-01 -1.6797679e-01 -2.7742428e-01 + -2.7805216e-02 1.2801208e-01 1.0122017e-01 3.6516838e-02 4.1994530e-02 -1.0665462e-01 1.1708537e-02 + -9.6422697e-02 4.4436600e-01 -4.1096634e-01 -4.9619963e-01 6.6206653e-01 -9.5643124e-01 -1.0575497e-01 + -5.1456126e-02 -1.3485394e-01 -1.2102981e-01 1.1572117e-01 6.1791917e-02 1.4660465e-01 -1.5191357e-01 + 1.0367584e-04 9.5153475e-02 -2.3057897e-02 -4.5020146e-03 3.0980436e-01 2.0102409e-01 -2.2011780e-01 + -1.2439250e-01 -7.8944312e-02 -4.1445995e-02 1.5096396e-01 4.4684467e-02 6.2913109e-02 1.5576508e-01 + -1.9503545e-01 -1.0842832e-01 -1.0969689e+00 2.5985074e-01 -1.1466469e+00 9.5648852e-02 -2.8263478e-01 + 5.2483901e-01 -1.0158338e+00 -6.1861910e-01 6.6892684e-01 -5.8283183e-01 -5.2477307e-01 -5.0255903e-01 + 2.1184383e-02 -3.2903819e-01 6.9464849e-01 5.8037175e-02 -1.7079326e-01 7.3218490e-03 -3.1586843e-01 + 2.7643689e-02 4.6302519e-02 4.5234515e-02 5.9393428e-02 1.7940882e-01 -3.2577963e-02 3.5251042e-02 + -3.2688567e-03 -9.7309839e-02 -1.0151942e-01 1.0563494e-01 2.3685475e-06 1.5595076e-01 -1.1737216e-01 + 4.9535844e-01 7.7181119e-01 1.0106510e+00 -3.4391930e-01 1.9333915e+00 -4.5702076e-01 5.2323866e-01 + 6.5329094e-02 2.1129944e-01 1.4223460e-01 -1.8284020e-01 -1.0925157e-01 -1.0230531e-01 7.1408779e-02 + 1.5777784e-01 -3.3002324e-01 4.7676579e-02 4.8432457e-01 -2.0494795e-01 -7.1802921e-02 4.5360387e-02 + -2.1693713e-01 1.3656172e-01 -3.4481935e-01 1.1259952e-02 -9.4048480e-02 3.0084744e-01 -3.5653778e-02 + -9.7358263e-02 2.5547403e-01 -3.9348201e-01 -4.5826589e-02 9.2421088e-02 -1.4866105e-02 6.4190104e-02 + -3.9509814e-01 -1.1525528e-03 -9.2153734e-02 -3.5738526e-01 1.9818413e-01 -3.2500188e-02 8.5408883e-02 + -2.0112636e-01 2.1395078e-01 1.2890011e-02 -5.7649811e-02 2.8366395e-01 1.7369000e-01 -1.7169786e-01 + 3.1507233e-01 6.1452368e-01 -1.2979596e+00 4.5404071e-01 7.4709786e-01 2.5315955e-01 -1.2986684e-01 + 1.8131040e-01 1.9814565e-01 5.8838989e-02 1.0164451e-01 -3.2068918e-01 -1.6140615e-01 -8.3243838e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_IW_F_4.txt new file mode 100644 index 00000000..34ce5bd8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_F_4.txt @@ -0,0 +1,34 @@ + 1.6909576e-02 -1.7820134e-02 4.1950422e-01 -1.3510722e-01 3.2635937e-01 -4.4501359e-01 1.7545345e-01 + 4.0408766e-01 -6.9441069e-01 7.0791924e-01 -9.1094590e-01 -2.5058998e-01 3.7032885e-01 -2.1401189e-01 + 1.9153075e-01 5.1227252e-02 8.5326849e-02 -1.7334912e-01 -8.2385911e-02 -7.7425818e-02 1.7678224e-01 + 7.9111889e-03 -4.9652255e-02 -1.6728742e-01 -9.1960862e-02 6.9007683e-02 2.9925064e-02 6.3735327e-02 + -2.1676908e-01 -2.9827117e-01 4.1628272e-01 2.4710485e-01 6.2638787e-02 -7.8544414e-02 5.8767877e-02 + -1.1404186e-02 -1.0399099e-01 -2.1804480e-01 2.7944714e-02 1.3075662e-01 -1.1172024e-01 -1.4511643e-02 + -2.7250865e-01 6.2810632e-02 7.0424662e-03 1.4711772e-01 -3.7057656e-02 1.1582660e-02 -2.7439363e-01 + 6.4111368e-02 -1.2531283e-01 3.9769048e-01 1.2674386e-01 2.1168870e-03 -3.3267888e-02 9.0745399e-02 + -3.0776703e-01 2.7359623e-01 -1.5203744e-01 5.1836898e-01 2.6067483e-01 3.4209259e-01 1.0862598e-01 + -4.3982306e-01 6.7700616e-02 -2.4678514e-01 2.7958557e-02 1.1734186e-01 2.5730139e-01 7.2730901e-03 + -1.0001120e+00 2.4993552e-01 -7.0378843e-01 -1.5168049e-02 -1.8490757e-01 2.0064910e-01 1.7788907e-02 + -4.9999574e-01 3.8220654e-02 -1.8882656e-01 9.4531733e-01 -8.2773320e-01 6.3656309e-01 -1.2956577e-01 + -7.8910500e-02 1.0268584e-01 -1.0698385e-01 1.3039580e-01 2.1525909e-01 2.8997557e-01 7.1716427e-02 + -5.3460666e-02 1.0501239e-01 1.8981829e-01 5.4407739e-02 -7.0863450e-02 1.2995384e-01 5.4646945e-02 + 4.1148920e-01 -1.9649463e-01 1.4893377e-01 8.5429520e-01 -4.5937124e-02 7.9870375e-02 6.5041910e-02 + 9.3470216e-03 -3.0179675e-01 1.6584144e-01 -1.3574792e-01 -2.9494952e-01 -1.5379437e-01 -1.7722863e-02 + 1.0473120e-01 -1.2272894e-01 1.5377524e-02 -1.4761011e-01 -2.0067966e-01 -2.4593551e-01 1.9291174e-02 + 4.7377196e-02 1.7884645e-01 2.1590835e-01 -9.0473433e-03 -2.8639396e-01 -1.7467251e-01 -1.5162051e-02 + 1.3456770e-01 -1.2876740e-01 -1.3414316e-01 -1.0387109e-01 -3.6775171e-02 -1.0822969e-01 1.4201211e-02 + 2.7176654e-01 -6.0102825e-02 1.1578904e+00 -3.6215087e-01 5.2702045e-01 -1.3475234e-01 -1.0611256e-01 + 1.2267284e-01 -1.0759298e-03 3.8257019e-01 3.5489640e-02 2.3195452e-01 -3.3124581e-01 2.1390071e-01 + -2.1791295e-01 2.1521503e-01 -1.8687382e-01 -9.1343244e-02 2.6938262e-01 2.0543539e-01 3.2716409e-02 + 2.3868899e-01 -1.0138845e-01 1.8850989e+00 -3.8885333e-01 3.7873615e-01 -3.6026314e-02 -8.1214959e-02 + 2.0078499e-01 1.6398949e-01 -2.8259361e-01 -1.5665242e-01 -3.2622525e-02 3.8995899e-02 4.6868847e-02 + 1.1841963e-01 2.9783430e-02 -3.3040323e-02 -7.2461193e-02 -6.1978844e-02 1.9694566e-02 -7.0378276e-04 + -4.2013650e-01 4.9703240e-01 -5.7764922e-01 -1.9359326e+00 9.5389140e-01 1.7926868e-01 -2.9294916e-01 + -1.0774546e-01 -4.7014370e-01 6.4428759e-02 1.3271197e-01 -1.5122496e-02 -1.4575372e-01 1.9300214e-01 + 2.7532549e-02 -1.0969809e-01 -2.9581729e-01 -7.1817642e-02 2.1648586e-01 6.1424148e-02 -6.2049087e-02 + -1.3076819e-01 -1.0096951e-01 2.2195216e-01 -2.2613496e-01 -2.4142283e-01 -1.4616561e-02 5.5882131e-02 + 1.3454698e-01 -2.8154872e-03 -2.1192319e-01 2.3501335e-02 8.6158998e-02 -2.8574373e-03 2.3072022e-02 + 2.4812105e-03 -1.9598427e-01 1.9972115e-01 3.0979828e-01 2.2502916e-02 -8.6528400e-02 1.3211421e-01 + -3.5551301e-01 -1.8719725e-01 -5.3272802e-02 2.5425312e-01 7.0849554e-02 1.8885252e-01 7.6667771e-02 + -9.9839718e-02 -2.0818365e-01 1.5706836e-01 -2.2689260e-01 -3.3207699e-01 -1.0009899e-01 -1.4425574e-02 + 6.4667106e-01 -6.2159801e-01 -5.2459806e-01 -2.5887245e-01 2.4558294e-01 -1.0128281e+00 4.4385318e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_IW_F_5.txt new file mode 100644 index 00000000..00c941ea --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_F_5.txt @@ -0,0 +1,36 @@ + -1.5663500e-01 7.2425702e-02 3.5908551e-01 2.0549788e-01 -2.0781086e-01 -8.7334693e-02 1.4730888e-01 + -3.1972495e-02 -1.2115916e-01 -8.0476151e-02 2.0481547e-01 5.1994400e-02 -1.0548826e-01 5.2105233e-02 + 2.2990840e-01 -1.6060680e-01 -2.4240508e-02 -1.1292071e-01 -5.1663788e-02 -1.2522096e-01 -6.1606778e-02 + -1.4383606e-01 1.1405389e-01 2.5849892e-02 -3.0914707e-02 3.4720860e-02 1.8394918e-01 1.2773430e-02 + -2.4298910e-01 1.4601004e-01 2.4995277e-01 9.2819146e-02 5.7422639e-02 2.8369368e-01 -7.3098727e-02 + 2.1947332e-01 -1.2668540e-01 2.4616189e-01 -5.7566196e-02 -9.4393279e-02 -7.0583437e-02 -1.3250052e-01 + 4.5306831e-02 2.9935615e-02 -1.7490764e-02 -4.8749390e-02 -1.7699202e-01 -1.1104635e-01 -7.0854884e-03 + 1.8351720e-01 -2.6439663e-01 4.4980978e-02 -4.5316468e-02 -1.6267205e-01 -1.9697203e-01 5.2116584e-02 + -1.9087214e-01 4.4858212e-01 -1.2262126e-01 3.4476968e-01 5.1496374e-01 3.5779602e-01 -3.1347988e-01 + 1.4309589e-01 3.3763589e-01 1.1310256e-02 -8.7968413e-04 -2.8107002e-01 -5.7417349e-02 -1.8891627e-01 + -1.9106720e-02 7.5007313e-02 9.9172676e-02 -8.1724937e-02 3.2256600e-02 8.1955084e-02 1.0740603e-01 + -1.0990385e-01 3.1501071e-02 2.6989857e-01 2.2811248e-01 3.7097111e-02 -3.2580643e-02 2.0028439e-03 + -1.1076835e-02 -8.7605779e-02 -2.6588538e-01 7.4388650e-02 5.1417666e-02 4.1100651e-01 -2.1255291e-01 + -4.8480907e-02 6.5385145e-02 -2.2515375e-02 1.2087508e-02 -5.0514903e-02 2.5608632e-01 -7.3220975e-02 + 6.6078192e-02 -5.7053759e-02 -3.3285528e-01 6.3529738e-02 -6.1388550e-02 -1.6163208e-01 -8.1211638e-02 + -8.2604280e-02 1.5105469e-01 2.8887373e-01 -1.5873866e-01 1.9498937e-01 1.0855248e-01 6.9230398e-02 + 5.7457725e-02 1.5743747e-01 -1.0067100e-01 -7.4639910e-02 -1.4843863e-01 7.9102879e-02 -1.0637756e-02 + 2.3356650e-01 -1.2236077e-01 -8.9479846e-02 -2.1866326e-01 2.1584966e-02 -1.0264408e-01 -6.6692770e-02 + -3.3899755e-01 -2.2975617e-01 -2.9119821e-01 -8.2157299e-01 1.6781452e-01 -4.6195090e-01 1.6088645e-01 + 1.6965763e-01 -8.3925418e-02 1.8609509e-01 -1.9621719e-02 -9.5403547e-02 -9.5509108e-02 4.3559076e-02 + 1.1326291e-01 6.1784722e-03 1.3511536e-01 -1.9431020e-02 -1.0271239e-01 4.7677111e-02 -4.5662398e-02 + 1.8147769e-02 2.1879121e-01 5.1867848e-01 2.2440256e-02 4.2488368e-01 -2.6626261e-01 1.2493740e-01 + -1.0655595e-01 1.3669067e-01 -2.9202796e-02 2.2283535e-01 3.1920810e-01 1.4684208e-01 -4.7921087e-01 + -7.2875640e-02 -4.8438842e-02 3.1466787e-01 2.5278827e-01 -1.2957468e-01 -2.3031917e-01 2.3410216e-01 + -5.2956616e-03 -1.0411669e-01 -2.3083911e-02 1.9911004e-02 1.6029018e-03 5.9237541e-02 -2.6616806e-02 + 5.1341477e-01 -4.3033594e-01 -5.3381309e-01 -2.0733072e-01 -2.7710805e-02 -2.1747009e-01 -1.4686156e-01 + 3.2782388e-01 -2.9597125e-03 1.3010068e-01 -1.3630229e-02 2.1907767e-02 2.9488018e-02 7.9468730e-02 + 1.8683259e-01 -1.5075408e-01 -3.5968998e-02 -6.4081807e-02 -1.2572086e-01 -1.6893658e-01 -1.1278513e-01 + 2.8190700e-01 -1.9585089e-02 1.8079425e-01 -4.6643632e-02 4.8706649e-02 -7.9784465e-02 -1.1031946e-01 + -1.1533730e-01 -1.3247554e-02 -2.0476917e-01 6.6423279e-02 9.1942038e-02 -7.6060247e-02 6.9076803e-02 + -9.1071611e-02 -1.2669822e-01 -8.6507227e-02 9.8392283e-02 7.5170706e-02 -1.1582177e-02 -2.0433767e-01 + -1.6820494e-01 8.3691305e-02 4.5693184e-01 3.5569390e-01 -1.5271351e-01 -2.8570053e-01 1.1384149e-01 + 8.3768721e-02 -8.7488431e-03 2.1829967e-02 -1.2537171e-01 1.2086031e-01 -4.4511882e-02 1.4723470e-01 + -1.2259822e-01 -1.4130574e-02 3.3867984e-01 -1.7440117e-01 -7.9800828e-02 3.1571285e-01 -3.5190579e-02 + -3.5278693e-02 -3.6302618e-02 4.5855031e-02 7.7528231e-02 2.9668306e-01 6.4251320e-02 1.5002273e-01 + -1.0164572e-01 3.3532182e-01 -5.0707001e-01 2.6367919e-01 3.3550537e-01 -3.1245203e-01 1.7975035e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_IW_G_1.txt new file mode 100644 index 00000000..7f5c38fb --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_G_1.txt @@ -0,0 +1,25 @@ + -1.2679656e-01 -1.4695179e-01 1.3147868e-01 1.0754813e-01 2.4218936e-01 -3.0325816e-02 -1.1504376e-01 + 1.2122463e-01 -5.7306010e-02 -1.1239254e-01 1.5398485e-01 1.3545350e-01 -1.5476823e-02 -7.0276289e-02 + -5.5904717e-01 6.6501796e-01 2.3172112e-01 -1.4300567e+00 -1.0942109e-01 -9.1215111e-01 6.3597994e-03 + 5.6945563e-01 -1.8394469e-02 5.0356767e-01 3.4522239e-01 2.3323646e-01 1.6756808e-01 -4.9061284e-01 + 4.0178322e-01 5.0249217e-02 2.3864447e-01 8.3413286e-01 -1.8071478e-03 8.8307525e-02 2.4943008e-01 + -1.0962302e-01 -7.9793289e-02 -3.4650128e-01 3.6050153e-02 1.0951316e-01 -1.1929215e-02 1.2755221e-01 + -8.1848264e-02 -5.5361305e-02 -1.9375551e-01 1.6248106e-01 -1.8876006e-02 -1.4299311e-01 2.4451015e-01 + 1.3646832e-01 6.9434332e-01 -6.7974517e-01 3.4332670e-01 4.5715605e-01 3.3330809e-01 -3.7053160e-01 + 8.8535587e-01 2.6489359e-01 -1.3574445e+00 -3.7788524e-01 4.8133579e-01 8.4209470e-02 3.3344831e-01 + -3.5545531e-01 1.7854403e-01 8.8406746e-01 -1.8995083e-02 2.6060450e-02 -2.5173702e-01 1.1748487e-01 + 4.0545558e-01 -8.3891783e-02 2.7422689e-01 -4.5681228e-01 -2.0810123e-01 1.3869224e-03 6.4116262e-01 + 1.4167358e-02 -3.2002080e-01 1.3145296e-01 -3.1103261e-02 -4.0513833e-01 -3.1603217e-01 1.4309501e-01 + -9.0007363e-01 8.2442459e-01 -3.4274826e-01 -3.6419969e-01 1.6162703e+00 -5.2682358e-01 -8.0829608e-02 + -6.1929494e-01 -2.5163039e-01 1.3225572e-01 -1.6393958e-01 7.7688518e-02 -1.1514557e-01 -4.8215508e-01 + 3.4367068e-01 4.1924307e-01 -1.1524266e-01 8.9283698e-01 -6.2639758e-01 4.8217259e-03 9.2578091e-02 + 4.1283731e-01 -3.1193909e-01 1.1691545e-01 -4.9403008e-01 -3.6342129e-02 2.0615771e-01 -4.8952836e-01 + 3.7191992e-02 -1.4198308e-01 -7.3187605e-03 1.9779094e-01 -2.2347062e-01 -1.3830794e+00 -6.7492089e-01 + 1.8472881e-01 -4.1337381e-01 -1.3273718e-01 -2.2080385e-01 -2.0040037e-01 2.6311676e-01 -6.2339178e-02 + -5.5754226e-01 8.3878903e-01 2.3637793e-01 3.5867654e-01 3.5081193e-01 7.0205098e-01 9.4384934e-02 + 5.3121665e-01 -9.7130821e-01 -1.0499802e-01 1.1804466e+00 -1.9773780e-01 -4.4873902e-01 6.5123435e-02 + -6.6802569e-02 -3.2662818e-01 -4.7546691e-01 1.1225816e+00 -1.3502043e+00 1.5973637e-01 -2.0255162e-01 + 2.5105239e-01 -4.9946779e-01 2.3849359e-01 -7.4888211e-02 4.2276655e-01 -1.5573491e-01 -1.9473260e-01 + 7.6546498e-01 -5.3562451e-01 1.2436363e-01 -1.6464381e-01 -9.9245158e-02 -2.5862493e-01 2.3898169e-01 + 6.2680159e-01 -3.4622867e-01 -1.8696206e+00 -1.2520765e-01 -6.0990275e-02 -3.4362520e-01 1.0193342e+00 + -1.2371833e-01 -2.0972516e-01 -2.7953230e-02 3.6112174e-01 1.0276316e-02 -1.1023716e-01 2.6596330e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_IW_G_2.txt new file mode 100644 index 00000000..b7b35a43 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_G_2.txt @@ -0,0 +1,32 @@ + -2.7439083e-01 -4.5527501e-02 2.0839577e-01 5.2599476e-02 3.3345088e-02 -4.1081716e-02 -1.5350112e-01 + 6.5695790e-02 7.5796577e-02 2.3553887e-02 -1.9478962e-01 -1.5617901e-01 -1.4644581e-01 2.0306029e-01 + 1.6422990e-01 1.6844333e-01 2.0986415e-01 2.6508827e-02 -5.6418873e-02 4.0642806e-02 -1.0639273e-01 + -9.2454012e-02 -2.9789924e-02 -1.5527176e+00 -3.8072044e-01 -7.5425012e-03 -1.3065113e-01 4.5731798e-01 + 1.7187121e-01 -1.8540093e-01 4.3492192e-04 4.8283914e-02 2.2226483e-01 1.0832880e-01 1.8156257e-01 + -1.5831622e-01 -1.8487212e-01 2.9020978e-02 1.6633845e-01 2.8287142e-02 4.9718155e-02 -3.9244750e-02 + -1.5644573e-01 9.4924865e-02 -3.8796364e-02 6.1179457e-02 1.5648812e-01 -1.5866957e-02 -8.9403822e-02 + -1.8598480e-02 8.5126912e-02 -1.8193461e-01 7.6412743e-02 5.9408613e-02 8.5374433e-02 -5.9630625e-02 + -2.4441397e-01 1.4212478e-01 -1.8297074e-01 6.1758655e-01 1.9996668e-01 3.7888407e-01 -1.3837589e-01 + -1.1201227e-01 -4.0752580e-01 -5.5526028e-01 -2.6786357e-01 1.7017899e-01 -5.8699828e-01 4.9577639e-01 + 7.8186904e-04 3.4736371e-02 2.2983027e-02 -3.1610221e-02 1.9490102e-01 -2.7296444e-01 2.4415550e-01 + 1.0859937e-03 -3.5687766e-02 8.4962114e-02 1.0431730e-01 -1.7807166e-03 5.0874869e-02 -4.9098766e-02 + -2.4770242e-02 -4.7768908e-02 -2.7133557e-02 1.9964605e-02 -1.0979052e-01 3.1898783e-02 2.3913810e-02 + -1.5176837e-02 1.3369725e-01 -1.7623145e-01 2.1012714e-01 9.2330132e-02 3.8538294e-02 -1.9191027e-03 + -1.3824926e+00 1.0238140e+00 -1.7437919e-01 -1.4483332e-01 5.2143359e-01 5.7621925e-02 -7.4305262e-01 + 1.1036898e-01 9.3769298e-02 6.2643011e-03 -1.1992076e-01 3.1829956e-02 -2.8871297e-02 1.8316432e-02 + 1.5967648e-01 3.4388239e-02 2.0999910e-02 1.0819532e-01 -3.0454433e-01 9.6509263e-02 2.1458268e-01 + 2.6708482e-01 8.6263958e-02 -1.8859380e+00 -7.0019109e-02 4.0111724e-02 -1.7455934e-01 6.2987445e-01 + -2.8920415e-02 -1.1717906e-02 3.8577637e-02 -7.2147377e-02 1.3655740e-01 -9.3999008e-02 7.5023983e-02 + -1.5575828e-01 8.8819461e-02 -3.5900942e-01 2.5554781e-01 1.8693417e-01 1.6128378e-01 -1.5315945e-01 + 1.0507223e-02 -3.8104427e-02 1.4083414e-01 6.4557393e-02 9.0147400e-02 -3.3683454e-01 3.0798213e-01 + -1.1803928e+00 -7.6597668e-01 1.9941327e+00 2.3932925e-01 -1.0542515e+00 8.8612600e-02 5.0687186e-02 + -1.4658057e+00 4.1175195e-01 4.1360585e-01 -7.9399362e-01 -5.3728463e-02 -1.3092044e+00 7.0317348e-02 + 6.5691993e-02 -4.0583304e-02 6.1396563e-02 9.2073818e-02 -8.0036723e-02 1.2425682e-01 -4.1688520e-02 + -6.7034122e-01 6.7049121e-01 1.5838570e-01 1.0297542e+00 3.2951278e-01 -5.2609786e-01 8.6063951e-01 + -9.7904458e-01 2.9293791e-01 -5.4785806e-01 3.1194256e-01 -4.5487228e-01 -1.6067340e-01 -4.5631908e-01 + -5.2262746e-02 -4.0857903e-02 1.5629024e-02 4.4600836e-02 -1.4253629e-01 2.8603905e-02 3.5921979e-03 + -9.3400488e-02 1.4459777e-01 -3.7473462e-01 2.1183535e-01 1.8873304e-01 1.8970816e-01 -7.0700904e-02 + 7.7678167e-01 -1.0526621e-01 -7.5780141e-02 2.0998298e+00 -7.2078220e-01 -2.9426737e-01 2.7063803e-01 + 5.8430438e-03 6.5936313e-02 -8.1939615e-02 -3.0694908e-02 -1.2168786e-01 2.5880016e-01 -7.5996613e-02 + -4.2463290e-02 -7.3622991e-03 4.2668049e-02 -6.6173667e-02 1.7815413e-01 -1.6955793e-01 1.0317866e-01 + -1.0533089e-02 -4.2740047e-02 5.8461608e-02 6.4276751e-02 1.7095294e-02 -3.0238330e-02 -1.3084668e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_IW_G_3.txt new file mode 100644 index 00000000..823fc98c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_G_3.txt @@ -0,0 +1,33 @@ + -7.5873678e-01 6.9179422e-03 2.0571360e-01 1.7438425e-01 -4.8165484e-01 -8.6028636e-01 1.8422720e-01 + -4.4283457e-01 -2.6870905e-01 -5.7497122e-02 -7.5950309e-02 5.8742595e-02 -8.1093109e-03 -1.6188403e-01 + 3.0159419e-01 -2.8237350e-01 -1.9751605e+00 -5.9380151e-01 -2.8168972e-01 -1.7348230e-01 3.8795874e-01 + 2.1673320e-01 8.0687132e-01 -1.9046540e-01 -7.1455956e-01 6.3966266e-01 -7.5060069e-01 6.7595888e-02 + 1.3168932e-01 -4.2204287e-01 -4.2033232e-01 -1.1813857e-01 -1.0988458e-02 -4.0188446e-01 8.8660281e-03 + 1.5079679e+00 -1.0478808e+00 -8.7085107e-01 3.6573311e-01 -2.7560722e-02 -3.6006830e-01 -9.8937021e-02 + 6.3096198e-01 1.1185972e+00 1.2680027e+00 3.2478627e-01 -3.0433560e-01 5.3210105e-01 -4.1964977e-01 + 3.3952031e-01 -7.9481337e-02 -8.5283090e-02 1.2064882e-01 -3.8311045e-02 -2.5102330e-01 2.6702462e-01 + 1.9392881e-01 -2.1118547e-01 -2.1551334e-01 -2.9864736e-02 -4.0119040e-02 -1.0989022e-01 3.7678302e-03 + -6.9305114e-01 -2.2033892e-01 7.7379212e-01 -2.6014363e-01 -2.8998114e-01 -2.7375996e-01 4.1335201e-01 + 1.2738036e-03 4.2595246e-01 2.4619896e-01 3.7856435e-01 -9.8426677e-02 -1.0144957e-01 -6.5587205e-02 + 1.3834771e-01 1.0815020e-01 -1.5588303e-01 -1.5433783e-01 -1.9251355e-01 -2.4787939e-01 -6.7830957e-02 + 1.0085370e-01 -2.2256671e-02 -1.8563588e-01 8.8765895e-02 5.3791043e-02 2.3666000e-01 2.5608360e-01 + -3.7491505e-01 3.1399078e-01 3.3160508e-01 5.2418973e-01 -2.0085638e-01 2.6137401e-01 3.1715842e-01 + 6.1211739e-01 1.0992860e-01 -6.5486297e-01 -5.5743776e-01 1.1423413e-01 2.5920315e-01 3.3426827e-01 + -1.0705124e-01 2.3649863e-01 -6.8631976e-01 -5.4705535e-02 7.4417515e-01 3.6304826e-01 -1.5087317e-01 + 1.2481453e-01 1.3458640e-01 5.2677696e-02 -4.3177391e-02 -1.6723035e-01 3.6062371e-01 1.9244916e-01 + -2.5388941e-01 3.2808391e-01 2.1928352e-02 6.9201991e-01 1.0859107e-02 -5.8409978e-02 4.1639544e-01 + 1.8777789e-01 -3.7925985e-01 1.2541070e-01 -7.0102861e-02 -2.6097873e-02 1.7982787e-01 -3.9534795e-01 + 1.4519713e-01 -2.9502549e-01 -5.2656420e-02 3.8105021e-01 1.8027595e-01 -2.4472902e-01 -5.3765436e-01 + 2.0944224e-01 1.4547825e-01 2.5540443e-01 5.4367409e-02 -4.2495595e-01 -1.2333194e-01 -2.2037936e-01 + 2.6691037e-01 -1.2074002e-01 3.0923684e-01 -3.9023701e-01 7.6583314e-01 5.9395457e-02 5.5430086e-02 + -4.1511121e-01 5.4182965e-01 2.6144190e-01 6.0439341e-01 4.6338776e-01 4.7206651e-01 -1.3701263e-01 + -6.0466026e-01 4.7718222e-02 -8.6450123e-01 5.0397302e-02 -3.2614948e-01 6.2877900e-01 -1.0410170e-01 + 1.2304684e-01 -2.3570608e-02 -2.5394649e-01 2.4271830e-01 2.0783609e-01 8.3286387e-04 -2.4189228e-02 + 1.5830114e-01 2.4119898e-01 -2.9129795e-01 5.2801756e-01 1.8858826e-01 5.1578657e-02 -2.2880917e-01 + -1.5753302e-01 1.8043955e-02 -1.1911105e-01 1.9957602e-01 5.1785289e-02 1.5584790e-01 1.4070535e-01 + -3.5344360e-01 7.3952332e-02 -1.8276198e-01 -2.2462478e-02 3.5042571e-02 4.2635341e-02 -2.0231058e-01 + 2.1325016e-01 4.3853382e-01 1.9793361e-01 -3.7069895e-01 -1.9923555e-01 -2.6590768e-01 2.5822094e-03 + -1.0834520e-01 2.9989449e-01 -2.9072655e+00 -1.9755114e-02 1.5836714e-01 1.4684140e-01 1.0714413e-01 + -5.9494439e-01 4.8995269e-01 6.2004399e-02 8.8201670e-01 1.3903170e-01 -8.6381315e-02 2.7026960e-01 + -1.4352764e-01 1.5424858e-01 1.9681745e-01 3.5211146e-01 5.4731046e-02 -1.0413506e-01 -1.0940459e-01 + -1.0858683e-01 -7.2020827e-02 -4.2510323e-02 -3.8545436e-02 -7.7184073e-02 1.2312819e-01 -1.3243722e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_IW_G_4.txt new file mode 100644 index 00000000..f52efb04 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_G_4.txt @@ -0,0 +1,41 @@ + 1.1511918e-01 -1.1220250e-01 -8.0935953e-02 -2.1929028e-02 -1.9871956e-01 -4.6631411e-02 4.9986258e-02 + 7.2211888e-01 -8.9048551e-01 -9.0561987e-01 5.0606765e-02 -1.9364311e+00 -5.5444282e-01 -5.7793260e-03 + -4.7851507e-02 -6.9148952e-02 -8.3478502e-02 -5.0921712e-02 3.0939976e-02 3.3711071e-02 -5.2498135e-02 + 3.1901743e-01 4.2625284e-01 1.5751872e+00 2.6466255e-01 -2.0997323e-02 2.5168986e-01 7.0816868e-02 + 4.4246264e-02 -4.3060470e-02 -9.4456955e-02 -6.1975384e-02 -8.4244887e-02 3.2638526e-02 1.3727256e-02 + -6.4244645e-02 -1.4376314e-01 -4.9310434e-02 2.5117040e-02 1.1879202e-01 6.3645289e-02 -7.1708589e-02 + -3.7520480e-01 2.0949731e-01 1.3729146e-01 1.0288345e-02 1.8935847e-01 1.0575389e-01 -1.1797656e-01 + -1.4251538e-01 6.7804956e-02 1.4977195e-01 9.9509279e-03 1.8633229e-01 2.9851581e-02 -8.8972689e-02 + 1.1695378e-01 -1.8379713e-01 1.8838341e-02 -8.1991279e-02 -1.0616908e-01 -4.3695361e-02 2.5327515e-02 + -5.3619855e-01 -1.3128332e-01 -1.9360138e-01 7.9722376e-01 -6.9765638e-01 1.2770462e-01 9.2205351e-01 + 5.1991967e-03 8.3537955e-02 1.3972048e-01 1.2545268e-02 -3.4073730e-01 -1.4329781e-01 -1.4074671e-02 + -3.8331786e-01 1.3278502e-01 4.4727009e-02 5.7807975e-02 -1.7221829e-02 4.4576883e-02 -9.8412339e-02 + 3.9316081e-02 7.7282686e-02 2.3043503e-02 2.7636442e-02 1.1523636e-01 -5.4492348e-02 1.3081430e-02 + -3.1591412e-02 1.1510268e-01 8.0085645e-02 7.2377825e-02 1.1910754e-01 -6.5643668e-03 -2.0082512e-02 + -4.3820764e-02 1.9889101e-01 -7.8681435e-02 -9.7348656e-03 1.3253947e-01 6.4241719e-02 9.8844877e-02 + -1.3140117e-01 -1.5844288e-02 4.0536232e-02 3.7097987e-02 -4.0072226e-02 3.1994009e-02 -8.2733193e-02 + -8.5718591e-02 1.2538395e-01 1.9306790e-01 1.0588824e-01 -1.3135653e-02 -9.5874278e-02 -2.6573576e-02 + -6.3601265e-01 5.6090429e-04 2.0487455e-02 -1.0612518e+00 1.2217582e+00 -3.3420595e-01 1.5633185e-01 + 2.5859912e-02 -2.2437463e-02 -1.4644835e-02 -3.5911159e-03 -5.2731177e-02 -6.7417560e-03 -8.4283049e-03 + -2.2981767e-01 -5.1866557e-02 -5.7820329e-02 -6.9665989e-02 8.6627210e-02 7.0470322e-02 -1.0422702e-01 + -6.8220344e-02 8.0119302e-02 -7.2133713e-02 -3.5700290e-02 -5.1763312e-02 9.8999499e-02 -2.4353168e-02 + 2.4831571e-01 3.2184215e-02 8.7828545e-02 6.7331576e-02 -1.1292629e-01 -9.5398490e-02 8.5341584e-02 + -1.3232042e-01 -4.3951508e-01 -4.2839392e-02 -2.4623415e-01 2.4321752e-01 -4.4274442e-01 1.2013209e-01 + 1.3352451e-01 -1.9332997e-01 4.2104068e-02 3.9764872e-02 -2.3142888e-01 -1.8526207e-01 2.5754559e-02 + -2.2532707e-03 1.7129544e-02 1.4780636e-02 3.8516418e-02 1.9787713e-01 -1.7667542e-02 3.6596501e-03 + -5.7058059e-01 -9.0990209e-02 -2.1600462e+00 1.3252772e-01 2.9574740e-01 -9.9813799e-02 9.7423287e-02 + 2.5649270e-01 -8.1567053e-01 -1.0722612e+00 2.3373992e-01 -6.9772995e-01 2.3131675e-01 -3.4523682e-01 + -1.3148469e-01 1.5372325e-01 2.4369138e-01 5.6707477e-02 4.3000403e-02 -6.3454013e-02 -3.7259345e-02 + -8.6106686e-03 9.4674063e-03 -1.0839541e-01 -7.3611272e-02 1.8639433e-02 6.7603908e-02 1.5547286e-02 + -3.6818593e-01 9.7750167e-02 5.0375010e-01 -4.3727671e-02 3.5507193e-01 1.3525633e-01 -2.3922586e-01 + -7.2864926e-02 1.1285412e-01 2.6309259e-02 2.9604459e-02 -2.0527556e-01 8.5256882e-02 -5.9914584e-02 + 8.1082000e-01 -9.5044442e-01 -2.8158084e-01 1.4997684e+00 2.1683898e-01 1.5698698e-01 2.7992057e-01 + -1.5621533e-01 -1.5774940e-05 4.6053554e-01 1.0818564e-01 3.1454310e-03 -2.0979610e-01 9.8309331e-02 + -7.3335664e-02 2.1154250e-01 8.5090083e-02 -5.7279464e-01 -2.5360827e-02 -1.4942652e-01 9.7091432e-02 + 2.5466996e-01 -7.3027060e-02 -8.4015253e-03 -2.6985057e-02 -4.7209396e-02 -1.2617777e-01 1.2463894e-01 + -4.3933925e-01 1.5846852e-01 7.2060084e-02 7.4359363e-02 8.1492833e-02 1.6830827e-01 -1.4418404e-01 + 1.0178169e-01 7.5960236e-03 -1.3026116e-01 -7.3409166e-02 -5.4985883e-02 -5.2718340e-03 1.6634886e-02 + 2.7835275e-01 -3.4884487e-01 5.5101591e-02 -1.6338150e-01 -2.7389377e-01 -5.1211052e-01 6.8675424e-02 + 8.2923987e-01 -3.4837837e-01 9.8450116e-02 -1.8499653e-01 3.2122437e-02 2.2775792e-01 -2.0090459e-01 + -9.2599932e-03 -4.5851315e-02 -9.6663559e-01 6.1422948e-01 6.3669516e-01 -6.4568168e-01 2.8496776e-01 + 6.8217486e-01 7.2774654e-02 2.3177533e-01 3.8505606e-01 -9.9327089e-02 3.2339963e-01 2.5998972e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_IW_G_5.txt new file mode 100644 index 00000000..569d67a8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_IW_G_5.txt @@ -0,0 +1,47 @@ + -2.6729361e-02 3.0826063e-02 -7.9737718e-02 -6.9126922e-03 5.7288927e-02 -2.1554792e-02 5.3836788e-03 + 3.4239725e-02 6.3185548e-02 -5.7544407e-02 -2.6436844e-02 7.4733118e-02 -1.4300867e-02 -6.7335393e-02 + -4.1696073e-02 -4.1426593e-02 -4.6593928e-02 3.7466887e-02 -1.0497533e-02 -6.3917743e-03 2.6322796e-03 + -1.9344266e-02 -5.2491173e-02 -1.5868625e-01 -3.4044036e-02 6.4537159e-02 -4.2919317e-02 -1.1007309e-02 + 4.3231066e-02 9.6775338e-02 3.3849695e-02 -1.0617583e-02 7.6365534e-02 -1.6493363e-02 -9.5392276e-03 + -9.4815953e-02 -8.3688897e-02 -7.6857091e-02 1.5433795e-01 3.4268888e-01 7.6680730e-02 2.7292468e-01 + -2.3878338e-02 -1.1357986e-02 -1.1197894e-01 -1.6907615e-02 6.7850366e-02 -1.4297887e-02 -6.6462470e-02 + -1.5098825e-02 6.2197026e-02 -8.2683513e-02 1.4034650e-02 6.5862341e-02 -1.3925403e-02 -5.5101772e-02 + -4.9089410e-02 2.3335511e-02 1.9267083e-01 9.1636370e-02 -1.2737659e-01 -7.4061709e-02 8.9848690e-02 + 2.7444728e-02 -1.0501742e-01 -4.3516258e-03 4.4120031e-02 -2.6574895e-02 2.2380441e-03 2.8176152e-02 + 9.5292731e-02 2.9947544e-01 -4.1420963e-02 1.4798562e-03 2.9337409e-01 1.2906104e-01 2.2292796e-03 + 8.6795070e-02 -6.8549910e-02 -3.5708000e-01 -2.3674740e-01 9.7706595e-02 -8.5784275e-03 2.2358704e-02 + 4.1435719e-02 9.4226544e-02 2.1192019e-01 1.0731450e-02 -1.1610471e-01 -4.8326412e-05 -1.6413656e-03 + -9.6890112e-03 1.9596442e-02 -7.0229491e-02 2.9611978e-02 6.9933031e-02 -2.3851193e-02 3.2490323e-03 + 5.2029629e-02 1.2318228e-01 3.3072083e-02 -9.5329624e-03 9.7430650e-02 3.1519669e-02 -1.0384170e-01 + 1.4654783e-02 -2.1021764e-02 2.4215534e-02 1.9308375e-02 3.4329523e-03 3.1173403e-02 -5.0199374e-02 + 3.2082935e-02 8.2698118e-02 4.7894153e-02 -1.8651847e-02 5.7897527e-02 1.1954624e-02 -1.2020867e-01 + -3.7138199e-02 5.1872798e-02 7.6661009e-02 4.2240395e-02 4.1386408e-02 6.8091646e-03 -4.4180496e-02 + 4.7577113e-01 -5.0473480e-02 2.1513314e-01 -3.2476451e-01 -3.6837143e-01 -4.2619796e-01 2.1174407e-01 + 8.2334711e-02 -5.4487030e-01 -1.1515689e-01 4.4452758e-01 1.0627215e+00 5.3971382e-01 1.3187243e-01 + 8.6668833e-02 -6.1582129e-02 -1.4360146e-01 -1.2346179e-01 -3.7333823e-02 2.1555585e-02 2.1290103e-02 + -5.7269186e-01 -5.1116151e-01 4.3424713e-02 1.1827125e-02 5.3680263e-01 -8.2191794e-01 3.6229487e-01 + -2.7107160e-02 -8.0492850e-03 -3.6711697e-02 2.6159846e-02 4.0895332e-03 -1.3120168e-02 5.1273836e-02 + -3.0300458e-01 -1.2291748e-01 -4.6826988e-01 2.6171154e-01 -2.7878188e-01 9.9740163e-02 -1.6589843e-01 + 2.7256208e-01 -7.2259005e-02 2.1383738e-01 -2.7887642e-01 -1.8070281e-01 -1.4357687e-01 2.2135310e-01 + -3.0995604e-02 6.2759489e-02 1.5444364e-02 5.7789687e-02 6.0898490e-02 -5.3026357e-03 -3.7184540e-02 + -2.6940156e-01 3.9052669e-01 -2.2878153e-01 -1.3548539e+00 -3.0850309e-01 -5.0966647e-01 -8.9097131e-02 + 5.5044596e-02 1.3616456e-01 3.7100027e-02 -1.1139550e-02 1.0628518e-01 3.1102056e-02 -1.2616352e-02 + -6.4603973e-02 9.3343038e-03 -4.8835745e-02 3.7962770e-02 5.7106318e-02 -9.5875309e-03 -7.2404834e-02 + -3.4317258e-02 -2.9000593e-02 8.1739045e-02 4.1585695e-03 2.1805859e-02 9.0165947e-04 -1.7547603e-02 + -2.7113284e-02 -1.3906485e-01 -8.2861712e-02 -3.8332490e-02 -7.1541500e-02 -4.0700020e-02 9.5008906e-02 + 7.2097275e-02 -1.7284882e-01 -9.9142568e-02 -7.6625907e-02 -3.6409731e-02 7.8063045e-02 -2.8261313e-02 + -6.5324733e-02 -7.6282725e-02 -2.3199668e-02 2.6856022e-02 -7.4153432e-02 2.0597032e-03 -3.6999492e-02 + -1.8996994e-01 4.1762990e-01 -2.3046506e-01 6.7562640e-01 3.2139722e-01 -7.1233278e-01 6.4666340e-01 + -3.4674224e-01 3.7395141e-01 -8.0533626e-01 3.4987206e-01 -2.6730848e-01 -4.8249019e-02 -1.8975937e-01 + 9.8616659e-03 1.8187926e-02 -1.5680661e-01 -8.4183536e-02 1.0186965e-01 4.7060852e-03 -4.4755368e-02 + -9.8985001e-02 -7.5714034e-02 3.1773442e-03 7.8144023e-02 -3.7618316e-02 6.4067332e-03 1.1379284e-03 + -1.5124303e-02 1.7125705e-02 1.1591698e-01 4.0129748e-02 -2.9703566e-02 2.4839421e-02 3.6150479e-02 + 2.3197359e-02 -2.0148931e-02 -3.9568804e-02 3.4950345e-03 -2.3809868e-02 9.1784884e-03 6.1619995e-03 + 1.5937437e-02 2.3205440e-02 -5.4956484e-02 5.4459823e-03 9.6166527e-02 -1.3618394e-01 -7.5256551e-02 + 7.9992807e-02 1.3972609e-01 5.4208384e-02 -4.6032920e-03 3.9469446e-02 2.5847122e-02 2.6663449e-02 + -1.2390199e-02 -7.3790063e-02 -1.2207512e-01 5.5145225e-03 2.0271476e-02 -2.7526433e-02 2.4446381e-02 + 5.2228444e-02 1.6258699e-02 2.2669613e-02 -6.5397467e-02 3.2225386e-02 3.4546924e-02 -1.0297275e-01 + 2.6403824e-02 6.0137373e-03 5.2304047e-02 -3.5967138e-02 -2.4507911e-02 1.1313370e-02 2.0370596e-03 + 6.3429943e-02 8.8366877e-02 1.2463887e-01 -9.1867294e-02 -1.0745275e-02 2.3221606e-02 3.8594829e-02 + 6.4049656e-01 -1.0185483e+00 1.6352930e-01 -5.0376355e-02 -2.8566347e-01 -2.7850091e-01 2.3428435e-01 + -9.7215091e-01 6.0621970e-01 -2.8349922e-01 6.5778116e-03 2.9435880e-01 1.9298720e-01 -2.1757894e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_F_1.txt new file mode 100644 index 00000000..cb7de964 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_F_1.txt @@ -0,0 +1,19 @@ + -4.4670429e-02 1.5665416e-02 1.0939675e-01 6.2048486e-03 8.3632795e-02 -4.5482827e-02 -4.3106485e-02 -5.3284099e-03 5.6199619e-02 9.0612929e-02 4.8078327e-02 -3.6823366e-02 2.3388560e-02 3.5722535e-02 -5.2632681e-02 6.8873851e-02 6.2253999e-02 -7.1271612e-05 3.2844730e-02 -6.2757869e-02 -2.1795261e-02 4.6003501e-02 -1.9839309e-03 -1.9897280e-02 -2.4108562e-02 3.3986892e-02 + 5.2839445e-02 -7.3719940e-02 3.9905390e-02 -4.0705066e-02 4.0892607e-02 1.0084587e-01 -2.4476219e-02 1.9156848e-02 1.7607991e-02 -9.3332665e-02 -1.4981791e-01 1.4404002e-01 4.5572652e-02 -2.5473597e-02 6.6955952e-02 2.4501163e-02 -1.6710643e-01 -1.3627617e-01 7.7072967e-03 2.1266064e-01 -5.9343127e-02 6.6167095e-02 1.1793567e-02 6.4187786e-02 2.0020552e-02 3.6591768e-03 + -3.2220295e-02 3.6843184e-02 5.8323493e-02 1.9033619e-02 4.9773767e-02 -1.0075378e-02 -3.4849564e-03 1.4064600e-02 9.7962464e-03 6.8984150e-02 5.4246676e-02 -3.5504680e-02 1.2561094e-02 -1.6548642e-02 -2.4776587e-02 2.7158636e-02 4.6346635e-02 -1.7141546e-02 1.8522951e-02 -8.0482050e-02 -3.3198003e-02 3.2627762e-02 -8.0317983e-03 -1.5777029e-02 -1.0349511e-02 3.1844043e-02 + 9.9691978e-02 -8.9634504e-02 8.6695998e-02 -9.6185874e-02 -9.4085610e-02 1.1360835e-01 -4.9336366e-02 8.2572452e-02 -3.3989829e-02 -4.8992402e-02 -3.9623897e-02 2.7886222e-04 1.8666664e-02 -1.0334088e-01 5.4325682e-02 -1.0434363e-01 -6.5215316e-02 -7.3936797e-02 5.1913552e-02 9.6300433e-02 -1.3756263e-02 1.1985752e-01 -7.3819905e-02 2.4266781e-02 -4.6734026e-02 5.3526266e-02 + 2.8376564e-02 -8.3140818e-02 -1.8583544e-01 -3.0501343e-02 -3.8391279e-01 2.6671213e-02 -7.3462700e-02 4.1957874e-02 8.2823975e-02 -1.3424013e-01 1.9792927e-01 -1.6476561e-01 -1.3991080e-01 -8.8330919e-02 -9.9969418e-02 -3.4804489e-01 1.9836033e-01 1.7149184e-01 -3.2282970e-02 3.5424923e-01 2.8893239e-01 -1.2387273e-01 9.4279909e-02 -7.4142465e-02 -2.0262052e-02 5.3044402e-02 + -9.2480588e-02 1.4664447e-02 -6.2658283e-02 1.3013974e-01 -8.1544407e-02 5.6771459e-01 -1.0265000e-02 -7.6439474e-03 2.9982446e-01 -7.8531616e-02 -2.2810728e-01 4.4818250e-01 2.8391241e-01 -1.9824244e-02 3.2525930e-01 -1.3137286e-01 -1.4055895e-01 -1.6804860e-01 1.3416541e-01 1.9817689e-01 -1.8267062e-01 1.3559476e-01 6.9055588e-03 -3.4552558e-02 1.2260912e-01 1.0558172e-01 + 5.6007409e-02 -3.1764165e-02 -2.6361043e-02 -2.4713130e-02 -6.8489387e-02 2.6025394e-02 -1.9895321e-03 4.3378848e-02 -5.3845560e-02 -7.4894011e-02 -2.1208757e-02 4.1208774e-02 -5.4897481e-02 -4.6692981e-02 5.0361331e-03 -6.9600435e-02 -6.8570863e-03 -6.5940111e-03 -1.3833368e-02 6.4700109e-02 2.7292997e-02 -2.4325545e-02 -3.6247012e-02 5.4730375e-03 1.1123394e-02 -1.0127553e-02 + 5.5520035e-02 -1.5541376e-01 9.4690673e-02 -1.1394890e-01 -2.2485495e-01 2.1057385e-01 1.1683015e-02 -9.9886982e-02 1.5963837e-01 -3.1760136e-01 -1.8376680e-01 3.7646105e-02 -6.6975625e-02 1.9071013e-01 9.7060404e-02 -4.3295336e-02 -1.0465421e-01 9.6709660e-03 -7.3836498e-02 4.8332816e-01 2.8084811e-01 -5.2821553e-02 1.3916976e-01 6.1908573e-02 9.8163468e-02 -8.4055238e-02 + -2.4446190e-02 3.8631120e-02 -3.2216079e-02 4.2623450e-02 -1.9658351e-02 -3.3278303e-04 1.0713311e-02 1.2697724e-02 -3.7371092e-02 -1.2204660e-02 6.5793838e-02 -2.8485686e-02 1.0272144e-02 -1.3995951e-02 -9.4996650e-03 4.3508620e-02 6.3034039e-02 1.9515227e-02 3.4658886e-03 -6.7477818e-02 1.9392498e-02 -3.8141627e-02 2.3547262e-03 -4.7126849e-02 2.5260185e-02 -5.5992591e-02 + 2.5046837e-02 -3.7754963e-02 -9.6434646e-02 -1.2034459e-02 6.9327806e-04 -4.9764934e-02 3.4684460e-02 -6.6790815e-02 -7.2242618e-05 -1.1209177e-01 -1.4023418e-01 2.5253273e-02 -4.8547995e-02 4.8879141e-02 1.7098546e-02 2.3096978e-02 -1.1332722e-01 5.6376723e-02 -6.9196518e-02 1.0310194e-01 3.3414039e-02 -4.5819027e-02 8.2624801e-02 3.7337264e-02 3.5316437e-02 -7.0797113e-02 + 6.6046589e-02 -2.0205905e-01 -2.2762338e-01 -1.1654375e-01 -2.5764521e-01 -4.1276528e-01 -1.4777397e-01 -7.4732929e-02 2.3334270e-01 -2.9010361e-01 -1.2047079e-01 2.0797315e-01 1.3535918e-01 -2.0253748e-01 6.3815857e-02 -2.4846983e-01 -2.2460462e-01 2.1318886e-01 -5.7150872e-02 1.5207557e-01 -5.1070364e-02 -3.2574717e-02 -2.5799494e-01 1.9394746e-01 -4.4568453e-01 -9.5322660e-02 + 8.2083823e-02 -5.3963530e-02 3.7696727e-03 -3.3876709e-02 5.1038137e-02 2.9610368e-02 -2.2703767e-02 5.9440448e-02 -2.6240239e-02 -1.2905887e-01 -5.8177254e-02 5.4135568e-02 -4.5201403e-02 -4.4854930e-02 -1.3459210e-02 9.3583182e-02 -1.3646415e-01 -1.0639050e-01 -3.4184270e-02 1.0044496e-01 -2.6201352e-02 1.4434786e-02 4.7066088e-02 6.8065599e-02 7.2646904e-05 -7.8261510e-03 + -8.5819744e-02 -3.1029039e-03 7.5394839e-02 1.7940762e-02 1.2989095e-01 4.2236152e-02 -5.2097616e-03 -7.5445714e-02 6.7682790e-02 1.7389818e-02 -5.3433666e-02 -3.6815360e-02 9.0564760e-02 1.9121483e-01 5.4805547e-02 1.7876138e-01 -5.2528079e-02 -5.9740824e-02 -4.5242614e-03 -1.0027152e-02 -1.7499015e-03 2.1108488e-02 1.6581740e-01 3.1555058e-02 4.0321315e-02 1.5691156e-03 + 5.9228763e-03 7.7201302e-02 -9.3236184e-02 9.6894032e-02 5.1031559e-02 -2.4716044e-02 6.8937652e-02 1.1396149e-02 -8.9602565e-02 2.1551813e-02 -1.1078875e-02 4.1841888e-02 -1.4293155e-01 -7.0050848e-02 -4.9312113e-02 -1.0537313e-01 -2.2707531e-03 -3.5577272e-03 -1.1797010e-01 -2.5548665e-03 -6.1353602e-02 -7.6134261e-02 4.3456885e-02 -1.1190630e-02 7.6438339e-02 -3.6729997e-02 + -5.7304261e-02 -5.8014062e-02 1.9367440e-01 -4.5364099e-02 5.6212534e-02 -2.6024696e-02 -5.6743562e-02 -4.6355975e-02 8.3684922e-02 1.1060313e-02 4.4412985e-02 -2.1902774e-02 5.3474902e-02 7.4427678e-02 -1.3576722e-01 1.4094526e-01 9.5035646e-02 -4.3131618e-02 1.8068620e-02 1.4001625e-01 1.4242931e-01 5.6063727e-02 3.8900130e-02 -2.6691700e-02 -5.1217888e-02 2.0513771e-02 + -5.7550574e-02 1.5360525e-02 9.4861134e-02 1.1317410e-02 7.0714490e-02 -2.9718346e-02 -2.8669571e-02 -2.4878101e-02 7.1332809e-02 7.4182918e-02 2.3745332e-02 -3.5584869e-02 3.2647753e-02 5.7983574e-02 -3.4831434e-02 7.7934202e-02 5.0992612e-02 8.8350137e-03 2.5027540e-02 -2.8876433e-02 -1.8266460e-03 3.3284884e-02 1.5056681e-02 -1.9663638e-02 -1.1581131e-02 3.2912877e-02 + 2.8493798e-01 -8.8985965e-02 -3.0622855e-02 -1.1359372e-01 -4.1290194e-02 2.1483369e-01 -7.7350849e-02 3.7369052e-01 -4.8353250e-01 -3.3367854e-01 -4.7968890e-03 -3.2302054e-01 -2.1145475e-01 -4.2620730e-01 1.0232227e-01 -1.1395923e-01 -2.9033255e-01 -2.9732348e-01 -6.4457272e-02 2.8825088e-01 -9.6757713e-02 2.3122362e-02 -9.4084821e-02 -6.6127894e-02 9.3240682e-03 -2.2907158e-01 + -9.6408413e-02 1.0738711e-01 -1.8937267e-01 1.0694774e-01 -6.5313193e-02 -2.8348163e-02 9.3932029e-02 -7.6523236e-02 -1.3427807e-02 7.0218675e-02 1.9885920e-01 -1.2690614e-01 -5.5240196e-02 1.4248931e-01 -6.6578565e-03 -2.0018947e-02 1.8557537e-01 1.8855445e-01 -4.0943848e-02 -3.0217778e-01 7.4107838e-02 -1.6014199e-01 4.2551417e-02 -7.7307707e-02 3.8478569e-02 -4.7508513e-02 + -5.9885219e-02 -7.8692289e-02 3.7985954e-01 -8.3047813e-02 1.5269578e-01 2.9585590e-02 -1.0453558e-01 -1.4701653e-02 9.9546624e-02 1.7884154e-02 -3.9790598e-02 -4.3554430e-02 1.2238022e-01 1.1372509e-01 -4.8406219e-02 8.0500832e-02 1.8469924e-02 -1.0221866e-01 9.0531116e-02 -5.4487925e-03 -5.1437229e-02 1.9097650e-01 -1.1311319e-02 5.9171986e-02 -9.2195452e-02 1.6735978e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_F_2.txt new file mode 100644 index 00000000..c2e873c1 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_F_2.txt @@ -0,0 +1,28 @@ + -3.6240788e-02 -6.0180608e-02 4.8694561e-03 9.4938041e-03 -5.4487951e-02 -4.0750779e-03 -4.5350873e-03 7.8044336e-02 2.0485656e-03 -3.3603544e-02 3.0343339e-02 -1.4249893e-02 -3.8665299e-02 1.3122871e-01 -5.9314999e-02 1.4563199e-02 -4.5913897e-02 1.1285931e-03 -1.1479939e-01 -8.4614135e-02 -1.4255590e-02 1.1973810e-02 3.2982898e-02 -4.6421954e-02 -7.3837687e-02 2.2220737e-02 5.0152113e-02 -3.1222352e-02 -1.4878173e-02 8.9830883e-02 -5.2508432e-02 + 6.3843391e-02 2.3108221e-02 1.0015749e-02 -4.2966169e-02 1.8831207e-02 4.0577421e-02 2.3704546e-02 -1.1170180e-02 3.1090369e-02 -7.4041551e-03 2.2035521e-02 2.5162657e-02 -1.2548955e-02 -4.2727722e-02 -4.3417247e-03 1.1603331e-03 2.5245624e-02 -1.6095762e-03 5.1290514e-02 5.6597289e-02 -1.2419093e-02 -7.8596082e-03 2.8297273e-02 1.5833133e-02 1.2443527e-02 8.2047648e-02 2.6403335e-04 2.2300320e-02 1.8994333e-02 -1.0174485e-02 4.3887309e-02 + 2.0327353e-02 1.5899313e-02 4.2275561e-03 -1.1062050e-02 8.3523021e-03 1.7345786e-02 5.9836407e-03 -1.2580807e-02 1.1457232e-02 1.1905516e-02 4.1558413e-03 1.9779351e-03 2.0638967e-04 -1.4741287e-02 -1.1636959e-02 1.0510724e-02 -1.2923781e-03 2.1866773e-03 5.1108528e-03 2.4308410e-02 -2.6808989e-03 -2.0224708e-03 7.1269158e-04 1.0469400e-02 -8.6587397e-03 1.1900245e-02 3.5117840e-04 8.2387515e-03 4.4231580e-03 -1.0862510e-02 1.2955192e-02 + -1.2310508e-01 -1.6334347e-02 -2.8359655e-02 5.3004018e-02 -1.0952359e-02 -6.5458434e-02 -5.6203822e-03 4.2078033e-02 -1.4307039e-02 1.7935679e-02 -2.0102433e-02 -3.3906057e-02 1.7155971e-02 6.7146141e-02 -2.3391589e-02 -5.4186067e-03 -2.8851402e-02 1.2425461e-03 -8.4985873e-02 -3.8342342e-02 3.1139138e-02 1.3038087e-02 4.5845647e-02 -1.5959102e-02 4.2497389e-04 -8.0573342e-02 1.0532150e-02 -2.2479995e-02 -1.3442565e-02 1.2350000e-02 -1.7418368e-02 + 5.2798202e-02 3.8639505e-02 9.0966248e-03 -2.7839910e-02 2.2219782e-02 4.2169034e-02 1.8111889e-02 -2.8993820e-02 2.8632100e-02 2.8333585e-02 1.0351739e-02 5.6122607e-03 1.3429413e-03 -3.4200330e-02 -3.0249609e-02 2.5667426e-02 -6.7715131e-03 4.7469458e-03 1.1865335e-02 6.0207280e-02 -6.9466557e-03 -4.1996418e-03 -5.4909944e-04 2.5087268e-02 -2.4642122e-02 2.9926668e-02 1.9870350e-03 2.0025362e-02 1.1400240e-02 -2.7388926e-02 3.3087639e-02 + -1.9645563e-01 -8.3018756e-02 -5.4284188e-02 5.0680753e-02 -2.6379662e-02 -5.8425805e-02 -1.9182200e-02 1.8612895e-01 -3.7878963e-02 -3.4268793e-02 -4.7716257e-03 1.5523325e-02 3.6992589e-02 5.1571850e-02 4.4943386e-02 -2.4954287e-02 -3.2926318e-02 -6.7509471e-03 -1.4024692e-01 -1.1497922e-01 4.6299477e-02 -2.9683268e-02 -5.6460020e-02 -6.6133009e-02 1.3821375e-01 -7.3181223e-02 -1.3001013e-01 -2.4516018e-02 -1.6496820e-02 5.9602271e-02 -7.6650376e-02 + 3.8899396e-01 1.7707391e-01 -9.3180713e-02 -8.4011370e-02 3.8516690e-01 6.8077247e-01 4.2194349e-01 -7.7288659e-01 1.9002967e-01 5.3892517e-02 -2.3038825e-01 -5.7990200e-02 4.8704626e-01 -7.0273797e-01 -7.8344463e-01 6.8019499e-02 -7.0758441e-01 -4.8704897e-01 -6.3655024e-02 5.6155423e-02 1.5332607e-01 3.1423675e-01 -5.2731625e-01 -1.2783364e-01 -4.1848926e-01 1.0850520e-01 5.6876685e-01 5.2793731e-01 -1.0359113e-01 -3.7180860e-01 -1.0715540e-01 + -2.9518710e-01 -1.1435932e-01 -4.5390637e-02 1.1296815e-01 -8.7904628e-02 -1.4117666e-01 -1.0859315e-01 1.2664516e-01 -9.9913823e-02 -8.9547696e-02 -2.6807218e-02 -3.5893367e-03 -6.1946068e-03 2.8653904e-02 1.5484337e-01 -9.3442672e-02 1.5818773e-01 -4.7783871e-02 -1.5839143e-02 -1.9121180e-01 4.0934446e-02 -4.1762436e-03 4.5853179e-02 -6.7663128e-02 1.8415269e-01 -8.0320253e-02 -5.7006261e-03 -6.5233225e-02 -1.1871334e-02 1.0682660e-01 -1.0133884e-01 + 3.5178938e-01 -3.9058139e-03 2.8581496e-02 -4.2419187e-02 -1.4626354e-01 3.3175713e-01 -3.1792209e-01 -5.4435845e-01 -6.1200196e-02 -1.3215008e-01 -9.3610469e-03 -5.8103122e-02 -1.1474038e-01 2.9876542e-01 -2.8359386e-01 4.2662870e-01 4.1789508e-01 -2.9659882e-02 2.0556240e-01 -1.7274783e-01 -8.0658745e-02 1.6426045e-02 3.0633132e-01 -5.0248900e-03 1.3630841e-01 2.1437159e-01 -5.7555638e-02 -6.9576729e-02 -6.0503721e-02 1.1280460e-01 -1.6193229e-01 + -2.6242700e-02 -1.9734311e-02 -6.6957506e-03 1.2980451e-02 -8.8285491e-03 -2.1913892e-02 -5.5422726e-03 1.9496292e-02 -1.3940325e-02 -1.6528723e-02 -3.8231058e-03 -1.0344668e-03 3.3130947e-04 1.8133006e-02 1.4644006e-02 -1.5171544e-02 4.7695684e-03 -3.8180718e-03 -5.1552889e-03 -3.2248055e-02 3.8591919e-03 1.8822859e-03 2.4836239e-03 -1.5110994e-02 1.3414437e-02 -1.1073886e-02 -2.8296650e-03 -9.6572318e-03 -3.7623127e-03 1.4001468e-02 -1.4406351e-02 + -1.7152730e-01 -7.3249782e-02 -2.1526279e-02 7.9620423e-02 -6.1972570e-02 -1.0812858e-01 -7.3458989e-02 8.5078853e-02 -7.2563239e-02 -4.3795058e-02 -2.0508663e-02 -2.0661203e-02 -4.1465420e-03 6.8433720e-02 7.2384700e-02 -6.7409128e-02 5.7514393e-02 3.8470494e-03 -3.6160661e-02 -1.4931141e-01 3.1021728e-02 -7.1572462e-03 3.1567711e-02 -5.7173984e-02 9.7689839e-02 -8.0123656e-02 -3.6574865e-02 -4.8189942e-02 -2.1778447e-02 6.6891627e-02 -8.3393931e-02 + -2.1014656e-01 -1.0941603e-01 -3.9700893e-02 1.0235351e-01 -8.1745709e-02 -1.7253485e-02 -1.5623919e-01 1.1933256e-01 -7.5923327e-02 -7.1298500e-02 -3.0023597e-02 -1.0715279e-02 -4.5628424e-03 1.8713463e-02 7.2253052e-02 -9.2324422e-02 7.0747572e-02 -3.0659654e-02 -6.5283800e-02 -1.1455516e-01 6.0317554e-02 2.7443273e-02 1.2841823e-02 -3.3221717e-02 9.0209612e-02 -1.1279599e-01 1.5243993e-02 -2.6375920e-02 -4.7154135e-02 9.3441353e-02 -1.2431685e-01 + 8.5987883e-02 4.9755319e-02 1.2640942e-02 -4.3105272e-02 3.4032744e-02 5.9815236e-02 3.0331704e-02 -3.9682721e-02 4.0534473e-02 3.2529950e-02 1.4307862e-02 1.2421751e-02 1.7083447e-03 -4.6210557e-02 -3.8334069e-02 3.1889984e-02 -1.2085583e-02 2.2011643e-03 2.1630354e-02 8.2662035e-02 -1.5304303e-02 -4.3760874e-03 -6.1400757e-03 3.3015797e-02 -3.6209184e-02 5.0630173e-02 6.5118709e-03 2.7252720e-02 1.6608108e-02 -3.6536172e-02 4.6452501e-02 + -2.9694449e-01 -7.6275645e-02 -3.4873708e-02 1.2728602e-01 -1.0186373e-01 -1.6155742e-01 -1.3329867e-01 1.2015651e-01 -1.1047985e-01 -5.1194324e-02 -2.4893284e-02 -2.8013328e-02 -7.5509914e-03 4.6666227e-02 1.5315012e-01 -7.6866493e-02 1.5250100e-01 2.0485234e-03 -2.1680049e-02 -2.0212546e-01 4.7469271e-02 -1.6201705e-02 4.9298083e-02 -7.3301626e-02 1.8704022e-01 -9.4329436e-02 -3.4553616e-02 -6.4914520e-02 -1.9030488e-02 1.0519851e-01 -1.1420814e-01 + 2.0275040e-02 -6.3938801e-02 -2.6962632e-02 1.0693363e-02 3.4881851e-02 1.5129592e-02 1.1552911e-01 9.3640536e-02 6.2098487e-02 -3.8647839e-02 -5.7997415e-03 5.4037399e-02 -2.8987546e-02 4.6361192e-02 -7.4347240e-02 -2.1864269e-01 -6.0769439e-02 -1.6339402e-02 6.9850922e-03 2.5835837e-02 -5.3061796e-04 4.4271110e-02 -8.5461982e-02 3.6813276e-02 -3.1553457e-01 -1.1310880e-02 4.6317638e-02 4.8585763e-02 -7.4660995e-03 -5.3183599e-02 1.8043916e-02 + 2.8889367e-01 1.3657306e-01 -1.4301486e-01 9.2265247e-02 -4.6766032e-02 3.9239069e-02 1.5742453e-01 2.5598147e-01 6.0898382e-03 2.6707854e-02 3.6337399e-02 8.1581357e-02 5.7321705e-02 2.5391424e-01 -1.2255746e-01 3.4567721e-01 -3.4084904e-01 -4.7490818e-02 1.7464060e-02 -1.8033240e-01 3.2050495e-02 -8.3135468e-02 -4.8883024e-01 -5.6510142e-02 -8.8495530e-03 1.7412247e-02 1.7367356e-01 3.5136812e-02 5.9682459e-02 6.1097684e-02 -8.9510142e-02 + -1.7625331e-01 -7.2938951e-02 4.0486338e-02 2.2539734e-02 -2.7287280e-02 -8.8009348e-02 4.8701292e-03 8.7946917e-02 -1.8884076e-02 -3.0736525e-02 4.9429694e-04 -2.7472054e-02 -1.4350094e-02 5.6949505e-03 6.5916134e-02 5.4301464e-02 -6.1978514e-02 7.7183923e-03 -1.2896108e-01 -1.5307604e-02 4.2396335e-04 4.2804802e-02 2.8855105e-02 -4.0569214e-02 -2.2362791e-02 -4.2624704e-03 3.3003542e-02 -2.5366703e-02 -3.3799698e-02 3.9518453e-02 1.3865636e-02 + 1.0085070e-02 5.3313080e-02 -2.3017066e-02 1.5362486e-03 2.8306944e-02 1.6391984e-02 3.1878163e-02 -1.6453272e-02 4.4935956e-02 5.3437047e-02 1.6533800e-02 -6.6417377e-03 7.2130417e-03 -2.4300866e-03 -7.1271408e-02 3.7997299e-02 -6.1217371e-03 1.4607937e-02 -1.0911484e-02 5.6621913e-02 2.0222157e-02 -2.0335224e-03 3.6902011e-02 2.8906872e-02 -2.3383329e-02 -1.1271120e-02 -2.1642306e-03 1.8193811e-02 1.8233047e-02 -3.8109210e-02 4.8906802e-02 + -1.3172217e-01 -6.4330975e-02 -1.3704335e-02 5.9193776e-02 -5.2680034e-02 -8.1730738e-02 -5.8356395e-02 6.3032473e-02 -6.1848843e-02 -3.8650474e-02 -1.9798205e-02 -2.0404418e-02 -2.0884911e-03 5.7340231e-02 6.0422801e-02 -4.9613466e-02 3.4819617e-02 1.8597724e-03 -3.2605811e-02 -1.1679438e-01 2.5354686e-02 -1.7381276e-03 1.5965621e-02 -4.3537993e-02 6.6664862e-02 -7.1237383e-02 -2.2079098e-02 -4.0837581e-02 -2.2915792e-02 5.5267622e-02 -7.0918016e-02 + -3.4863474e-01 9.0861065e-02 1.9563749e-01 -8.1351013e-02 4.2072257e-02 -1.6364223e-01 -4.4737878e-02 -4.7408734e-01 -1.9556854e-01 6.6477886e-02 -3.1397343e-01 -2.6193800e-01 1.8210870e-01 2.7077783e-01 1.7278434e-01 -2.7914002e-01 -1.7131589e-01 -1.8711503e-01 -2.1642225e-01 1.0979474e-01 -6.6797211e-02 2.4952597e-01 3.4075945e-01 -1.2299708e-01 -1.0117580e-02 1.8620466e-01 1.5876970e-01 -2.1076985e-02 -7.0294295e-02 -8.1641021e-02 -1.0825884e-02 + -6.7662178e-02 -8.9411202e-02 -1.0203198e-01 6.3926704e-02 2.5426183e-02 7.8813485e-02 3.2873296e-02 3.0837763e-02 -3.4573301e-02 -7.1182157e-02 -4.8862358e-02 3.5981863e-02 1.0750678e-01 3.6669691e-03 -8.8632042e-03 -5.7339042e-02 6.7486996e-03 -1.2607901e-01 2.3726034e-03 -1.1062157e-01 6.8194403e-02 3.1551183e-02 -8.4628768e-02 -3.6370884e-02 3.0694310e-02 -1.8844532e-01 -3.5937807e-03 5.6189572e-02 -4.9772690e-02 5.1465707e-02 -1.1041124e-01 + -5.6384206e-02 -2.6312509e-01 -1.3315600e-01 -1.2389695e-02 5.1218118e-02 2.7478036e-01 -8.9323523e-02 7.0866085e-01 2.1912043e-01 -5.5197338e-02 1.6878308e-01 1.5950065e-01 2.1290676e-02 -3.2755225e-01 -3.6354539e-01 7.1978391e-01 -2.8967644e-01 1.1100528e-03 -1.9530786e-01 1.3043179e-01 1.5506967e-01 -9.4444660e-02 1.7522715e-01 7.1928633e-02 3.4487522e-01 -4.0692197e-01 2.1394646e-01 1.0271705e-01 -4.5958947e-02 6.4275910e-02 1.0791771e-02 + -5.0092911e-01 -3.8448424e-01 -8.2424827e-02 7.3997722e-02 -2.2180020e-01 2.9538494e-02 -1.1349936e-01 -1.7809093e-01 -3.9601429e-01 -3.8131356e-01 -2.5334250e-01 -1.0172096e-01 1.3995292e-01 6.1083768e-01 1.9489687e-01 -8.9628867e-01 -2.3148327e-01 -3.7234686e-01 -2.2276927e-01 -2.5397564e-01 -7.1770273e-02 3.2088657e-01 -2.8306694e-01 -1.5755660e-01 -6.7458239e-01 -2.2697143e-01 4.7588209e-01 -9.6518728e-02 -1.4600102e-01 3.6484226e-01 -3.0923844e-01 + -1.2175623e-02 -2.7927078e-02 -1.2845451e-03 3.8494601e-02 -2.4099058e-02 -3.1542808e-02 -2.5201140e-02 8.9733229e-03 -2.8815568e-04 2.0599091e-03 -2.8001662e-02 -3.7358279e-03 -1.8166208e-04 3.0537278e-02 5.9045927e-03 -1.2288965e-02 -2.2423055e-02 5.9683283e-03 -1.9449865e-02 -3.0042585e-02 -1.8062359e-03 -6.0675809e-03 -1.5579637e-02 4.9827086e-03 -2.3813650e-02 -5.6333811e-02 3.2360556e-02 -1.2181456e-02 -1.4752670e-02 -2.9790804e-02 -5.1804640e-02 + -4.0870723e-01 -1.6224533e-01 1.9558574e-01 -1.0829673e-01 4.4863405e-02 -2.1352844e-01 -8.0166963e-02 2.7316326e-01 2.7156665e-02 1.1649601e-01 -1.8605243e-02 -1.0219459e-01 -1.3141327e-01 -1.6173312e-01 4.4837737e-01 -2.2561509e-01 -1.9278462e-01 1.6570078e-01 -1.3336364e-01 3.2561136e-01 -3.6273388e-02 2.8197322e-03 2.1559731e-01 3.3348811e-02 -1.7182686e-01 -1.3987610e-01 6.3516544e-02 7.1507430e-03 2.1277217e-02 -4.7204946e-02 1.6828074e-01 + -2.2664461e-01 -1.2895632e-01 4.4162104e-02 6.9399390e-02 -1.0065557e-01 -1.0642106e-01 -1.2165551e-01 1.2570097e-01 -8.9236692e-02 -4.9382407e-02 -5.0300451e-02 -4.6277378e-02 -6.0563718e-02 1.0072792e-01 1.0913850e-01 -1.2226746e-01 7.3805474e-02 3.3904611e-02 -6.0186025e-02 -2.1678222e-01 2.4605272e-02 -6.9055545e-03 1.0094681e-01 -7.9777948e-02 1.5122406e-01 -1.1646636e-01 -6.3195805e-02 -6.6069396e-02 -5.0284484e-02 6.9330427e-02 -1.1236895e-01 + 2.9141219e-02 1.5909828e-02 4.4174769e-03 -1.8496734e-02 1.4283615e-02 2.0637294e-02 1.0102302e-02 -1.2940847e-03 1.1540135e-02 7.5589905e-03 5.4746938e-03 7.3075054e-03 4.9615959e-04 -1.6414012e-02 -9.7831885e-03 -7.1909311e-06 5.1206150e-03 -4.4146648e-04 1.0308749e-02 2.2417129e-02 -7.6311116e-03 -2.3509786e-03 -1.4866423e-03 8.1829217e-03 -7.1757312e-03 2.6678727e-02 -9.0096812e-03 7.2025967e-03 8.7499195e-03 -1.2207202e-02 1.6675862e-02 + -1.2152750e-02 -7.7002205e-03 -2.5040574e-03 7.6173755e-03 -5.3973079e-03 -9.7163184e-03 -3.3653143e-03 3.9036162e-03 -5.3233932e-03 -4.8562379e-03 -2.1192510e-03 -2.0488205e-03 -2.4199934e-04 7.9868799e-03 4.9316439e-03 -2.7350361e-03 -1.0906458e-03 -2.8095862e-04 -3.6503540e-03 -1.1644743e-02 2.5382093e-03 8.6995616e-04 6.7096913e-04 -4.9658967e-03 3.8529986e-03 -9.0220065e-03 2.0821255e-03 -3.4498099e-03 -3.0335866e-03 5.3268729e-03 -7.0338389e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_F_3.txt new file mode 100644 index 00000000..b0a4465b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_F_3.txt @@ -0,0 +1,15 @@ + 1.4597955e-01 7.3289285e-02 2.3880652e-02 2.4895938e-01 -2.2842124e-01 -4.5847245e-01 1.3663819e-01 1.1161965e-01 9.2315248e-02 -4.5942438e-01 2.6926487e-01 -2.3856703e-02 2.4129729e-02 -4.2772119e-01 3.4421780e-03 -5.2172619e-01 9.8483003e-02 3.7384544e-01 9.5549922e-02 3.5208543e-01 3.6642036e-01 -2.5317257e-01 1.5185258e-01 9.0041564e-02 -3.0479074e-01 -2.4623817e-01 1.4614259e-01 -9.5990614e-02 6.1115750e-02 -1.0871223e-01 3.1774310e-01 5.0446267e-01 -1.9744297e-01 + -4.2243529e-02 2.4641279e-02 -1.9701419e-03 -3.0028045e-02 2.6289275e-02 -5.0970329e-03 -1.2634373e-02 -2.2597926e-02 -2.5717219e-02 3.2171385e-02 -2.6974011e-02 -8.4763752e-03 -3.5849152e-02 -1.1056919e-02 -2.5860076e-03 1.6538821e-02 3.0976628e-02 -2.7577093e-02 1.0788633e-02 1.3333131e-02 -1.5949279e-02 1.3299197e-02 -2.7333025e-02 2.4614708e-02 1.4094111e-02 -1.3748735e-02 1.8181105e-03 -3.4462643e-03 1.3416428e-02 -2.1477746e-02 -3.7360495e-02 1.6133259e-02 3.3727798e-02 + 1.2375351e-01 -8.0844846e-02 6.9299305e-02 7.8734009e-02 -8.0690423e-02 2.7519536e-02 4.2257209e-03 5.0083400e-02 5.5671196e-02 1.7755961e-02 6.3561667e-02 5.1626388e-02 1.1466073e-02 9.5022640e-02 2.2765004e-02 -1.0981761e-01 -6.7690483e-02 8.3694206e-02 -2.5133077e-02 -6.3974564e-03 1.5555142e-01 2.1317644e-02 6.3668195e-02 -8.9236008e-02 -7.2764865e-02 6.5206428e-02 -4.3419980e-02 -1.4518319e-02 -2.3587965e-02 6.2085308e-02 1.0718808e-01 -8.1896750e-03 -7.4847402e-02 + 6.2521027e-04 -8.9410591e-02 -2.9598298e-02 2.3696592e-02 -9.4087398e-02 1.0503695e-03 -2.4038686e-01 2.3320371e-01 9.3852400e-05 5.6793623e-02 6.0041808e-02 -2.0444030e-01 1.5817538e-01 1.5122227e-01 7.5446771e-02 -6.7252139e-02 -1.0416099e-01 -2.5210086e-02 -8.0265054e-02 -3.3265763e-02 1.7186140e-01 6.2062727e-02 1.2815319e-01 -1.3352115e-01 5.4447235e-02 7.3350798e-02 1.1052584e-02 -1.9966875e-01 -9.3462690e-02 2.3008649e-02 -5.4085808e-02 -3.0326500e-01 5.7338458e-02 + 9.5385649e-02 5.1825306e-03 4.1553905e-02 9.1090655e-02 1.9953164e-03 8.1815181e-02 1.2941719e-01 -1.6077167e-01 8.7017027e-02 1.1877307e-02 1.7007531e-02 1.0132460e-01 -1.3178867e-02 2.6114384e-01 -1.2402883e-02 2.1469456e-02 -4.1822059e-02 6.9294297e-02 1.1142126e-01 -3.1015221e-02 -6.2269479e-02 -9.9356913e-02 1.9976482e-02 -4.0910503e-03 5.3859354e-02 -1.5316531e-02 -2.2697252e-02 4.6062249e-02 -1.9249113e-02 2.2540860e-01 2.0422760e-01 -9.2485817e-02 -2.0858116e-01 + -7.9041942e-03 7.1405340e-03 -6.6241482e-03 -4.9037597e-03 6.9790135e-03 2.9168058e-02 9.6429037e-03 -4.4829962e-04 4.1530217e-02 -2.4160754e-02 -5.6321104e-03 -1.0752434e-03 4.6472277e-02 3.2228400e-02 1.7400639e-02 1.0609956e-02 -2.1560284e-02 5.2748708e-03 -2.2278402e-02 -1.5868891e-02 5.2738218e-03 4.2401979e-03 4.4814261e-02 9.4644992e-03 4.8709558e-03 1.6280505e-02 -9.4239695e-03 -1.6456908e-02 2.8946507e-02 2.6278775e-02 1.7290747e-02 6.9649533e-03 1.0568451e-02 + 1.7631142e-01 1.2710736e-01 5.9784418e-03 1.6500089e-01 -1.6573556e-01 -3.7331285e-01 6.2240052e-01 -3.0176104e-01 1.7382418e-01 -4.2609694e-01 2.6423869e-01 2.7493407e-01 1.1504638e-01 -1.0128505e-01 7.1823297e-02 -4.4366542e-01 2.2803176e-02 3.0047959e-02 3.9296401e-01 -2.1532000e-01 2.0111362e-01 -1.7544941e-01 8.1460262e-02 -2.6440245e-02 5.3936975e-01 -1.3087185e-01 2.4303040e-01 2.6119189e-01 1.1484439e-01 -1.3703522e-01 2.3179681e-01 4.1289917e-02 2.7908099e-02 + -9.8605267e-02 5.5756340e-02 -9.3215320e-02 3.3407351e-02 -1.1577619e-01 7.1546819e-02 -1.0293669e-01 -1.6634065e-01 -1.3663493e-01 -3.1718221e-01 -2.3713732e-02 3.6898440e-02 4.4724672e-02 -4.6581911e-01 -9.3210021e-03 2.4921287e-01 7.6476884e-03 -2.0099136e-01 3.8803633e-02 -5.0116270e-01 -3.9415218e-01 -1.8520886e-01 -3.4399830e-02 -5.8080939e-02 7.4229636e-01 -8.0605779e-02 1.4257913e-01 -1.0441434e-01 7.6307731e-02 5.4745267e-02 -3.1178662e-01 2.1318050e-01 1.7165429e-01 + -2.4728425e-01 -2.6515394e-02 -9.1497588e-02 -2.7350903e-01 2.6472455e-01 4.0381558e-01 -8.2409138e-02 6.9427349e-02 -2.9321890e-01 1.1093743e-01 -2.8462993e-01 7.0462228e-02 3.5058300e-02 1.3919943e-01 -4.4649101e-02 3.8132756e-02 3.9895333e-02 -3.3505716e-01 -2.2675380e-02 1.3085891e-01 -9.0314415e-02 -8.6171259e-02 -1.4038578e-01 1.1457189e-01 4.4095989e-01 1.5086277e-01 4.3149715e-02 2.6259967e-01 4.4486809e-02 -3.9064350e-01 -3.9404914e-01 -4.5889673e-01 4.2499443e-01 + -8.8576003e-02 7.2249191e-02 -9.3014217e-02 -5.7643317e-02 5.6717880e-02 -3.3313978e-02 4.1305116e-03 -5.1787353e-02 -6.1211411e-02 -2.0438026e-02 -3.5517746e-02 -5.3440569e-02 -1.5013889e-02 -8.1433449e-02 -1.2871033e-02 7.8918446e-02 9.2446476e-02 -4.5332137e-02 4.0326310e-02 4.6344057e-02 -1.1349939e-01 -4.8179196e-02 -6.0439690e-02 7.9716083e-02 7.3538062e-02 -9.6367754e-02 5.5891896e-02 1.8050185e-02 3.5057730e-02 -4.9061118e-02 -7.0645832e-02 3.4512010e-02 5.8735261e-02 + -9.3795761e-02 7.3325766e-02 -7.7921504e-02 -6.3886344e-02 5.6686276e-02 -1.9149558e-02 -5.1837230e-03 -4.2422148e-02 -5.9814413e-02 -4.2530948e-03 -4.1826344e-02 -5.4349856e-02 -1.9554212e-02 -7.4906683e-02 -8.6668933e-03 6.9703324e-02 8.3427621e-02 -5.4591733e-02 2.7259410e-02 3.3050889e-02 -1.1228609e-01 -2.0662880e-02 -5.0530252e-02 8.1211234e-02 6.1349463e-02 -7.8518802e-02 4.2193155e-02 4.0701735e-03 2.6438599e-02 -4.3622623e-02 -7.1269353e-02 2.4547857e-02 6.0832412e-02 + 1.4577386e-01 -1.0307488e-01 4.5514986e-02 1.4827022e-01 -1.9280966e-01 -3.7064671e-02 -1.1490014e-01 1.0487478e-01 8.4971521e-02 4.2802882e-02 1.2718149e-01 3.6134041e-02 9.3888501e-02 1.1923252e-01 1.4563655e-02 -1.4970879e-01 -1.2507475e-01 8.0070900e-02 -2.6980898e-02 2.6487377e-02 3.0432534e-01 3.7245566e-02 1.1069637e-01 -1.0454357e-01 -1.3727769e-02 4.9885702e-02 -2.8422442e-02 -5.8423831e-02 -8.4290657e-02 1.1399654e-02 7.0281665e-02 -8.9754542e-02 -5.1638514e-02 + 1.6614523e-01 -1.6348791e-01 -8.1185217e-02 1.0127409e-01 -2.6300602e-01 1.9877050e-01 6.6938891e-02 1.4104764e-01 2.3360549e-01 -2.4059085e-01 7.5833764e-02 -2.5045426e-01 4.2521991e-01 1.3161656e-02 2.0873063e-01 4.7698793e-01 -3.3928864e-01 9.0604944e-02 -3.9862065e-02 -5.7322229e-02 -1.5778517e-01 2.6519580e-01 1.8725844e-01 -3.6412869e-01 1.2903145e-01 2.6758659e-01 -1.7999206e-01 -1.9058637e-01 -1.1705603e-01 1.5456907e-01 1.9969124e-01 -3.7551249e-01 4.9772553e-02 + -1.8677502e-01 -2.0421322e-02 1.1428557e-01 5.5059512e-02 -2.7013825e-02 -2.1414480e-01 8.0885180e-03 -1.4499402e-02 4.1224845e-02 7.1467032e-01 -2.4411550e-01 5.0046328e-02 -1.8128249e-01 7.7973252e-01 -8.9523779e-02 2.0683302e-01 1.9587502e-02 1.3255631e-01 8.4384617e-02 -1.5558983e-01 3.8807456e-01 1.5526722e-01 3.0688631e-02 -3.3933853e-02 -5.9062244e-02 -5.1036971e-02 -8.1275671e-02 -1.0744560e-03 -9.3105410e-02 1.3979056e-01 1.0945126e-01 -7.1969698e-02 -2.6371178e-01 + 1.2745329e-01 -8.0908032e-02 8.3481887e-02 8.8649428e-02 -6.1466387e-02 -4.4455893e-02 2.5377840e-02 7.5526055e-02 1.0326575e-01 5.2545317e-03 8.4140643e-02 3.3520644e-02 5.2220593e-02 7.8651837e-02 5.2303317e-03 -7.4747935e-02 -1.0409294e-01 1.0491004e-01 -3.7815617e-02 -7.0725084e-02 1.7870223e-01 1.6936575e-02 5.0568108e-02 -9.2957100e-02 -1.1461394e-01 9.6523408e-02 -3.6249738e-02 -2.4900516e-02 -3.4109256e-02 3.5075053e-02 1.1579243e-01 2.6843562e-02 -1.0643399e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_F_4.txt new file mode 100644 index 00000000..1287029d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_F_4.txt @@ -0,0 +1,17 @@ + 1.3580926e-01 3.9167689e-01 -8.2453944e-03 -2.3319378e-01 5.6377421e-01 -1.6357740e-01 1.5330052e-01 3.2044465e-01 4.7630913e-02 -2.0733528e-01 -9.5894775e-03 6.6450643e-02 -9.7301368e-02 1.8257630e-01 3.5069600e-01 6.9989767e-02 -2.5835455e-02 3.0082967e-01 -1.5232094e-01 -3.6864765e-01 3.0984166e-01 -3.5443933e-01 -5.3030148e-01 -3.1824981e-01 -3.6453593e-02 -2.7872081e-02 1.3604097e-01 -3.8456457e-01 1.2605779e-01 -2.0460944e-01 4.1261613e-01 1.4138665e-01 5.7050461e-02 -3.4254651e-01 + 7.4904615e-03 -1.0514651e-01 1.8600791e-02 -3.8431183e-03 -4.9187168e-02 -3.9974208e-02 6.3292454e-02 -4.0095190e-02 -6.4996039e-02 -2.9040014e-02 6.7136688e-02 -3.6190822e-02 -8.7428163e-02 -7.4041140e-02 5.2709960e-02 6.3392779e-03 -7.2853940e-04 8.4786819e-02 -6.4580083e-02 -7.4846602e-02 2.1957324e-03 -6.7090406e-03 -8.0979884e-02 2.8835632e-02 -6.0451135e-02 1.0637291e-01 5.1030571e-02 7.9873968e-02 1.1297497e-02 2.8079489e-02 3.0778648e-02 2.0632573e-02 4.0122317e-02 -2.2318238e-02 + -3.9080324e-02 9.8714631e-03 -1.6932780e-02 7.7234611e-03 5.1693536e-02 1.5438256e-03 -3.1523772e-02 2.5673659e-02 -5.6076628e-02 4.6437985e-02 4.9310828e-04 -2.0150262e-02 -2.1851318e-02 2.2016279e-03 6.3836841e-02 1.5912626e-01 5.8702309e-02 4.3149569e-02 5.1189284e-02 1.7667909e-02 -1.0959657e-01 -6.3425902e-02 -8.2215311e-02 -3.5822513e-02 2.7546960e-02 7.1033239e-02 1.1532568e-01 -2.2366325e-02 1.2964012e-02 -3.5853660e-02 -5.1278531e-03 6.3700089e-02 9.3903247e-02 1.8332310e-02 + -4.6703268e-02 -8.4520939e-02 1.5300414e-01 -3.6972042e-02 -1.4948291e-01 -1.0394514e-01 -1.4861384e-01 -3.2000693e-03 -5.6318204e-01 -1.6155335e-01 -1.6056672e-01 1.6198886e-01 -2.9543050e-01 -3.8353222e-04 -2.4931940e-01 3.5981672e-01 3.7963471e-01 3.2390528e-01 2.4065609e-01 -1.3777536e-01 -2.1232670e-01 -1.5310590e-01 -2.5921711e-01 9.1973015e-02 7.8478711e-02 1.6117458e-01 3.0880254e-02 -1.7937351e-01 2.4534635e-01 -9.6115197e-02 -2.1531873e-01 -2.8732062e-01 3.7350376e-01 -1.6552557e-01 + 3.4529274e-02 2.8833372e-02 4.1079051e-02 4.1366476e-03 -3.4702737e-02 -2.2051937e-02 6.7589395e-03 -1.0433434e-02 -4.2045756e-03 -4.5729205e-02 -3.4393159e-02 1.8901814e-02 -2.2653963e-02 -7.4687985e-03 -8.1082570e-02 -7.2348282e-02 -3.7607255e-04 5.8637643e-03 1.2116978e-02 -1.0472854e-02 5.7909466e-02 3.7785118e-02 1.0130107e-02 1.4681084e-02 -1.4902529e-02 -2.5432011e-02 -3.4433898e-02 -5.4736648e-03 1.4565372e-02 -1.4263724e-03 -1.8644035e-02 -6.1222183e-02 -4.5096098e-02 -5.8658600e-02 + -1.4329361e-02 3.8548628e-02 -1.1422517e-02 -1.2491149e-02 1.0628465e-02 4.7179461e-02 -5.5524147e-02 4.9943959e-02 -9.6497130e-03 -1.6075369e-03 -3.3034885e-02 2.9379615e-02 1.9524823e-02 9.8683378e-02 -6.4200774e-02 2.3638785e-02 -6.8414610e-02 5.2040104e-02 -2.8324388e-02 1.0231586e-02 3.7985452e-02 1.1782487e-01 5.8779690e-03 8.6829786e-03 -2.4673487e-02 -9.2412239e-02 -8.3365290e-02 -1.1937622e-01 1.1018186e-04 -3.8809584e-02 -5.8443753e-02 -8.6909681e-02 -3.2320844e-04 -5.5111690e-02 + 2.4206462e-02 8.8699886e-03 1.8267536e-02 8.6213006e-02 -2.3057293e-02 -1.1251399e-02 3.5960558e-02 5.7857245e-03 -5.5311284e-02 -7.5628060e-02 -3.9871507e-02 -6.7832700e-02 -1.8110616e-03 -5.4568856e-02 -6.3692368e-02 -2.0084672e-02 -8.5928978e-02 -6.5570342e-03 -2.9631490e-02 -3.3557611e-02 -5.3450365e-03 7.0216232e-02 2.9144405e-03 6.0048181e-03 -6.7257120e-02 1.0568984e-01 4.9366833e-02 1.3450210e-02 6.5935930e-02 4.1818527e-02 -3.9858853e-02 -2.0520907e-02 3.7112409e-03 -1.7154424e-02 + -1.7445402e-01 -6.7060277e-02 -7.4942292e-02 1.2093454e-02 2.8921417e-02 1.0417865e-02 -3.1905092e-02 -3.0137102e-02 1.3038843e-01 1.4597546e-01 1.5579229e-01 -2.8776610e-02 1.2881238e-01 3.6711374e-02 1.6030261e-01 1.1938394e-02 6.6470208e-02 -1.2656853e-01 4.4373848e-02 -4.9860733e-02 -8.4109184e-02 -1.2094537e-01 7.1928154e-02 -6.2185390e-03 6.2452326e-03 -1.3916048e-02 7.7086912e-02 1.2660561e-01 -1.8047085e-02 2.8535958e-02 4.1945194e-02 1.8470528e-01 2.8798683e-02 1.2520279e-01 + 1.5262972e-01 1.0425853e-01 8.7929550e-02 9.8189223e-02 -6.9237762e-02 -3.8079023e-02 3.8860423e-02 -8.1368728e-02 -1.6015528e-01 -1.7911261e-01 -1.1225450e-01 -8.8351818e-02 -1.1387856e-01 -7.8333323e-02 -2.5055786e-01 5.7421605e-02 6.1256328e-02 3.2259482e-02 9.6383393e-02 -1.1033550e-01 4.7314744e-02 -1.0142392e-01 -2.1370732e-01 2.6479679e-02 5.3256925e-02 2.7641419e-01 4.5867090e-03 1.7697911e-02 7.2095380e-02 -1.7093304e-02 -8.1476294e-02 -1.0638002e-01 1.0457140e-02 -2.0130905e-02 + -2.3144049e-02 -7.3151862e-03 -6.1924847e-02 -4.3638072e-02 3.1075247e-02 2.9978697e-02 -2.7481557e-02 3.4658297e-02 3.5120005e-02 4.0368683e-02 8.7244661e-02 6.2046007e-03 3.9380469e-02 2.3316786e-02 4.2692249e-02 -8.0674161e-03 4.7106138e-02 -2.4758300e-02 2.4397385e-02 1.5551921e-02 -1.9168507e-02 -7.0599623e-02 2.1489070e-03 -7.9135054e-03 3.0389809e-02 1.5566448e-02 1.7887395e-04 2.1180147e-02 -2.2637179e-02 2.8735545e-03 5.0002345e-02 2.8867454e-02 2.4350986e-02 5.6792905e-02 + -3.7351543e-02 2.5857306e-01 3.0118298e-02 1.0745515e-01 -1.0290636e-01 7.5988454e-02 8.0001270e-03 1.1952257e-02 -2.0965607e-01 -2.3138791e-01 -4.2985931e-01 3.0135460e-01 -1.6720086e-01 -1.9871239e-01 -4.2723420e-01 1.9505079e-01 2.3022425e-01 -3.4464101e-02 2.7456767e-01 -1.3442384e-01 -1.8621502e-01 -2.4202220e-01 -1.4194465e-01 9.0913064e-02 3.6944523e-02 5.7698491e-01 3.1664328e-01 1.2286127e-01 -1.6022471e-01 1.4706574e-01 8.7768245e-02 -1.5600284e-01 3.7161777e-02 1.1208586e-01 + -3.4037440e-02 1.6469100e-02 -7.4312343e-02 -3.3558167e-02 5.9088037e-02 3.8857134e-02 -2.8225229e-02 2.5300878e-02 -2.2437370e-02 7.1499629e-02 6.1030584e-02 -4.1349204e-02 -9.7548322e-03 1.5253195e-03 8.5050526e-02 9.7946505e-02 3.0335347e-02 3.9672845e-02 1.5731789e-02 2.7691434e-02 -9.3760821e-02 -6.0505694e-03 -4.0893961e-02 -4.0185279e-02 -2.7514872e-02 6.4050758e-02 1.2369775e-01 -4.1233739e-02 -2.7619791e-03 -1.3162397e-02 4.2023299e-02 3.5730191e-02 8.2949640e-02 7.2852302e-02 + 8.8318665e-03 -4.8104294e-02 2.1451620e-02 5.4580165e-02 1.3833680e-02 1.0272446e-02 5.7397813e-02 -4.3026233e-03 4.3837843e-02 -1.0845363e-02 -2.0095793e-02 -6.3383640e-02 3.1654217e-02 4.4742684e-03 1.7749610e-03 -5.0056152e-02 -1.4516407e-01 -7.6382767e-02 -1.0941154e-01 -1.0260394e-02 5.0503872e-02 6.7042998e-02 5.6986313e-02 -7.3843907e-03 -3.3569537e-02 -1.8081782e-03 -6.5985543e-02 3.0196844e-02 5.9930249e-02 3.9662662e-02 -3.6889155e-02 6.2114147e-02 -6.0408365e-02 -5.8697901e-03 + -5.7984876e-02 -1.5160349e-01 -2.9829338e-01 8.5661688e-03 2.1436947e-01 1.1638601e-01 5.6768681e-01 -1.2712936e-01 -7.0490727e-02 2.0288747e-01 3.9750824e-01 -3.6152785e-01 2.9260705e-02 -1.4232840e-02 -1.5889929e-02 -1.9306840e-02 -2.7097352e-01 -1.8448836e-01 -3.1101103e-01 -5.9739397e-02 -1.5258168e-01 -7.3667886e-02 -5.8027225e-01 -2.5271922e-01 -1.2445212e-01 7.6229359e-01 -9.6057024e-03 1.0098228e-01 3.3721074e-03 -2.7134669e-02 3.9679351e-02 2.7282223e-01 7.9401913e-03 1.6597844e-01 + -2.7665238e-01 -2.2152471e-01 9.4435342e-02 -4.6199849e-02 -4.0499279e-01 -1.4098663e-01 7.1739463e-02 -1.1091846e-01 -4.1561449e-01 -2.7766328e-01 -2.0281731e-01 4.4776485e-01 -1.3319390e-01 -3.5498636e-03 1.2266434e-01 -1.6929630e-02 1.5848579e-01 2.8215670e-01 3.1765502e-02 -3.5093415e-01 -1.8418823e-01 -1.5377000e-01 -2.0503926e-01 1.7220447e-01 1.1699955e-01 -3.5627066e-01 -4.0332869e-01 -4.7780182e-02 -3.9858675e-02 -4.8655879e-03 -2.6697785e-01 -4.8984730e-01 -5.5745449e-02 -6.2064436e-01 + -8.2565369e-02 -3.0587780e-02 2.7949822e-02 -2.4793284e-02 -1.1518245e-02 -2.0359699e-02 -8.8425742e-02 -5.1880688e-02 -2.8585809e-01 -3.1130991e-03 1.5776221e-02 1.4223422e-01 -1.7662564e-01 -2.8407213e-02 -1.0555870e-01 2.3369075e-01 2.1706740e-01 1.6088100e-01 1.6255093e-01 -1.7873008e-01 -1.3374983e-01 -8.3650763e-02 -2.0105662e-01 -2.3308975e-02 -2.7322208e-02 7.0690623e-02 1.5690566e-01 -2.8625169e-02 1.7262277e-01 -7.5780035e-02 -7.8176914e-02 -2.5418639e-02 2.2087222e-01 -3.0654036e-02 + 4.9133687e-02 1.0718423e-02 8.0149273e-02 2.3542411e-02 -6.2150847e-02 -4.7174776e-02 1.8475676e-02 -3.1529344e-02 -1.4525626e-02 -8.5791988e-02 -8.3445111e-02 6.0034147e-02 -2.0541540e-02 -2.8959394e-03 -1.3292139e-01 -1.0337421e-01 -7.8642042e-03 -3.7141132e-03 -2.3887525e-04 -2.5207357e-02 9.8025034e-02 2.7178874e-02 2.8686779e-03 2.5708320e-02 4.5057837e-03 -5.5766747e-02 -9.3641464e-02 1.2070231e-02 2.0587164e-04 -8.8310972e-03 -3.7684205e-02 -8.1129740e-02 -8.0015212e-02 -8.6469639e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_F_5.txt new file mode 100644 index 00000000..2386c6fa --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_F_5.txt @@ -0,0 +1,20 @@ + -1.4885594e-01 -1.7084998e-01 1.0851314e-01 -1.4002856e-02 2.3741395e-02 -4.2795423e-02 1.4862037e-01 1.0519304e-01 -1.7595214e-01 4.4244368e-01 -8.7799342e-02 -1.5574218e-01 2.4417486e-01 2.8029144e-01 -1.9746118e-01 1.5283362e-01 2.7477688e-01 -1.1861285e-01 -5.1933628e-01 5.8075291e-03 1.1516309e-01 -1.9470450e-01 -7.0599040e-02 -3.3392217e-01 6.4071962e-02 -1.9343928e-01 -5.0721936e-02 1.6202936e-01 -1.0808314e-02 -3.3770009e-02 -5.9934697e-02 -2.3881575e-01 -1.9419494e-01 1.7737739e-01 -5.1477285e-01 2.3048985e-01 + 7.7337312e-02 -1.4551005e-03 -5.7576625e-02 2.7714108e-02 2.5886723e-02 -8.4614861e-02 -4.2300700e-02 -1.2832728e-01 3.0098826e-01 -1.1688537e-01 9.0326583e-03 -2.1897864e-02 -5.4356490e-02 -5.9801515e-02 8.4294082e-02 1.4524896e-03 -5.5359891e-02 -1.3972294e-02 2.3177503e-01 -8.6767211e-02 -1.1669051e-01 1.3184862e-02 1.4895003e-01 -2.5791794e-02 -8.4762312e-03 9.2657515e-03 -8.0184227e-03 -1.0548663e-01 -5.3516022e-02 4.1151725e-02 -1.1681379e-02 8.8905080e-02 6.2794646e-02 -4.0301569e-02 1.6572323e-01 2.2972609e-02 + 1.9577631e-01 -1.1893015e-01 5.2308628e-02 -5.0326480e-02 1.3330235e-01 1.0195611e-01 -7.4669603e-02 3.4608965e-02 7.3413586e-03 -2.1938491e-02 -2.5136258e-02 6.7060049e-02 -2.6514596e-02 -7.2803762e-04 -3.0249092e-01 9.1822137e-02 -1.8929970e-01 -1.5525099e-01 1.0529412e-01 1.1501256e-01 -3.0270286e-02 4.8415558e-02 3.3846361e-03 2.5294512e-02 7.6146974e-02 -1.8390211e-01 1.1289072e-01 -1.3957765e-02 6.2532897e-02 -5.1940915e-02 -1.4056090e-01 1.1889831e-01 3.9160289e-02 3.7164947e-01 -5.3939100e-02 -1.1903501e-01 + 7.3611324e-02 -7.5643260e-02 -8.2578980e-03 4.2184692e-02 2.1527656e-02 -3.5603134e-02 -3.9400771e-02 -9.3790401e-02 2.0162546e-01 -7.6872309e-02 3.6874744e-02 -6.9071553e-02 -5.2810188e-02 -1.8670735e-02 1.0160476e-01 -4.8754344e-02 -1.8392824e-02 2.0053275e-02 1.5142027e-01 -6.6216731e-02 -6.8039601e-02 -3.8254026e-02 2.6100066e-02 -3.9223505e-02 -7.2599834e-03 3.3051965e-02 1.3431557e-02 -7.4445973e-02 -5.3043944e-02 2.1848515e-02 -5.3344467e-02 7.1715641e-02 7.6474179e-02 2.5654619e-02 8.7198503e-02 1.8593917e-02 + 1.6316242e-01 -5.7723119e-02 -9.2058365e-03 1.6563356e-02 -4.0791172e-02 -5.3210281e-02 -1.2740969e-02 -8.5528227e-02 2.9088311e-01 -4.5957152e-02 6.0465312e-02 -5.9347603e-02 -7.1784259e-02 -4.6206094e-02 2.3898001e-01 -4.3614763e-02 6.4413832e-03 9.0376675e-02 1.3450038e-01 -1.2932549e-01 -5.7400789e-02 1.4194302e-03 6.5286241e-02 8.8399292e-03 -2.3184196e-02 1.1108654e-01 -3.3910537e-02 -1.3491575e-01 -1.2925866e-01 -1.7698709e-03 -6.3062009e-02 1.1251692e-01 6.1295856e-02 5.1416493e-02 1.7816887e-01 -2.5343774e-02 + -1.2397513e-01 6.1979512e-02 5.7955486e-02 -5.6484196e-02 -1.9945217e-01 -1.5049728e-01 2.6354594e-02 -2.6382798e-02 1.5679318e-01 -2.0770998e-01 -8.5623213e-02 -1.9512551e-01 -1.2795273e-01 -1.5532951e-01 2.1613989e-01 3.5958176e-02 -5.7426007e-02 2.2649554e-01 2.9571655e-01 -4.8777416e-02 -1.2547253e-01 1.7236878e-02 -8.5016371e-02 -9.3760797e-02 -3.5294687e-02 4.0490615e-01 -8.0408647e-03 -1.8134073e-02 -5.5015109e-02 1.1221392e-01 4.3863041e-02 -1.5240536e-01 2.3109992e-01 -1.5739078e-01 2.1756099e-01 8.5811092e-02 + -9.3282170e-02 1.3234888e-01 -6.8052614e-02 1.8322376e-02 9.0634030e-02 -1.2505745e-01 -1.3365048e-01 -6.4468404e-02 -6.6409010e-02 -8.5144212e-02 4.5521772e-02 3.2882832e-02 1.3453503e-01 1.2947986e-01 3.4234581e-02 4.3193678e-02 -1.3645417e-02 -3.9663792e-02 -1.4330400e-01 -1.2500846e-01 -2.9139070e-02 7.9992179e-02 -3.5389048e-02 2.1533346e-02 6.1483930e-02 -4.6959946e-02 -1.4568650e-01 -1.2969997e-01 -1.2247015e-01 -3.4508950e-02 1.1829523e-01 -1.7195751e-02 6.1405117e-03 -4.2161325e-02 7.1550545e-02 5.7003542e-02 + 5.3305314e-02 -2.8378205e-02 -2.0634683e-02 5.3363913e-02 4.7958740e-02 5.0157732e-03 -2.2465372e-02 -9.3388649e-02 1.0548786e-02 -4.5973438e-02 6.2886512e-02 -3.6225771e-02 -1.1392789e-01 4.4899012e-02 2.3609758e-02 -1.2835848e-02 3.8503134e-02 1.3932873e-02 4.8218896e-02 -2.5382267e-02 2.6640142e-02 7.1753249e-02 -1.0593108e-01 4.0145490e-02 -3.8371725e-02 1.7197625e-02 -9.0603465e-03 -7.9845078e-02 -4.8828243e-02 -2.4834089e-02 -1.3160788e-02 1.1017009e-01 9.0888445e-02 -6.9234204e-03 2.8925669e-02 -2.7369867e-02 + 9.4187884e-02 -2.5517868e-01 1.7821692e-01 3.6195320e-02 -1.4204977e-01 2.2275044e-01 3.1821877e-02 8.6858995e-02 2.2919923e-01 -6.2572368e-02 1.4468731e-01 -1.2003155e-01 -8.6886506e-02 -6.3290014e-02 1.1971892e-01 4.1973441e-02 -1.8052494e-02 1.8981130e-01 2.6097451e-01 1.4557141e-01 -7.5797695e-03 -1.3782245e-01 4.2193641e-02 -1.9499639e-02 5.4239705e-02 2.9316778e-01 2.0559492e-01 6.3980913e-02 8.5372509e-02 -5.8112959e-02 -2.2032451e-01 -5.6060239e-02 1.0111042e-01 1.9221776e-01 1.1576365e-01 -2.9081820e-01 + -9.1468498e-02 2.4709921e-01 -2.3236779e-01 3.8378743e-02 2.6307393e-01 -1.7510084e-01 -1.1694845e-01 -1.7359443e-01 -8.3642771e-02 -1.0610346e-01 -3.3292153e-02 1.9182329e-01 2.5361549e-01 1.5731463e-01 -2.8322781e-02 6.0068914e-02 -2.3788616e-02 -2.4796818e-01 -2.6325088e-01 -2.2796525e-01 -3.9502190e-02 1.0662734e-01 -5.6853544e-02 -1.1387445e-01 5.0792637e-02 -3.8726313e-01 -2.3540272e-01 -1.9330194e-01 -1.4645450e-01 1.1731542e-01 1.9156960e-01 2.2200064e-02 -1.1947173e-01 -1.1423521e-01 4.0762277e-02 1.9935755e-01 + 8.2877357e-03 -5.5588466e-02 6.7927544e-02 -2.5776994e-02 -7.6998935e-02 6.4595018e-02 1.2608893e-01 1.3685397e-01 -1.8082246e-01 1.8169104e-01 -4.2343238e-02 -3.7357423e-03 1.3789018e-02 -3.4780693e-03 3.3565008e-02 7.9343687e-04 1.0451987e-01 4.2293668e-02 -2.4974809e-01 9.8828194e-02 9.7482386e-02 -7.3249313e-02 -1.0161840e-01 3.1126174e-02 6.9538748e-03 -1.3316364e-02 -2.6954877e-02 1.1204258e-01 -2.6025241e-02 -2.0532523e-02 2.0119543e-02 -7.0941138e-02 -6.7690405e-02 8.8795475e-02 -1.5926843e-01 -5.2206191e-02 + 3.1849138e-02 -3.8162571e-02 -1.4701123e-02 4.0074221e-02 1.7094691e-02 -2.2722200e-02 -2.1259666e-02 -6.4357613e-02 1.0544626e-01 -1.8933951e-02 3.5743652e-02 -3.3509928e-02 -2.1257685e-02 1.0732980e-03 5.4892017e-02 -1.8206344e-02 3.6115961e-03 2.4947467e-02 7.3309634e-02 -3.6304802e-02 -2.8473653e-02 -1.4116432e-02 3.6226914e-02 -2.4569651e-02 -2.0286820e-02 2.9298043e-02 1.6669337e-02 -4.4378143e-02 -9.0801193e-03 -1.1883109e-02 -2.9561049e-02 1.5924666e-02 4.1864742e-02 2.1252573e-02 5.2696454e-02 -1.9153290e-02 + -2.1528265e-02 -1.1836412e-01 2.5852215e-02 -1.6480057e-02 -4.8757456e-02 1.8591501e-02 6.4367246e-02 9.8388091e-04 6.1644005e-02 1.2629849e-01 3.0042077e-02 -1.5342138e-01 -6.8012193e-02 -2.6831014e-02 4.2392485e-02 1.2320430e-01 8.0750930e-02 1.1820278e-01 -2.3883420e-03 1.1641995e-01 1.1228141e-01 2.8240639e-02 -1.1288771e-02 -5.8552167e-02 5.1640121e-03 7.9427157e-02 3.5926049e-02 1.9991223e-03 8.9110863e-02 -6.5397180e-02 -3.6009868e-02 -1.1438678e-01 9.3531834e-02 8.0401540e-02 -5.6330296e-02 -3.0606453e-02 + 9.5221308e-02 -5.0429741e-03 -8.2838573e-02 2.2691460e-02 -1.5558109e-02 -9.2159055e-02 -3.4154599e-02 -1.4150074e-01 4.4559627e-01 -1.7465732e-01 -1.2174003e-02 -8.5864451e-03 -3.6107954e-03 -1.2394903e-01 5.8533204e-02 1.6388572e-02 -9.9903207e-02 -6.0219090e-02 2.8231219e-01 -8.0512527e-02 -1.8039211e-01 -6.3794372e-02 3.0966472e-01 -1.9575988e-02 2.9949493e-03 -4.6604278e-02 -5.7951645e-03 -6.9049148e-02 -5.9290213e-03 8.6679185e-02 2.0074323e-02 9.6004257e-02 -9.4117013e-03 -6.7722677e-02 2.4025835e-01 2.8031301e-02 + -6.4040189e-03 1.9523098e-01 -1.5618173e-01 1.1544085e-01 2.0370833e-01 -2.5223162e-01 -6.9504110e-02 -1.4129467e-01 4.7514655e-02 -2.5278022e-01 -2.4011900e-02 1.3163361e-01 1.4759515e-01 1.0604533e-01 2.2464497e-01 -7.3410911e-02 1.5580038e-03 -7.4775729e-02 5.8872691e-02 -2.5359591e-01 -1.4658354e-01 -4.0304973e-02 -1.0956376e-01 -1.4456717e-02 2.5315422e-02 -1.3581672e-01 -2.9697041e-01 -1.9031596e-01 -4.0582227e-01 1.1352542e-01 2.2483337e-01 6.4462189e-02 6.6612991e-03 -8.1233255e-02 1.9640912e-01 -1.2829862e-02 + -2.4511048e-01 -1.0169968e-01 2.3658792e-01 -1.4258135e-01 -1.2319003e-01 -3.4746094e-02 -7.2585003e-02 1.2980781e-01 -4.2507484e-02 -6.5986339e-02 -2.1332267e-01 -2.9893803e-01 2.1361588e-01 -6.4966782e-03 2.4899965e-01 -2.4913329e-01 -3.4755719e-02 2.2482798e-01 9.4970935e-03 -6.1778286e-02 -7.0292329e-02 -4.4203861e-01 -5.1728722e-02 -2.8263819e-01 9.3703438e-02 4.4335565e-01 3.8124082e-02 1.7644939e-01 -3.8156431e-02 8.4916763e-02 7.0963507e-02 -3.4602317e-01 7.4090092e-02 5.2178352e-02 -1.3990480e-01 1.9147481e-01 + -1.3502182e-01 2.0425680e-02 1.4441753e-02 -2.7285821e-02 -2.4199284e-02 7.3142215e-02 1.0891498e-01 1.0128372e-01 -3.3649012e-01 2.1844767e-01 -3.0555510e-02 2.6468233e-02 9.9120275e-03 8.8001501e-02 -1.0931869e-01 6.5798065e-02 1.2529879e-01 1.0823411e-02 -3.2443059e-01 9.6130300e-02 1.8401074e-01 5.0715274e-02 -1.5632573e-01 2.9908311e-03 -7.3696023e-03 -4.2898995e-02 -5.4681958e-02 8.7689679e-02 7.6942844e-02 -7.4462207e-02 5.1820474e-02 -1.0926596e-01 -9.3550426e-02 2.4848711e-02 -2.1460102e-01 -1.4929667e-02 + 1.2965859e-01 -1.3681309e-01 1.8065396e-02 6.4543885e-02 1.1062422e-02 -4.9614662e-02 -5.8045591e-02 -8.3167597e-02 2.3955999e-01 -7.8437022e-02 4.5016948e-02 -9.9601876e-02 -5.5373409e-02 -3.6739923e-02 1.7440851e-01 -1.2522919e-01 -2.3129742e-02 8.3901826e-02 2.1057575e-01 -6.1186578e-02 -9.9277511e-02 -1.0603196e-01 3.0416229e-02 8.2388809e-03 -4.6382314e-02 9.4933912e-02 6.3850140e-02 -8.1871512e-02 -1.0550581e-01 -1.8439398e-03 -8.3702765e-02 6.7601629e-02 1.3701298e-01 1.1364270e-01 1.1819016e-01 -3.5800592e-02 + 5.4834234e-02 -1.1347302e-01 -5.8121647e-02 2.3921994e-01 1.8095262e-01 -5.5281819e-02 -1.3543159e-01 -1.5638162e-01 7.4183979e-02 -7.6147398e-02 2.2590161e-01 -3.7164339e-03 1.2831553e-01 2.5360923e-01 6.1367712e-02 -4.1649017e-02 1.1402615e-01 7.4968621e-02 -6.6560168e-02 -1.0702129e-01 2.4229140e-02 -1.2180089e-01 8.6439584e-02 7.2074872e-02 -1.3810614e-01 1.8438775e-02 1.0462019e-01 -1.7709251e-01 -1.3176462e-01 -1.5533515e-01 2.1788747e-02 -5.7849891e-03 6.4815220e-02 2.4199117e-01 1.5028515e-01 -2.9197132e-01 + -5.7254791e-02 -5.1802288e-02 1.4538611e-01 -6.1531937e-03 7.1941237e-02 2.2061331e-01 -1.9607764e-01 -2.5113317e-02 3.6725927e-03 -4.4657796e-02 1.0506331e-01 -5.5277772e-02 1.6398496e-01 9.0711366e-02 -9.0331234e-02 -9.3931264e-02 -1.2430508e-01 1.7275832e-01 9.1146012e-02 6.3711515e-03 2.4763102e-02 -1.5714292e-01 1.6734912e-02 -8.8106982e-02 -8.4986919e-04 3.1618610e-01 2.2619387e-01 1.0815504e-01 2.6138592e-01 -1.2527758e-01 -8.7065654e-02 -9.5740863e-02 1.7282949e-01 1.2803354e-01 1.9937392e-02 -2.0618370e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_G_1.txt new file mode 100644 index 00000000..1b2b96ff --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_G_1.txt @@ -0,0 +1,21 @@ + 2.5018272e-02 -6.1958983e-02 -1.0694103e-01 -3.6164336e-01 2.5522149e-01 1.2847071e-01 6.0375858e-02 -1.4630512e-01 1.4991873e-01 -9.0347965e-03 -2.1220379e-01 3.4062086e-01 3.1781409e-01 1.6772229e-01 2.9144123e-01 -3.4466236e-01 -4.9900168e-02 -1.9673798e-01 2.8661725e-01 3.5243591e-01 -2.5080519e-01 -3.1067641e-01 -4.5502731e-01 -3.2739155e-01 3.4925075e-01 + -1.2671347e-01 1.5057729e-01 -2.5166044e-01 -1.0540218e-01 -1.4126433e-01 3.2243067e-01 1.4945954e-01 5.0781606e-01 7.1698159e-01 -4.1810120e-01 -4.9092981e-01 -9.9131341e-02 -4.0426988e-01 5.8023250e-02 2.4323434e-01 -5.5982736e-02 2.3405879e-01 2.9137477e-02 9.6576387e-03 -7.7738002e-02 -1.6126525e-01 -8.6609401e-02 -1.2660149e-01 8.3090929e-01 6.6119188e-02 + 2.6767076e-01 1.1710339e-01 -2.5677834e-01 -4.3042399e-01 -1.8095040e-01 1.1461068e-01 -1.1897304e-02 1.3943504e-01 3.5767513e-01 3.8715420e-01 -3.5098054e-01 -2.7599774e-01 -4.3927981e-01 5.1020823e-01 -1.8279811e-01 1.5975416e-01 -8.3313709e-02 4.9749524e-02 3.8220787e-01 6.1247977e-01 -2.5903167e-02 1.2758401e-01 -3.5116515e-01 -4.8487091e-01 -3.7132852e-02 + 1.6323138e-02 -1.8698732e-03 -1.1946574e-02 1.6407125e-02 1.8280882e-03 3.5429975e-03 2.6146410e-03 -3.7539014e-02 8.7936476e-03 -2.8666908e-03 2.8321642e-02 -6.0893073e-02 1.0058194e-02 -3.2233985e-02 -4.6403496e-02 1.3593096e-02 -4.0145342e-02 3.7974180e-03 -2.7226432e-02 3.8930567e-02 -8.2919835e-03 3.7300848e-02 -3.6191318e-03 -1.3002931e-02 -3.1337861e-02 + -1.2461150e-02 1.5027598e-02 4.7083544e-04 -1.7332749e-02 -3.0620989e-02 -1.9977381e-03 1.2881924e-02 3.5874068e-02 3.3456374e-02 -1.7337818e-02 -2.1638183e-02 3.0054104e-02 -2.5536879e-02 6.2040395e-02 2.1656130e-02 2.1424548e-03 2.1279710e-02 -2.4110912e-03 -4.5574437e-03 -1.2214963e-02 -2.3631728e-02 -4.6236689e-02 2.1331316e-02 4.0935363e-03 3.1140698e-02 + -1.2635703e-02 1.4136674e-02 2.2675078e-02 -3.1427292e-02 -7.8941877e-02 -2.5421729e-02 -1.0755724e-03 5.8198934e-02 3.1972664e-02 -2.7817061e-02 -2.7314032e-02 7.9675119e-02 -4.8374995e-02 1.4523390e-01 1.3522464e-03 1.7079739e-02 2.7528506e-02 4.3920129e-02 -1.1382721e-02 -4.8941241e-02 -6.2185704e-02 -8.0472018e-02 4.5431830e-02 6.5537561e-03 4.1379607e-02 + -3.3890026e-02 -2.1446796e-03 -1.2829588e-02 1.1056020e-01 1.1346534e-01 -1.7096674e-02 1.4998135e-02 -7.4339765e-02 5.8995969e-02 8.8537440e-02 5.0584026e-02 -7.4432770e-02 1.0683578e-01 -1.6770096e-01 1.8331855e-02 -6.5116873e-02 -4.7334870e-02 -7.4261786e-02 5.0856405e-02 6.4462666e-02 -2.8404580e-02 -3.2950505e-02 -2.2482742e-02 -9.3372063e-02 1.6951437e-02 + -5.5450993e-02 3.2783953e-02 1.3495710e-03 4.2815488e-02 5.8883751e-02 4.8264808e-03 6.6408580e-03 -4.7528376e-02 -3.9328583e-02 1.0748367e-01 -4.1539813e-02 1.1498503e-01 -2.6681785e-02 3.8452108e-02 -1.0275507e-01 4.2621756e-02 1.7149579e-02 9.4471891e-02 -3.4940754e-02 1.6297404e-02 1.1694444e-01 -4.7976507e-02 -2.2633783e-03 3.0542649e-02 -1.4378481e-02 + 2.0140265e-03 -3.3135427e-03 2.9932468e-03 6.8123354e-03 1.7668783e-02 5.0755644e-03 -1.1530989e-03 -1.3664839e-02 -1.8611243e-02 1.4869976e-02 7.8542011e-03 -2.4935672e-02 2.0158616e-02 -2.9614398e-02 -1.3260003e-02 5.4630250e-04 -1.1953370e-02 -1.1887381e-02 -3.7916293e-05 9.5505697e-03 7.1818270e-03 2.1599617e-02 -6.1181030e-03 -7.7386989e-03 -1.4766610e-02 + -4.8411638e-02 -3.8462991e-02 1.6254670e-02 -1.4412871e-02 5.1200131e-04 -1.1432812e-02 -2.3963745e-02 1.6723672e-02 -3.9323573e-02 -1.6743933e-02 -6.0537048e-03 3.8547818e-02 4.0207238e-02 1.9461606e-02 6.1413670e-02 -1.4455950e-02 3.0749796e-02 -4.8907812e-02 7.7180584e-02 -9.5487046e-02 9.3657441e-03 9.0165128e-03 -2.6109315e-02 1.5184142e-02 2.2166951e-02 + 1.9572048e-01 1.2238656e-01 -5.6147561e-01 1.5406633e-01 2.4437212e-01 4.4017280e-02 3.5680534e-03 -3.8007525e-02 1.3828771e-01 4.9033736e-01 -2.6009958e-01 -1.7302245e-01 -1.0473728e-01 8.0262956e-02 1.9815215e-01 8.2880474e-02 -3.2059208e-01 -1.2246215e-01 3.0842311e-01 4.4094498e-01 3.2404455e-01 3.1882827e-01 -2.5362335e-01 -1.6322442e-01 9.9171303e-02 + 6.6004547e-02 5.7378154e-02 -9.8342478e-02 1.3251338e-01 -7.5294698e-03 1.6690030e-01 4.8327024e-02 4.6887554e-01 1.5797501e-01 3.8235249e-01 -1.5305227e-03 -2.1002720e-01 -2.8757333e-01 -2.3495648e-01 -1.2139441e-01 1.1349323e-02 -3.6230754e-01 8.9365543e-02 2.0280040e-01 -1.2389756e-03 -1.9992597e-01 8.4317410e-02 -1.1704184e-01 -7.6225934e-01 -9.2358075e-02 + 1.4693876e-01 1.3060538e-01 5.3781179e-02 1.5921451e-01 2.4012772e-01 8.4610719e-02 1.6918260e-01 -7.6154588e-02 -1.1682777e-01 2.5949575e-02 -9.9287717e-02 8.1602063e-02 -1.0314464e-02 -3.3938189e-01 -1.9355936e-02 -2.0586635e-01 2.6043527e-01 -6.7657756e-02 -2.0528826e-01 4.1078770e-01 2.4053076e-01 -8.7488879e-02 1.6463365e-01 5.5464241e-02 3.4269873e-01 + -1.9306405e-02 -7.7914670e-02 1.6081748e-01 -2.1131888e-01 -2.2280691e-01 -1.1310076e-01 -1.5887168e-01 -8.5660238e-02 -4.7970254e-01 6.8899515e-02 -3.0061365e-02 1.4564696e-01 -2.2440495e-01 2.3456921e-01 -2.2087930e-01 1.0618084e-01 -4.3963289e-01 3.9787868e-01 2.3331145e-01 -1.0210359e-01 -9.1001701e-02 -2.7161781e-02 -2.0162604e-01 -1.2252034e-01 3.3861628e-02 + 1.4188036e-01 -4.9958855e-02 -2.1753029e-02 -8.6721085e-02 6.1281522e-02 9.2817303e-02 5.1026137e-02 7.3515666e-02 -3.4066468e-01 1.3011552e-01 -2.8225575e-01 1.0365743e-03 2.4874235e-01 1.9453776e-01 -1.1386177e-01 -2.2554565e-01 3.8461655e-01 -2.9679054e-01 2.0219037e-02 2.8970538e-02 2.0093588e-01 -9.8247338e-02 -2.0497688e-01 6.1156466e-03 8.2385864e-02 + -2.5206302e-01 6.7730965e-02 3.4508756e-01 6.3831514e-02 1.4120235e-01 -1.2335070e-01 1.1880280e-01 -2.4766748e-01 -1.3239119e-01 -1.2723272e-01 5.1331319e-01 3.5392776e-01 1.6155783e-01 -2.6845956e-01 3.2183562e-01 -3.8862731e-01 -6.0229599e-01 1.1748565e-01 -4.3690142e-02 -7.1491237e-02 3.5058763e-01 -4.9553645e-01 2.5558426e-01 2.8265778e-01 2.3744108e-01 + 6.0686389e-02 -6.5605899e-02 -1.6224108e-01 -1.4445211e-01 -4.3324562e-02 1.4604825e-01 1.9010819e-01 1.2821645e-01 2.1660821e-01 7.9976587e-02 -3.7920321e-01 -2.4899778e-01 -1.7558099e-01 1.0987838e-01 -7.4236503e-01 -2.5496206e-01 -9.1839471e-02 1.2635122e-01 5.3065036e-01 -7.8958494e-02 -2.7301943e-01 1.2490506e-01 -3.2020913e-01 1.1552534e-01 1.1607901e-01 + 6.8287015e-03 3.1767759e-02 -8.9599096e-03 -3.3915417e-02 -1.0266759e-01 -5.1477789e-03 2.3993572e-02 1.0585770e-01 1.0592551e-01 2.9968554e-02 -6.4134358e-02 7.4203526e-02 -6.7530255e-02 1.9588091e-01 -3.9699834e-02 2.7928174e-02 -3.6732710e-03 3.0592879e-02 -1.4214367e-02 1.5022718e-02 -1.4066654e-01 -1.3498168e-01 3.0056176e-02 -1.1209641e-01 3.0425504e-02 + 1.0468305e-01 -7.5023198e-02 -1.2277147e-01 1.8799370e-02 9.7017042e-02 -3.5262349e-03 -7.3471879e-02 -7.5763188e-02 -2.8436197e-02 -5.8241979e-02 1.0967749e-01 -5.9806477e-02 -6.9216346e-02 -1.3409112e-01 6.5688873e-02 -6.1593445e-02 -1.2513409e-01 2.4176339e-02 6.9772239e-02 7.6908932e-03 1.2771350e-01 1.7123363e-01 -9.6839034e-02 3.0607342e-02 -6.8373462e-02 + -9.8185466e-03 -1.0297497e-03 -5.0733746e-02 -2.6793861e-02 -1.5292888e-02 -5.1735885e-02 -3.1521579e-02 1.7091801e-01 8.0647228e-02 3.3373073e-02 -1.0770109e-01 6.6232654e-02 -1.2555289e-01 1.4849371e-01 1.5187760e-01 1.4986933e-02 -5.8505453e-03 -6.0588176e-02 1.1035888e-01 -4.7444872e-03 -7.8527446e-02 -1.0760012e-01 -6.1559020e-02 -5.7755879e-02 3.4664634e-02 + 3.6109336e-02 1.6258589e-02 4.5214612e-02 1.9534519e-02 3.1645286e-02 -1.3186878e-02 -4.1873060e-04 -3.7145473e-02 -9.1537089e-02 5.4900470e-02 1.2067323e-02 6.4870010e-02 2.7369098e-02 -5.4667059e-02 4.4283241e-02 2.3308232e-02 6.7690626e-02 -3.6349131e-02 7.8854621e-03 -1.4072909e-02 6.5189312e-02 4.8870864e-02 9.3819212e-03 2.5069220e-02 -4.7566089e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_G_2.txt new file mode 100644 index 00000000..0f450f6a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_G_2.txt @@ -0,0 +1,30 @@ + 1.1541108e-01 -1.0058220e-01 4.2915838e-02 -6.0950786e-02 1.2319413e-01 -9.1983265e-02 -1.4613632e-02 -1.3855369e-02 -1.5543227e-01 -1.5356654e-01 3.2874744e-02 -3.2778541e-02 -4.3333079e-02 -9.0166115e-03 1.8029718e-02 5.4395635e-02 -5.7650639e-02 1.0614774e-01 5.5616663e-02 1.3216740e-02 2.8462001e-02 6.0612229e-02 -1.2402302e-01 -6.1520392e-02 1.3467363e-01 -3.7615652e-01 -2.9559874e-02 -1.3899964e-02 4.9453387e-01 -9.4929606e-02 5.7807424e-02 3.1335408e-02 + -1.3831686e-02 8.9850812e-04 -1.2570821e-02 1.9645900e-02 -8.5455072e-03 1.5792954e-02 -1.1060595e-02 7.5442062e-04 2.0022012e-02 1.6430047e-02 -1.1533322e-02 3.8401550e-03 1.2822862e-02 8.3765020e-03 -2.3261116e-02 -1.8167084e-02 2.3556890e-02 -2.2460501e-02 -8.9429482e-03 -4.7912184e-03 -2.3725579e-03 -3.2455899e-02 -4.8688934e-03 4.0133443e-03 -2.4403248e-03 3.0655119e-02 1.6681760e-02 1.1980832e-03 -9.3414006e-03 6.1732543e-03 -6.3808934e-03 -5.3448202e-04 + -5.1090840e-02 7.0153713e-03 -3.8878554e-02 9.3876336e-02 -6.1443415e-03 8.0524671e-02 -4.7984181e-02 -1.1860930e-02 8.2903418e-02 5.3607629e-02 -1.4015729e-02 3.6626335e-02 4.4846491e-02 2.2684891e-02 -1.0918597e-01 -7.4423902e-02 7.7425685e-02 -1.9083425e-01 -3.2005674e-02 -3.9885967e-02 3.8529260e-02 -1.6213689e-01 -1.3317477e-02 3.1786900e-02 3.4588320e-02 1.1646326e-01 5.8120987e-02 -2.0099867e-02 -8.9786077e-02 2.9322547e-03 -1.9611806e-02 1.8921455e-02 + 3.1976786e-02 2.0110358e-03 2.6924884e-02 -4.0990852e-02 1.6108417e-02 -4.0754911e-02 2.3484538e-02 4.3638868e-04 -4.5727524e-02 -3.2983361e-02 2.0716724e-02 -1.2474278e-02 -2.7695349e-02 -1.6237556e-02 5.6695722e-02 4.3032544e-02 -4.6890751e-02 7.6014630e-02 1.9973172e-02 1.5125558e-02 -1.6201905e-03 9.0041877e-02 3.8518407e-03 -1.4195547e-02 -1.0731898e-02 -7.4463982e-02 -3.4496651e-02 3.0699412e-03 3.9555477e-02 -1.1243734e-02 1.3130374e-02 -2.7008266e-03 + -3.8153257e-02 -7.5617887e-03 -2.7631867e-02 4.0881126e-02 -2.3017094e-02 4.7860481e-02 -2.3284605e-02 1.7352963e-03 5.1493169e-02 2.9460499e-02 -1.9387477e-02 1.7668473e-02 2.8747631e-02 1.6936766e-02 -6.4582028e-02 -4.6595187e-02 4.2670544e-02 -9.7994573e-02 -2.4103206e-02 -1.4073460e-02 4.9909320e-03 -1.0880003e-01 -9.4687668e-04 2.1787028e-02 1.7548497e-02 8.3913304e-02 3.3005656e-02 -5.0011458e-03 -4.8031741e-02 1.3570167e-02 -1.7022721e-02 6.5609862e-03 + 2.3593235e-01 -1.0222879e-01 -2.1777122e-01 3.4785448e-01 4.1003635e-01 1.5937408e-01 2.7245703e-02 2.3449619e-03 2.9140694e-01 1.1876875e-01 -1.1451451e-01 8.1778280e-03 3.3281942e-02 -3.2860568e-02 -1.1568641e-01 -1.0622592e-01 -1.0311486e-01 -1.7042263e-01 -1.2896271e-02 1.2660968e-01 -8.3169946e-02 -5.9607639e-01 1.4141364e-01 -3.6885593e-02 -1.8367693e-01 8.4890624e-01 3.9126815e-02 1.1306998e-01 -6.3009350e-01 -1.6044841e-02 5.3889702e-03 5.4849611e-02 + -4.7735180e-02 -1.7048568e-02 -2.7629485e-02 3.8640158e-02 -3.4196843e-02 5.6658466e-02 -1.9704947e-02 6.7103376e-03 5.5495242e-02 1.8284850e-02 -1.5622562e-02 2.4196952e-02 2.7712626e-02 1.4906352e-02 -7.4305104e-02 -4.8746143e-02 2.6847791e-02 -1.2461930e-01 -2.9242660e-02 -8.1319058e-03 9.8782789e-03 -1.3048931e-01 3.4313380e-03 3.3861128e-02 2.6104750e-02 9.5757253e-02 2.5032348e-02 -7.3314156e-03 -5.6687050e-02 1.8897240e-02 -2.2920156e-02 1.3024477e-02 + 3.9838553e-01 1.7229766e-01 1.7997600e-01 5.2215705e-02 1.5089921e-01 3.7384254e-03 1.6863208e-01 -2.4561871e-01 -2.2568107e-01 -5.6734538e-02 3.9063511e-01 4.4258775e-02 -1.8643859e-01 -2.1092873e-01 3.5012050e-01 1.9169703e-01 -2.5302889e-01 -8.0248894e-01 2.6241709e-01 -8.3348112e-02 4.4782594e-01 6.8581905e-01 2.6918164e-01 -1.4013480e-02 -3.7995461e-02 -3.5587030e-01 -1.5493949e-01 -2.1522064e-01 -3.8129327e-02 -2.7943290e-01 2.1992698e-01 7.5006284e-02 + -3.8531152e-02 -2.9512615e-03 -3.0938050e-02 4.9983768e-02 -1.6147475e-02 5.1923959e-02 -2.6922397e-02 -1.9611149e-03 5.7301657e-02 3.6242843e-02 -2.2794497e-02 1.8182591e-02 3.2426751e-02 1.8666601e-02 -6.9533625e-02 -5.2250908e-02 5.2638678e-02 -1.1231547e-01 -2.3883125e-02 -1.9955638e-02 7.2560608e-03 -1.1549928e-01 -2.3558198e-03 2.0070218e-02 1.8965480e-02 9.2024793e-02 4.0687513e-02 -6.4848756e-03 -5.6539079e-02 1.3719953e-02 -1.4653462e-02 5.7888953e-03 + -2.9729266e-02 -8.8930972e-03 -1.1753693e-02 1.9895647e-02 -2.9552537e-02 2.1951186e-02 -1.0530289e-02 7.4829727e-03 2.5434567e-02 1.1553339e-02 -7.9301752e-03 1.1289835e-02 1.3243710e-02 8.0289977e-03 -4.6020844e-02 -1.9330527e-02 1.3194645e-02 -3.8835516e-02 -1.6459478e-02 1.1240060e-03 1.8240498e-03 -5.7075759e-02 -2.6279748e-03 1.7765469e-02 4.3536434e-03 3.8030501e-02 9.4711708e-03 -2.0601429e-04 -6.6790129e-03 9.9521051e-03 -1.4137913e-02 6.4770684e-03 + -1.8801613e-03 4.9434188e-03 -1.0914295e-02 2.6275501e-02 2.8463100e-02 5.9354279e-03 -2.4827441e-03 -1.1163119e-02 1.1898026e-02 1.6217481e-02 -1.3100334e-02 -1.3646157e-03 1.3026874e-02 1.1630984e-02 8.3175621e-03 -1.5886689e-02 2.6668307e-02 -1.9875928e-02 -1.1721257e-03 -1.1570563e-02 -3.8457237e-03 1.7755475e-02 -2.8530602e-02 -9.8149122e-04 -2.4392954e-02 1.4852637e-02 2.1445622e-02 2.1127375e-03 2.7808726e-02 1.2311202e-03 6.2557084e-03 -1.2707117e-02 + -3.8058133e-02 -2.4599589e-03 -3.1474342e-02 5.2619850e-02 -1.2720103e-02 5.2634115e-02 -2.9451612e-02 -3.4168049e-03 5.8128004e-02 3.8535128e-02 -2.1307539e-02 1.8718790e-02 3.3713031e-02 1.9296837e-02 -7.2081724e-02 -5.3871473e-02 5.6708964e-02 -1.1156761e-01 -2.4161614e-02 -2.1894758e-02 9.2404410e-03 -1.1711007e-01 -4.7016133e-03 1.9930413e-02 1.8843897e-02 9.2195671e-02 4.2498728e-02 -7.1278024e-03 -5.7152242e-02 1.0088103e-02 -1.4835276e-02 6.0551641e-03 + 4.4796401e-02 -1.5230464e-02 4.9279496e-02 -9.2195640e-02 3.8607124e-03 -1.0455227e-01 5.7365171e-02 2.1478725e-02 -9.8128643e-02 -6.6506530e-02 3.3818188e-02 -3.3936235e-02 -5.9411616e-02 -3.1287082e-02 7.3783928e-02 1.0065191e-01 -1.1979820e-01 2.3945905e-01 3.3987844e-02 5.8960448e-02 -1.9543931e-02 1.7346230e-01 1.2346141e-02 -3.2133272e-02 -4.5192370e-02 -1.0119117e-01 -8.3646441e-02 2.5826555e-02 1.1931821e-01 -1.0943437e-02 2.4867237e-02 -9.9109055e-03 + -1.7513819e-02 -5.1662914e-03 -9.8174773e-03 1.2052194e-02 -1.7902709e-02 1.6175156e-02 -6.4223264e-03 4.7604689e-03 1.6014359e-02 7.8343293e-03 -7.9928305e-03 5.3090013e-03 9.2511934e-03 5.0584566e-03 -2.6428122e-02 -1.4431230e-02 9.6617821e-03 -2.4277618e-02 -1.0343202e-02 2.7780202e-04 -2.0749642e-03 -3.4604871e-02 -9.1715268e-04 9.8903822e-03 3.5562497e-03 3.1646395e-02 7.5237038e-03 1.3013150e-04 -7.5993137e-03 9.3947748e-03 -9.1753985e-03 2.1214462e-03 + -3.0997770e-01 2.0521033e-01 2.3277553e-01 5.2996248e-01 -8.8673315e-02 -1.0252759e-01 -2.3848538e-01 1.6032067e-02 -8.8317794e-02 -3.3907605e-01 5.1280451e-02 3.3377202e-02 -1.4136945e-02 1.2703575e-02 -5.9083235e-01 6.5996662e-02 9.2971781e-02 7.4459939e-02 -2.6716125e-02 -1.8631720e-01 1.1523544e-01 -4.2236753e-01 6.4199474e-01 4.8097752e-02 -3.4655510e-01 4.5920700e-02 1.3065114e-02 -1.4777042e-01 -7.1530324e-01 -5.5831889e-03 -7.1242902e-02 1.4524598e-02 + -4.1800628e-02 -2.7906026e-02 -1.6687601e-02 6.0245217e-02 -9.3590165e-03 3.3107666e-02 -3.0612639e-02 1.3522166e-02 3.7605533e-02 1.4901096e-02 -8.8705989e-03 1.5055649e-02 2.2982046e-02 2.1093738e-02 -7.9024393e-02 -3.6848921e-02 5.1655569e-02 -4.7605855e-02 -2.4171695e-02 2.9223400e-03 1.0405130e-02 -1.1491318e-01 -3.2734313e-02 1.9623679e-02 2.6966829e-02 3.3428857e-02 2.7961765e-02 -3.4824575e-03 -2.7232084e-02 -3.7716184e-03 -1.8175395e-02 1.2063636e-02 + 3.7113147e-02 4.7991035e-04 3.1730942e-02 -5.4585958e-02 1.0478648e-02 -5.1593875e-02 3.0973346e-02 4.5879510e-03 -5.7927704e-02 -4.1546412e-02 2.1844657e-02 -1.7743265e-02 -3.4213150e-02 -1.9715218e-02 7.2117493e-02 5.4140930e-02 -6.0708957e-02 1.0812581e-01 2.3320441e-02 2.3801537e-02 -8.9781309e-03 1.1475726e-01 5.8439874e-03 -1.7550075e-02 -1.7963687e-02 -9.0749603e-02 -4.4559691e-02 7.2238248e-03 5.6969454e-02 -8.6734611e-03 1.3760050e-02 -5.1829486e-03 + 3.0441449e-02 2.1340491e-03 2.4871998e-02 -3.8952710e-02 1.6023277e-02 -3.6828238e-02 2.1652631e-02 -2.4712802e-04 -4.2310006e-02 -3.0495930e-02 1.9477491e-02 -1.1452623e-02 -2.5675096e-02 -1.5433094e-02 5.3276207e-02 3.9246122e-02 -4.3198602e-02 6.7662212e-02 1.8865890e-02 1.2890265e-02 -1.1853657e-03 8.2475180e-02 4.2344726e-03 -1.3145177e-02 -7.4443903e-03 -6.9156346e-02 -3.1785122e-02 2.0916956e-03 3.4051702e-02 -1.0878811e-02 1.2477959e-02 -2.2801317e-03 + 2.3006625e-02 7.5837505e-02 5.3045384e-02 -3.2177804e-02 5.0793747e-02 7.3251859e-03 -7.5842852e-02 -2.3001151e-02 1.1773908e-03 6.3108724e-02 1.3458403e-01 5.8913869e-02 -1.9257251e-03 -2.0617989e-02 -7.1201228e-02 1.5789005e-02 6.0090735e-02 -3.8344930e-02 -2.4868344e-02 -4.1812647e-02 1.4074432e-01 -8.9728261e-02 -6.4138530e-03 5.3067701e-02 -3.6434661e-03 -6.7545968e-02 -1.3029943e-02 -5.5931142e-02 -1.2556790e-01 -1.1362462e-01 -1.7871808e-02 5.4923753e-02 + -2.5023440e-02 3.5772433e-02 -4.4141789e-02 1.2333354e-01 4.9482851e-02 4.6633276e-02 -5.1091212e-02 -2.0362543e-02 9.6864984e-02 8.0517248e-02 4.2931934e-03 1.9282417e-02 5.4425806e-02 4.6195567e-02 -1.2102534e-01 -6.8239752e-02 9.6761164e-02 -1.4440519e-01 -2.5645020e-02 -3.1077938e-02 6.8340140e-02 -1.7368076e-01 -2.8942937e-02 1.7876490e-02 3.5862479e-02 1.0110103e-01 6.7871458e-02 4.5041344e-03 -3.3987004e-02 -1.7527050e-02 1.4631969e-03 4.7363772e-03 + 1.0393666e-01 -4.3268864e-01 5.2549978e-03 1.2712642e-01 5.0808846e-02 1.3807585e-01 1.5596710e-01 1.3056045e-01 1.9251156e-01 -2.1654729e-01 -9.9662103e-02 1.4886805e-01 8.1502913e-03 1.3163420e-01 5.9047825e-01 -1.2770450e-01 -5.5114624e-02 1.2127934e-01 -1.3889930e-01 1.6867443e-01 -1.1166203e-01 -3.6020517e-01 -5.3805856e-01 9.0540215e-02 -3.0597329e-01 -8.2432432e-03 7.5406294e-02 7.4194995e-02 1.7441541e-02 -1.2936624e-02 -1.0272831e-01 4.1908163e-02 + 2.8089425e-02 1.8231723e-02 -8.5255959e-03 -1.2400546e-02 -1.7964969e-02 -7.5119857e-03 -1.1195183e-03 2.8546527e-03 5.6581756e-03 2.7720827e-02 -7.6772892e-03 -6.7987604e-03 -1.7769129e-03 -1.8462413e-03 2.5333214e-02 7.9567298e-03 -1.3928597e-02 2.8873628e-02 6.4036655e-03 4.9842506e-03 -1.8702043e-02 -1.2660172e-02 4.8397625e-02 -6.6815902e-03 7.3959861e-02 -5.9793648e-02 -6.5803147e-03 1.2824031e-02 2.0903706e-02 2.6738745e-03 6.2389337e-03 1.0903363e-02 + -6.2398592e-03 1.9290943e-04 -5.4068458e-03 8.2345171e-03 -4.3751429e-03 6.7938262e-03 -4.6267133e-03 6.4263600e-04 8.6419362e-03 6.8228267e-03 -5.0443259e-03 1.7205583e-03 5.4614689e-03 3.5835555e-03 -1.0227275e-02 -7.6599452e-03 9.6631957e-03 -9.2482610e-03 -4.0378597e-03 -1.5972705e-03 -1.2272848e-03 -1.3780065e-02 -2.2773135e-03 1.9623724e-03 -1.3245992e-03 1.3328355e-02 6.9078917e-03 7.3374897e-04 -3.2746831e-03 3.0424970e-03 -3.0360940e-03 -1.3010595e-04 + 3.8412751e-02 -1.0723899e-02 4.0750926e-02 -1.0898639e-01 -8.4122007e-03 -4.6379083e-02 3.6063811e-02 1.3578201e-02 -6.0864858e-02 -5.1780939e-02 1.3219645e-02 -2.2643240e-02 -3.4511438e-02 -1.8680166e-02 1.1411340e-01 4.9294102e-02 -3.6972692e-02 1.2301156e-01 1.5997472e-02 2.2104668e-02 -3.5696035e-02 1.4419300e-01 4.7323930e-03 -2.1195954e-02 -4.1278742e-02 -7.7944195e-02 -3.8603294e-02 6.2448544e-03 2.7632176e-02 -5.0066205e-03 -1.1714722e-03 -1.8793661e-02 + 9.2071516e-03 6.0274495e-02 4.4777245e-02 -1.3770810e-01 -4.7048676e-02 -6.9104460e-02 5.1567415e-02 -2.8370941e-02 -3.5128054e-02 -1.4368895e-02 -3.2259025e-02 -2.2428219e-02 -4.6613382e-02 -5.6883978e-02 8.2007086e-02 9.4308203e-02 -6.2374827e-02 5.0588326e-02 6.3877090e-02 -4.9901648e-03 -4.2105230e-02 2.9793804e-01 1.1466462e-01 -2.9665042e-02 -1.5667423e-01 -2.1189360e-01 -4.0836977e-02 -1.0912447e-02 -1.7352008e-01 6.5764595e-02 3.4412072e-02 -1.3499694e-02 + -4.2067635e-01 1.4880859e-01 1.9146283e-01 4.8507643e-01 -5.1434148e-01 1.5456359e-02 -2.5565610e-01 -1.0762607e-01 -4.6180699e-01 -2.7454256e-01 -4.0301477e-01 4.6277066e-02 3.4765088e-02 -2.2492695e-01 -6.4478943e-02 1.2758998e-02 8.3855119e-03 5.9029530e-01 -6.5451948e-02 -3.6440473e-01 -4.0102774e-01 4.6111094e-01 5.0846934e-01 1.4347779e-01 2.2574430e-01 -1.7884845e-01 5.0976119e-02 -3.8774764e-01 2.9737846e-01 2.1394915e-01 -1.8105548e-01 -3.8104331e-03 + -4.6792961e-02 -3.9030775e-03 -3.2991159e-02 6.4286597e-02 -1.5525399e-02 6.4083761e-02 -3.5151472e-02 -4.2035396e-03 6.6789494e-02 4.0925509e-02 -1.7088539e-02 2.7237974e-02 3.6726475e-02 1.9569589e-02 -8.8427523e-02 -6.0730842e-02 6.0207424e-02 -1.4389403e-01 -2.8655855e-02 -2.5994695e-02 2.0101167e-02 -1.4050257e-01 -6.2969293e-03 2.7426079e-02 2.8442549e-02 1.0065337e-01 4.5160615e-02 -1.2498066e-02 -6.9919523e-02 7.2621833e-03 -1.8613613e-02 1.3077053e-02 + 3.9470898e-02 1.2974968e-02 2.3313227e-02 -2.8747045e-02 3.2822114e-02 -4.2798685e-02 1.5880650e-02 -7.3595485e-03 -4.2790777e-02 -1.8404341e-02 1.5879638e-02 -1.5991167e-02 -2.2817166e-02 -1.2938563e-02 6.1455180e-02 3.8260957e-02 -2.4620782e-02 8.4010667e-02 2.3768853e-02 5.0524588e-03 -1.8636244e-03 9.8715750e-02 -2.3445427e-03 -2.5178218e-02 -1.8258499e-02 -7.7439458e-02 -2.0266854e-02 3.3943305e-03 3.7557334e-02 -1.7514397e-02 1.9061099e-02 -7.4734348e-03 + 3.6324266e-02 2.5002518e-04 3.1637715e-02 -5.4477315e-02 9.5712026e-03 -5.0699665e-02 3.0600448e-02 4.6487060e-03 -5.7595463e-02 -4.1247159e-02 2.1810863e-02 -1.7492775e-02 -3.4044461e-02 -1.9725741e-02 7.1417332e-02 5.3501565e-02 -6.0121045e-02 1.0625303e-01 2.3041811e-02 2.3332892e-02 -9.0017928e-03 1.1351452e-01 5.9806365e-03 -1.7204797e-02 -1.6965685e-02 -9.0303955e-02 -4.4326527e-02 6.6997787e-03 5.5586330e-02 -8.5499247e-03 1.3335525e-02 -4.9649186e-03 + 5.7441892e-02 8.5966574e-03 3.1678049e-02 -6.6524228e-02 2.4877118e-02 -7.0308574e-02 3.5106034e-02 -7.4822057e-04 -6.8002661e-02 -3.1374804e-02 9.4178012e-03 -3.4657745e-02 -3.3590177e-02 -1.6694313e-02 9.8315221e-02 5.9159392e-02 -4.4691148e-02 1.5743418e-01 3.2205985e-02 2.0770926e-02 -3.0213617e-02 1.5503487e-01 6.7658155e-03 -3.4593758e-02 -3.0825755e-02 -1.0205542e-01 -3.6535673e-02 1.4777444e-02 7.1811505e-02 -6.6982443e-03 2.3776909e-02 -2.2513775e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_G_3.txt new file mode 100644 index 00000000..caf18d72 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_G_3.txt @@ -0,0 +1,23 @@ + -1.3394651e-01 7.5330477e-02 -1.9386542e-01 1.4438960e-02 -4.1415737e-01 -2.5080136e-01 2.9843593e-02 -2.2279525e-01 -3.1524714e-01 2.3353721e-01 1.3839081e-01 -1.9276763e-01 -9.2585812e-02 3.8541933e-01 -4.0137937e-01 -1.5484800e-01 3.3578270e-02 -2.1945038e-01 3.4185305e-01 -1.3396304e-01 -8.0912964e-02 -3.5251635e-01 -3.3788755e-01 3.6434375e-01 -2.9327474e-01 -3.7868006e-01 -1.4918885e-01 9.4358152e-02 3.5688092e-02 3.6894473e-01 -1.0920479e-01 9.1962340e-02 5.4058920e-02 + -5.8342106e-02 -1.0631005e-01 -8.4135254e-02 3.8810346e-02 -7.9810974e-02 -4.5607271e-02 7.4647145e-02 7.6459975e-02 -5.0352238e-02 -6.7917693e-02 -5.5086414e-02 -5.5359314e-02 6.1982303e-02 3.9216927e-02 6.7822028e-02 3.0127606e-02 5.6194764e-02 -5.7345005e-02 1.2002165e-01 -5.9717402e-03 -4.8966722e-02 6.3063919e-02 -2.9502413e-02 3.1460169e-02 1.1509791e-01 -1.5304181e-02 1.9859813e-02 -5.8850939e-02 -6.9212682e-02 -3.2736676e-02 3.1758819e-02 1.0609295e-01 -1.2401004e-01 + -2.4347098e-03 7.3547243e-02 3.0148928e-02 -3.2809507e-02 -2.2007899e-02 9.3556191e-03 -9.9111365e-03 -2.7576212e-02 -2.7397645e-03 -4.8140740e-02 -5.6641861e-02 -1.7373016e-02 1.2368195e-02 -8.2350067e-04 2.8916102e-02 4.1885535e-02 1.6327598e-02 1.5092945e-02 2.7875219e-02 1.4002883e-02 -2.1907118e-02 1.3914833e-02 -1.9929318e-02 6.8937285e-02 2.0156710e-02 -7.4844740e-03 2.8200376e-02 4.4944585e-02 -1.0400794e-01 -1.3359218e-02 7.0496851e-03 -5.3202691e-02 5.1334267e-02 + -3.1693302e-01 -9.8655511e-02 -5.2752904e-01 -6.4008359e-01 1.2610962e-01 -4.4791409e-01 -1.7684359e-01 1.2595010e-01 1.8925183e-01 -4.8071473e-01 7.1153308e-02 2.7163930e-02 5.8986810e-02 -1.3643921e-01 -1.9285379e-01 -3.2554123e-01 7.1288991e-02 1.6906691e-01 2.8724711e-01 4.3572510e-01 3.4126223e-01 -2.9356587e-01 -8.6253427e-02 -1.0337279e-01 6.9475413e-02 4.1214420e-01 4.9283519e-02 -7.8447091e-02 -1.7726465e-01 -1.8759217e-01 2.0766611e-01 1.3325045e-01 2.5183597e-02 + -2.8953399e-01 -1.4077144e-01 -1.3867697e-01 1.1628490e-01 -1.0132956e-01 3.3682594e-01 4.4498545e-01 -1.0797337e-02 1.9537837e-01 -3.6842220e-01 4.9026902e-02 1.8944024e-01 6.3930419e-02 -7.0174173e-02 2.3819027e-01 -2.7745938e-01 2.6016149e-01 -2.0649966e-01 1.8727183e-01 -5.0231044e-02 4.3840935e-01 -2.6123178e-01 2.8414244e-03 -6.0121033e-02 -1.1131863e-01 1.1429169e-02 -4.6886174e-02 -4.6266319e-02 2.5143850e-01 -2.2033298e-01 -1.7604897e-01 -1.0140976e-01 3.8482736e-02 + -5.8527954e-03 -3.9277354e-02 -1.6407905e-02 2.4277983e-02 1.0295943e-02 -1.5064518e-02 1.6947011e-02 1.6266493e-02 1.6060181e-03 1.5273874e-02 3.4184655e-02 2.4589114e-03 -6.8421390e-03 -8.1711682e-04 -6.6606637e-03 -1.8934216e-02 -1.0742508e-02 1.1113013e-03 -1.6149599e-02 -7.0920966e-03 7.7644202e-03 -1.3575230e-03 2.2279131e-02 -2.1499849e-02 -1.4483533e-02 1.2996811e-02 -1.0815215e-02 -2.8282398e-02 4.6753542e-02 -1.1020736e-02 1.0984401e-02 3.4706406e-02 -2.7827463e-02 + -9.0870752e-02 -2.0822359e-01 2.8273774e-01 -1.8682433e-01 -1.4917532e-01 4.6009183e-01 1.2189730e-02 1.4427650e-01 -9.1679060e-02 -1.3911992e-01 -1.4348671e-01 -1.1766231e-01 2.5154486e-01 8.6175703e-02 4.9157032e-02 -8.5325185e-03 2.2335581e-01 -1.7937467e-02 -5.5344054e-04 -1.1976058e-01 -2.8931961e-02 -2.4108485e-01 1.4369331e-01 -3.9423989e-02 5.6081665e-02 -2.1066957e-03 1.3101543e-02 -7.2807042e-02 1.0616331e-02 7.6588904e-01 -1.6221708e-01 -2.7997282e-02 -8.8115962e-02 + -1.3442841e-02 -1.2502324e-01 -1.3936662e-02 4.8144218e-02 3.3029968e-02 -5.3086853e-03 -1.9112493e-02 6.8691131e-02 -9.3373694e-03 4.9638755e-02 1.1594360e-01 1.0762589e-03 2.4313671e-03 2.7769078e-02 -3.7890545e-03 -5.5178886e-02 -1.6460176e-03 -2.3822310e-02 -1.9982814e-02 -1.2713548e-02 6.6203157e-02 -3.8618052e-02 -5.4894163e-02 -7.4572511e-02 -1.8172395e-02 2.4607921e-03 -2.1934794e-02 -7.9297957e-02 1.5365388e-01 3.6868056e-02 -5.2984646e-03 1.1006824e-01 -8.9419836e-02 + 9.0862624e-02 5.8980268e-02 -6.4514324e-02 4.0363513e-01 -1.0362510e-01 1.0562038e-01 -4.7016484e-01 -1.0329713e-01 -3.4154001e-02 4.1235742e-01 1.6301786e-01 -1.2432267e-02 -2.0081778e-01 4.2243473e-02 -2.8697312e-01 -1.5035206e-01 -9.1535931e-02 -4.7069581e-03 2.8212719e-01 1.4102314e-01 2.5458828e-01 1.3202316e-01 3.2025125e-01 3.9861179e-01 9.2014094e-02 1.3158625e-02 9.3854470e-03 7.2034710e-02 -6.7887774e-02 8.5739494e-01 7.0592611e-02 1.4062426e-01 6.6961414e-02 + -2.7671668e-02 -3.8694307e-03 -2.2245795e-02 -1.1671008e-02 1.7097739e-02 2.6234708e-02 2.3835374e-02 1.4637564e-02 2.5856542e-02 -4.5995311e-02 -2.5692460e-02 1.7004955e-02 3.3685423e-02 6.4486729e-03 1.7453680e-02 -1.2072674e-02 3.1678690e-02 2.6565876e-02 -5.3743894e-03 -1.5586946e-02 -2.5658664e-02 -1.8770537e-02 -7.2291799e-03 1.2951995e-02 -8.7269132e-03 1.1548935e-02 4.1703637e-02 -1.0038072e-02 -2.2320305e-02 -2.6777238e-02 3.0260755e-02 -9.7217930e-03 -1.2106489e-02 + -1.2463811e-01 4.4528091e-02 -8.0934401e-02 -1.3573183e-01 -9.3553912e-02 -6.2418345e-01 1.9224619e-01 -4.6686510e-02 -1.6904304e-01 -3.5659004e-01 8.8981020e-02 -4.0438450e-01 9.6132752e-02 1.8787570e-01 3.8057256e-01 5.1587187e-01 1.5114862e-02 8.5061473e-02 -2.7110996e-01 -1.1724229e-01 -1.1840163e-01 -4.4240629e-02 4.5238459e-01 1.7750378e-01 1.6399085e-01 3.5871296e-01 1.5732078e-01 1.1902919e-01 -2.6767292e-01 -4.2758495e-02 1.2181626e-01 -2.3095844e-02 5.9095031e-03 + -3.0307923e-01 2.0240525e-02 -4.0475453e-01 1.6965042e-01 1.5133762e-01 5.9619778e-02 -6.9080811e-01 2.7271238e-01 -3.9212592e-02 -2.2316419e-01 6.5783709e-02 -4.1972972e-01 2.3042121e-01 3.1560435e-01 2.4062306e-01 3.0737757e-01 -3.4462076e-02 2.7694022e-03 6.7768718e-02 9.5233585e-02 -3.8158495e-01 3.3642138e-01 -1.0334030e-01 -2.2352404e-01 2.2685997e-01 1.7865971e-01 9.3105676e-02 -2.8378828e-03 -5.3036338e-01 -5.2790508e-01 -1.1246426e-01 1.7000115e-01 -8.6961516e-02 + 3.6973637e-02 -1.2677861e-01 -3.3657296e-01 -3.2855067e-01 -1.1997605e-01 -8.4959449e-02 5.9967249e-01 -7.7160158e-02 -1.1465552e-01 -1.2273997e-01 1.9892447e-01 -1.0760726e-01 -1.5743862e-01 -3.0357851e-01 -5.9112599e-02 1.6315698e-01 -3.0724416e-01 -4.0738053e-01 2.8739462e-01 3.5469315e-01 -6.2209190e-02 1.3133708e-01 2.3102443e-01 1.9801310e-01 8.1084206e-02 -2.9799434e-02 -1.6399620e-01 1.1669896e-01 1.0189840e-01 7.0536696e-02 -3.6804215e-01 2.9651678e-01 -1.1443291e-01 + 7.8444022e-02 -1.6245737e-02 -4.6614932e-03 -6.4489777e-02 -2.5163384e-02 -8.9311392e-02 -1.2247835e-01 5.1731337e-02 -3.5935894e-02 1.1174866e-01 1.2714059e-01 -7.1325485e-02 -3.1704785e-02 8.5867827e-02 -2.2167457e-02 1.0479060e-01 -1.2469522e-01 8.4473718e-02 -5.2347843e-02 3.2769557e-02 -5.1495211e-02 3.0083475e-02 3.9997462e-02 -4.6538758e-02 6.6242520e-02 9.8916287e-02 -9.2030556e-04 -1.3860088e-03 -3.6276200e-02 -1.9334770e-03 2.3000479e-03 1.4220433e-01 -6.9569595e-02 + -1.7629343e-01 1.1504518e-01 -1.6436043e-01 -1.5649232e-01 -1.5817543e-01 -3.6329135e-01 9.0575692e-02 -1.7343083e-01 2.2630724e-02 -1.0090382e-01 6.5848328e-02 -1.8097396e-02 1.7878454e-02 6.6170732e-02 4.7446101e-02 -1.0055551e-01 1.3927231e-01 3.0842494e-02 -6.9097896e-02 1.9994468e-01 3.0949209e-02 6.8640709e-02 1.2175199e-01 4.6745495e-01 1.6740289e-01 9.9482577e-02 1.1511193e-01 2.3819350e-01 -2.2246386e-01 4.3815575e-02 1.9816429e-01 3.6336264e-03 1.9450407e-01 + -2.3874936e-02 9.3256449e-02 1.4430987e-02 1.8513025e-02 -6.7400604e-03 4.2792479e-02 1.7981724e-02 -4.7847193e-02 8.0059482e-03 -1.0477423e-01 -9.8351835e-02 7.2307580e-03 3.5870977e-02 -6.3914237e-03 6.0977884e-02 5.1971063e-02 5.2629183e-02 1.9463373e-02 2.8110578e-02 -2.8957876e-02 -4.2095189e-02 4.3535550e-02 -1.7314057e-03 7.5878746e-02 4.0218124e-02 -1.4229925e-04 4.5990442e-02 5.2616274e-02 -1.3893740e-01 -4.8346930e-02 2.0065075e-02 -8.6597492e-02 6.6417749e-02 + 1.0235656e-01 1.4316664e-01 -3.6021937e-03 -7.3736865e-02 7.1212651e-02 -4.6264521e-02 -9.3076298e-02 -7.2135968e-02 -1.9878958e-02 1.6753704e-02 -4.4682720e-02 3.8127170e-02 -4.8107404e-02 -1.0756689e-01 -5.3897043e-02 3.0209218e-02 -6.9530191e-03 -1.0654027e-01 -1.8865049e-03 2.8486914e-02 1.4212443e-01 -3.3720777e-02 -2.7135626e-02 -1.2032294e-02 -2.3839799e-02 -7.6631929e-03 -4.4974729e-02 1.1671851e-01 9.6626030e-02 1.1964121e-01 -9.4272800e-02 -1.1364509e-01 1.0807488e-01 + 1.7298344e-01 5.0382335e-02 2.6903223e-01 1.9844308e-01 -7.2643600e-02 2.1410916e-01 5.2913825e-02 4.3847691e-02 -1.0906661e-01 4.4849910e-02 -7.3711571e-02 -7.1740427e-02 -4.0046315e-02 2.5590695e-02 1.0375059e-01 -1.2540188e-02 -4.2534508e-02 6.3742864e-02 -1.1057496e-01 -8.0544489e-02 -1.7567299e-01 9.2992729e-02 -5.0430275e-02 6.3359022e-02 2.3982695e-02 -1.1753179e-01 -1.2757117e-01 -2.8475917e-02 -6.4880461e-02 3.1467173e-02 -9.7750546e-02 -1.2647827e-02 -1.8083565e-02 + 1.2693136e-01 6.5370475e-02 4.2744757e-02 -1.1537864e-01 -1.9526261e-01 -5.3294418e-02 1.8220781e-02 2.0130638e-02 -2.1572258e-02 -7.7819898e-02 -2.4255874e-01 -9.9300104e-02 9.4663547e-02 -5.2821235e-02 3.7443428e-02 5.7312808e-02 6.7559888e-02 -3.0852378e-02 1.7002527e-01 4.7988098e-02 -1.7509872e-02 -6.5097591e-03 1.9393890e-01 1.0617996e-01 -5.5319035e-02 3.4967253e-02 -6.2312140e-02 4.6305361e-02 -1.6762684e-01 -1.2861703e-01 -7.1412068e-02 -5.3824125e-02 -1.2950950e-02 + 3.9830637e-01 -5.6734012e-02 1.9390048e-01 -2.1207611e-01 1.0024100e-01 8.8149686e-02 -6.1834938e-02 -5.6135252e-02 -1.6075791e-01 2.2818521e-01 2.2145262e-01 7.3832883e-02 -1.8847566e-01 -1.1619518e-01 -2.0513771e-01 4.6717214e-01 -3.1041628e-01 -1.3659148e-01 -4.5357515e-02 1.9555660e-01 9.1602845e-02 -1.4046751e-01 1.1442907e-01 4.0571317e-02 2.0911617e-01 3.3359488e-01 -9.7990811e-02 1.8568913e-01 8.0004670e-02 2.3823213e-01 -2.0289995e-02 1.9041952e-01 -2.3211897e-02 + 1.0541970e-02 4.2489786e-02 3.2817310e-02 6.2266225e-02 -3.0704893e-02 -3.0054256e-02 5.3245526e-02 -4.7150766e-02 3.3661333e-02 -1.2876403e-02 7.9281161e-02 -3.2967752e-02 -7.7938034e-02 -2.0238162e-02 8.3174331e-03 -4.6561932e-02 -5.1724135e-02 -3.1030705e-02 6.2820322e-03 -1.0163506e-02 2.2069738e-02 -3.1897141e-02 3.4132077e-02 -1.0188593e-01 3.4291092e-03 -4.3569462e-02 -7.4418992e-02 3.2662082e-03 9.0808191e-02 4.9559931e-02 -7.9849625e-02 4.6892286e-02 1.2837371e-02 + -2.2090050e-02 5.1836977e-02 1.0006598e-02 1.0159660e-01 7.8731154e-02 5.9011083e-02 -3.8505080e-02 -6.9617773e-02 7.2580493e-02 -1.4744785e-02 -6.7262637e-02 8.2008049e-02 -4.7892587e-03 -7.1513361e-02 4.2683261e-03 8.2402986e-03 3.6664684e-03 -4.1085429e-02 -7.7530546e-02 -2.2102253e-02 8.7454462e-03 3.6064882e-02 2.7686925e-02 -7.4511699e-02 -1.6033137e-02 1.4212880e-02 1.6293743e-02 2.8180262e-02 1.2942938e-02 1.8518168e-02 -8.4048547e-02 -9.9775703e-02 5.5268791e-02 + -1.1727155e-01 2.4746529e-01 -2.3179096e-01 -1.2528804e-01 1.7275659e-01 5.7330135e-02 -4.1887677e-01 -2.1345190e-01 1.7127881e-01 -2.6138496e-01 -2.6742976e-01 1.9225165e-01 -5.7968799e-02 -3.9511497e-01 -2.8865340e-02 2.7589781e-02 -5.6748796e-02 -3.1472202e-01 2.3439909e-01 2.8961045e-01 2.5662878e-01 1.9586874e-01 -4.2314760e-01 -2.5429979e-01 1.8378873e-01 -4.1117604e-02 -6.2859206e-03 1.2854723e-01 -1.8122203e-01 2.4517255e-01 -3.9731014e-01 -3.0611978e-01 1.6108550e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_G_4.txt new file mode 100644 index 00000000..bc55d102 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_G_4.txt @@ -0,0 +1,17 @@ + -4.6209525e-02 4.6872294e-02 -2.4066521e-02 8.1658037e-02 -2.4288996e-02 -3.5256055e-02 1.8492963e-02 2.0463653e-02 -3.7411522e-02 6.5686638e-02 -5.5964958e-02 -7.4305767e-02 5.4833907e-02 4.8091753e-02 8.2093289e-02 -3.5160547e-02 2.5557688e-02 -1.4418380e-03 -1.2332019e-02 -4.1176407e-02 -1.5405430e-02 3.4769932e-02 8.4617304e-03 -9.0755452e-02 4.4887618e-02 2.8682387e-02 5.6312354e-02 2.9771229e-02 -4.2685926e-03 -2.3423834e-02 -3.3850538e-02 4.7270154e-02 1.6544155e-02 -3.3772821e-03 3.3285704e-02 -7.2453112e-02 5.0140532e-03 -1.0493206e-01 7.9943690e-02 -8.3256472e-03 1.2253452e-01 + -1.4841738e-01 3.0573356e-01 -6.4560957e-04 3.6224000e-01 -3.3920634e-02 1.5416167e-02 8.0959490e-02 5.9242501e-02 -1.4329501e-01 -1.8786344e-01 -3.8078841e-01 -6.8784741e-02 8.1660010e-02 8.7242867e-02 2.4459945e-01 -5.8619024e-02 -3.9233884e-02 3.8467946e-01 -4.1809763e-02 6.5698976e-02 4.7190175e-02 -1.4853813e-01 3.4906130e-01 -4.0047523e-01 1.2204582e-01 -6.6780386e-02 3.5267945e-03 -4.2161869e-03 7.2667058e-02 -1.3198110e-01 -9.8200578e-02 4.0549519e-01 2.3828899e-01 -2.6263576e-01 -1.9087594e-02 -2.1725313e-02 7.3122198e-03 -6.0826219e-01 2.0167037e-01 2.2325451e-01 -2.5979433e-01 + -1.8201794e-01 5.0765016e-01 3.6292462e-02 1.0690073e-01 -1.0079272e-01 1.6027007e-02 2.4844606e-01 2.1632462e-01 -6.5838818e-02 -1.8755607e-01 -1.1782149e-01 7.5117203e-02 7.7628705e-02 1.1323824e-01 3.1367593e-02 6.8820345e-02 1.6895931e-01 -5.3274335e-01 -2.5853619e-02 1.6443947e-01 -2.9861691e-02 -1.7431295e-01 3.8093488e-01 -1.9873549e-01 9.4367258e-02 8.8624592e-01 -5.8635331e-01 2.4864896e-01 -4.6934745e-02 5.8438574e-01 -6.1821820e-02 3.8240275e-01 3.3845338e-01 -4.2294477e-02 -1.1714042e-01 6.6372142e-02 -4.8729302e-02 8.6697761e-02 -1.8047677e-01 -4.5868394e-01 -6.5444798e-01 + 4.2695312e-02 -3.4917050e-02 2.7825430e-02 -5.0940217e-02 2.2815647e-02 2.3773798e-02 -2.7553296e-02 -1.8232239e-02 4.0799936e-02 -4.6858798e-02 3.8150024e-02 1.1633912e-02 -3.2431638e-02 -3.9175005e-02 -5.8421500e-02 9.1582175e-03 -2.9844236e-02 -2.1977711e-02 1.2012150e-02 1.6036677e-02 -4.4614405e-03 -4.4883230e-03 7.7494400e-03 8.8862693e-02 -3.0214394e-02 -4.9606297e-02 -4.9418087e-02 -3.2198896e-02 8.1217557e-04 7.9657465e-02 -1.8865045e-03 -2.0032264e-02 -5.4797534e-02 -2.1153476e-04 -1.8732696e-03 1.3361504e-02 2.0790206e-02 9.4532912e-02 -2.3841067e-02 5.0326629e-02 -3.4928723e-02 + 1.4951776e-01 -1.2333732e-01 -4.4600758e-02 -1.0441864e-01 5.2504831e-02 -1.5628161e-01 -2.4626596e-01 -1.7551802e-01 4.9319034e-02 -2.5098523e-01 1.7749785e-01 -1.7613806e-01 2.3050928e-02 -5.4313184e-02 2.2276779e-02 -1.0186034e-01 -2.4234978e-02 3.2623701e-01 2.6534064e-02 -1.7458066e-01 -1.7251132e-02 1.9276082e-01 -1.5895521e-01 1.8633781e-01 -6.5821425e-02 2.9668023e-01 -8.6979182e-02 -8.8201241e-02 -6.5111389e-03 -3.6691882e-01 -1.0985793e-02 -6.4056414e-01 -9.0554576e-02 1.0958657e-01 1.7326760e-01 -2.4351008e-01 1.4507378e-01 1.8238348e-01 1.6114129e-01 4.0736455e-02 1.7457870e-01 + 4.6976463e-02 -2.3619715e-02 3.7486798e-02 -4.6479129e-02 3.2474865e-02 4.2429922e-02 -2.8729575e-02 -1.9064794e-02 4.7504026e-02 -7.2303570e-02 3.4430164e-02 4.3640932e-02 -4.9764991e-02 -5.4202295e-02 -6.6420566e-02 2.1698662e-02 -4.9035094e-02 7.5671577e-02 1.2194126e-02 4.1551279e-02 6.5218134e-03 -4.2426630e-02 5.1385685e-02 8.0696800e-02 -3.5953305e-02 -1.2244881e-01 -1.5127271e-01 -4.6516903e-02 1.1302955e-02 4.7935355e-02 6.7709584e-03 -6.3477305e-02 -3.2607497e-02 -7.3523940e-04 -1.3533281e-02 4.4157970e-02 8.3278668e-03 8.7889285e-02 -6.0185354e-02 8.5756410e-02 -1.8278280e-01 + 3.5666515e-02 -1.6806327e-02 2.8093213e-02 -2.7900450e-02 2.0184835e-02 1.9965087e-02 -2.1536228e-02 -1.2884691e-02 3.5158312e-02 -3.5626652e-02 2.8150544e-02 4.8347264e-04 -2.4612235e-02 -3.1690325e-02 -4.2662590e-02 3.7911522e-03 -2.7287570e-02 -3.1227354e-02 1.0859645e-02 1.1215864e-02 -7.2964225e-03 -1.2913228e-03 2.1069916e-02 7.1420404e-02 -2.3283431e-02 -6.0518995e-02 -4.8681661e-02 -2.7414679e-02 7.2155251e-05 8.9505748e-02 -8.4378449e-03 9.3203582e-03 -5.6805283e-02 -9.3564441e-03 3.8943392e-03 2.1689391e-03 2.4653088e-02 7.0885169e-02 -2.0157687e-02 8.1620123e-02 -2.4082040e-02 + 1.2638481e-03 1.9938700e-01 -1.1085047e-01 2.2295449e-01 -8.4098021e-02 2.7048212e-03 -9.4116105e-02 -4.7978080e-03 2.3710852e-02 -8.7079090e-02 1.4852289e-01 2.4237068e-02 3.0149989e-02 3.9187059e-02 -1.1365877e-01 2.9951915e-02 1.7872181e-01 -6.5880906e-02 -7.3276503e-03 -1.2137313e-01 -1.0720439e-01 1.3029794e-01 7.3447049e-02 2.1432931e-01 5.3893900e-02 -7.4030819e-01 2.2031780e-01 1.3206911e-01 -1.1001391e-01 -2.6867866e-01 -5.7266137e-03 1.2679859e-01 3.2750684e-01 4.1645883e-02 7.3176929e-02 -4.0298825e-02 -1.7081068e-01 3.4024493e-01 -9.1914567e-02 -3.2770252e-01 5.4941212e-03 + 1.8250751e-01 -1.2741013e-01 -2.6412943e-02 -1.3239289e-01 8.8051699e-02 -1.5433019e-01 -1.4726270e-01 -1.6897729e-01 6.9870616e-02 -5.2978078e-01 3.6878093e-01 2.7435380e-02 -9.9183139e-02 -1.3932407e-01 -3.0583701e-02 -7.6043799e-03 -4.5617410e-02 4.1497998e-01 2.9876396e-02 -4.3270027e-02 6.5634060e-02 3.3706853e-02 -1.8342560e-01 2.9476195e-01 -1.8458693e-01 1.7301138e-01 -1.0040018e-01 -6.9052157e-02 1.9506829e-02 -1.3277422e-01 1.2486617e-01 -5.0353778e-01 1.5276298e-02 2.3072900e-01 8.0746837e-02 -6.0209586e-02 8.9739969e-02 3.0280430e-01 -7.5669467e-02 -1.8135235e-01 -5.7191743e-02 + 5.0749274e-02 -6.0553223e-02 4.4933626e-02 -1.6127059e-02 3.2053241e-02 1.3107257e-02 -1.2987252e-02 -1.6308598e-02 4.0622723e-02 1.1012891e-02 7.5440964e-02 -1.7106261e-04 -3.2268849e-02 -4.5179172e-02 -4.0852141e-02 -1.1744108e-03 -3.1639715e-02 -4.4200100e-02 1.7311294e-02 1.2263075e-02 -8.2188780e-03 5.5312741e-03 -5.2462183e-03 1.1695989e-01 -3.7668525e-02 -1.7739480e-01 -1.8270674e-02 -3.3954438e-02 1.5786515e-04 1.5788838e-01 -6.8411480e-03 5.9639473e-02 -1.1789775e-01 4.3458424e-02 9.8934216e-03 -4.6493260e-04 5.4172569e-02 9.7191420e-02 -5.1149462e-02 1.5972529e-01 1.0954569e-01 + -3.5556255e-02 5.5381409e-03 -3.5244871e-02 3.0414731e-02 -2.2134544e-02 2.6310450e-04 1.1789643e-02 9.8401052e-03 -3.8991464e-02 4.6245486e-02 -2.4658819e-03 3.2699805e-02 1.7029607e-02 2.5650500e-02 2.2390896e-02 8.1289382e-03 2.7600907e-02 4.6620807e-02 -1.2825615e-02 -7.6485986e-03 8.7643848e-03 -7.5907677e-03 -5.3597208e-02 -4.9859243e-02 2.8068261e-02 4.9701965e-02 5.5113630e-02 1.9299344e-02 -6.8599604e-04 -1.7878393e-01 2.0370373e-02 -7.6796957e-02 6.8611423e-02 3.3244139e-02 -1.4711443e-02 3.4258548e-02 -5.5883497e-02 -5.1413690e-02 -7.0349918e-04 -1.2152942e-01 -4.6786192e-02 + 8.0418878e-02 -8.1640760e-01 -6.4976533e-02 3.8792637e-01 -2.0063998e-02 -5.6252041e-02 -3.2128866e-01 -1.1164407e-01 1.4593133e-01 3.0723996e-01 -2.1368188e-01 -3.7831709e-01 1.1656311e-01 1.1152954e-02 3.3042124e-02 -1.2403252e-01 -5.5431981e-02 2.0765718e-01 -8.0130373e-03 -1.7292476e-01 -1.5336968e-01 1.9986455e-01 4.4114649e-01 5.0101391e-02 8.8778549e-02 3.1815609e-02 4.3739192e-01 -7.4265425e-02 -4.2959399e-02 -3.4828039e-01 -2.2138337e-01 -6.0044221e-01 -1.1051868e-01 -1.7226295e-01 2.7938791e-01 -4.4319034e-01 2.3885283e-02 4.2913307e-01 4.4570044e-01 -2.4609469e-01 -2.2854391e-01 + -3.9055643e-02 3.1762882e-02 -2.5182959e-02 4.2031316e-02 -2.0786991e-02 -1.9487153e-02 2.5424292e-02 1.7430443e-02 -3.6388200e-02 3.2738060e-02 -3.6184470e-02 -6.0873714e-03 2.7739234e-02 3.4987549e-02 5.0887370e-02 -6.3397369e-03 2.6770526e-02 3.1202890e-02 -1.1127451e-02 -1.1436878e-02 5.1211554e-03 2.3770736e-05 -2.9435235e-03 -8.2438370e-02 2.6818554e-02 4.6692997e-02 3.7212372e-02 2.9336975e-02 -3.4792904e-04 -7.4185728e-02 2.8402493e-03 1.2341063e-02 5.6264759e-02 -1.1011068e-03 -4.2920428e-04 -7.1708161e-03 -2.1427658e-02 -8.4957712e-02 1.9460535e-02 -5.2024772e-02 1.7930306e-02 + 1.5920912e-02 4.6596715e-02 1.9041197e-02 8.0257103e-02 1.0607733e-02 2.2213386e-02 -1.3656255e-02 -2.5599060e-04 2.3170822e-02 4.8884693e-02 1.1751419e-02 -2.6076429e-02 -5.0726507e-03 -1.6260510e-02 2.4762695e-03 -7.7661539e-03 -2.4114707e-02 -4.7909824e-02 4.1862938e-03 -1.0430058e-02 -2.4109934e-02 1.0944666e-02 8.1191501e-02 4.4162385e-02 3.9004794e-03 -2.0331614e-01 -4.7477739e-02 -1.6763118e-02 -4.7504579e-03 7.1465394e-02 -2.8745108e-02 1.2844753e-01 -5.6035818e-02 -2.3785867e-02 2.9645795e-02 -2.7313428e-02 4.3432212e-03 1.8790449e-02 -6.8981592e-03 1.7109781e-01 -4.1564146e-02 + 5.4805918e-02 -5.0205194e-02 3.9570922e-02 -9.1977758e-02 3.4885288e-02 4.1074249e-02 -2.7844151e-02 -2.3136240e-02 5.5555072e-02 -7.8954605e-02 5.0378175e-02 4.8463989e-02 -5.6386063e-02 -6.2271094e-02 -8.2339231e-02 2.4175969e-02 -4.8955105e-02 6.7383525e-02 1.3849069e-02 4.6458166e-02 6.5685912e-03 -3.9211263e-02 3.3226665e-02 1.0602290e-01 -4.5166760e-02 -1.0438608e-01 -1.3682295e-01 -4.7024111e-02 1.1012676e-02 7.7308483e-02 8.6682031e-03 -9.5618888e-02 -4.3327028e-02 3.4213011e-02 -1.8574604e-02 5.0153736e-02 1.2175808e-02 1.2723897e-01 -5.7571010e-02 5.2339535e-02 -1.5335044e-01 + -3.9146028e-02 -3.0908504e-01 -1.9182482e-02 -1.6172935e-02 -1.7006384e-02 -1.3462966e-03 7.8329182e-02 2.2702737e-02 -4.2799659e-02 1.1100862e-02 6.8930479e-03 6.1162954e-02 1.5726359e-03 2.1710480e-02 3.3858707e-02 2.1611583e-02 2.7829329e-02 1.1931100e-02 -9.1396469e-03 6.0129743e-03 1.9801201e-02 2.1163424e-03 -1.3174704e-01 -7.0946694e-02 1.6060546e-02 1.6339356e-01 -5.1593110e-02 4.2408621e-02 1.8065248e-03 -1.7890276e-03 4.6541516e-02 1.1170233e-01 -5.1254545e-02 1.0454367e-01 -4.1809537e-02 5.5440279e-02 -5.0363118e-02 -8.7999905e-02 -1.0555421e-01 6.4030741e-02 4.5270739e-02 + -5.3105879e-02 6.0279876e-02 -1.8629882e-02 5.1876210e-02 -3.1496345e-02 5.9756020e-02 4.8126571e-02 3.6407839e-02 -5.1679772e-02 2.2258989e-01 -7.4728560e-02 7.3370003e-02 1.3748084e-02 3.5878620e-02 2.5427401e-03 2.1852032e-02 1.7796664e-02 -1.8901784e-01 -1.6222036e-02 1.5701077e-02 2.4733826e-03 -3.7615709e-02 -1.0577755e-01 -5.6610557e-02 4.9271575e-02 -7.9552988e-03 1.4366027e-01 -1.6062554e-03 -2.7576349e-03 -1.0521992e-01 4.9950475e-03 -1.4329810e-02 4.7030663e-03 -6.9699943e-02 -4.7714664e-02 9.9451159e-02 -8.0438007e-02 -1.4475548e-01 -6.9367309e-02 -2.5293597e-02 1.0850823e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_LW1_G_5.txt new file mode 100644 index 00000000..a3d25e3c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW1_G_5.txt @@ -0,0 +1,18 @@ + -3.2213221e-02 -3.6876272e-02 -2.9940389e-02 -5.4372537e-02 -6.9871839e-03 -2.5514080e-01 -8.2339756e-02 -4.8208593e-02 8.0917765e-02 8.4576137e-03 -3.5980258e-02 1.6687018e-01 3.1366402e-02 -8.9933708e-02 -1.1141445e-01 -3.1238463e-02 -1.7136994e-02 -8.2202514e-02 2.7407584e-01 -2.0386386e-01 1.2135685e-01 -2.3874778e-02 -1.9157562e-02 1.7295036e-01 2.6530629e-01 -8.3352243e-02 1.1431803e-01 -2.1476505e-03 -1.2135638e-01 -5.8792518e-02 9.2646347e-02 1.3682314e-01 -2.4139397e-02 1.2601852e-01 1.0587185e-01 -7.5887864e-02 -8.6359323e-02 -2.9784952e-03 2.1046284e-02 -5.2044887e-02 9.5511379e-03 -2.5492146e-02 4.5007065e-02 4.7654141e-02 1.3514396e-01 1.8993819e-01 -2.3654713e-01 + -1.0159896e-03 4.3344540e-03 -4.2533903e-03 -6.2782685e-03 1.0836073e-02 2.4289357e-02 -1.0294312e-03 6.0784690e-04 -8.1664823e-04 -3.4005755e-03 1.9778548e-02 -1.2234229e-02 7.6314354e-03 8.6031425e-04 1.3485146e-02 2.2823186e-03 1.1634346e-02 8.4389573e-03 1.2042035e-02 2.7874208e-02 -1.2795701e-02 9.8779131e-03 -3.1062786e-03 -6.7447142e-03 -4.9731680e-03 5.2221985e-03 3.2463060e-03 1.3576124e-02 2.1320927e-03 6.9840213e-03 -1.7169176e-02 -1.1656015e-02 -7.2070689e-03 -3.0167217e-04 1.8273184e-02 3.0134761e-05 -6.4376246e-03 4.4714552e-03 -4.9725925e-03 7.9195974e-03 1.1273610e-02 -8.1803832e-03 6.8970181e-03 1.7217128e-03 7.0077503e-03 -2.7506170e-02 1.1706088e-03 + -5.9828206e-03 2.1724325e-02 -2.7316813e-02 -6.5580497e-02 6.1832803e-02 1.0460387e-01 -4.6534393e-02 1.9387116e-02 4.9310138e-02 3.1647493e-02 9.2186301e-02 -9.3711903e-02 1.1444860e-01 2.2607933e-02 -2.0610060e-02 8.3941295e-03 1.6528861e-02 -1.5671485e-03 2.1296617e-01 1.0837004e-01 -3.6355887e-02 6.1012550e-02 -2.3445218e-02 1.4833561e-01 9.5578474e-02 2.8329393e-02 1.4984626e-01 5.9389699e-02 -3.5110439e-02 1.4555604e-02 -4.0064377e-02 1.3862381e-01 -5.8476834e-02 -4.8644200e-02 5.9138020e-02 -4.8698738e-02 -1.2195231e-02 3.3510131e-02 1.2012234e-04 9.7449891e-02 4.7169666e-02 -4.1340444e-02 -2.9188631e-02 7.6391930e-03 9.3834124e-02 -2.9358725e-02 -2.9565866e-02 + 2.1961917e-02 -2.8448264e-02 2.6251474e-02 -1.8640939e-02 -3.3526561e-02 -1.2351160e-02 -2.2734986e-02 3.2351357e-02 5.2285772e-02 -1.0779605e-02 -3.5758981e-02 -5.5409397e-02 -4.3402716e-02 -9.2380605e-03 -5.5616808e-02 1.5861806e-02 1.5213605e-02 2.2992176e-02 -1.4466620e-01 3.5660292e-02 -9.1132381e-02 1.4577782e-02 -3.6847693e-02 2.1528874e-03 -1.3417050e-01 2.8173087e-02 -1.9456654e-01 2.5579859e-02 -7.7550350e-03 3.3415450e-03 9.1024321e-04 2.9010122e-02 5.2713929e-02 7.0227602e-02 -5.0258651e-03 -3.0010007e-02 8.4309782e-02 8.8052547e-03 -9.2825796e-03 5.9517039e-04 -7.0544788e-02 -1.7396642e-02 -2.4942722e-03 -1.2047503e-02 1.0011138e-02 -3.2650697e-02 1.6258371e-01 + -4.8661927e-03 -3.0340220e-02 4.9537708e-03 1.1437210e-04 -2.5469663e-02 -1.1560102e-01 -1.7641778e-02 -1.4825521e-02 2.8732730e-02 1.6867892e-02 -5.9971630e-02 4.4422085e-02 -1.8474620e-02 -1.8633741e-02 -6.2822055e-02 -5.0742806e-03 -3.8603758e-02 -2.9054136e-02 -1.8457266e-02 -6.2806555e-02 2.5357616e-02 -3.1527803e-02 7.7385739e-04 -2.2557142e-02 4.6684940e-02 -3.1301787e-02 -1.0761852e-02 -4.0917541e-02 -3.7498915e-02 -7.1531761e-03 6.2505260e-02 3.0118931e-02 1.5289378e-02 -4.1727100e-02 -1.1858339e-01 -2.0478647e-02 1.8532962e-02 -3.6277284e-03 1.0880186e-02 -1.5614051e-02 -4.4082048e-02 1.5055020e-02 -1.9876768e-02 6.0023123e-03 1.3535180e-02 6.0237744e-02 -7.0713442e-03 + -4.4316567e-03 -3.9690992e-02 7.6595446e-02 7.3948651e-02 -9.5366692e-02 -1.2556438e-01 3.5060614e-02 -2.8445868e-02 2.5034197e-03 7.1007051e-02 -3.3154049e-01 -9.4145307e-03 -1.2889174e-01 2.3647886e-02 -1.2159799e-01 -8.2259993e-03 -1.1522060e-01 -5.0056484e-02 -2.2133009e-01 -4.9975443e-01 3.3608225e-02 -4.0296069e-01 6.4356120e-02 -7.1519490e-02 -3.9861042e-02 -1.0884641e-02 -6.6668810e-01 -1.3472004e-01 6.7086290e-02 -3.8392301e-02 1.2256977e-01 -2.0113424e-03 8.9114435e-02 5.6979082e-01 -1.7585296e-01 -3.0989187e-02 1.0297543e-01 -1.6282306e-02 2.3809557e-02 5.6307098e-03 -1.1990352e-01 9.5880302e-02 -1.0644344e-01 -4.5796361e-02 -1.8259274e-01 -3.0916534e-01 4.2892322e-01 + 3.5606493e-03 3.6348856e-03 -3.5129740e-03 -1.5024220e-03 8.0515450e-03 7.1241646e-02 5.7821406e-04 1.0764324e-02 3.7601510e-03 -1.5080147e-02 3.7925605e-02 -6.0459199e-02 1.8108020e-02 5.5042872e-03 3.3280624e-02 9.5705361e-03 2.8082200e-02 3.7356305e-02 1.6636610e-02 7.4941272e-02 -5.7078039e-02 3.6043904e-02 -1.8976534e-02 -2.7610395e-03 -6.5846026e-02 2.7412842e-02 2.6485887e-02 3.5466560e-02 1.6807738e-02 4.2186513e-02 -5.3289526e-02 -2.3781495e-02 -2.6427478e-03 4.1191085e-02 6.6278709e-02 1.9040254e-04 1.2428656e-02 8.7186883e-03 -1.7915472e-02 6.8290078e-02 2.9389542e-02 -2.2867457e-02 1.0648018e-02 3.4096562e-04 3.9242566e-03 -6.8166621e-02 1.0015759e-02 + -9.6754146e-02 -9.2470743e-02 -1.1612385e-02 -1.8073324e-01 4.7564386e-03 1.3414276e-01 -1.2760914e-01 -9.0944651e-02 2.3104056e-01 3.4634905e-02 -4.8023007e-02 -2.6952329e-01 1.8153852e-01 -8.9140009e-02 -4.3113489e-02 1.8756774e-02 3.6131542e-02 6.6065341e-02 1.1835787e-01 -5.1754222e-02 -1.5178730e-01 1.3839518e-01 -1.0906508e-02 5.9998043e-03 -3.5817379e-02 1.9682113e-02 -3.4975055e-02 5.6931343e-02 -4.3341461e-02 5.9064235e-02 -8.2126434e-02 -1.0162598e-01 1.7243159e-02 3.3577791e-02 1.8534916e-01 -1.9636101e-01 4.2060824e-02 1.3212630e-01 -2.9050141e-02 -1.2273712e-01 7.5107984e-02 -1.1937278e-01 2.5713813e-02 3.8773400e-02 9.0794173e-02 -4.8583766e-02 -1.1868360e-03 + -1.2934184e-04 5.4647694e-03 -1.7540653e-03 -5.2259630e-03 1.3430486e-02 5.4224718e-03 -1.8673336e-03 -2.4099143e-03 1.3598263e-03 1.3054200e-03 -8.0872618e-04 1.2692955e-02 -1.4182847e-03 6.1244334e-04 -8.1240091e-04 -5.0518190e-03 -4.4839399e-04 -8.0610541e-03 1.3891566e-02 -4.9605027e-03 6.0640769e-03 1.1880684e-04 8.7967143e-03 -1.2961875e-02 1.8792666e-02 -6.0808151e-03 -3.0435994e-04 8.0599492e-04 -4.9224527e-03 -1.5878204e-02 5.5411374e-03 1.4582316e-03 -8.3132063e-03 -2.8010727e-03 3.8566553e-03 -2.7043075e-03 -1.5625881e-02 5.8652192e-04 -1.7213345e-05 -1.6664855e-02 -3.7312262e-03 3.2707930e-03 -1.0053491e-04 9.0190225e-05 4.0983794e-03 -8.6949821e-03 -1.7804526e-03 + 2.8903236e-03 4.0919257e-02 -1.3239420e-02 -2.7597386e-02 5.2695580e-02 8.3528480e-02 1.2251128e-03 1.8220714e-02 -1.9961087e-02 -1.1811922e-02 6.1870851e-02 -2.6801161e-02 2.9242899e-02 1.3623110e-02 5.9936401e-02 5.8527045e-03 4.8237963e-02 1.4357359e-02 7.0252228e-02 2.2494403e-02 -2.9249190e-02 -9.2886653e-03 -5.8724948e-03 1.0880563e-02 -3.4174900e-02 1.7018069e-02 -2.4444919e-02 4.9313825e-02 1.2017934e-02 -1.9566659e-02 -6.3173207e-02 -1.0082692e-02 -2.8893643e-02 -5.3553135e-03 1.6028330e-01 8.2680762e-03 -4.4443766e-02 8.2424902e-03 -8.9734957e-03 1.2460291e-03 3.2003594e-02 -2.0395921e-02 2.9504041e-02 -5.4180247e-04 1.8404995e-02 -9.8511874e-02 -1.0748268e-02 + 3.4996065e-04 1.2610511e-02 -2.9386855e-03 -4.9249230e-03 2.4634051e-02 3.1928746e-02 3.0308109e-03 1.3520360e-03 -1.1126139e-02 -3.2995270e-03 7.9298160e-03 1.8745561e-02 8.4845189e-03 5.2410935e-03 1.2847968e-02 -2.1401189e-03 7.6480345e-03 -9.6316219e-03 2.0198393e-02 -5.0689873e-03 8.1805895e-03 -1.8731479e-03 4.6625430e-03 -2.5721658e-02 1.1175660e-02 -4.8538436e-03 -1.0147526e-02 4.6873055e-03 7.9038000e-03 -2.3030099e-02 -7.4028458e-03 -7.4358873e-03 -1.6264008e-02 -3.0576885e-03 1.8610424e-02 6.6588704e-03 -2.5389465e-02 -4.0123416e-03 1.7861902e-03 -1.0498533e-02 5.9397074e-03 2.2204636e-03 4.7864449e-03 -1.5100032e-03 2.9298234e-04 -3.4766907e-02 -1.5775620e-02 + -2.9905907e-04 -2.3837342e-04 -8.9250034e-04 -6.6076146e-04 -8.0251127e-05 4.5470815e-03 -6.3070710e-05 7.3491598e-04 -1.1047382e-04 -1.2888711e-03 5.8019459e-03 -6.4950881e-03 2.4548846e-03 3.8098763e-05 3.6599709e-03 1.8079608e-03 3.2776777e-03 4.3410012e-03 4.6735160e-04 9.1643623e-03 -5.3563691e-03 2.6200304e-03 -2.9400133e-03 7.8868506e-04 -6.0150903e-03 2.7726109e-03 1.0672277e-03 3.6470351e-03 1.2794570e-03 5.8184742e-03 -5.8881205e-03 -3.1545357e-03 4.2110566e-05 4.7123923e-04 3.9807291e-03 3.7273694e-04 2.1522927e-03 1.2220463e-03 -1.4573244e-03 6.4250916e-03 3.6481656e-03 -3.1375166e-03 1.7057611e-03 5.5424932e-04 1.4927456e-03 -6.1881326e-03 8.3997272e-04 + -4.3922821e-02 -1.1891882e-01 -2.7145591e-02 -1.1390743e-01 1.9322208e-02 1.5383129e-01 -1.3478735e-01 -9.5005881e-02 1.9828707e-01 6.5152994e-02 2.6945534e-02 -3.7447438e-02 8.3100496e-02 -6.2937284e-02 -1.5528743e-01 -6.1743924e-02 -3.7599763e-02 -4.1150878e-02 4.0890462e-01 1.7724606e-01 6.9711858e-02 3.4251095e-01 2.3027238e-02 1.1411593e-01 3.4538810e-01 -4.7965710e-02 2.8900643e-01 4.2672327e-02 -1.6287831e-01 5.5302582e-02 7.1958344e-02 8.6454939e-02 -4.3401924e-02 -1.4421194e-01 -5.5222306e-02 -1.4438577e-01 -2.1875493e-02 9.8853244e-02 -3.9169080e-02 -9.3590162e-02 5.5248636e-02 -5.0274768e-02 -5.5117827e-02 3.7081680e-02 1.6789605e-01 -2.2273908e-01 -8.6581722e-02 + 6.7021470e-03 -1.2719343e-02 1.7521306e-02 3.1000668e-02 -3.4916243e-02 -2.4278087e-02 1.4798512e-02 -1.0172923e-03 -2.0596506e-02 2.0967007e-02 -4.1773290e-02 3.4769135e-02 -1.3838211e-02 1.2925879e-02 -3.1949701e-02 -5.1762878e-03 -3.5120680e-02 -1.6099742e-02 -8.4502179e-02 -6.6064152e-02 3.6661767e-02 -1.1648020e-02 1.8846818e-02 -5.4999306e-02 -7.4441919e-03 -5.7645691e-03 -3.1054783e-02 -3.7467936e-02 1.7761306e-02 -1.2603397e-02 4.4314297e-02 -3.2855635e-02 2.1475144e-02 4.0117897e-02 -8.9775336e-02 1.2662758e-02 2.4195092e-02 -1.1048156e-02 9.5992721e-03 -7.8395174e-02 -1.9802007e-02 3.6450818e-02 -3.1444296e-02 -1.4097723e-02 -5.1252540e-02 8.0021622e-02 2.3680501e-02 + 6.3032717e-03 -1.2307843e-02 -5.0139674e-04 -5.8256117e-03 7.9738594e-03 -7.4810480e-02 -1.6304835e-02 -1.4694398e-03 3.2521942e-02 1.9107246e-03 -4.2488702e-02 5.8602410e-02 -5.1179273e-02 -1.0623363e-02 -3.3278645e-02 -1.6388739e-02 -1.5955390e-02 -3.3787619e-02 5.0481486e-03 -6.7698535e-02 1.7631635e-02 -6.8407154e-02 1.8901381e-04 -2.7318975e-02 -5.9185547e-03 -3.3187641e-02 -6.2053126e-02 -3.6178247e-02 -4.8067830e-02 -2.5820690e-02 5.9377510e-02 4.4367165e-02 1.0359285e-02 1.0762854e-02 -3.8598155e-02 -1.4769888e-02 -5.3172081e-03 -9.9294613e-03 3.5486953e-03 2.3873218e-02 -6.8341594e-02 1.7611178e-02 -3.2059756e-02 5.7039037e-04 2.0862434e-02 -2.8838569e-02 -3.3559892e-02 + -6.7107130e-03 -3.9044706e-02 5.9436930e-03 1.3284139e-02 -3.5825942e-02 -1.0055888e-01 -6.1862974e-03 -2.6167856e-02 1.2713819e-02 3.3578562e-02 -6.5989373e-02 4.9449251e-02 -3.4546196e-02 -1.5400174e-02 -6.4323452e-02 -9.7116160e-03 -4.3944627e-02 -2.5411237e-02 -4.9582598e-02 -1.3480019e-02 3.8223048e-02 6.6583668e-03 1.2016483e-02 -1.2214974e-02 5.5251159e-02 -3.3821571e-02 1.5962359e-02 -6.2223723e-02 -3.4019795e-02 1.8754537e-02 7.3687889e-02 2.7420130e-02 2.6888781e-02 -6.2300251e-02 -1.5709506e-01 -1.2471108e-02 2.5396398e-02 -3.5810240e-04 3.6797751e-04 -4.0963735e-02 -5.2682356e-02 2.8515238e-02 -2.7564806e-02 3.8669253e-03 -7.3543441e-03 9.8027419e-02 7.1939315e-03 + -2.0107291e-03 3.3254411e-02 -5.1219318e-03 -4.7126069e-04 1.0292402e-02 7.2204412e-02 6.2037343e-04 -2.9512533e-03 -1.3364483e-02 5.0752628e-03 3.1443311e-02 1.1721569e-02 4.9005582e-02 2.5140833e-02 -8.4481297e-04 -1.3742720e-02 -1.0835814e-02 -6.3894220e-03 4.0096158e-02 -1.9791993e-02 5.4319177e-03 2.1063215e-02 4.2582142e-02 -2.2352107e-03 -1.4878813e-03 4.8268191e-03 2.1399229e-02 2.8639183e-02 4.5251757e-02 -5.2028276e-02 -4.6359918e-03 1.0548524e-02 -1.9370574e-02 4.6530570e-02 3.4366586e-02 -1.0184970e-02 -2.4833751e-02 6.9951481e-03 1.7064159e-02 -4.8066544e-02 3.1448327e-02 4.6726139e-03 1.9768253e-02 -2.1626924e-03 -1.2835891e-02 7.0878141e-02 3.4932724e-02 + -1.5962940e-02 3.7896267e-02 -9.0497832e-03 -4.2180288e-03 2.6591093e-02 -3.9996714e-02 1.8232151e-02 -1.0549854e-02 -2.6681833e-02 -5.0721097e-02 2.2137567e-02 3.1106579e-02 3.3248809e-02 -1.3812008e-02 1.0953579e-01 2.6589717e-02 2.6551016e-02 -4.2390158e-03 1.9373029e-01 -1.4443509e-01 1.5270129e-02 -1.9125606e-01 -4.1957174e-02 -4.3596271e-02 1.6124617e-01 -2.0564753e-02 1.7243302e-02 -3.2411943e-02 1.4638378e-02 -1.6004007e-02 -4.7461888e-02 9.4821857e-02 6.2064059e-03 -1.3627781e-01 4.4134397e-03 3.8461774e-02 -3.1495243e-02 -1.4880507e-02 -9.3372358e-03 2.8597841e-02 2.6582758e-03 -1.2873684e-02 1.9968711e-02 9.7609903e-03 2.4104631e-03 -2.5728806e-02 -1.5015753e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_F_1.txt new file mode 100644 index 00000000..0509d947 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_F_1.txt @@ -0,0 +1 @@ + 3.0441616e-01 -2.5855550e-01 8.7628620e-02 -2.4910731e-01 -7.3880544e-01 -8.4417181e-01 -1.9503593e-01 -3.3229793e-01 1.4514543e-02 -7.2411006e-02 2.7881575e-01 -2.0414462e-01 4.2425134e-01 -2.1418619e-01 4.6178829e-01 3.1781164e-01 1.7931044e-01 3.3305013e-01 5.1863740e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_F_2.txt new file mode 100644 index 00000000..da008034 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_F_2.txt @@ -0,0 +1 @@ + -1.8135654e-01 1.7312134e-01 6.0826753e-02 -2.0256611e-01 1.5499926e-01 -4.4440978e-01 -7.0865079e-01 -6.2456719e-01 4.1773453e-01 -7.6354554e-02 -4.3890367e-01 -5.1134299e-01 2.2958072e-01 -6.5038823e-01 1.6207010e-01 -4.9329077e-01 -2.6625779e-01 1.2514470e-01 -3.4734134e-01 -5.8740774e-01 -3.6080430e-01 6.9164373e-01 5.8142080e-01 -9.4344320e-02 5.9861133e-01 -6.4373523e-01 7.1005745e-02 -3.2060972e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_F_3.txt new file mode 100644 index 00000000..66c06e16 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_F_3.txt @@ -0,0 +1 @@ + -7.8459801e-01 -1.2853885e-01 4.2535190e-01 3.6797263e-01 3.9858685e-01 6.7313162e-02 -5.3962607e-01 4.7136240e-01 -8.4867476e-01 -3.9879633e-01 -3.7207668e-01 5.1064274e-01 -3.1762410e-01 -4.3543805e-01 4.7952321e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_F_4.txt new file mode 100644 index 00000000..501286f1 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_F_4.txt @@ -0,0 +1 @@ + 6.0919521e-01 -6.1704650e-02 -3.2534706e-01 -4.3521148e-01 1.9382557e-01 2.2510359e-01 3.9051177e-02 -5.0898535e-01 3.5964708e-01 -1.3569044e-01 7.9576396e-01 -2.6530417e-01 7.9120296e-02 3.6164602e-01 -2.8003992e-01 -4.8457004e-01 3.2418735e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_F_5.txt new file mode 100644 index 00000000..c6845f12 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_F_5.txt @@ -0,0 +1 @@ + -5.0694166e-01 3.2549105e-01 -3.1125017e-01 3.0747470e-01 2.5382389e-01 -3.6701609e-01 -1.0111255e-01 1.9800635e-01 4.5141199e-01 -6.0146576e-01 -3.1204679e-01 1.7822997e-01 2.9161592e-01 4.3746156e-01 -4.4623633e-01 -1.6795898e-01 -2.8419131e-01 3.7469889e-01 5.1844276e-01 2.7779391e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_G_1.txt new file mode 100644 index 00000000..d61186f6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_G_1.txt @@ -0,0 +1 @@ + -6.7135957e-01 3.0049758e-01 -9.4654037e-01 7.2201776e-02 -1.3572518e-01 -3.1310314e-01 2.7170684e-01 1.4550700e-02 6.7866441e-02 8.5660383e-03 -3.7968993e-01 5.8513880e-01 6.4346666e-01 5.5895906e-01 3.6567384e-01 -5.8355422e-01 7.2069260e-01 -4.3913134e-01 3.5144643e-01 -3.1360873e-01 1.2651750e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_G_2.txt new file mode 100644 index 00000000..54823a53 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_G_2.txt @@ -0,0 +1 @@ + 5.7648396e-01 -8.6931766e-02 -4.4535998e-01 2.3113460e-01 -2.6854940e-01 5.7142451e-01 -3.0582874e-01 -3.5349289e-01 -2.9756341e-01 -1.3043460e-01 -1.9923046e-02 -3.0327369e-01 4.9794313e-01 -8.2385300e-02 6.0515156e-01 -2.1903606e-01 3.0093692e-01 2.1131392e-01 -1.5564406e-01 -4.3201701e-01 -5.2809252e-01 4.6384316e-02 -3.6658544e-02 3.3785646e-01 4.3958485e-01 -8.5010724e-01 -3.6040612e-01 2.3242735e-01 2.9756733e-01 3.7826201e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_G_3.txt new file mode 100644 index 00000000..2e542d4c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_G_3.txt @@ -0,0 +1 @@ + 7.4201849e-01 4.1681918e-02 -2.5527623e-01 -8.2021513e-01 -2.3798710e-01 1.2093226e-01 3.4591723e-01 4.2502726e-01 -6.2973696e-01 -3.8129317e-02 3.8014925e-01 6.1354438e-01 7.3984492e-01 2.4385093e-01 -6.2827176e-01 -3.9213092e-01 -4.2005864e-02 5.7308097e-02 -3.6432259e-01 5.4639576e-01 1.2924828e-01 -1.2371763e-01 3.3623145e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_G_4.txt new file mode 100644 index 00000000..e8d7e790 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_G_4.txt @@ -0,0 +1 @@ + 3.6427124e-01 8.3217844e-01 8.7473079e-01 -2.6717316e-01 5.4981654e-01 -4.2698307e-01 -2.3116473e-01 5.2651553e-01 2.0644690e-01 -1.7943979e-01 1.9031087e-01 8.9286520e-01 2.2030488e-01 -2.1815476e-01 -4.3843974e-01 2.7725445e-01 2.7661002e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_LW2_G_5.txt new file mode 100644 index 00000000..137033d7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_LW2_G_5.txt @@ -0,0 +1 @@ + -6.1333991e-01 7.3891863e-02 2.8359176e-01 -1.4591956e-01 -3.4859333e-01 -9.6929266e-01 2.5888142e-01 4.5946756e-01 -7.0379581e-03 3.7662393e-01 3.9715805e-02 2.1617167e-02 4.9939062e-01 -2.4014375e-01 -1.5070456e-01 -4.2820853e-01 2.9260542e-02 2.0050881e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_b1_F_1.txt new file mode 100644 index 00000000..d8aa9020 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_F_1.txt @@ -0,0 +1,26 @@ + -1.1982484e-01 + 1.4253823e-01 + -6.6326813e-02 + 1.9534862e-01 + 3.8825469e-01 + 1.6513068e-01 + -2.5726681e-02 + 1.1765204e-01 + -1.3583439e-01 + 2.7355613e-01 + -4.6490238e-02 + 1.4632441e-01 + 3.4123758e-02 + -9.7669176e-02 + 4.0729348e-02 + 4.6343133e-01 + 5.4591499e-02 + -2.3397043e-01 + -3.9594099e-02 + -2.1161469e-01 + -1.8588104e-01 + -1.1085590e-01 + 1.1609621e-01 + -1.7301290e-01 + 1.9078883e-01 + -5.7425503e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_b1_F_2.txt new file mode 100644 index 00000000..08591890 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_F_2.txt @@ -0,0 +1,31 @@ + -3.3729784e-01 + -3.7312710e-01 + -8.5504390e-02 + 2.1620501e-03 + 9.7231580e-03 + 2.4494934e-01 + 1.9346776e-01 + 5.8701772e-01 + -9.1050924e-02 + -1.9908186e-01 + -5.6746140e-02 + -2.7153378e-02 + 1.3970801e-01 + -8.8715741e-02 + 1.1611278e+00 + 8.2637184e-01 + -5.1586611e-01 + -1.1178291e-01 + -2.2947770e-01 + 1.4739664e-01 + -3.8204274e-02 + 1.1293982e-01 + -1.3375073e-01 + -7.1064847e-02 + 5.7519705e-01 + -4.0651664e-01 + 1.1615358e-01 + 4.8225177e-02 + -5.4233098e-02 + 1.0497335e-01 + -7.2817885e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_b1_F_3.txt new file mode 100644 index 00000000..461797b7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_F_3.txt @@ -0,0 +1,33 @@ + -1.1389796e-01 + -8.4225165e-02 + 9.5721146e-02 + 4.3661012e-03 + 8.0280648e-03 + -1.3169523e-01 + 1.2991584e-01 + 6.7998884e-02 + 9.5613479e-02 + -1.9865371e-01 + -1.7358065e-01 + 5.4890385e-02 + -2.6607954e-02 + -7.6566867e-01 + 3.8595605e-02 + 8.7670270e-01 + -1.2005954e-01 + -1.1606691e-02 + 1.4680843e-02 + -4.8687725e-01 + -2.1226973e-01 + 2.6877782e-02 + 1.0184695e-01 + -8.7243244e-02 + -1.9446473e-01 + 1.6561149e-01 + -1.7279641e-02 + 2.2310161e-01 + -1.6082452e-03 + -9.9698416e-03 + 1.2686573e-01 + 5.8850543e-01 + -6.4018686e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_b1_F_4.txt new file mode 100644 index 00000000..45c3089e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_F_4.txt @@ -0,0 +1,34 @@ + 5.1626610e-02 + 2.9760286e-01 + 4.4980728e-02 + -1.1689144e-01 + 5.9194394e-02 + -2.8900611e-02 + -3.1703567e-01 + 1.0738859e-01 + 5.6230156e-01 + 3.8221053e-02 + -3.6260017e-02 + 9.0069472e-02 + 4.8311835e-03 + -2.0023457e-02 + -1.4773731e-01 + -1.8063146e-01 + 5.8751282e-03 + 1.1051985e-01 + 1.5368686e-01 + -1.1141970e-01 + 1.9774152e-01 + 3.1924739e-01 + 2.6889059e-01 + -9.3161445e-04 + -2.2817856e-03 + -1.2419522e-01 + -3.4187511e-02 + -1.4603308e-01 + 1.7978892e-02 + -1.1745439e-01 + 1.1574528e-02 + -4.8435599e-02 + -1.7026806e-01 + 2.1666336e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_b1_F_5.txt new file mode 100644 index 00000000..f87405f0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_F_5.txt @@ -0,0 +1,36 @@ + -6.3848700e-02 + 1.3020073e-01 + -1.1596307e-01 + 1.3994645e-01 + 8.3456642e-02 + -2.6742283e-03 + -2.5369624e-02 + -1.6272174e-01 + 1.7721754e-01 + -1.1705815e-01 + 9.8751676e-02 + 1.2865535e-01 + -1.2384755e-01 + 2.7508645e-02 + 3.1981857e-01 + -1.0703166e-01 + 7.5721134e-03 + 1.9676727e-01 + -2.7596427e-01 + -9.5100771e-02 + 6.1294253e-02 + -1.3838760e-01 + -1.5335444e-01 + 1.1992739e-01 + -9.2449298e-02 + 1.0948426e-01 + -2.3269214e-01 + -1.6714352e-01 + -1.1347299e-01 + -5.3212949e-03 + 1.6043017e-01 + -1.0609294e-02 + 7.5030651e-02 + -4.1503820e-03 + 3.2705087e-01 + -2.8157946e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_b1_G_1.txt new file mode 100644 index 00000000..4f92483c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_G_1.txt @@ -0,0 +1,25 @@ + 2.7119804e-02 + 9.1501063e-02 + 6.9047858e-01 + -6.2659971e-01 + -3.3711700e-01 + 3.7427790e-02 + -2.3012360e-02 + -3.0699893e-01 + -8.3507549e-02 + 4.2693778e-01 + -1.5990000e-01 + 7.0665074e-02 + 4.5655118e-01 + 1.1127788e-01 + 3.3074315e-02 + 2.0703418e-01 + 3.0068831e-01 + 2.0592002e-01 + -2.6922125e-01 + 5.8941569e-03 + 1.0720559e-01 + -2.2986555e-01 + 1.0735855e-01 + 9.7392781e-02 + -7.3283559e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_b1_G_2.txt new file mode 100644 index 00000000..637a614e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_G_2.txt @@ -0,0 +1,32 @@ + -1.5973644e-01 + 1.2746780e-01 + 1.2851564e-02 + -1.5756394e-01 + -4.1105516e-01 + -5.5747164e-02 + 1.4029231e-01 + -1.0928048e-01 + 5.5724204e-02 + 4.3648257e-01 + 9.8894493e-02 + -3.2123579e-02 + -6.1689454e-02 + -8.6492620e-02 + 5.2221061e-01 + 1.3358437e-01 + -5.7961334e-02 + 8.0226497e-02 + 1.0955384e-01 + 2.3989376e-02 + 1.0339388e-01 + -4.9622989e-03 + 4.1826717e-01 + -1.9351814e-02 + -1.7938789e-01 + -3.8306831e-01 + -5.7462737e-02 + -9.9912002e-02 + 1.4716280e-02 + -1.9530980e-02 + 6.2408501e-02 + -1.9152241e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_b1_G_3.txt new file mode 100644 index 00000000..8274ed7b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_G_3.txt @@ -0,0 +1,33 @@ + 1.5878765e-01 + 1.3183160e-01 + -2.9684160e-01 + 3.1334170e-01 + 4.0274961e-02 + -3.6538881e-01 + -9.0349716e-01 + -2.3653572e-01 + 3.2320010e-02 + 5.2016767e-01 + -8.1291146e-02 + 9.8389541e-02 + -2.4020479e-01 + -2.9189012e-01 + -5.0888618e-01 + 1.0415234e-01 + -2.5732036e-01 + 1.3085298e-01 + -6.2570190e-02 + 2.0270626e-01 + 6.2987713e-02 + 8.9402688e-02 + -8.7793084e-01 + -1.8630497e-01 + 1.6494792e-01 + -1.1866383e-01 + 7.6905447e-02 + 1.5386397e-01 + 3.8761425e-02 + -1.0589684e-01 + 1.0920952e-01 + 5.4133620e-02 + 1.9351093e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_b1_G_4.txt new file mode 100644 index 00000000..b0da8693 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_G_4.txt @@ -0,0 +1,41 @@ + 1.6372577e-02 + 2.8312501e-01 + 1.1279996e-02 + 1.5991723e-01 + 2.2206417e-02 + 5.2030223e-02 + -5.3187292e-02 + -2.9582057e-02 + -1.8869915e-02 + 8.3608653e-01 + -1.6208217e-02 + -5.8862353e-02 + 1.0023722e-02 + -2.9586591e-02 + 1.3546018e-02 + -1.3083023e-02 + -5.8400449e-02 + -1.3164870e-01 + 1.2872518e-03 + 3.3363928e-03 + -7.1290311e-03 + 1.2048254e-02 + 1.2120666e-01 + 4.9087760e-02 + 1.4449375e-02 + -3.9932687e-01 + -1.6917601e-01 + -8.4891005e-02 + 1.5377512e-02 + -8.0723587e-02 + -3.6171403e-02 + -6.6257671e-02 + -9.4996279e-02 + -8.9429246e-02 + 1.3063476e-02 + -1.5696846e-02 + 4.4903419e-03 + 2.8973480e-02 + 4.1045990e-01 + -3.8476942e-01 + -1.0669263e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_b1_G_5.txt new file mode 100644 index 00000000..b0c602db --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b1_G_5.txt @@ -0,0 +1,47 @@ + -2.2900401e-02 + -1.0874992e-01 + -3.3965009e-02 + -1.6073649e-01 + 6.6891829e-02 + -9.6238381e-02 + -1.5317097e-01 + -3.0243348e-02 + 2.6514184e-01 + 5.0285556e-02 + 3.3138982e-02 + -1.3476440e-02 + 7.1139113e-02 + -8.1094856e-02 + -2.0899893e-01 + -7.7513125e-02 + 4.2710852e-02 + -2.4156512e-02 + -1.7054534e-01 + 2.4244035e-01 + 2.6107224e-02 + 1.2332568e-01 + -3.5308264e-03 + 3.6361039e-01 + -3.6526687e-02 + -8.8077466e-03 + -2.7219855e-01 + 1.0081975e-01 + -1.6932796e-01 + 7.8226591e-02 + 5.6897462e-02 + -5.6832865e-03 + -5.5471344e-02 + -2.3175800e-01 + -4.5743235e-02 + -1.9270933e-01 + -4.2227499e-02 + 1.0880823e-01 + -6.0668197e-02 + -1.1594046e-02 + 4.6002613e-02 + -9.6535563e-02 + -9.3419559e-03 + 3.8116499e-02 + 2.3994943e-01 + -6.8598555e-01 + 6.3040489e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_b2_F_1.txt new file mode 100644 index 00000000..bf2951af --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_F_1.txt @@ -0,0 +1,19 @@ + 4.9259092e-02 + -2.4327921e-03 + 2.0325536e-02 + -8.1280216e-02 + 1.4471631e-02 + 2.6862143e-01 + -1.0892233e-02 + -3.9430678e-01 + 4.7036705e-02 + -2.0366280e-02 + -3.3987175e-01 + -1.7614544e-02 + -9.1865003e-02 + 1.6711849e-01 + -3.6435521e-02 + 1.6954217e-02 + 3.3237628e-01 + -6.4071644e-02 + -2.6576249e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_b2_F_2.txt new file mode 100644 index 00000000..07e8ad6c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_F_2.txt @@ -0,0 +1,28 @@ + -6.6832745e-02 + -2.7784100e-02 + -1.5745497e-03 + 2.7518357e-02 + -2.2726237e-03 + 2.1210366e-02 + 9.2397641e-02 + -1.1689534e-02 + -2.7022901e-01 + 8.8901498e-04 + -1.3525751e-02 + -5.0131429e-02 + -6.9383263e-04 + -3.2081100e-03 + 1.8511658e-02 + 9.6514595e-02 + 4.7934930e-02 + 1.1013639e-02 + -9.8641028e-03 + 2.7869002e-02 + 1.3255500e-01 + 1.1152185e-01 + 6.4950784e-01 + -5.5191730e-04 + 4.6795475e-02 + -5.8138619e-02 + -4.0766066e-03 + 1.0109607e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_b2_F_3.txt new file mode 100644 index 00000000..59799eef --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_F_3.txt @@ -0,0 +1,15 @@ + -2.5303306e-01 + -1.2421096e-02 + 7.7401786e-02 + -1.5602011e-01 + -3.6056364e-02 + 2.3716316e-02 + 9.6145862e-02 + -4.2978789e-01 + 4.7821005e-01 + -1.3460697e-01 + -1.0464654e-01 + 3.1410486e-04 + 7.4057413e-02 + 1.9800591e-01 + 1.2987494e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_b2_F_4.txt new file mode 100644 index 00000000..63e20e27 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_F_4.txt @@ -0,0 +1,17 @@ + 7.8011665e-02 + -6.9295170e-02 + -4.4739704e-02 + 7.3025195e-02 + 2.8590906e-02 + 4.6173167e-02 + -6.6277509e-03 + -1.0710602e-01 + 3.1612716e-02 + -1.0119915e-02 + -2.9743730e-01 + -3.7413245e-02 + -1.9392963e-02 + -6.3944615e-01 + -2.7063256e-01 + 7.1066478e-02 + 4.5455100e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_b2_F_5.txt new file mode 100644 index 00000000..c826393a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_F_5.txt @@ -0,0 +1,20 @@ + -2.0919912e-01 + -1.4182629e-01 + -4.0513483e-01 + -3.5820904e-02 + -9.8340152e-02 + 1.3447358e-01 + 1.9915458e-02 + 1.1052113e-01 + 1.4995190e-01 + 1.9761743e-01 + 1.2229595e-01 + -1.3416804e-02 + -6.5282491e-02 + -1.7616375e-01 + 2.9383651e-01 + 1.4833013e-02 + 1.6093689e-01 + -6.2797642e-02 + 1.7650210e-01 + -7.3474648e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_b2_G_1.txt new file mode 100644 index 00000000..4dd3d58f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_G_1.txt @@ -0,0 +1,21 @@ + -3.1948240e-01 + 4.2064660e-02 + 4.1232299e-01 + 2.0094627e-02 + -2.7252196e-02 + -8.4258078e-02 + 8.7030558e-02 + 6.5878828e-02 + 1.5910030e-02 + -9.3790707e-03 + 5.8662194e-02 + 2.3314757e-01 + 2.2090831e-01 + 1.8761199e-01 + -1.6602740e-01 + 1.3064018e-01 + -4.2352163e-01 + -1.0971446e-01 + -3.0887617e-02 + -6.6765721e-02 + 1.3289205e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_b2_G_2.txt new file mode 100644 index 00000000..63a2f21a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_G_2.txt @@ -0,0 +1,30 @@ + -8.6032159e-02 + 3.1963884e-03 + -2.9855231e-02 + 1.5820066e-03 + 9.1476960e-04 + -3.6267397e-01 + 8.0611036e-03 + 4.7515481e-02 + -6.0294978e-03 + 1.8590091e-02 + 5.6513818e-03 + -8.8241933e-03 + 2.7424793e-02 + 8.0972693e-03 + 6.3936041e-02 + -8.7484087e-03 + 1.1049287e-02 + -2.6484308e-04 + -8.1984114e-02 + -5.8496131e-02 + -1.6810258e-01 + 2.0230140e-02 + 2.0552239e-03 + 6.1588857e-04 + 3.3328017e-01 + 3.9109982e-01 + -1.3313130e-02 + -9.9256490e-03 + 1.0818405e-02 + 7.1489357e-03 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_b2_G_3.txt new file mode 100644 index 00000000..18d961d6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_G_3.txt @@ -0,0 +1,23 @@ + -2.0629148e-01 + -7.6002287e-02 + -1.2362268e-02 + -3.7286923e-02 + 5.9776868e-02 + -3.1573922e-03 + 3.8271444e-02 + 3.1825060e-02 + 3.6356103e-01 + -1.8210857e-02 + -1.8475773e-01 + -3.3794265e-01 + 1.4329165e-01 + 1.0480828e-02 + 2.9687522e-02 + -3.9623276e-02 + 5.8449435e-02 + -1.7274007e-01 + -1.0311039e-01 + 1.1559606e-01 + 1.3408368e-02 + 2.2599091e-02 + 3.6459976e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_b2_G_4.txt new file mode 100644 index 00000000..d7500a10 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_G_4.txt @@ -0,0 +1,17 @@ + 1.0523117e-01 + 9.3614315e-02 + -3.3643315e-01 + -7.2717740e-03 + -1.4274783e-01 + -2.7634565e-02 + 3.0039705e-02 + -1.3730252e-01 + -1.9759354e-01 + 9.0594950e-02 + -8.0850879e-02 + 1.9581995e-01 + -1.1868983e-03 + 1.5951567e-01 + -5.3517533e-02 + -1.4894548e-01 + 4.7242205e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_b2_G_5.txt new file mode 100644 index 00000000..2c437a9e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b2_G_5.txt @@ -0,0 +1,18 @@ + 5.0107149e-01 + -1.1278976e-02 + 2.5993789e-01 + 1.6918757e-01 + 6.7379031e-02 + -2.1002099e-01 + -3.2452085e-02 + 4.0121686e-01 + -1.5395853e-02 + -2.7410615e-02 + -4.2017822e-02 + 4.3018989e-04 + 6.8940029e-01 + -1.5857944e-02 + -2.3204403e-02 + 1.1100917e-02 + 2.8897007e-02 + -2.5427059e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_CT_b3_F_1.txt new file mode 100644 index 00000000..33c6a42f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_F_1.txt @@ -0,0 +1 @@ + -1.6592585e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_CT_b3_F_2.txt new file mode 100644 index 00000000..26e2e495 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_F_2.txt @@ -0,0 +1 @@ + -2.4702217e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_CT_b3_F_3.txt new file mode 100644 index 00000000..2209821f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_F_3.txt @@ -0,0 +1 @@ + 1.4299663e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_CT_b3_F_4.txt new file mode 100644 index 00000000..b1499919 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_F_4.txt @@ -0,0 +1 @@ + -7.8209367e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_CT_b3_F_5.txt new file mode 100644 index 00000000..e7d6c052 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_F_5.txt @@ -0,0 +1 @@ + -3.3829762e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_CT_b3_G_1.txt new file mode 100644 index 00000000..5ea358f9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_G_1.txt @@ -0,0 +1 @@ + 3.4899434e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_CT_b3_G_2.txt new file mode 100644 index 00000000..ece284ff --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_G_2.txt @@ -0,0 +1 @@ + -3.9300604e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_CT_b3_G_3.txt new file mode 100644 index 00000000..d09bfe69 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_G_3.txt @@ -0,0 +1 @@ + -2.0172365e-02 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_CT_b3_G_4.txt new file mode 100644 index 00000000..eca2f050 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_G_4.txt @@ -0,0 +1 @@ + -1.3445857e-01 diff --git a/argopy/static/assets/canyon-med/poids_CT_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_CT_b3_G_5.txt new file mode 100644 index 00000000..df163ad5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_CT_b3_G_5.txt @@ -0,0 +1 @@ + -6.2650573e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_IW_F_1.txt new file mode 100644 index 00000000..872a9b50 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_F_1.txt @@ -0,0 +1,25 @@ + -7.9404179e-02 6.5076831e-02 1.0611528e-01 1.5222806e-01 4.3369582e-02 1.6578764e-01 2.5086911e-01 + 2.1194716e-01 1.7577783e-01 9.0773792e-02 -2.8063950e-01 9.4603454e-02 -2.4827019e-01 -1.0314766e-02 + 4.0821775e-01 -6.9761411e-01 -4.6801787e-01 2.5532584e-01 4.1128751e-02 4.5528027e-01 -4.0120851e-01 + 1.8981683e-01 3.5957740e-01 -1.8120767e-01 3.0909291e-01 4.6423466e-01 2.0568254e-01 3.7284117e-02 + -1.4055458e-01 2.0235650e-01 -1.3114403e-01 -3.1889998e-01 8.9539228e-02 2.2387187e-01 -1.0543136e-01 + -2.8280400e-02 1.1903476e-01 -1.3059323e-01 8.1259308e-02 1.5642431e-01 2.5118119e-01 -2.2308884e-01 + -1.0064860e-01 1.4888660e-01 2.0026441e-01 -4.0770024e-01 3.0283012e-01 2.7138266e-01 5.4574568e-02 + -9.8479625e-02 1.8867571e-01 9.0261836e-01 -6.7030899e-01 -4.6417949e-02 -2.9379995e-01 5.4067710e-02 + -8.2106245e-02 2.2888649e-02 -1.9360783e-01 -1.3827280e-01 9.9862459e-02 -1.7006196e-01 -2.8605704e-02 + 4.4456666e-02 -1.6511305e-01 1.3704332e-01 9.9197000e-02 -1.5720676e-01 -1.0173441e-01 3.8483345e-02 + -7.3270482e-01 -7.9563690e-01 -3.3359690e-01 6.7231082e-01 -2.2328902e+00 2.7620618e-01 -2.3347962e-01 + 5.2905091e-02 1.1878743e-01 -1.1850291e-01 -1.9367567e-01 2.3755706e-01 3.3744742e-02 -8.6635748e-02 + -1.3600163e+00 8.9527028e-01 -1.0862516e-01 5.8278923e-01 -1.2149176e-01 2.2577687e-02 -1.2374686e-01 + 7.1068799e-02 6.5825462e-01 7.6258405e-02 5.3687353e-01 5.2084600e-01 -1.0987180e+00 2.6559153e-01 + -2.8497533e-01 -2.9301165e-01 1.7450359e-01 3.7882172e-01 -5.0116249e-02 1.7476414e-02 -1.6618637e-01 + -1.4528591e-01 -8.6936179e-02 -3.4666518e-02 4.6968453e-02 6.5324378e-02 1.8074603e-01 -2.6329927e-01 + 1.1633877e-01 -1.1504056e-01 8.3024040e-02 1.5292401e-01 -1.2535101e-01 -1.7231406e-01 1.8856290e-01 + 4.4683456e-01 3.9944117e-01 -1.4067721e-01 4.4450992e-01 6.5791642e-02 3.4805595e-01 -4.8267689e-02 + 6.3839864e-01 -1.9384976e-01 1.8510259e-01 1.5179470e-01 1.0574997e-01 -4.2227325e-01 2.2642408e-01 + 3.8389618e-02 3.3196731e-02 1.1711359e-01 -1.9237281e-02 3.3279842e-02 1.0951635e-01 1.0072074e-01 + -3.8797931e-02 3.1464333e-02 -1.0195018e-01 -3.9717278e-01 -3.6444009e-01 -1.8069419e-01 -6.2190644e-02 + 2.0597381e-01 1.4590175e-01 5.6255485e-01 6.4514591e-01 3.8703821e-02 3.1481364e-01 -6.1282197e-01 + 7.9460553e-02 -4.5730875e-01 -7.6589353e-02 -9.1640186e-01 9.7156868e-02 -1.0159943e-01 6.1840329e-01 + 1.1104391e-01 -1.3285550e-01 4.8166807e-02 -3.0550747e-02 -2.6665847e-01 -1.0797180e-01 8.4464091e-03 + -1.7995132e-01 -1.1516086e-01 1.8014859e-01 1.9741689e-01 -2.4299483e-01 -2.9973597e-02 1.4719735e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_IW_F_2.txt new file mode 100644 index 00000000..d8b814b0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_F_2.txt @@ -0,0 +1,31 @@ + 1.6590786e-01 -5.1433754e-02 4.4682998e-02 1.6155075e-02 1.6713788e-02 5.0401833e-02 8.7094728e-02 + -4.2442639e-01 8.5889640e-02 6.9090688e-02 6.6253644e-02 4.8164760e-02 1.7015783e-01 -8.4919100e-02 + -7.8888709e-02 -3.7411792e-01 3.3648249e-01 -4.6725067e-01 -4.1149788e-02 4.7172051e-03 4.4378094e-02 + 1.0525644e+00 -9.0272908e-01 -2.3544097e-01 -7.7176720e-01 -1.1718355e-02 -5.3081043e-01 7.5692501e-01 + -1.2644610e-01 -4.0353700e-01 2.7255028e-01 3.6847005e-01 1.9866724e-01 -1.6176180e-01 -2.1185273e-02 + 5.2869886e-01 -3.9000050e-02 2.8463651e-02 1.7555617e-01 1.6412421e-01 -1.7768149e+00 6.8797344e-01 + -1.8027956e-01 -7.8695989e-03 7.1968829e-02 -1.2114500e-01 2.0054925e-01 -2.7025232e-02 4.7640201e-02 + -1.3388373e-01 -1.6392619e-01 -2.2791018e-02 -5.6228702e-03 -3.8353183e-01 -6.5345736e-02 2.0523115e-01 + -5.0058662e-02 -1.3430847e-03 -2.1380969e-01 -1.3799383e-01 -1.8655459e-01 -1.6357334e-01 9.0638804e-02 + 8.2233710e-02 2.8477001e-02 7.0924052e-02 3.9334308e-02 -1.1737113e-02 -2.5388769e-01 -2.2892454e-02 + 2.3116782e-01 1.9788705e-01 -2.1108286e-01 -6.7513389e-01 -1.8614482e-01 -6.7112978e-01 -2.6922556e-01 + 8.6713231e-01 3.2861933e-01 1.3725664e-01 -1.9922318e+00 1.2898022e+00 -5.5682846e-01 5.2399220e-01 + -1.2407396e-01 2.0463299e-01 7.8274770e-02 -1.1445252e-01 2.1807131e-01 1.3276983e-02 1.1245339e-01 + 1.0211866e-01 3.8361925e-02 -5.2095821e-01 1.8362420e-01 1.1400114e-01 -4.3342045e-01 4.3296020e-01 + 1.2528909e-04 2.1493603e-01 -1.8237405e-01 -5.4287604e-01 5.4352127e-01 2.2504045e-01 2.9672528e-03 + 8.9335782e-02 1.7226431e-01 -5.1576379e-02 -6.2692829e-02 8.3513054e-03 -1.4160072e-01 1.0201575e-01 + 1.3549115e-01 -1.6812275e-01 -2.2387503e+00 -2.6125548e-01 -3.3612155e-01 2.5359947e-01 3.9264468e-02 + -1.0770495e-01 1.2430457e-01 -6.1589762e-02 3.9712770e-03 -5.1534391e-02 -1.9466546e-02 3.7344114e-02 + -7.8424745e-01 -4.0647346e-01 9.7070042e-02 7.7765493e-01 -1.4048852e+00 5.4496353e-01 -1.9899268e-01 + -3.0466110e-01 -1.2527009e-01 4.0106614e-01 -2.7857007e-01 -1.0526265e-01 -5.0161663e-02 4.1456929e-01 + -4.8168088e-04 1.1957228e-01 4.7273478e-01 4.1276311e-01 2.9185259e-01 -6.4890147e-02 -2.5681537e-01 + -1.7440571e-01 6.4406786e-01 -1.3668703e-01 1.3921933e+00 1.5218890e+00 4.8247810e-01 2.9945763e-01 + 2.3952485e-01 -1.0332422e-01 -1.3149371e-01 4.8714481e-02 -1.7752962e-02 -1.4097734e-01 -2.3081181e-01 + 3.0531773e-01 -2.0315917e-01 -5.9134627e-01 -4.3894677e-01 3.1348675e-02 -1.5026241e-01 7.9960471e-02 + -8.5156134e-02 9.5178793e-02 3.4482314e-01 2.8176840e-01 8.2317520e-02 -4.1500967e-02 8.4722157e-02 + -2.3085132e-01 6.2118105e-01 3.9027550e-01 7.5996591e-01 1.4240236e+00 -5.4344280e-01 5.7532900e-01 + -3.1587061e-01 -1.4187674e-01 -4.9502855e-01 5.6996152e-02 -3.9730483e-01 -2.6224630e-01 -1.6983832e-02 + 5.8542558e-01 4.8438138e-01 4.9774636e-01 6.6206770e-01 -3.0429463e-01 3.1829628e-01 -3.0917058e-03 + 2.9569888e-01 1.7818072e-01 -1.2368531e-01 1.7776930e-01 -4.9784061e-02 1.8832053e-01 2.3245897e-02 + -1.3638134e-01 -1.3810671e-01 2.4331667e-02 1.7402861e-01 1.2417293e-01 2.7443165e-02 2.5320252e-02 + -5.6495689e-01 -2.0692563e-01 -2.9820490e-02 -6.2081427e-01 2.5083215e-01 -3.2856461e-01 -9.5957061e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_IW_F_3.txt new file mode 100644 index 00000000..314c8c73 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_F_3.txt @@ -0,0 +1,33 @@ + -4.0019086e-01 -4.4491477e-01 -1.9572653e-01 1.5624580e+00 -1.2084667e+00 -8.4594237e-01 5.9800828e-01 + 1.1683749e-01 -1.8403945e-01 -2.2523871e-01 -5.8120780e-04 3.0199705e-01 -1.7206608e-01 -7.9179262e-02 + -1.4224076e-01 3.9685440e-01 4.7650680e-01 -3.9844867e-01 -2.2171240e-01 2.8611150e-01 2.8632216e-01 + 1.9879127e-02 3.6315992e-01 4.7733763e-02 3.1486971e-01 1.6182592e-01 -3.0429382e-01 -2.9211693e-01 + -6.9490143e-02 6.3033307e-02 1.5114763e-01 9.6592888e-02 -1.8093178e-01 3.9466975e-01 5.7731996e-02 + -2.6660001e-01 3.2343899e-01 -4.5386248e-02 -3.1210859e-01 -1.7528119e-01 4.5236052e-01 1.3841812e-01 + -4.9168987e-01 -2.1475779e-01 -1.6399454e-01 3.6266395e-01 -9.3969530e-01 1.1911202e-01 -4.6170324e-01 + -8.5888693e-02 -1.4490984e-01 2.0997209e-01 1.0555891e-01 4.4369707e-02 4.3969579e-01 -4.3433619e-01 + -4.7075466e-01 -3.0436212e-01 -3.3793435e-01 -8.7227189e-01 3.7675117e-01 -4.0172991e-01 1.0042219e+00 + -3.9143723e-01 2.0720410e-01 3.3689805e-01 -1.2558149e-01 1.4113906e-01 -4.4758280e-01 -1.7617521e-01 + -7.9407048e-02 -2.3540302e-01 4.5297187e-02 -1.0162794e-01 8.9327510e-02 -4.2708345e-01 -1.4226738e-01 + -8.4452395e-01 5.4629044e-01 -1.3021786e-01 1.7001739e-01 -1.3646741e-01 3.3677298e-01 -3.3049845e-01 + -2.3102989e-01 8.0933141e-02 1.6214027e+00 -3.5320643e-01 1.6350327e-01 -1.9815728e-01 -3.6048243e-01 + -4.7783122e-01 1.1286450e-01 1.4251764e-01 8.4625876e-02 -4.2406138e-01 5.2783680e-02 1.1458244e-01 + -3.4613418e-02 4.1860798e-01 -8.1067256e-01 -5.6564523e-01 1.0207579e+00 2.4047292e-01 3.6758715e-01 + 2.7121923e-01 4.2619777e-01 2.2334792e-02 -1.2607522e+00 1.1055246e+00 -1.4493173e-01 3.8421280e-01 + -6.5287323e-01 -7.0560739e-01 -2.1134797e-01 3.5214230e-01 -1.3076798e-01 1.6163257e-01 2.4673257e-01 + -5.9028129e-01 -9.3085961e-02 -1.4606249e-02 1.6750463e+00 -1.2522763e+00 7.9119884e-02 -6.0993248e-01 + -7.7439380e-02 3.2232142e-01 4.9186741e-01 -2.9956663e-01 2.4072966e-01 -7.5305886e-02 6.4849321e-02 + 7.7544578e-01 -6.4373686e-01 1.7350356e-01 7.4600328e-01 -1.5072435e-01 2.1019889e-01 -1.6449910e-02 + 2.6617141e-02 -1.9883427e-02 -2.9303546e-01 5.4526478e-02 -1.7134822e-02 -2.1268452e-01 -1.5113142e-02 + 5.4308529e-01 3.9289744e-01 1.3705921e-01 4.6451458e-01 4.0818184e-01 6.4247176e-02 -8.4251568e-01 + -2.9723598e-01 -4.9904649e-01 -4.0132647e-01 -1.9016366e-01 1.1741015e-01 -5.1502634e-01 2.3510989e-01 + -1.4457085e-01 -1.1322016e-01 -1.3208654e-01 2.7447204e-01 -3.3860359e-01 2.8529885e-02 2.7709011e-01 + -1.8424643e-01 5.3005484e-01 -2.4336166e-01 -6.7895629e-01 6.8265510e-01 -2.0724531e-02 2.6871351e-01 + 2.0033528e-01 -6.4499354e-02 -3.6014118e-01 6.1023507e-01 -2.0277843e-01 -1.8097649e-01 -8.2617711e-02 + 2.6212157e-01 1.4192227e-01 -8.7041544e-02 -1.2261223e-01 -1.9410880e-01 1.3389532e-01 -9.8918172e-02 + -1.8787236e-01 3.0060748e-01 4.9824597e-01 -2.3913201e-01 9.8206889e-02 5.6599495e-01 -5.8635119e-01 + -5.5122983e-01 -1.0826143e-01 2.5059034e-01 -7.0439724e-01 -2.2620031e-01 2.2177832e-01 3.5799052e-01 + 1.1548982e-01 -2.3980040e-01 1.6514454e-01 2.4417882e-01 1.3680384e-01 -4.3765341e-01 -2.7663563e-01 + 2.2144442e-01 -4.6800720e-01 -2.9757441e-02 1.7152313e-01 -1.7117393e-01 1.8695940e-01 -1.6745557e-03 + 1.3505095e-01 -7.0919986e-01 -4.3153581e-01 -1.5715069e+00 -9.5760447e-01 5.8651843e-01 -6.7161099e-01 + -1.5877280e-01 -3.9223375e-01 -6.2143636e-01 1.2161893e-01 1.2356806e-01 -5.9817749e-01 1.5285912e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_IW_F_4.txt new file mode 100644 index 00000000..4a82bb61 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_F_4.txt @@ -0,0 +1,36 @@ + -6.6790433e-02 1.9142960e-01 4.9105302e-02 -9.5810636e-01 6.4093027e-01 -3.3246942e-01 4.2806999e-01 + 5.9074782e-03 -1.9490756e+00 -1.6725231e-01 6.1163998e-01 -1.5439777e+00 -1.0961050e+00 -3.7074428e-03 + 7.2548656e-02 3.4708996e-01 -5.5315173e-02 7.8090917e-02 -2.1785818e-01 -4.7275780e-02 -2.4316691e-02 + 2.0440050e-01 1.6087536e-02 -5.5509225e-02 -1.6586015e-01 -9.2922197e-02 1.4846925e-01 8.3049265e-02 + -2.5584594e-01 -1.9952020e-01 2.2346115e-02 -2.4772757e-01 1.6548259e-01 -1.9482053e-01 -2.7025758e-02 + -1.2523528e-01 -3.1686114e-01 -8.0792461e-03 -1.0087145e-01 -2.8253280e-02 -2.0211563e-02 8.3379562e-02 + -1.2376082e-01 -3.4450428e-02 -5.4500225e-01 -9.1350979e-02 -5.2431677e-01 2.5034284e-01 -6.6941655e-02 + -1.8864836e-01 -7.9122336e-01 7.6608284e-01 -6.7411982e-01 -1.4358983e+00 9.6663051e-01 -3.6603809e-01 + 3.0569150e-02 2.0771312e-01 7.8547730e-02 5.1806184e-01 -1.4507331e-02 -1.6042994e-01 -4.4258166e-02 + 1.4502226e-01 -4.4495637e-02 5.8953957e-02 1.4463267e-02 2.5164373e-01 5.3566065e-02 2.8278484e-01 + 2.6721900e-01 -1.2220980e-02 -1.1158658e-01 -4.0914026e-01 4.1517457e-01 2.1648643e-01 2.5890718e-01 + 1.1817415e-01 1.0035116e-01 -3.7871311e-02 2.0058173e-03 1.8498765e-01 1.4270273e-01 8.0930708e-02 + -2.8012697e-01 3.6447885e-01 -1.4816567e+00 -1.3080665e+00 -7.1374032e-01 -8.6253496e-01 1.3823279e+00 + -9.1970479e-02 1.4177867e-01 -6.4388034e-01 -3.2533979e-01 -1.6831422e-01 2.4110801e-01 3.4421668e-02 + -3.6733400e-01 -3.1655035e-01 -2.5202368e-01 1.5830008e-01 -4.7592755e-01 -7.6669083e-01 -9.4880421e-02 + -2.6516750e-01 1.4597647e-01 1.8766382e-01 4.5633812e-01 -6.1040734e-01 5.0159419e-01 1.6243477e-01 + -3.4912443e-02 -5.0981993e-02 -1.0724463e-01 -3.8693523e-01 4.9992180e-02 -2.5275462e-02 8.8659764e-02 + 7.5943377e-02 3.1092297e-01 4.2097775e-04 6.0277011e-02 -2.1267104e-01 -8.0954417e-02 1.1981249e-01 + 1.1562117e-01 2.6168943e-01 6.1166984e-01 -7.2182307e-01 3.4446595e-01 -3.9845458e-01 2.2337156e-01 + -2.4704595e-02 -1.8835659e-01 1.9937875e-02 7.3526330e-02 -1.9272931e-02 -2.5302610e-01 -9.3531608e-02 + -1.4855509e-01 1.2095855e-02 -5.9002149e-01 -1.1530029e+00 4.8535380e-02 -3.7777124e-01 2.5682953e-01 + -1.2502055e-01 -1.8428923e-02 -7.3971743e-02 -1.6743368e-01 -1.0718300e-01 2.3148844e-02 -5.3391271e-02 + 9.4497404e-01 -7.7952522e-01 3.5602189e-01 -3.0693692e-01 -6.6630269e-01 -5.5280564e-01 3.9598225e-01 + 5.3136261e-01 -5.2339038e-01 2.7272557e-01 3.7694453e-02 9.9147237e-02 -3.8251993e-01 -1.6878770e-01 + -7.8858553e-02 -7.0640154e-02 -6.7230876e-01 -2.7101009e-01 4.5564686e-01 -2.1884301e-01 -5.1407984e-02 + -1.6036970e-01 -1.0851679e-01 -7.1551264e-02 -3.6098075e-01 6.9698851e-02 1.0137298e-01 -6.4865978e-02 + 1.2847708e-02 2.7461332e-01 -1.9459639e-01 9.2350922e-03 -9.7913187e-03 7.7872308e-02 1.1619986e-02 + -1.9680611e-01 -2.3382450e-01 2.1398055e-01 9.5686861e-02 1.0276934e-01 -2.0962871e-01 4.1236374e-03 + -6.6366537e-01 1.9766244e-01 -6.7501345e-01 -1.9275166e+00 -3.8825571e-01 -2.0945284e-01 5.6164947e-02 + -2.7538201e-01 6.4115098e-02 2.1716721e-01 4.0423462e-01 -7.0285292e-02 1.8244317e-01 -1.7801005e-01 + 4.5880177e-02 -9.9347540e-02 2.7047270e-01 1.1132262e-01 1.7528103e-01 -1.7893633e-01 1.4120425e-01 + 1.5906322e-01 1.4640537e-01 -4.5414572e-02 3.2013292e-01 -6.0630491e-02 2.1617334e-01 -7.3217632e-02 + -9.1302524e-02 -3.5327398e-01 1.2443858e-01 5.2171418e-02 1.5636902e-01 -1.3649745e-01 -2.3706164e-03 + 5.9751892e-02 -1.4002104e-01 9.2464789e-02 -9.5254293e-02 2.9413112e-01 -4.0578750e-01 -3.9086509e-02 + -4.0383833e-01 5.7716247e-02 -2.5302500e-02 3.4853995e-01 -2.4995241e-01 -3.1875898e-01 1.0562639e-01 + -1.3428621e-01 -6.5020146e-02 1.0438354e-01 -2.1922796e-02 1.8859893e-02 2.5569604e-02 4.8372138e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_IW_F_5.txt new file mode 100644 index 00000000..dd918448 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_F_5.txt @@ -0,0 +1,39 @@ + 1.3423482e-01 3.7780360e-01 1.3742528e-02 3.4206842e-01 8.9697608e-02 -1.1169466e-01 -3.2155342e-01 + -1.7372385e-03 -2.8374195e-02 4.4085375e-01 3.3401107e-01 9.6405747e-02 3.5356276e-03 1.1521169e-01 + 3.2231420e-01 -5.2964717e-01 -2.4000301e-01 1.1759355e+00 -6.2133971e-01 5.2741455e-01 1.0174533e-02 + 1.6656294e-01 7.1823872e-01 2.1222692e-01 -1.5115143e+00 4.1378409e-01 -8.7348447e-01 4.4368285e-01 + -5.7756249e-02 -3.3512330e-03 2.8747988e-02 1.9438691e-01 3.6669940e-02 3.3701628e-01 -7.4348747e-02 + -1.2786650e-01 1.2534474e-01 -8.0242813e-02 7.2563653e-02 -1.9485873e-01 3.3428033e-02 1.3392676e-01 + 3.3958324e-01 2.3540774e-01 2.1202677e-01 3.6769302e-01 -1.0684322e-01 3.0241979e-01 -4.4539750e-01 + -5.5949731e-02 1.9645814e-02 -3.4451256e-01 -2.1099495e-01 1.4644398e-02 -9.5111120e-04 -2.7614426e-01 + -3.7014276e-01 -3.6461608e-01 -3.8368208e-01 -7.4193213e-01 -7.2563666e-02 -3.6757698e-01 -2.5456737e-02 + -2.9929876e-02 2.6420274e-01 -1.3991570e-01 1.6761118e-01 -3.5306821e-01 2.4128147e-01 -9.8738290e-02 + -5.4483511e-01 6.1545461e-01 4.3703308e-01 7.9680315e-01 -4.9880931e-01 -9.9603306e-02 -6.3266595e-02 + 2.3813495e-01 -2.4845961e-01 -3.9066251e-02 4.3348641e-01 -3.1482900e-01 -1.1346459e-01 -1.9164183e-02 + -6.8196045e-03 -2.1022779e-01 -7.4663592e-02 -9.2951269e-01 -7.9519294e-01 -4.6676733e-01 -3.4907105e-02 + 3.7338643e-02 3.9471008e-01 4.7331797e-01 7.2709266e-02 -5.4913555e-02 3.8214905e-01 -2.8653388e-01 + 1.7136245e-01 -1.9477732e-01 -4.5705879e-01 1.0826837e+00 -8.1494025e-01 5.5496132e-01 -5.8564386e-01 + -1.7021519e-01 -5.5376716e-01 -2.4037073e-01 -3.9977532e-02 3.1024683e-01 3.2022886e-01 -2.9758683e-01 + 4.3946692e-01 -4.3147272e-02 8.5016086e-02 -3.8176083e-01 -3.4865645e-01 6.8444936e-01 -5.6657530e-02 + 1.7357935e-01 -1.3733216e+00 1.7661184e-01 -1.4389025e-01 -8.7869023e-01 5.0532019e-01 -4.9796174e-01 + 1.0948146e+00 -3.3600924e-01 7.1885794e-02 -1.0413524e-01 -8.0020242e-01 -4.0815404e-01 2.4546837e-01 + -1.4672014e-01 3.9900053e-01 9.5504846e-02 6.8410979e-02 -1.0347448e-01 -1.7770310e-01 4.1791811e-02 + 6.0277464e-01 9.5768666e-01 -3.5282586e-01 8.6387865e-01 -1.4747398e-01 8.6895935e-01 1.8256253e-02 + -3.1535699e-01 -6.5543775e-01 -1.5653534e-01 1.2769709e+00 -1.3190655e+00 6.9281647e-01 -5.8011399e-01 + 1.7166587e-01 2.5480441e-01 -4.1371255e-01 -3.6445874e-01 -7.3003858e-02 9.9751488e-02 6.4715990e-03 + 5.2208298e-03 6.5966398e-02 9.3650613e-02 4.0974655e-02 1.0833221e-01 -3.0751346e-01 -7.2214023e-02 + -6.6834317e-02 4.9858771e-01 2.6361685e-01 -6.2059962e-01 3.5134262e-01 1.1010286e-01 4.0652474e-02 + 3.8412950e-01 -1.6931229e-01 -1.0325823e-01 -1.7630998e-01 -1.2883824e-01 -3.1109697e-01 3.1262322e-01 + 8.8188998e-02 2.0043721e-01 -2.2891056e-02 7.6161802e-03 5.6496632e-03 -2.6495315e-01 1.4105146e-01 + -5.5587262e-01 -4.9837925e-01 6.4862322e-01 7.6109144e-03 -8.5116934e-01 5.2302247e-01 3.9311873e-01 + -1.0277850e-01 3.7587895e-02 -2.4204058e-01 1.6429935e-01 4.1451162e-01 -1.2944725e-01 -4.7298239e-02 + 1.6822765e-01 4.0720048e-01 -5.3893019e-02 1.7508315e-02 -3.2867713e-02 2.0327413e-01 -1.1572994e-01 + 1.5508804e-01 5.8139118e-02 1.1054200e-01 4.5097294e-01 -3.5533337e-01 -8.0917498e-02 -1.6478727e-01 + -3.2363125e-02 1.5509521e-01 5.3719356e-01 3.6560562e-01 -1.7470158e-01 2.0629584e-01 -1.8220902e-01 + -1.1986116e-01 -1.0437702e-01 -3.7212621e-01 3.5290327e-02 6.1411713e-02 -2.2308620e-01 7.0050613e-02 + -3.8792705e-01 2.2988527e-02 1.9010750e-01 7.7053305e-01 2.9084452e-01 -6.8362234e-01 3.4629346e-01 + -1.9709507e-01 -1.0218169e-01 -1.5531043e-01 1.1464413e-01 2.1149515e-02 1.8449338e-01 2.0901500e-02 + 7.8319793e-02 -2.8710235e-01 8.1918316e-02 2.2558478e-01 6.6441487e-02 5.5526875e-02 -8.3617419e-02 + 2.2813440e-01 1.3925535e-01 -2.2296556e-01 -2.1593277e-01 4.6481035e-01 -7.0481206e-01 -9.1598352e-02 + 7.7836147e-02 -9.1761776e-02 3.5722671e-01 -3.9989616e-01 2.9458615e-02 1.6583859e-01 -6.7404586e-02 + 9.9987126e-02 -1.7809155e-01 6.9042644e-01 -3.8620868e-01 -3.1161426e-01 1.6869348e-01 -1.7707470e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_IW_G_1.txt new file mode 100644 index 00000000..93b2d1da --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_G_1.txt @@ -0,0 +1,27 @@ + 1.7515839e-01 -2.6753307e-01 -1.0990725e-01 -2.6033896e-01 -8.1942676e-02 8.4748023e-02 -4.0732765e-02 + 5.3959837e-01 -7.3768871e-01 -2.9835719e-01 -2.2094449e-01 1.8960023e-01 4.9233254e-01 3.9757801e-01 + 3.1926322e-01 1.0481682e-01 8.3329781e-02 5.6414904e-01 7.6740082e-02 2.2662421e-01 1.5322947e-01 + -5.5634659e-02 -1.3550796e-02 2.7588293e-01 2.3342959e-01 -1.9094532e-01 -1.1225323e-01 -3.2942548e-02 + -1.0337502e+00 -7.2841172e-01 -1.5889926e-01 1.2579289e+00 -1.9416693e+00 4.3849107e-01 -4.8135428e-01 + 2.2365100e-01 2.0323311e-02 -3.4364909e-01 2.6072682e-01 1.2516579e-01 -1.6989085e-01 2.8295545e-01 + 3.1006453e-01 -1.0356300e-01 3.9916583e-01 -1.4480244e-01 4.0825946e-01 -9.7884073e-02 3.9185804e-02 + -4.2444858e-01 -7.0824252e-01 3.7450913e-01 -5.7272364e-01 1.4127330e-01 -4.1017984e-01 -1.6087740e-01 + 1.1656386e-01 1.7285765e-01 -1.0809263e-01 3.1249241e-01 -1.0790428e-02 1.1758450e-01 -1.7625206e-01 + -3.3210370e-01 -1.5731921e-01 1.2727642e-01 -4.6306965e-01 -7.5489191e-02 -1.4143176e-01 7.1659512e-02 + 1.8456798e-02 -1.8541888e-02 -2.2711564e-01 -1.8458566e-01 5.0989883e-02 -4.0391392e-02 2.2010074e-02 + 2.4416336e-01 1.3908417e-01 4.9221693e-01 -2.4445261e-02 1.5838921e-01 -2.2692213e-01 4.7004618e-01 + -8.7400232e-02 -3.0027104e-02 2.4810377e-01 -3.2705022e-03 2.0939828e-02 2.4639695e-01 -2.7807876e-01 + 1.3607752e-01 3.9270357e-02 4.5647615e-01 -1.5100253e-02 1.8814810e-01 1.9026991e-01 -4.9323548e-01 + 1.6509378e-02 5.2178732e-01 1.8415554e-01 -2.8907395e-01 2.7794778e-01 2.4092331e-01 -1.4414863e-01 + -4.0887787e-01 3.9903361e-02 -1.9718106e-01 3.1077867e-01 -3.0026179e-01 2.9449001e-01 -1.7630074e-01 + 2.3436338e-01 5.4865137e-02 -4.0483814e-01 3.5633638e-01 -3.0975013e-02 -4.1687067e-01 1.6133073e-01 + -1.0089545e-02 -1.0614167e-01 6.6093811e-02 -1.4438155e-01 8.3093723e-02 -2.3165643e-03 -2.6679943e-02 + -4.5839336e-02 -3.5332015e-02 2.8342825e-01 9.2168647e-02 -2.4283824e-01 -5.2765175e-02 -2.3439932e-01 + 6.9177361e-02 -3.1989629e-02 -1.5431324e-01 3.6517136e-02 -4.2072488e-03 -1.6770580e-01 1.7287653e-01 + 2.2100804e-01 2.2238777e-01 -1.4463563e-01 3.4997187e-01 -9.5505880e-03 -4.3158444e-01 -1.0850999e-01 + 1.4225097e-01 -2.5364299e-01 -3.0931984e-02 -3.8501536e-01 -1.8788425e-01 1.3109754e-01 -1.3777128e-01 + -7.2278829e-03 4.8349800e-01 2.8399780e-01 2.3718411e-01 -1.1618144e-01 -3.9441420e-02 -1.6349790e-01 + -2.2974249e-01 1.2533766e-01 1.8223805e-02 1.1509684e-01 5.7302567e-02 1.0141626e-01 -2.9089690e-02 + 1.4974647e-01 6.4171645e-02 8.5254197e-02 3.6004574e-01 1.0412070e-01 1.3547527e-01 -1.6036782e-01 + 1.1334937e-01 1.5778107e-01 -7.4955912e-02 -1.4931086e-01 2.9283550e-01 -1.5202081e-02 -5.5912510e-02 + -9.1616209e-02 3.8109106e-02 -2.0014137e-01 9.1274627e-02 -1.7255900e-01 -4.4518507e-02 -2.8708484e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_IW_G_2.txt new file mode 100644 index 00000000..ac1c9db7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_G_2.txt @@ -0,0 +1,28 @@ + 5.2217962e-01 -5.6199191e-01 4.6518255e-01 -4.2513663e-02 2.6547368e-02 -5.5389931e-02 6.4060686e-01 + -3.1066485e-01 5.5242461e-02 -4.0444887e-01 1.6089984e-01 -2.7392450e-01 -9.0693044e-02 -6.7830468e-03 + -6.0717423e-03 -1.2243285e-01 6.0930738e-02 2.7355325e-01 -3.8301541e-01 -2.4610318e-01 1.8903468e-02 + 2.2437422e-01 -3.0215832e-01 5.5893394e-02 -2.0689100e-01 2.4170234e-01 2.2844033e-02 -4.8435355e-02 + -7.0356367e-01 3.2758437e-01 3.3116106e-01 -2.1253303e-01 5.1721698e-01 8.1411649e-01 -4.6050288e-02 + -6.5081616e-03 3.7521797e-02 2.9731041e-01 2.1827276e-01 -2.3095365e-01 -3.1050174e-01 1.7562507e-01 + -9.5513255e-01 5.0475604e-01 -8.7068077e-01 -2.3003526e-01 6.5579358e-01 4.2547971e-04 -4.0930273e-02 + 4.4774397e-01 4.5642606e-02 -3.8086246e-01 -6.3319672e-02 1.0902989e-01 2.2312405e-01 2.8188064e-01 + 1.5807437e+00 -1.5190392e+00 -5.0989640e-01 -1.2780940e+00 -4.4376333e-01 7.3154191e-01 3.6450624e-01 + 1.4977517e-01 -1.9627938e-01 -9.5396130e-01 -3.4288117e-01 2.0093266e-01 -3.9726006e-01 2.8662675e-01 + 1.0203910e-01 1.4093030e-01 2.1837567e-02 9.9287061e-01 1.4188037e-01 -6.3946874e-01 -3.9344931e-01 + 7.7951440e-01 -3.1468578e-01 2.0905304e-01 9.4596177e-02 -3.6098880e-02 4.9134498e-01 -8.3660673e-01 + -8.6136865e-01 -2.7743583e-01 2.8407536e-01 5.5211919e-01 3.9654210e-01 6.1673183e-01 -4.5492691e-01 + -5.8159251e-02 -4.5862883e-01 -5.3784439e-02 2.3998471e-01 -1.6585428e-01 -1.4494178e-01 -5.0247425e-02 + 1.0963802e-01 2.9240737e-01 2.3064393e-01 2.9723520e-01 -4.3412033e-01 -2.4983121e-01 1.8197654e-02 + -4.8128647e-01 -2.3591034e-01 -4.1373919e-02 -9.0034327e-01 -2.5820341e-01 -1.9308105e-03 -4.3915110e-02 + -1.4172361e-01 1.0052471e-01 5.4570737e-01 1.3490096e+00 2.0350464e-01 -5.5415242e-01 -3.3063958e-01 + -4.4734683e-01 -2.6457419e-01 -2.9739169e-01 1.9835444e-01 -4.8013869e-01 -2.4592369e-01 2.3811428e-01 + -6.1503386e-01 -5.9502639e-01 2.7294262e-03 -1.1898503e+00 -1.3055289e-01 -6.6682078e-01 -1.6933761e-01 + -3.0299630e-01 -2.7052571e-02 -2.3124813e-01 1.9203897e-01 -1.6852329e-01 9.8965829e-02 1.1257901e-01 + -1.0996572e+00 -5.4177974e-01 -1.3917260e-03 1.6582240e+00 -1.8112756e+00 -1.5640110e-01 -8.3756700e-01 + 2.2821130e-01 1.3697009e-01 1.2696705e+00 -7.8254927e-01 -2.3119384e-01 -5.2029793e-01 -3.2380846e-01 + 1.4082398e-01 -1.9431936e-01 7.5635743e-01 9.5010256e-02 -8.0977522e-02 3.1675891e-01 2.1060562e-01 + 6.1458445e-01 8.0656488e-01 2.9580856e-01 -1.0482055e+00 1.9275973e+00 -3.0331401e-01 6.9770790e-02 + 1.4486700e-01 -4.6512624e-01 4.8127373e-01 -2.0497157e-01 1.5896355e-01 -6.0628168e-02 3.6662409e-01 + 6.8245290e-01 5.6006425e-01 2.2724133e-01 -2.7671924e-01 5.1076764e-01 8.7012996e-01 -5.9499663e-01 + -6.0109793e-01 -8.2019667e-01 2.6249924e-01 3.4573162e-01 -9.9711396e-03 -6.7844831e-01 8.2209642e-01 + 5.5010462e-01 2.1618695e-01 -1.9215058e-01 9.6309390e-02 1.5240196e-01 7.6840029e-01 2.0407428e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_IW_G_3.txt new file mode 100644 index 00000000..abb03d73 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_G_3.txt @@ -0,0 +1,29 @@ + 3.2019073e-01 4.9416519e-01 1.4314149e-01 -8.3613449e-02 2.6401524e-01 -8.3238635e-02 2.7656586e-01 + 5.3108682e-01 1.0441274e+00 2.6143093e-01 -1.6341721e+00 1.1242764e+00 -4.7507651e-01 1.7739246e-01 + -2.1479949e-01 -1.6518607e-01 -2.3526327e-01 -4.5922268e-01 -1.5138906e-02 -4.9931251e-01 -2.7306914e-01 + -2.0189009e-02 2.0026236e-01 2.5707797e-02 1.1583568e-01 3.2653015e-01 1.4960428e-01 -2.4278846e-01 + -1.8836822e-01 1.4377578e-01 1.5401408e-01 -3.0266092e-01 -4.4193996e-02 -8.0478280e-02 -1.3874585e-02 + -3.3948879e-01 2.0168709e-02 1.5670295e-01 -2.7246154e-01 -1.9685007e-01 -2.3749463e-01 -6.2165381e-02 + -2.8571451e-01 2.8393944e-01 -1.8135306e-02 -1.3065097e+00 3.4651264e-01 -1.3907813e-01 2.0443215e-01 + 9.3857404e-01 -1.2988138e+00 -5.5462769e-01 -1.7750218e+00 -6.4632350e-01 9.0371440e-01 7.5287791e-01 + -1.0019439e+00 -9.9596855e-01 -1.7396094e-01 4.3010385e-01 -9.3820270e-01 9.5805472e-01 -1.7588718e-01 + -2.6896291e-03 -7.0582053e-02 8.4543761e-02 -3.1039334e-02 -2.4629689e-01 -1.2988835e-01 7.7700966e-02 + 9.4362992e-01 -3.9230386e-01 7.3076054e-01 -1.0826613e+00 3.0794865e-02 -5.0015953e-01 -1.6553748e-01 + 1.2481250e-01 4.6164819e-02 1.8880576e-01 1.4583516e-01 7.0797266e-02 8.0640828e-02 6.8327734e-02 + -1.2688480e-01 -5.5171300e-01 -1.5505585e-01 -7.6790394e-01 -5.4607999e-01 6.9684311e-01 -3.5369051e-01 + -1.1560561e-01 1.4489898e-01 2.6569174e-01 7.3909720e-01 1.4637909e-01 9.6032503e-02 -1.5165877e-01 + 5.9638294e-02 -3.7954006e-02 3.6671327e-01 -3.1234144e-01 8.0627135e-02 1.0221580e-01 2.5344861e-01 + 1.4383954e-01 -2.2003503e-01 3.1981826e-01 1.2232326e-01 -1.2951603e-01 -2.9179294e-02 2.8908339e-01 + -2.5598626e-01 2.2316732e-01 -2.8142279e-01 7.5392835e-01 2.8893004e-01 6.7497504e-01 6.4232248e-02 + -7.3129730e-01 -6.0544900e-02 -2.1441424e-01 -1.3503437e+00 -1.7076673e-01 -2.9235366e-01 1.1071862e-01 + 5.7186002e-01 1.9107685e-01 -1.9950571e-02 1.3907435e+00 9.8549177e-02 4.6577304e-01 -7.6860676e-02 + -1.7236354e-02 -1.0474067e-01 -1.4546433e-01 -2.2637085e-01 1.6411213e-01 1.5813544e-01 -1.8955707e-02 + -1.4709342e-01 -8.6824816e-03 1.8777173e-01 -7.7059997e-02 2.3142232e-02 -1.4657518e-01 4.5653679e-02 + -9.8930740e-01 5.9421951e-01 7.6259641e-02 2.9501617e-01 1.1662686e-01 9.6158189e-01 -2.4110226e-01 + -2.1410198e-01 -1.9514297e-01 -1.3254947e-01 -1.2565893e-01 4.2747823e-01 3.4958025e-01 -4.4130193e-02 + -1.2859936e-01 -1.2128424e-01 -2.2940516e-01 -6.7423404e-01 -1.9134452e-01 -2.3417945e-01 -9.4529117e-04 + -4.2422562e-01 -1.6973875e-01 -6.6617508e-02 -8.0375542e-01 -2.9751509e-02 -1.3720521e-01 -2.2614457e-02 + -5.8324888e-01 -2.1452254e-01 5.4592548e-01 -1.7813204e-01 2.9499305e-01 4.0922682e-01 -3.6753425e-01 + -5.3172889e-01 2.5869843e-01 -6.9118553e-02 1.2199660e-01 1.3059704e-03 1.1308824e+00 -1.4742731e-01 + -7.6345974e-02 -2.9227976e-01 -1.6928650e-01 -2.4370364e-01 4.0166397e-02 -1.4552200e-01 -9.2442602e-02 + -1.5232338e-01 -1.8244033e-01 7.8583913e-02 -3.1425209e-01 8.5655405e-02 -3.8510842e-02 1.1811310e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_IW_G_4.txt new file mode 100644 index 00000000..e0a1e31c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_G_4.txt @@ -0,0 +1,36 @@ + -1.3803858e-01 -8.6277974e-02 -1.7740269e-01 2.2384158e-02 -6.6342586e-02 3.1209375e-02 -1.5010842e-02 + 5.2520976e-02 1.4340632e-01 3.4456362e-02 -3.3136014e-02 4.4163992e-02 -2.0432260e-01 9.4055263e-02 + 4.9746874e-02 6.2241563e-02 -2.6500223e-01 2.1627153e-01 3.1355440e-01 2.1897159e-01 -2.3910387e-01 + -1.3272592e-01 -1.1906932e-02 -1.4890191e-01 -3.8298056e-02 5.6773351e-03 -1.7456931e-02 -8.4094367e-02 + 5.3419054e-02 4.3885441e-02 6.9484557e-02 -1.2800503e-02 9.6450294e-02 -5.3509429e-02 -3.3057502e-02 + 1.0231378e-01 5.5671581e-02 1.7315493e-01 -1.0401718e-02 1.6932619e-01 -2.8862640e-02 -4.4822260e-02 + 8.9081692e-02 9.6223420e-02 1.6568384e-01 9.1064823e-02 -3.9220118e-02 -2.4760974e-02 1.5377576e-01 + -1.7768291e-01 -3.7115095e-02 -1.7524481e-01 1.3714854e+00 -1.4518633e+00 6.6311179e-01 -5.3236323e-01 + -6.7154588e-02 6.4819947e-01 -4.0925639e-01 1.1221231e+00 1.6525366e-01 1.0924223e-01 -4.7942525e-02 + -2.8354127e-02 -9.9562190e-02 -6.1878900e-02 6.4874446e-02 -8.8490055e-02 7.1511247e-02 1.3801100e-02 + 1.8864337e-01 -1.8483568e-02 -9.0558453e-02 -9.5360478e-02 -2.7521933e-01 4.1933467e-02 4.5282613e-02 + 5.5576933e-02 3.8341023e-03 6.0295725e-02 -1.3211022e-02 1.0021290e-01 2.8495683e-02 -3.0228290e-02 + 1.1520155e-01 9.8513214e-02 4.2346919e-01 -1.5041764e-01 -5.2890526e-01 9.0118723e-02 -1.7115985e-01 + 3.5654542e-02 1.2425740e-01 4.0067599e-02 -6.2609147e-02 9.0948552e-02 3.1098820e-03 -4.5357955e-02 + 1.6192237e-01 -5.8712333e-02 9.0565951e-02 -2.4325936e-01 -2.2602136e-01 6.2824602e-01 1.8474953e-01 + -5.5272753e-02 1.8261328e-03 -1.5067581e-02 -8.8958113e-02 2.9537964e-02 4.5498332e-02 -2.0017090e-03 + -1.7882933e-01 -1.1783654e-01 -2.1329481e-01 -1.4636500e-01 -2.7016767e-02 2.1574065e-01 -8.1243216e-02 + -6.4037121e-02 1.0203477e-01 -7.2614135e-02 5.6915447e-02 2.8490222e-02 -2.0729674e-01 -6.4400915e-02 + -1.4027771e-01 2.2111309e-01 3.2950782e-02 2.6175988e-01 -1.4026125e-02 -1.9566753e-01 9.8242659e-02 + -6.2166719e-02 5.1683125e-02 -4.1534685e-02 -6.9360646e-01 3.8542284e-01 8.6101279e-02 7.6649770e-03 + 1.6208126e-01 8.1262610e-02 3.4262510e-03 4.8243856e-02 1.5237509e-01 1.6220644e-01 -4.2537619e-02 + 5.2711008e-02 3.7974158e-02 1.0452307e-01 2.3083948e-02 5.4614766e-02 1.1261520e-02 2.9537982e-02 + 8.9666136e-01 -6.5665666e-01 2.7075488e-01 -8.4071117e-01 -5.1369396e-01 -1.1427781e+00 -4.9279811e-02 + -4.5221294e-02 -1.3896263e-01 -1.2876537e-01 -1.5177360e-01 8.3369238e-03 1.2416993e-01 -8.6273747e-02 + 6.6666730e-02 4.6218555e-02 -2.7251821e-02 6.8825512e-02 1.9478966e-02 8.3445211e-03 7.6906160e-02 + -3.3936247e-01 2.2415665e-01 -8.6195773e-01 5.3082255e-01 -1.6090447e-01 -9.4959107e-02 -3.4244655e-02 + 4.3758588e-01 7.6968569e-02 1.1689284e-01 -3.8618360e-01 3.4205455e-01 2.5174230e-01 2.6808756e-01 + 1.2153215e-01 6.8934410e-04 -3.1483236e-02 2.2182401e-01 1.7199510e-01 7.9249516e-02 -1.6726101e-02 + 6.1687941e-01 -4.3227811e-01 -4.7020330e-01 6.7604478e-01 -3.8277769e-01 4.8345141e-01 4.6626270e-01 + -2.5444384e-02 2.0587285e-02 -2.1613405e-02 -4.0181813e-02 1.7090960e-02 -1.0576199e-01 1.6598475e-02 + -1.1293265e-01 1.3667350e-01 3.7952087e-01 2.7280164e-01 -1.5172784e-01 1.1033974e-01 -3.2871711e-02 + 9.0399877e-02 -3.9589718e-01 3.3013131e-02 -3.9384622e-01 -1.0768149e-01 -1.9854931e-01 2.6887254e-01 + 1.0732433e-01 2.4899573e-02 1.2115662e-01 6.9210887e-02 1.2666388e-03 1.6205668e-02 4.2868223e-02 + 2.4013656e-01 -4.4415231e-02 1.4368459e-01 1.4777129e-01 1.0813643e-02 5.4853570e-02 1.6872883e-01 + -1.2738149e-01 1.3620480e-02 -1.7783496e-01 1.3491603e-01 -8.3729864e-02 2.9154549e-01 -2.1663360e-02 + -4.4884152e-03 1.5029349e-01 1.6166001e-02 4.9629826e-02 1.6660386e-01 -1.8796605e-01 -3.8909335e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_IW_G_5.txt new file mode 100644 index 00000000..784fbfc3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_IW_G_5.txt @@ -0,0 +1,43 @@ + 3.0502962e-01 2.4848875e-01 3.1332649e-01 4.4173982e-02 -2.4929756e-02 1.2688736e-01 2.1810311e-01 + 1.5770283e-01 1.6216360e-01 9.3852604e-02 -1.0325135e-01 9.0636110e-02 -1.5582082e-01 6.3862790e-02 + 1.6143343e-01 -6.7588928e-02 -3.9947842e-02 -6.8963874e-02 2.0133369e-01 2.2394558e-01 -1.4102985e-02 + -1.1591030e-01 -1.1246354e-02 7.4713597e-02 6.8915572e-02 -1.5902801e-01 -1.8232969e-01 3.6848730e-02 + -3.7130105e-01 -1.2029104e-01 1.6209843e-01 4.5682045e-01 -4.5463434e-01 4.2111836e-01 -3.0936155e-02 + 1.3145787e-01 -8.4603566e-02 -4.7048542e-01 3.1192382e-01 -4.4598818e-03 2.6138051e-01 -1.6093320e-01 + 2.6909147e-01 -2.0238915e-01 -2.4514576e-01 4.0545922e-01 4.2593348e-02 1.1030784e-01 -6.6699259e-02 + -9.3973991e-02 2.2381038e-01 -1.0077670e-01 -6.8480997e-02 4.6992759e-02 -2.3441980e-01 -3.3184251e-01 + -2.0273538e-01 -6.1436260e-02 4.2328285e-02 -3.6262238e-01 -2.5204096e-01 1.9248816e-01 -7.1493309e-02 + -5.5885005e-02 4.1771366e-02 1.9845172e-01 1.0578486e-01 -5.3991640e-02 -9.2181890e-02 5.0819438e-02 + -2.2568121e-02 -1.4109848e-02 -1.4220052e-02 1.3968864e-01 -8.4947622e-02 1.2903137e-01 -3.4565688e-02 + 2.2423695e-01 5.3093972e-02 -1.8166748e-01 -8.8021514e-02 1.9342068e-01 2.0776446e-01 -1.0325334e-01 + 4.5672143e-01 -1.6478506e-01 2.0822922e-01 5.2191856e-02 2.7485402e-01 -2.3725700e-01 1.1660393e-01 + -1.0279955e-01 4.0882820e-03 3.2155794e-05 6.6178438e-02 -9.7642214e-02 5.1905740e-02 -5.0600349e-02 + 1.9473839e-02 -1.9958876e-02 -1.5993301e-01 -7.0069116e-02 2.1271605e-02 8.6240375e-02 -4.3979438e-02 + 1.9566685e+00 -3.2900685e-01 5.6766709e-01 -1.7823551e+00 2.4485840e+00 -2.2112767e-01 4.6244519e-01 + -8.4530875e-01 9.5759031e-01 1.8058198e-01 5.3080375e-01 -5.6109302e-01 6.2367639e-01 -7.5719927e-01 + -1.7626251e-01 -1.1268325e-02 -3.9055910e-01 -2.2651072e-01 9.6040264e-02 -1.3215102e-01 1.9972070e-02 + -7.7605561e-02 2.0248615e-01 2.7740440e-01 -1.1306024e-02 -3.7757964e-02 -1.8486499e-01 5.0849570e-02 + 3.0991573e-01 9.4289057e-02 -4.3965665e-03 -1.1603126e-01 1.7814092e-01 -2.0392192e-01 1.4371007e-01 + 1.0125710e-01 2.3587197e-01 1.4754421e-01 1.9894751e-01 -3.6849236e-02 -2.2965061e-01 7.9301778e-02 + 1.1455695e-01 5.2893032e-02 1.7235677e-01 7.7766589e-02 -6.2104090e-03 1.7002816e-01 8.7583368e-02 + 1.0599220e-01 2.1326390e-01 5.6563934e-01 1.3485263e-02 -1.7629147e-01 1.0388950e-01 -1.3279994e-01 + -3.4735463e-01 1.0475229e-02 8.7948930e-01 -6.4137364e-02 -2.6325979e-01 -3.0024919e-01 3.6510352e-01 + -1.2742448e-01 -4.3245754e-01 -8.0198099e-02 5.9236851e-01 8.5778328e-01 -1.0717235e-01 7.1433323e-02 + 1.4001661e-02 -1.0481924e-01 -1.1575952e+00 -2.2842991e-01 2.2714579e-01 -3.6322846e-01 9.3030454e-01 + -6.2629744e-02 -4.7539485e-03 1.2281074e-01 8.8237216e-02 -6.6350473e-02 -1.4089822e-01 4.2048359e-02 + 1.0549283e-01 -2.1040783e-01 -6.1500599e-01 -2.9627193e-01 5.5245111e-02 2.5291671e-01 -2.4471451e-02 + 6.3190278e-02 2.4152514e-01 4.6887904e-02 1.2680376e-01 -2.3895211e-02 -1.4656722e-01 2.8247474e-02 + 1.2454008e+00 -1.0409005e+00 1.0725440e-01 -1.0470119e+00 -5.9905884e-01 6.1279028e-01 -1.2255348e-02 + 1.4145576e-01 -4.5562866e-02 -2.2648730e-01 3.0903243e-01 -5.4564821e-02 2.3375697e-01 -1.2331847e-01 + -6.4528549e-01 -2.4715458e-01 -2.4266149e-02 -4.7264371e-01 -2.2210051e-01 -1.8119682e-01 1.5601455e-01 + -2.3409952e-01 -3.6227100e-01 -6.2827058e-02 7.8605110e-03 1.7986532e-02 1.7180082e-01 -8.7002736e-02 + -1.3882382e-01 -8.5741152e-02 1.8885565e-02 -1.1443535e-01 -4.6991515e-02 -2.9964681e-02 -9.4826617e-03 + 4.6827338e-02 -6.6339611e-02 3.7473122e-04 5.2272901e-02 2.5543047e-02 1.5192975e-01 1.3875092e-02 + -1.4958782e-01 -1.4916953e-01 3.5628462e-02 2.6951361e-02 -1.3009602e-01 -1.3327801e-01 5.9030944e-02 + -7.8432940e-03 -3.4018983e-02 -6.5943299e-02 -1.1881850e-01 9.3188710e-02 1.5671638e-01 -3.1348701e-02 + -8.0740546e-01 -1.3003701e+00 -3.3233628e-01 -1.1700431e+00 5.0819564e-01 -4.4393622e-01 -7.1986205e-01 + 1.1096762e-02 3.6484107e-02 1.1952429e-02 -6.4969104e-02 2.4818868e-02 -6.1758710e-02 3.2948314e-02 + -1.8571396e-01 1.6617865e-01 -2.6237399e-01 7.3077575e-02 -1.6173231e-01 -1.9064424e-01 9.3351708e-02 + 3.7301303e-02 -4.2453684e-02 6.4525696e-02 3.2909338e-02 1.9707502e-02 -2.3884629e-02 3.3229409e-02 + 3.9318745e-02 8.2158193e-02 8.9959034e-03 -7.7192864e-02 5.1316440e-02 -1.5755514e-01 -1.8906758e-02 + -4.6737538e-02 -9.6218102e-02 2.7913285e-03 5.0989255e-02 -8.2392967e-02 -5.9793142e-02 1.0355481e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_F_1.txt new file mode 100644 index 00000000..a45b77c6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_F_1.txt @@ -0,0 +1,22 @@ + -1.9690787e-01 1.3086941e-01 2.9528368e-01 -4.8547339e-01 -6.2961286e-02 -8.2442550e-02 3.0916555e-02 3.5744402e-01 -1.0805380e-01 1.2037525e-01 7.8899055e-01 -4.4691133e-02 -6.2452818e-01 2.1025417e-01 -8.0484457e-02 7.5510013e-02 8.5252575e-02 1.1882969e-01 3.0010272e-01 4.4844210e-02 4.9437942e-02 2.3390724e-01 -1.8777152e-01 4.5967127e-01 3.5811919e-03 + 1.5013637e-01 -9.8515534e-02 -4.1443160e-01 -1.0758034e-01 -9.9813316e-02 -1.5169687e-01 -4.2916755e-01 -1.2014254e-01 -7.9384005e-02 9.3532150e-02 1.1580708e+00 -2.5524456e-01 4.6761063e-01 -3.5448127e-02 -3.8863547e-01 -2.2686815e-01 1.4002603e-01 2.2304516e-01 -2.2140115e-01 1.0939447e-01 -8.0088122e-02 1.2807723e-01 -6.9121307e-01 2.1014837e-01 2.7644154e-01 + 3.2107834e-02 -1.2970274e-02 -9.1173672e-03 -3.5118257e-03 -2.7870284e-02 -2.3941835e-02 -2.1223860e-02 4.1393497e-02 -9.9959426e-03 1.7855225e-02 -3.2823658e-02 -2.5251844e-02 1.2903140e-02 -6.4543829e-02 4.2868250e-02 -3.2663559e-03 2.6665616e-02 -4.8332495e-04 2.4366859e-02 1.2884247e-02 -1.2656846e-02 -4.2891835e-02 -1.0401367e-02 1.5129657e-02 4.1346885e-02 + -1.9479818e-01 3.0599911e-01 -2.8787340e-01 -3.4719215e-01 -2.1523566e-02 -3.4703835e-02 -3.2555584e-01 5.5146466e-01 2.8087730e-01 -2.7020441e-02 -7.4656164e-01 5.8949417e-02 2.8457337e-01 -3.8816606e-01 1.2643567e-02 -4.8164624e-02 -1.4261488e-02 -4.1039464e-01 2.6500065e-02 -1.8472987e-01 3.4734403e-01 -7.0566662e-01 1.5721915e-01 1.0092225e-01 -4.6189416e-02 + 6.3144703e-02 3.7573402e-01 -2.9031254e-01 2.7598940e-01 5.7290562e-02 -1.4117646e-01 1.6072923e-01 7.4264310e-02 3.3607534e-03 -5.4028291e-02 2.4564642e-01 1.3602764e-01 -9.4933129e-01 2.0695071e-01 -2.4193245e-01 -3.4240974e-01 2.1080853e-02 -1.4395391e-01 4.8627413e-01 8.7028559e-02 6.9754593e-02 -1.7413418e-01 5.2311009e-01 -1.3902506e-01 -1.2518965e-01 + 1.6852020e-02 -9.8627675e-02 2.1347260e-01 -3.9808192e-02 -1.9908654e-01 -7.2817036e-02 -1.3154831e-01 3.3538962e-02 -9.9641030e-02 1.1113449e-01 2.4792021e-01 -9.8140263e-02 -1.2558155e-01 1.3100805e-01 2.0754533e-01 3.5426755e-02 1.0096928e-01 2.7376957e-02 2.0614911e-01 3.9667611e-02 -1.2875820e-01 3.7276620e-02 -1.2935185e-01 1.3673151e-01 8.4804568e-02 + 3.1801386e-03 6.2953440e-03 -1.9823577e-05 1.4785321e-03 4.4169097e-03 1.2890279e-03 -6.7246748e-04 -8.4669817e-03 -7.9673574e-05 -4.0479731e-03 3.3177724e-03 2.2507361e-03 1.2462833e-03 2.3802831e-03 -6.3572491e-03 -3.1581610e-03 -1.8522478e-03 6.6086090e-03 -2.9540589e-03 1.1247027e-03 -1.0613449e-03 5.7616419e-03 -3.1753123e-04 -2.4673110e-03 -8.5676067e-04 + 1.6424479e-02 -1.6993535e-02 -8.1424333e-03 -8.0037054e-03 -2.5080787e-02 -2.0374651e-02 -1.1167137e-02 4.8155883e-02 -9.8499929e-03 1.8045566e-02 -1.6104317e-02 -1.7042863e-02 6.9783625e-03 -5.1537243e-02 3.9807215e-02 3.0553720e-03 1.9720124e-02 -6.0723006e-03 2.1157151e-02 7.5151742e-03 -7.6930864e-03 -4.6306975e-02 -2.1412287e-03 1.3810066e-02 2.7518743e-02 + 1.1544042e-02 -8.9191849e-03 -4.0142835e-03 -2.2538468e-03 -1.3425534e-02 -1.1139226e-02 -7.5905019e-03 2.3778059e-02 -2.8601864e-03 9.0640299e-03 -1.1131346e-02 -1.1697299e-02 4.5558310e-03 -2.1941034e-02 2.1781937e-02 7.8742354e-04 1.0410003e-02 -5.5016331e-03 1.1862869e-02 4.2348589e-03 -4.2259732e-03 -2.4171153e-02 -1.8846404e-03 8.2084405e-03 1.7800092e-02 + -8.6484230e-02 -7.2045370e-02 7.1710047e-02 8.4941671e-03 -1.5874649e-02 1.9052493e-02 -1.4142057e-02 -1.3299183e-01 9.3574223e-03 8.6961344e-03 1.3724280e-02 1.6884516e-02 5.2229876e-02 1.5025141e-01 -3.2672220e-02 8.6140130e-02 -3.8009246e-02 -4.5549027e-04 -3.4227023e-02 -1.7536498e-02 5.9533356e-03 1.2834781e-01 1.7326151e-02 -3.6889918e-03 -4.9853405e-02 + -8.9591928e-03 -5.4506387e-03 1.8730116e-03 -2.0358860e-04 -1.0236836e-03 4.3630610e-03 4.8638817e-03 7.7954447e-04 -1.5875194e-03 1.8013726e-03 -1.3799016e-02 3.1211080e-03 -7.5108163e-03 -9.8123608e-03 -1.1911019e-03 4.3853644e-03 2.5466300e-04 -1.9823047e-03 8.0749081e-04 -1.8546650e-03 7.7168719e-04 1.2319422e-03 1.4110592e-03 3.4842301e-04 -8.9450966e-03 + -1.3986528e-02 -2.0084052e-02 -2.6114005e-03 -3.4883020e-03 -7.4959650e-03 3.7385420e-03 5.2113139e-03 1.0333850e-02 3.1718586e-03 6.7913709e-03 -2.8831324e-02 -1.6817675e-04 -1.1570050e-02 -1.2471794e-02 7.6314879e-03 1.1123711e-02 2.3597142e-03 -2.2449684e-02 1.3020050e-03 -4.6693697e-03 2.5128453e-03 -1.1057233e-02 8.9075845e-03 1.6008796e-03 -8.2739861e-03 + 9.6855844e-03 -2.2536806e-03 -1.8672070e-03 -2.1447336e-04 -6.1253601e-03 -6.0079893e-03 -4.5299621e-03 1.0136742e-02 -3.3263955e-03 3.3449786e-03 -9.3224811e-03 -4.9641372e-03 1.7378371e-03 -1.6749123e-02 1.0507608e-02 -1.0232325e-03 5.5910126e-03 3.4874208e-03 6.7337027e-03 4.1553481e-03 -4.6877666e-03 -1.2473902e-02 -2.0817625e-03 3.3824858e-03 9.7579248e-03 + -7.5824479e-02 1.0814857e-02 1.2773982e-01 9.9863036e-02 1.0473969e-01 1.1067038e-01 3.7647947e-02 -1.9945332e-01 -1.3721497e-02 -8.8090062e-02 -1.0649093e-01 1.1696126e-01 -2.1571555e-01 9.1817372e-02 -2.1582469e-01 4.3186677e-02 -9.3341846e-02 2.0569417e-01 -8.6245676e-02 1.2542748e-02 1.3911403e-02 9.1152716e-02 1.3336218e-01 6.8929708e-04 -1.8261261e-01 + 1.5285278e-01 -4.3087037e-02 -1.7392594e-01 5.6478451e-02 3.0333881e-01 2.7262692e-01 2.4911155e-01 -2.7314553e-01 -2.5801417e-02 -1.6158875e-01 -2.1113786e-01 1.3800847e-01 8.3742899e-01 4.0029305e-01 8.1990876e-02 2.1402063e-01 -3.3423311e-01 3.6941287e-01 -5.2666038e-01 5.5266177e-02 -2.1834710e-01 2.0505328e-01 -7.6131329e-01 -1.7809772e-01 -5.4577008e-02 + -1.0953324e-01 -5.1452407e-02 1.7356269e-01 2.5016136e-02 1.4341895e-01 1.1746116e-01 1.5479643e-03 -2.6815311e-01 3.3393589e-02 -1.0646411e-01 3.4877235e-02 1.3462872e-01 -1.9570652e-01 -9.2517063e-02 -2.0083809e-01 8.7861741e-02 -1.2413228e-01 1.4097714e-01 -2.1023313e-01 -4.6669772e-03 5.7005619e-02 -6.0546687e-02 2.7677386e-01 1.7965054e-02 -1.8934303e-01 + 8.8138458e-02 -2.1833759e-01 4.0745525e-01 -1.8856234e-01 -1.4454833e-01 -1.4553844e-01 3.3403977e-01 3.4627268e-01 -1.7607243e-01 1.7000206e-01 1.2074809e-01 -2.0061573e-01 -4.4364517e-01 1.6959242e-02 1.4755728e-01 -1.4881311e-01 2.0064119e-01 -1.1791947e-01 3.6241376e-02 2.8221487e-02 1.0723256e-01 5.5791061e-01 6.2542667e-02 1.4982211e-01 2.0934314e-01 + 6.4852279e-03 -5.6381701e-03 -2.1945689e-03 -1.2493180e-03 -8.2847101e-03 -6.5859081e-03 -4.2012503e-03 1.4402811e-02 -1.8401444e-03 5.5455798e-03 -7.4244913e-03 -6.9011926e-03 2.2208337e-03 -1.3561898e-02 1.3214012e-02 8.4691948e-04 6.3197909e-03 -3.0124939e-03 7.1879306e-03 2.4160480e-03 -2.5498056e-03 -1.4535743e-02 -1.3891910e-03 5.1847395e-03 1.0183402e-02 + -4.5256032e-02 3.0890740e-02 7.5919565e-02 7.5309406e-02 5.5131982e-02 7.0622861e-02 2.9433849e-02 -1.6099422e-01 -1.3462020e-02 -5.1939865e-02 -3.9421879e-02 6.8575376e-02 -8.7448847e-02 1.5646660e-01 -1.2457497e-01 2.0783144e-02 -5.6363783e-02 1.1573949e-01 -3.1011574e-02 1.1295783e-03 -1.2847683e-02 1.2964148e-01 3.0173004e-02 -2.3672548e-02 -1.1158869e-01 + 1.3471528e-01 -1.8745444e-01 -9.3858522e-02 1.1857100e-01 1.0495361e-01 1.0446439e-01 -1.2566317e-01 -1.3695398e-01 9.5240696e-03 -9.6866682e-02 -2.8769742e-01 4.6915494e-02 2.0195450e-01 -3.5102318e-02 -4.8356535e-03 8.7814295e-02 -1.3035053e-01 1.2694236e-01 -1.4962643e-01 6.6969845e-02 -1.6248118e-01 -4.4837580e-02 -3.5948447e-02 -1.4222044e-01 2.4511997e-02 + -5.7864516e-03 4.5380346e-03 2.2686216e-03 1.1588485e-03 7.3314976e-03 6.1163329e-03 4.0184504e-03 -1.3439498e-02 9.7142921e-04 -5.1697011e-03 4.5845963e-03 6.6504224e-03 -2.0580755e-03 9.1670987e-03 -1.2101556e-02 -4.7454871e-04 -5.4514213e-03 4.4382406e-03 -6.1455817e-03 -1.8856472e-03 1.5813655e-03 1.3409904e-02 7.1067617e-04 -4.5640919e-03 -9.9902411e-03 + -5.1246663e-02 4.9081635e-02 2.6468964e-01 -3.8960912e-02 1.3510839e-01 2.3681872e-01 1.4348497e-01 1.2634366e-01 2.7260222e-02 -8.1979612e-02 -2.8171442e-01 4.5924471e-02 -5.7894268e-01 -2.8303969e-01 2.3569057e-01 -1.6986897e-01 3.9595460e-03 -6.9397528e-02 -7.3196520e-02 -1.8505028e-01 1.3712955e-01 -5.1146078e-02 2.7182148e-01 -1.3100470e-01 -1.0074402e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_F_2.txt new file mode 100644 index 00000000..9eadb8d4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_F_2.txt @@ -0,0 +1,29 @@ + -2.4124238e-03 -1.1123105e-02 -1.6166523e-02 5.2588004e-03 -9.2965281e-03 2.9742077e-02 1.3712391e-03 2.1775983e-02 -4.9895224e-03 3.0453398e-03 -3.6671775e-03 -2.3681669e-02 -1.1348297e-03 1.2949058e-02 -3.4469101e-03 7.0099135e-03 -3.0400378e-03 6.6121059e-03 5.9740045e-03 8.5284843e-03 3.0100947e-03 -1.4090169e-02 -8.0646873e-04 -2.5714237e-05 1.4279740e-02 2.6612711e-03 2.7984941e-03 1.9635924e-02 8.2515994e-03 -1.2546776e-02 -1.5391772e-02 + -1.0300196e-01 -1.7170775e-01 1.1913897e-02 2.9919282e-01 1.0721274e-01 -2.5571622e-02 -3.7166111e-02 2.5477813e-01 2.1571286e-01 2.9139837e-01 7.1384156e-01 1.5217543e-03 -5.3871918e-02 3.9219011e-01 -1.4549713e-01 1.2550981e-01 -7.6495127e-01 5.3944802e-02 -1.3343402e-01 1.3782299e-01 4.0261674e-02 3.9830897e-02 1.4678144e-01 -7.6520757e-02 1.0123336e-01 -7.7618128e-02 2.5340368e-01 -1.2099425e-01 -1.2073620e-01 -5.7722762e-02 1.1464717e-01 + -2.2536681e-02 2.1802391e-02 3.4599316e-02 -1.1804325e-02 1.4623278e-02 -1.6808537e-02 -2.0358957e-03 8.3705876e-03 5.4359097e-03 4.1365283e-03 2.1014683e-02 1.1994031e-02 -9.9928237e-03 1.2364418e-02 3.7434490e-03 -1.4960071e-02 4.4996251e-02 -1.2904168e-02 -3.9118470e-03 -3.0182594e-02 8.6727024e-03 -5.5150793e-03 3.3566920e-02 1.9725873e-02 -1.3076962e-02 2.7444321e-02 -1.9159647e-02 -2.5000523e-02 -1.0083692e-02 -5.2567323e-03 1.2293330e-02 + 3.3146215e-02 -2.4077579e-01 1.2871577e-01 3.5463381e-02 -2.6091030e-01 -1.1552596e-01 -3.8485608e-02 2.1841498e-01 1.0175230e-01 -7.6902361e-02 -2.0426953e-02 -1.7415063e-01 -9.0163135e-02 3.1530106e-01 1.2714120e-01 -1.0644913e-02 1.6858920e-01 1.6604829e-02 -5.5747370e-02 2.1936908e-01 -3.6220381e-01 2.0579335e-01 -8.0973525e-02 6.8753391e-02 -1.7448400e-01 1.0418424e-01 -1.1195909e-01 1.2838559e-01 4.5742312e-02 -5.1236725e-02 -8.6861196e-02 + 2.1384383e-02 -9.5648070e-03 -1.1205590e-01 9.9651114e-02 -4.3434146e-02 7.5845618e-02 2.7576020e-02 -1.3346574e-02 -1.6251991e-03 -2.5150292e-02 -5.9068523e-02 5.0532774e-02 6.9254923e-02 -4.7297398e-02 1.1862815e-03 3.1400981e-02 -8.5645354e-02 2.9688286e-02 -1.8258898e-02 8.8459794e-02 2.6943611e-04 -1.4674114e-02 -1.2369995e-01 -2.4537351e-02 4.5046311e-02 -3.3834772e-02 4.5684575e-02 4.0316339e-02 3.0161749e-02 -3.6563241e-02 -5.0397668e-02 + -2.5157836e-03 3.7697103e-03 1.0468926e-02 -6.9087768e-03 3.5789885e-03 -7.0615104e-03 -2.3936453e-03 1.3031979e-03 1.7957596e-03 1.5726521e-03 4.6562033e-03 1.2048586e-03 -4.3753000e-03 3.8883580e-03 2.0701918e-03 -3.4844930e-03 8.2875673e-03 -4.0427252e-03 -3.1149147e-04 -7.4492057e-03 -7.7594049e-04 1.5226446e-03 1.0461806e-02 4.9411314e-03 -4.9696890e-03 7.4058209e-03 -5.3251716e-03 -6.1649460e-03 -2.6353714e-03 2.8608360e-03 4.2021532e-03 + -3.5606415e-03 6.0839797e-03 -9.0757253e-02 7.6590266e-02 -9.5551131e-03 1.0247292e-01 2.5454473e-02 -3.2689030e-03 -1.8825967e-02 3.1112228e-03 -7.7043997e-02 5.2807135e-03 4.5437340e-02 -1.7012678e-02 -1.6289230e-02 2.3630987e-02 -4.5290252e-02 3.5387585e-02 -1.8814312e-03 3.2296740e-02 4.1670588e-02 -4.4177769e-02 -6.4522149e-02 -1.6402310e-02 6.8135368e-02 -3.8764699e-02 2.7364169e-02 6.0733045e-02 1.8549964e-02 -1.4795437e-02 -3.4620622e-02 + -1.5034161e-01 1.7670483e-01 -3.0469862e-01 -6.4977614e-01 -3.4240142e-01 -4.6558527e-02 -4.2236667e-02 -1.5095879e-01 6.5377002e-02 -1.0939517e-01 -3.6620602e-02 -1.9678875e-01 6.4411805e-02 -9.2089522e-02 3.6822327e-01 -1.8733124e-02 -1.8512430e-01 4.5030366e-02 -4.8489421e-01 -3.9844613e-01 9.8170979e-02 3.7993264e-01 -9.4265244e-02 1.2606981e-01 -1.1512093e-01 5.7573388e-01 1.1798389e-01 7.9508621e-02 1.4413138e-01 -2.1776515e-01 -1.6043792e-01 + 2.4803711e-03 1.3534729e-01 2.0071078e-01 -5.3557192e-02 3.8545344e-01 1.1268839e-01 5.0939816e-02 5.0566249e-02 -1.0236691e-01 5.9546965e-02 1.6889954e-01 2.1090802e-01 6.1639013e-03 -5.0165101e-01 -6.9655245e-02 -1.2826184e-01 3.5847505e-01 -9.8957928e-02 1.0796629e-01 5.2840254e-01 1.0501158e-01 -3.3634612e-01 -2.1468238e-01 -6.9131280e-01 2.5012976e-01 -3.9326134e-01 -5.9431239e-01 3.2040420e-01 -1.7639512e-01 -7.4162241e-02 -3.9402479e-02 + 1.1091157e-02 -2.2366460e-02 -8.7108538e-02 1.5059201e-02 -1.4337225e-02 1.0514032e-01 1.2423107e-02 4.9322464e-03 -1.9578469e-02 7.7896834e-03 -6.7154072e-02 -5.3620747e-02 3.1595057e-02 -8.3068962e-03 -9.3188009e-03 3.5605379e-02 -7.8893995e-02 2.9551726e-02 8.3265331e-03 3.3543430e-02 3.4538482e-02 -3.0267131e-02 -3.9787393e-02 -7.9710245e-03 6.0239365e-02 -5.6067656e-02 2.1351004e-02 7.1335566e-02 2.7204595e-02 -1.0751686e-02 -4.4925713e-02 + -9.9408885e-03 1.0092737e-01 4.2509173e-03 -5.3466838e-01 1.1183564e-01 -2.2418265e-01 5.8864779e-02 -7.2935918e-02 -9.3084864e-02 -1.3944021e-01 -1.9646978e-01 2.8594777e-02 1.0124432e-01 -2.3428059e-01 5.5762621e-02 -2.9297005e-02 -1.8366896e-01 -2.7416376e-03 -1.4641522e-01 5.2073528e-02 9.1071532e-02 1.9954241e-01 -2.0627829e-01 -2.7650249e-01 2.8774598e-02 -5.9711060e-02 -1.7607630e-01 -6.7530743e-02 -1.1944714e-01 6.1177431e-02 1.2724409e-01 + -1.9942409e-01 3.2914123e-01 -1.4005275e-01 5.6979414e-02 -7.1694621e-02 -2.5169117e-01 2.3299197e-01 1.0391647e-01 9.9763687e-02 3.6149725e-02 -3.3674843e-02 1.0579902e+00 2.7622288e-01 1.9377763e-01 2.8783229e-01 1.6363212e-02 2.2311250e-01 1.0911666e-01 -4.7472410e-01 -5.8796505e-04 1.1154363e-01 3.3714737e-02 -3.3535663e-01 -5.1934924e-02 1.2934807e-01 -8.4106086e-02 2.2974941e-02 -4.3287105e-01 -1.8885968e-01 6.6205241e-02 4.4698318e-01 + 3.6192731e-04 1.2676144e-03 1.5948953e-03 -2.2628495e-03 -5.7005908e-05 -2.9232950e-03 8.5672191e-06 -9.8884087e-04 1.0326728e-04 -5.1547774e-04 -9.5873758e-06 7.8347287e-04 -5.2252988e-04 -7.2619784e-04 2.4432149e-04 -1.1585678e-03 -7.6905515e-05 -6.1216335e-04 -6.9964108e-04 -1.0859470e-03 -7.0436094e-04 1.5174452e-03 -3.9142327e-04 -6.1896493e-04 -1.3084041e-03 5.0415895e-04 6.2423497e-04 -1.7566177e-03 -6.0431842e-04 6.7763113e-04 4.5075416e-04 + 1.8885763e-02 -2.7167447e-02 -4.7457771e-02 7.2178074e-03 -1.9436162e-02 4.1484877e-02 6.3315748e-03 4.4761222e-03 -1.5287979e-02 -1.8928683e-03 -3.3879727e-02 -4.0605782e-02 1.1676893e-02 -1.1458529e-02 -8.5937458e-03 1.9907056e-02 -4.9364670e-02 1.9693044e-02 9.4621618e-03 3.1221088e-02 7.5145658e-04 -1.0846829e-02 -2.9853664e-02 -1.8183711e-02 2.7906969e-02 -3.4378870e-02 2.3306946e-02 4.4709160e-02 1.9044530e-02 -7.7372154e-03 -2.8825158e-02 + 5.1764194e-02 3.3265739e-02 -5.7021196e-03 -4.0142293e-01 1.6608576e-01 -2.4253971e-01 -3.3435097e-02 -6.5312380e-02 -9.7542705e-02 3.7129703e-02 -5.6383324e-03 -2.5547744e-01 -1.0065533e-01 -9.9283704e-02 -1.0312112e-01 -5.1644576e-02 1.3948462e-01 -2.5984752e-02 3.4907020e-02 -1.3164341e-01 1.2302340e-01 1.4602850e-01 9.9053360e-02 -1.3610019e-01 3.4984024e-02 -7.0371172e-02 -9.6861471e-02 2.2790760e-02 -3.1994747e-02 7.8193678e-02 5.0254383e-02 + -1.4350390e-01 1.5894704e-01 7.7822117e-02 2.2064627e-01 2.5220006e-01 -6.0635683e-01 1.3537840e-02 -1.7811073e-01 -1.1381799e-01 5.6770223e-02 -2.4310619e-01 3.4853613e-01 -6.2833578e-03 -1.7882754e-01 3.2993728e-01 -7.0287560e-02 5.9314848e-02 -4.5953450e-02 -2.1724956e-01 -2.9495208e-01 2.0349605e-01 -4.0093003e-01 2.3624732e-01 1.6925157e-02 -1.3499330e-02 -4.6049395e-01 -1.7294038e-01 -1.8483172e-03 1.8968240e-02 5.3449244e-02 3.6801707e-02 + -8.2468990e-02 1.2006694e-01 8.2473855e-02 6.4586796e-02 -3.2831332e-02 -1.2005239e-01 2.0768481e-02 -2.5884640e-02 3.6103654e-02 -3.8738708e-02 6.1352147e-02 2.7038885e-01 -5.2981935e-03 3.9223181e-02 1.4033494e-01 -8.0939776e-02 2.5198770e-01 -3.3726805e-02 -1.5503702e-01 -8.0870339e-02 1.5549316e-02 6.4684860e-02 9.7892625e-04 9.5298795e-03 -8.0049453e-02 9.8764515e-02 -1.3449368e-01 -1.6205312e-01 -6.4729711e-02 -2.1371769e-02 1.2283633e-01 + -6.0244725e-02 2.5749083e-02 -3.7197226e-02 7.6401889e-02 1.3124991e-01 -6.6064062e-02 7.5307673e-02 -1.8548333e-01 -8.4774575e-02 1.3329349e-01 -1.0073216e-01 2.2018016e-01 1.2176442e-01 -9.6824179e-02 2.0317228e-01 4.3751113e-02 -4.1214472e-01 -1.0946189e-02 -3.2233660e-01 5.9495872e-02 1.8786564e-01 1.0219614e-01 1.2013529e-02 -2.7094658e-01 1.7980659e-01 1.8142202e-01 -4.8904658e-01 2.5524061e-01 -4.2698479e-02 4.7070838e-02 8.1913258e-02 + -1.2279358e-02 2.8020211e-03 7.8897084e-02 1.1365749e-01 2.7800531e-02 8.1811743e-03 1.5213811e-02 -1.0883327e-01 -2.5031661e-02 9.1241146e-03 -9.4595367e-02 -9.6221868e-03 3.0190064e-02 -3.5311529e-02 7.2530890e-02 9.4980686e-03 -9.1572921e-02 1.1719322e-03 -1.7173194e-02 -2.2132875e-02 -5.1041721e-02 1.4642417e-01 9.0444135e-02 6.0339669e-02 2.7453732e-02 4.2112431e-02 -3.9420632e-03 -5.5324060e-03 1.7477110e-02 1.2105480e-01 4.2943272e-02 + 2.0928136e-03 -2.4240328e-03 -2.9501878e-02 -2.5652587e-01 1.1971758e-01 -2.5460388e-01 -2.5737356e-02 2.2119337e-01 -1.0388299e-02 -1.4474194e-01 -2.7370903e-02 -3.4174629e-02 -1.1518556e-01 -4.1010592e-02 -1.4734100e-01 -1.3931722e-01 4.3272768e-01 5.6484723e-02 1.6090229e-01 1.5903103e-02 -7.4243295e-02 2.1329931e-01 4.5145111e-03 -2.2669652e-01 -7.5670752e-02 -3.2558614e-02 1.3587074e-01 -8.5937977e-02 -8.4473196e-02 1.5019454e-01 7.4302241e-02 + 1.5890730e-02 -2.9645917e-03 1.0988997e-02 -1.1464553e-02 3.3993091e-03 -2.6416699e-02 -6.2564624e-03 -1.7339872e-02 1.1390228e-03 1.6775781e-03 9.8826013e-04 3.3576326e-03 -5.0179018e-03 -6.0219435e-03 1.1185189e-02 -3.2479589e-03 -8.0651265e-03 -7.5265580e-03 2.2655061e-03 4.2632274e-03 -1.5454990e-02 1.8800730e-02 6.7093443e-03 -3.1915639e-03 -1.0317047e-02 5.9067549e-03 -1.1415502e-02 -4.2424882e-03 3.1811603e-03 1.5152058e-02 9.1300385e-03 + 1.8238699e-04 3.9181865e-02 1.5968892e-01 8.7528572e-01 -2.7919322e-01 1.3103186e+00 -4.2146129e-02 2.4041415e-01 1.0619717e-01 -4.1168928e-02 6.7507809e-02 -2.1634156e-01 -3.4769235e-02 1.8416375e-02 -4.1253103e-01 4.0854167e-02 2.3724080e-01 9.5258156e-02 1.8258562e-01 2.2077303e-01 -3.8239064e-02 1.4172225e-01 -1.0957090e-01 -6.0224195e-02 1.9913474e-02 9.0004930e-02 2.2730680e-01 1.3777568e-01 -7.8656193e-02 -1.1668418e-01 -1.4390356e-01 + 3.6108794e-02 -5.9028114e-02 4.5022966e-02 -2.9429641e-02 -4.4801415e-02 -9.9029504e-02 -2.7315223e-02 3.8014917e-02 2.5519256e-02 -2.7299425e-02 1.2538920e-01 2.7334487e-02 -3.7167371e-02 3.9594776e-02 -4.5065476e-03 -9.9941076e-03 4.6353797e-03 -2.5314077e-02 -8.6360606e-03 2.2932662e-02 -7.7725710e-02 7.6223407e-02 2.4372994e-02 -2.1400898e-02 -8.5299838e-02 5.4532057e-02 2.4932178e-02 -6.8120111e-02 -1.1986482e-02 -9.8308223e-03 1.2846202e-02 + -8.9376079e-02 -3.2435499e-02 2.8299763e-03 2.5305612e-01 -7.6830971e-02 1.2828570e-01 -2.4778952e-02 9.1924798e-02 7.9355396e-02 -3.7121253e-02 -4.1308590e-03 2.8356776e-02 -3.5295872e-02 2.0613058e-01 -1.8018561e-02 -7.6358208e-03 3.8651662e-02 1.3247077e-02 3.6737474e-02 -7.0029808e-02 1.8712168e-02 -2.8629794e-02 1.0362389e-01 1.8466059e-01 -5.2124327e-02 4.4731071e-02 8.9408424e-02 -7.1304702e-02 -1.0428258e-02 5.4832022e-02 5.0712224e-03 + 5.6453908e-02 3.1451381e-02 -3.8948275e-01 -1.7084822e-01 -2.3024901e-01 -2.7835018e-01 -6.8575914e-02 -2.5785263e-01 -8.7354742e-02 -3.2613767e-02 -1.4539737e-01 5.9917567e-01 4.5702197e-02 5.2762899e-02 1.0133308e-01 3.4060604e-02 2.4119698e-01 1.1236680e-02 -4.6030368e-01 -3.3274506e-01 9.3904047e-02 5.5304390e-02 4.1141492e-02 9.7701388e-02 3.2427578e-02 3.7145209e-02 -2.3048391e-01 3.1494375e-01 2.2281254e-01 1.0053597e-02 -2.6147706e-01 + 2.4175419e-03 1.4504410e-02 -2.0066869e-03 2.0035433e-02 1.0548505e-02 -2.2375446e-02 6.6081420e-03 -3.0589548e-02 1.8814183e-03 -6.6391650e-03 -1.1720459e-02 3.5523170e-02 1.4734232e-02 -2.5585201e-02 -4.0677513e-03 -3.3160914e-03 -6.7381214e-03 7.6997640e-04 -9.9860909e-03 -3.5339288e-03 7.6846949e-03 7.4499980e-03 -1.1594388e-02 -6.8022281e-03 -5.0932868e-03 -1.7780890e-02 8.8758090e-03 -1.4935464e-02 -7.8106889e-03 1.1395641e-02 1.1766423e-02 + 1.1705036e-01 -1.4722943e-01 -2.7858511e-01 1.2319759e-01 3.3491056e-01 7.6026416e-02 -6.0707173e-02 -5.3177957e-02 -2.4921019e-01 -2.1458676e-02 -2.6805931e-01 -2.2543522e-01 -7.8514459e-02 -2.7030113e-01 -3.4100612e-01 -2.7156727e-02 2.8576896e-01 3.0593562e-02 2.1446191e-01 -2.6834020e-01 4.6192821e-01 -7.4360868e-01 7.7280507e-02 -1.9214988e-01 2.8274700e-01 -3.1258354e-01 -4.1408838e-03 4.5289456e-01 4.8670429e-02 1.3730152e-01 -1.3772956e-01 + -4.9944446e-02 4.3693432e-03 2.6878150e-01 1.1134623e-01 8.8273914e-02 -2.4204392e-01 1.3561793e-03 1.5173888e-01 7.8507592e-02 7.4903816e-02 3.9172264e-01 4.3312006e-02 -9.6688202e-02 7.5078218e-02 2.5314535e-02 -7.1981153e-02 8.1319753e-02 -5.9259517e-02 -1.4727549e-01 5.8821769e-02 4.0418410e-02 -7.2748801e-02 1.9969282e-01 -1.6141960e-01 -8.7140212e-02 1.3086871e-01 -1.2199280e-01 -3.5363404e-01 -1.9279326e-01 1.5918347e-02 3.5537215e-01 + 1.2877947e-01 -1.9628765e-01 -1.9260536e-01 -6.4107766e-01 -2.4196787e-01 -3.8318108e-01 -1.3805969e-01 1.0541990e-01 4.2062867e-02 -7.1786304e-02 -8.2332870e-02 -4.1601012e-01 -7.6154180e-02 2.5736626e-01 2.2744522e-02 8.8588280e-02 2.7640711e-01 3.9123624e-02 8.7222663e-02 1.2285443e-02 -2.6875666e-01 2.0080782e-01 -1.7784250e-02 1.4265577e-01 -1.3179912e-01 1.5773091e-01 9.8593010e-02 2.6852077e-01 2.3209326e-01 -1.9435091e-01 -3.8335426e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_F_3.txt new file mode 100644 index 00000000..396dc2dc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_F_3.txt @@ -0,0 +1,20 @@ + 5.2159071e-01 -2.9028142e-01 2.9131049e-01 -3.1561932e-01 3.2655416e-01 4.0140669e-01 -5.7640199e-01 -1.6170654e-01 1.5834964e-01 -1.7287265e-01 -2.3676174e-01 -2.7033345e-01 -5.9682180e-02 9.5870017e-02 1.2824640e-01 -5.3358441e-02 2.1341397e-01 -2.0782814e-02 -4.6416709e-02 4.1945299e-01 -2.9553883e-01 -3.1695891e-01 -2.0827209e-01 5.9531077e-01 1.7434481e-03 1.5557976e-01 -1.3073893e-01 2.5634749e-02 2.9770320e-01 -3.9899673e-01 1.6141177e-01 -3.1344979e-01 -4.1693270e-01 + 4.7673475e-02 1.4866479e-02 -1.2316085e-01 7.5647741e-02 1.4118655e-02 -1.1704536e-02 2.7819552e-02 -6.7729344e-03 4.3163483e-02 -1.0684247e-02 -1.8704046e-02 7.9553458e-02 -1.3983449e-02 -3.3560266e-02 8.2975563e-02 -1.0542777e-01 -2.5242019e-02 -5.6035859e-02 -7.5954789e-02 -7.6370408e-02 5.2630952e-02 1.1644112e-01 -2.8730204e-02 1.0457573e-02 8.9474333e-02 1.3864931e-01 4.1334703e-02 3.1745444e-02 -9.0265917e-02 -6.2093021e-02 -8.0818112e-02 6.9691502e-03 5.0135695e-02 + -4.4404185e-02 5.0484102e-02 -6.9761985e-02 3.6231121e-02 -2.8616093e-02 -4.2675095e-02 9.2385513e-02 3.5530498e-02 -2.9517928e-02 4.4177023e-02 1.8725850e-02 -1.6244235e-02 3.6428134e-02 -5.5694310e-02 8.1548224e-02 1.5685811e-01 1.1535372e-01 1.8720313e-02 1.3619426e-01 8.4087036e-02 1.4099932e-01 9.4351406e-03 -9.2528964e-02 9.1853726e-02 5.2306819e-03 2.0545040e-02 -1.4607221e-02 -2.1018223e-02 -1.1904589e-01 1.0379142e-01 1.1888825e-01 3.9609737e-02 2.6140959e-02 + 5.0869990e-01 2.0670359e-01 -3.3985137e-02 2.3472203e-01 1.8919497e-01 1.5218563e-01 2.3046651e-01 -7.3212331e-03 1.3474110e-01 -1.1547942e-01 -3.2420705e-01 1.1404180e-01 -5.2576470e-01 4.6496959e-02 1.0062121e-01 -2.5773843e-01 9.1918922e-02 3.4882903e-01 -2.0083613e-01 -4.2780198e-01 -1.6127179e-02 4.0510333e-01 -4.3152600e-01 2.7653793e-01 3.4254710e-01 2.6554342e-01 1.2249298e-01 7.1256401e-01 -3.5014853e-01 -3.7463459e-01 -1.5305994e-01 -6.6868031e-01 -6.8730366e-01 + -2.2850777e-02 4.6250240e-02 -6.4492633e-02 1.3465945e-01 2.5547632e-02 -7.5722601e-02 -2.8331265e-02 5.2625150e-02 -6.7396209e-02 5.5821970e-02 -3.5093402e-03 -4.4462122e-03 1.0967598e-01 -1.5441601e-02 -8.3264479e-02 3.9101121e-02 7.4442276e-03 4.7344543e-02 3.9521719e-02 7.3952292e-02 -1.0425370e-02 1.3696263e-02 -4.7594564e-02 9.1328902e-02 -8.8959464e-02 5.7371561e-02 -2.9736572e-02 -9.3409876e-02 -1.2800622e-01 6.4954197e-02 3.6397817e-02 -3.2806704e-02 6.0202557e-02 + 2.7732916e-01 3.8058130e-02 -1.6327205e-01 -1.3606856e-01 -7.9155670e-02 3.7097164e-02 4.8586582e-02 -1.2457009e-02 1.6500577e-01 -9.9280071e-02 2.8203720e-02 -2.9341393e-02 3.9411002e-02 1.2012945e-01 1.7774993e-01 -3.9911227e-02 3.0182588e-01 -1.3137610e-01 5.8731242e-02 5.6024237e-02 7.9583988e-02 -5.0459889e-02 2.1845930e-01 2.4876476e-01 -3.5295653e-02 -3.6860574e-02 4.4865525e-02 -1.0717755e-01 1.2976742e-01 3.3414000e-02 2.0789990e-01 -1.3552220e-02 1.4647063e-01 + 1.9332766e-01 4.5203790e-02 -9.2340065e-02 -1.2803857e-02 1.5128391e-01 -6.5174073e-02 -1.1430295e-01 -1.3902584e-02 7.2900534e-04 -8.2189151e-02 -1.8753609e-01 2.2770975e-01 -6.0178939e-01 -8.3680789e-03 4.0395717e-01 -3.3235998e-02 -3.0332498e-02 -1.0236131e-01 -6.1257879e-02 1.9865459e-01 -2.1194698e-02 1.4882197e-01 1.4911861e-01 1.9129286e-02 -4.6681918e-01 4.2916640e-02 -9.0515493e-02 1.9905168e-03 1.3700295e-02 -4.3558479e-02 1.3976367e-01 -2.1475859e-01 7.5969920e-02 + -3.9527785e-01 -4.3380263e-01 4.4837573e-01 -2.6017817e-01 2.1582657e-01 4.7468986e-01 -1.5574532e-01 5.0063913e-01 3.2383990e-01 -5.3406453e-01 -3.0484121e-01 4.6599726e-01 -6.8072811e-01 1.4683802e-01 3.4280843e-02 2.8232937e-01 -2.2454028e-01 2.3675253e-01 -3.9006911e-02 -1.8351185e-01 -2.3825023e-01 2.5322848e-02 -5.7059201e-01 1.7790091e-02 5.8205188e-02 -1.6910021e-01 -5.6666529e-02 3.4244654e-01 4.9101388e-01 -2.2788372e-01 3.2375773e-02 -8.5314736e-02 -4.4555658e-01 + 3.1121843e-01 4.5607318e-02 -3.6240561e-01 -6.4233764e-02 -5.4922271e-02 4.3583858e-02 1.2662370e-01 -2.6246563e-01 2.6026792e-01 -2.2718576e-01 1.4430612e-02 -1.5694712e-01 7.3469836e-03 -1.3415415e-01 6.2356432e-01 -3.6428059e-01 1.9104481e-01 -8.2471893e-02 -3.5170247e-01 -2.8813999e-01 2.9059747e-01 2.1753420e-01 2.1724337e-01 2.9258550e-02 -7.0708183e-02 3.7996577e-01 2.5509639e-01 -2.3658009e-01 -2.8427751e-01 -2.6460853e-01 2.2789384e-01 1.6044021e-02 6.3975193e-02 + -2.0660901e-01 -4.3684820e-02 5.1362699e-02 -5.8456789e-02 3.3146974e-02 4.8230983e-02 -1.1716376e-01 5.2916521e-02 8.0613072e-02 -4.1526524e-02 1.8469361e-02 -1.3145237e-01 1.1519271e-01 -6.2432241e-02 1.0293751e-01 1.5099333e-01 8.3289357e-02 -6.8922652e-02 7.5458787e-02 -3.9179531e-02 1.1759995e-01 -4.5398229e-02 -8.4460438e-02 -3.8659041e-02 7.7797551e-02 7.9429563e-02 -8.3237610e-02 -6.1966204e-02 3.6672322e-02 -6.3780192e-02 1.8819453e-02 9.6450658e-02 -6.0690178e-02 + -1.4863489e-01 5.5802371e-02 -4.8904090e-02 4.2518599e-02 4.0591617e-02 -3.1976358e-02 1.4017025e-02 1.0418447e-01 7.2153047e-02 7.5866651e-02 -1.2650927e-01 7.7029404e-02 -8.0948309e-02 4.5039592e-02 2.8780989e-02 7.1389752e-02 6.3066888e-02 -6.3692720e-02 -6.1239894e-02 -6.0439033e-02 -8.5898517e-03 -1.1753789e-01 -5.0995411e-02 -1.0931202e-01 4.2767746e-02 5.0607109e-02 4.1163148e-02 8.0988328e-02 -5.5895534e-02 -9.5996171e-02 -5.6633307e-02 1.2683073e-01 3.2686810e-02 + 8.2582064e-01 4.1308495e-02 4.5205517e-02 -1.5508329e-02 -5.2434950e-02 -1.2221919e-02 3.6761024e-01 -2.5611463e-01 -3.9102325e-02 -9.6667656e-02 -1.8565476e-01 1.5468231e-01 -3.5117349e-01 2.9215717e-01 -3.3954806e-02 -6.6755463e-01 -6.3350575e-02 4.0317127e-01 -1.4756609e-01 -1.9331588e-01 2.3762632e-01 1.6359807e-01 -9.6019592e-03 3.9751447e-01 -7.8054770e-05 2.4463506e-01 2.3105044e-01 5.2668661e-02 -2.8073277e-01 -6.4907497e-02 -1.3844571e-01 -4.1299904e-01 -2.0029664e-01 + 5.5410908e-02 5.3952390e-03 -3.1234213e-02 -1.6443011e-02 -2.6317751e-02 -1.5166322e-02 -1.2626354e-02 -2.1056712e-01 6.6021149e-02 2.6741291e-02 -6.0711472e-02 7.4188883e-02 1.9195738e-01 -1.4002705e-02 -2.0921835e-02 -6.1762942e-02 -1.6639198e-02 -2.1240767e-02 1.4022440e-02 1.0862276e-01 -1.7595306e-02 -2.3295366e-01 -1.4517441e-01 2.3282340e-02 8.7816668e-02 2.7582488e-02 -7.7316943e-02 -2.3653175e-02 1.3264672e-02 5.4983205e-02 8.3694389e-02 -1.9105176e-02 2.6433735e-02 + -6.6058323e-02 -5.3025023e-02 3.0541967e-01 -3.3476111e-02 -2.0222219e-01 -1.9189124e-01 -1.3495110e-01 -5.5547341e-01 3.3231120e-01 4.8072609e-01 -1.2009790e-01 3.0800323e-01 2.2232494e-01 1.3108796e-01 -2.7747020e-01 -2.9318752e-02 -6.0456316e-01 3.5600213e-01 6.6832094e-02 -3.0328523e-02 1.1427617e-01 -6.6778873e-01 1.3240839e-01 -2.4566870e-01 -1.6829681e-01 -4.8972741e-02 -2.7394377e-02 -2.1449742e-01 1.2244315e-01 2.0579836e-01 -1.2398656e-01 1.9511164e-01 2.0062934e-01 + -7.8497239e-02 -5.7118305e-02 -1.3416053e-02 1.1154748e-01 6.7321614e-02 1.2740227e-01 -3.0697507e-01 1.0640887e-01 -2.0112134e-01 -3.2114156e-02 -6.7963230e-02 -1.1398150e-01 -9.8010879e-02 3.0220180e-02 6.1472450e-02 2.7878875e-01 -4.5252316e-01 -3.3010525e-01 -1.4773857e-01 1.5051229e-01 -1.0217345e-01 8.4560783e-02 -5.2495268e-01 2.4131888e-02 3.9652842e-01 3.3284630e-01 9.6012799e-02 1.8301045e-01 -2.4171552e-01 -1.7582439e-01 -3.0310537e-02 2.8484904e-02 -1.7194524e-01 + -1.5360605e-01 2.1796908e-02 4.2009023e-02 -1.8124030e-02 1.1466180e-01 1.0600507e-01 1.2549623e-01 -6.7451788e-03 -2.1775370e-01 1.8322359e-01 -1.0086185e-01 -1.9199058e-02 1.4232890e-01 2.2604438e-02 -2.7449887e-02 1.9304235e-01 6.4227327e-02 -8.3396041e-02 -9.5221438e-02 1.2727524e-02 -1.1422528e-01 -6.1962491e-02 1.3386311e-01 -1.3358272e-01 -1.0120851e-01 -3.2930112e-02 6.5727679e-02 1.4081681e-01 -2.0362857e-02 -1.9370119e-01 4.2493617e-02 7.2016938e-02 -5.2347906e-02 + -1.6409978e-02 8.7106893e-03 -1.3505309e-02 2.5397498e-02 -2.1000535e-02 -3.5478077e-02 -2.6358285e-02 -1.1033560e-02 1.3541399e-02 8.9374346e-03 -4.0359976e-04 1.6567347e-02 2.6488186e-02 -2.6327670e-03 1.4010119e-03 1.7150658e-02 -1.2713681e-02 -1.7470743e-02 2.3885284e-02 2.5105256e-02 1.0590701e-02 -3.5943353e-02 -3.2988963e-02 1.0666603e-02 1.3714615e-02 7.0864963e-03 -6.8052256e-03 -1.6960220e-02 -2.7544086e-02 4.2672251e-02 -4.7633435e-03 2.5057730e-02 3.7245351e-02 + -3.2068331e-01 3.6699137e-01 -7.7696271e-02 4.9766834e-02 -3.4985324e-01 -4.7122497e-01 -2.1036190e-01 -4.5735987e-02 6.3623214e-01 1.2485079e-01 -1.0809547e-01 2.0091013e-01 1.6323491e-01 -5.1296938e-02 3.5955966e-01 4.8034662e-01 3.9102078e-02 -8.8348638e-01 9.1212460e-02 3.2787855e-03 -6.1191470e-02 -1.7704339e-01 3.1351503e-01 -3.1044950e-01 6.1917659e-01 -1.4571825e-01 -1.5901602e-01 1.8255483e-01 -2.1401042e-01 3.2988332e-01 -1.1283846e-01 1.5882220e-01 3.0812608e-01 + 3.0860620e-04 -8.8730592e-02 4.2786811e-02 1.9727253e-02 1.3432516e-01 8.0159389e-02 1.4909691e-01 2.8191287e-02 -1.1802589e-01 1.1667479e-01 2.9890731e-02 2.0444846e-01 -1.4566144e-01 1.1029606e-01 -1.4674131e-01 -7.5721610e-02 1.7129580e-01 1.3207254e-01 -1.2841601e-01 -6.3819023e-02 -7.7377142e-05 1.4581188e-01 1.6952441e-01 -3.8263828e-02 -1.9027457e-01 6.3281753e-02 -5.6297430e-02 6.2733805e-02 6.6354534e-02 -8.3942428e-02 -3.0328710e-02 2.5504314e-02 -7.0153489e-02 + 8.4342321e-02 -4.0891421e-02 9.9225689e-02 -8.3335112e-02 3.0219103e-02 1.0942177e-01 4.9436765e-02 -1.3986677e-02 -1.7489618e-02 -5.1177357e-02 4.7857886e-02 -1.0301382e-01 -8.6695995e-02 1.6742056e-02 3.0625697e-02 5.5801001e-03 2.5801047e-02 -1.0552429e-02 -2.9068990e-02 -4.9763664e-02 -6.3884308e-02 1.5627551e-01 1.7655944e-01 -2.1812809e-02 4.9520637e-02 -9.5129724e-02 6.6325160e-02 4.1606767e-02 1.2359672e-01 -9.2750192e-02 1.6084967e-02 -1.0343566e-01 -1.3108357e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_F_4.txt new file mode 100644 index 00000000..1ac3e674 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_F_4.txt @@ -0,0 +1,21 @@ + 4.6405917e-01 -5.1518581e-01 -8.8091635e-02 -8.0012289e-02 4.0038505e-02 -9.2381365e-02 3.8734230e-02 6.7670824e-03 -1.1700661e-01 6.5732828e-02 8.9768181e-02 7.4531357e-02 -5.3520671e-02 2.5563433e-01 -3.3879026e-01 2.5299723e-02 8.3138531e-03 -9.7120356e-02 3.5086539e-01 -4.0284761e-02 2.3003517e-01 -1.0792817e-01 2.6348554e-01 4.3315932e-01 7.2891056e-02 -3.7757115e-03 2.5892958e-02 -1.9026943e-03 -1.4298604e-01 3.3557586e-02 -1.0498259e-02 -1.2571704e-01 3.1462822e-02 2.9914271e-01 3.4900576e-02 5.1723958e-02 + -9.6644295e-03 1.3859225e-02 1.0652238e-02 -1.0387035e-02 6.8842764e-03 -2.9008251e-02 1.9259999e-02 2.1868577e-02 -1.1094263e-02 -2.1413595e-02 -1.7787109e-02 -1.9341974e-02 -2.2915696e-02 7.0373154e-03 -6.0256536e-04 -3.6719441e-03 5.8281017e-04 -1.5166892e-02 -1.1840986e-03 2.3256089e-02 2.1006576e-03 3.0739984e-04 -1.3669172e-02 3.3890069e-03 -2.8281012e-02 -7.4323822e-03 -9.1648921e-03 -1.3582284e-02 2.3346004e-02 1.1511288e-02 -2.1835070e-02 -1.0602711e-02 -1.1168657e-02 7.2267085e-03 6.7612704e-05 -8.4107510e-03 + 7.5906226e-03 7.3835997e-03 1.7579780e-02 9.2330389e-03 6.3313144e-03 -1.3821560e-03 2.4414742e-03 2.8741392e-02 -4.3456786e-03 -3.1599802e-02 -3.8467792e-03 -1.3173698e-02 -3.4702328e-02 1.3410351e-03 3.2427474e-02 -2.5340907e-02 4.0551642e-02 1.7775117e-02 2.6890367e-03 -1.1299448e-04 2.3392744e-02 2.8445071e-02 -2.1317513e-03 -3.6154902e-02 4.7481806e-03 3.5370377e-02 8.9541165e-03 -1.8981417e-02 4.0985976e-02 8.2478245e-03 -1.5206318e-02 -1.3276176e-02 -3.7458273e-02 -8.6593112e-03 8.9011321e-03 -8.8016769e-03 + -1.3674401e-01 3.7355659e-01 -1.0571081e-01 -3.1797438e-02 1.0461117e-01 2.1062574e-01 1.5627605e-01 1.4973213e-01 -6.6583372e-02 -9.8856421e-02 -1.2615317e-01 -1.7851714e-01 2.2887905e-01 1.9295109e-01 5.0707535e-02 2.2784440e-01 1.0138085e-01 -9.2068582e-02 -5.1384563e-02 4.5824991e-02 -9.6170220e-02 9.9859095e-02 2.4018830e-02 2.8912945e-02 2.5051371e-02 1.3922367e-01 -1.0776651e-01 1.9326094e-01 1.9834678e-01 -5.4406996e-02 -6.6453368e-02 -2.2166018e-01 1.4080220e-01 -1.1360382e-01 1.3143656e-01 1.3539189e-01 + -1.8057398e-01 7.5182095e-02 -1.4104891e-01 2.1347805e-02 4.6569950e-02 1.1753471e-01 2.0365151e-01 5.0131521e-01 -1.1184586e-01 -1.1725701e-02 5.8950782e-02 -2.8374281e-02 -1.2902899e-01 1.0706024e-02 -5.4910504e-02 -3.1813362e-02 3.4779280e-02 -1.4519557e-01 -1.4936836e-01 8.3567883e-02 2.2334922e-02 1.5126584e-02 6.1480801e-01 4.4251576e-01 1.4988558e-03 4.5998404e-02 -1.2663805e-01 6.4905317e-02 -1.5536331e-02 -4.6159168e-02 2.2501814e-02 -3.0749401e-02 1.3035991e-01 6.4602511e-02 -1.2519172e-01 1.1239018e-02 + 7.0314732e-02 -9.5927824e-02 -7.0539407e-02 -1.8468858e-01 2.2974617e-01 5.8529052e-02 -3.5361052e-01 5.5829074e-01 4.8644718e-02 -6.4336452e-02 -6.8353234e-02 -2.9192118e-02 -7.2043644e-01 -3.2483432e-01 1.3455527e-01 -2.8274975e-01 -3.6212234e-02 -3.6243815e-02 4.4682133e-01 -5.8540149e-02 9.9109386e-02 6.6971799e-03 -2.7225776e-01 -1.0511748e-01 2.2685529e-01 1.3473809e-01 2.2475337e-02 1.7004698e-01 2.9305830e-01 4.7836417e-01 5.3689259e-02 -4.0737833e-02 9.5620635e-02 7.3815219e-02 2.3946079e-01 4.1473986e-02 + 1.6262499e-02 -2.3097245e-01 -1.1239662e-01 -1.0332721e-01 1.3089088e-01 5.8095980e-02 -7.9317865e-02 6.4113862e-02 -5.4270501e-02 5.6515357e-02 -6.1195519e-02 2.4764352e-02 -1.8384401e-01 -1.3558877e-01 9.1439093e-02 -1.4977048e-01 6.0543347e-03 -1.3341224e-01 -2.4181741e-01 5.9858999e-02 8.5133710e-02 1.6824088e-02 -4.4517505e-01 -2.5720300e-01 -2.4607411e-03 6.1162935e-02 2.4352607e-03 9.4790704e-02 1.7835546e-01 2.0488341e-01 2.9849099e-02 3.2742050e-02 6.1100952e-02 1.7120603e-01 1.7844160e-01 2.6645892e-02 + 6.9868022e-03 -2.0180926e-02 2.4110420e-03 2.2107408e-01 -1.6676748e-01 2.1071310e-02 4.5360756e-01 3.4534943e-04 -4.9550002e-02 6.8439636e-02 4.7346232e-02 8.5116019e-02 -7.1610153e-01 2.2209961e-02 7.8536906e-02 -2.8642844e-01 3.6207913e-02 -3.4948742e-02 -3.6484300e-01 -3.0981884e-01 -5.7832261e-02 4.8749094e-02 -6.8897434e-02 -4.1089653e-01 -1.9723473e-01 1.5461421e-01 5.7519161e-02 -3.8316136e-01 -4.3609305e-01 2.0414133e-01 -2.4767114e-01 1.7009098e-01 -2.0102303e-01 -2.9841047e-01 1.0244092e-01 -8.7860199e-02 + 2.3181401e-02 -7.6893607e-03 9.1052836e-03 1.1673933e-02 6.1146027e-03 -1.2407004e-02 2.4731267e-02 3.2442702e-02 -2.2957254e-02 -1.0681926e-02 -3.2408351e-03 2.0587825e-03 -1.4416128e-02 1.6793777e-03 4.3213828e-04 -5.1583801e-03 1.7910331e-02 -2.2263627e-03 -1.8305984e-02 -1.5803287e-02 1.3674897e-02 1.1000774e-02 -3.7434877e-02 -2.4268697e-02 -1.4997434e-02 2.7040798e-02 -2.2170681e-03 -6.9809923e-03 1.8192913e-02 -3.7852150e-03 -6.6481327e-03 -1.9137043e-02 -3.2189165e-03 1.8877546e-02 7.6698259e-03 9.2627981e-03 + -5.7564900e-02 -1.0445809e-01 -2.1002122e-02 2.2235572e-02 -9.9762388e-02 -8.8842590e-03 1.9870465e-02 1.8824286e-01 -3.6793011e-02 1.6805133e-01 -6.7812316e-02 -1.9487349e-02 -3.2855793e-01 -1.8242064e-01 -1.1370306e-01 1.6913614e-01 -5.9440555e-02 -4.2366059e-02 2.0941075e-02 -9.2954089e-02 -2.5060542e-01 -8.9302733e-02 -2.3147916e-01 1.1026722e-01 -2.4095869e-01 -7.2479427e-02 -5.8344587e-02 4.0770741e-02 -3.8077340e-01 3.3308031e-01 6.5819993e-02 -4.8246796e-02 5.6340046e-02 2.6849280e-02 8.3064042e-02 1.5960715e-01 + 4.2358007e-01 -1.0977758e-01 -3.7003545e-02 9.1014512e-02 1.1826186e-01 -7.2462415e-02 3.2490636e-01 7.2989896e-02 -2.3925142e-01 4.0939609e-02 2.1955584e-01 7.3888053e-02 7.3207006e-01 3.5137000e-01 6.8606675e-02 -1.3488810e-01 2.0761560e-01 -8.6740984e-02 -1.1099124e-01 -6.8039684e-02 2.0524918e-01 9.6879343e-02 2.2273144e-01 5.2828531e-02 -5.9027901e-02 1.8994800e-01 -9.1801499e-03 -2.1162291e-01 3.7513226e-01 -2.0561754e-01 -1.9438783e-01 -1.3449770e-01 -6.8698308e-02 1.9582318e-02 -4.9177267e-02 -2.3755595e-02 + -5.2357899e-02 -2.6870718e-02 -5.9064635e-02 2.7648530e-03 -3.4714825e-02 1.1487169e-02 -5.6490425e-02 -7.3265405e-02 -1.6973622e-02 5.3018258e-02 -2.3299630e-04 2.7433528e-02 1.2811849e-01 -5.2150787e-02 -1.6937824e-02 -4.1598298e-02 -3.9690495e-02 -7.8788100e-02 -1.1894785e-01 -1.3467714e-02 -3.2416444e-02 -4.1963192e-02 -1.8775979e-02 4.9147263e-02 -3.1183897e-02 1.6901634e-03 -4.4307612e-02 1.4161954e-02 -6.1176375e-02 2.1383022e-02 2.1893832e-02 4.3528038e-02 6.8106558e-02 4.2100609e-03 -1.4948582e-04 1.5062950e-02 + -2.0052331e-01 -3.2843985e-01 -2.5074949e-01 -4.1810300e-02 2.0614393e-01 1.1214256e-01 -6.5716890e-02 3.9290028e-01 -1.4208173e-01 -6.6419004e-02 -9.1019068e-03 -6.0919084e-02 4.8228409e-01 -5.2415747e-01 1.5751082e-02 6.8792721e-02 5.7352518e-02 -3.7346160e-01 -5.1775083e-02 8.9476555e-02 2.1493131e-01 1.3688725e-02 1.1398403e+00 7.1007473e-01 -1.5506267e-02 1.6954500e-01 -3.2212720e-01 8.2344426e-02 5.8990719e-01 1.7368400e-01 7.6118648e-03 -1.2244787e-01 2.4139260e-01 1.8209310e-01 -2.1271208e-02 -2.4828544e-03 + 6.3186072e-02 -1.7894026e-01 3.0401051e-02 -1.1778919e-01 3.8573001e-02 -8.1752679e-02 -2.0119937e-01 6.9398597e-02 -1.0750017e-01 -1.3002635e-01 9.7579318e-03 -2.0760736e-02 2.4372593e-01 -2.6883186e-02 -4.6995136e-02 -1.4923483e-01 3.9872747e-03 -7.1464452e-02 1.5750365e-01 2.2234797e-01 1.4593407e-01 -3.0159793e-02 7.5653959e-02 3.0492722e-01 4.8517435e-02 1.0896770e-02 -6.9355864e-02 1.1494629e-01 2.0318369e-01 -8.9652096e-02 1.0332222e-01 -6.1914773e-02 8.4242110e-02 2.7659109e-01 -1.3164836e-01 2.2149632e-02 + -1.2729370e-01 1.4327958e-01 -1.2480236e-02 1.4497874e-02 -6.8120245e-02 4.6953203e-02 -9.1943553e-02 -1.2718741e-01 7.4845078e-02 9.6478435e-02 -2.8762472e-02 1.7595135e-02 8.8324956e-04 1.2162366e-01 -6.5205510e-02 1.0842820e-01 -2.1371299e-02 8.1302352e-02 6.8832482e-02 3.1188531e-02 -7.3591770e-02 -4.5728762e-02 -7.7923299e-02 -8.3838463e-03 1.4140418e-01 -9.0040184e-02 9.5761967e-02 3.3550666e-02 -2.2085130e-01 4.5814867e-02 4.6632803e-02 9.1620754e-02 -2.6900642e-02 -1.0274178e-01 6.4864279e-02 -2.9669597e-02 + 1.6749610e-02 2.3199457e-02 2.0344704e-02 -8.0242249e-02 1.9413541e-02 -6.1572748e-02 1.7003782e-02 4.4923833e-02 1.6999745e-02 -5.7647314e-02 -8.3073065e-03 -1.6930491e-02 -3.9659275e-02 6.1582476e-02 -1.4127377e-02 -1.2946186e-02 9.3053435e-03 3.6257490e-02 9.8431654e-02 4.2819019e-02 4.4568607e-02 -1.0666291e-02 6.9332259e-02 6.2193156e-02 3.5171212e-02 -1.6553496e-02 2.0666755e-02 1.2601391e-02 7.6425027e-02 -3.0820072e-02 -1.2768418e-02 -3.6433415e-03 -3.1556804e-02 4.7064370e-02 -5.8672263e-02 -6.0146892e-02 + -5.9212271e-02 -5.1166840e-04 -5.2649783e-02 -2.3934709e-03 -2.4791871e-02 4.1828513e-02 -8.1062871e-02 -9.7824686e-02 -9.0107686e-04 3.7383736e-02 1.9384368e-02 4.8439200e-02 9.6333558e-02 -2.0740691e-02 -1.2603801e-02 -2.9606673e-02 -3.4577243e-02 -4.6222932e-03 1.3201349e-02 -1.5040875e-03 -4.6986392e-02 -2.6548643e-02 2.6928505e-02 3.8422110e-02 6.4787387e-02 -3.0602766e-02 2.5162489e-02 3.7724918e-02 -6.9008816e-02 2.5420173e-02 4.8058680e-02 3.1656988e-02 4.8476913e-02 -4.3432320e-02 1.9475601e-02 -1.1945395e-02 + -3.5799987e-01 5.7314158e-01 9.0300800e-02 -5.8917142e-02 -6.9158734e-02 1.5662186e-02 1.0091743e-01 1.2822376e-01 9.1290283e-02 -1.3685308e-01 -3.2388583e-01 -1.0064795e-01 -3.7995106e-02 1.4003961e-01 1.4136563e-01 2.2294285e-01 -1.0856181e-01 1.0747745e-01 -7.0633147e-02 4.9388413e-02 -1.2524916e-01 6.3604961e-03 5.7999688e-02 -4.2851647e-02 -1.5361131e-01 -1.0877302e-01 4.7453826e-02 3.0949597e-02 1.0671370e-01 8.4014677e-02 -3.8975388e-02 6.4396271e-02 -2.1414816e-02 -1.6824845e-01 2.0113166e-01 -2.3612044e-02 + -6.2969998e-01 7.9096158e-01 2.5136847e-01 4.1253916e-02 -1.5422382e-01 -1.5648185e-01 5.5830805e-01 9.1984261e-02 1.4403805e-01 -3.0382572e-01 -4.7807153e-01 -1.0388328e-01 -7.4010475e-01 1.9807371e-02 1.9616650e-01 2.4356147e-01 -8.8991216e-02 1.2059126e-01 -3.9554332e-01 -2.0053493e-02 -2.7845780e-01 1.1448923e-01 7.7691173e-02 -3.8004284e-01 -3.7332803e-01 -4.8497909e-02 1.1968858e-01 -2.1472269e-01 -8.2954291e-02 2.0711886e-01 -3.2211517e-01 2.0084445e-01 -2.8049295e-01 -3.3959149e-01 2.6262696e-01 -5.6185220e-02 + -8.7733579e-02 9.6344717e-02 -1.2887771e-03 -1.8433502e-01 9.1267100e-02 -5.2950356e-02 -2.0432371e-01 -2.0024372e-01 1.2466584e-01 -6.5273631e-02 -2.0856612e-01 -5.4270229e-02 -9.4841647e-02 -1.3189962e-01 2.4565986e-01 -2.3955485e-01 -1.1262927e-01 -1.7289659e-02 4.1172773e-02 1.7836156e-01 -1.2558093e-02 -3.3806056e-02 -1.3468594e-01 9.4319383e-02 1.1880577e-01 -1.2569222e-01 2.0384171e-02 1.2696142e-01 -5.0046567e-02 1.5385058e-01 8.0414532e-02 -4.0288670e-02 8.6387254e-02 1.8951924e-01 3.0221551e-01 -5.3323578e-02 + 4.6534701e-03 -1.1738582e-03 -1.0099628e-04 4.1767916e-03 -1.5511881e-03 3.9359950e-03 -5.3618977e-03 -3.9055306e-03 2.7819088e-03 8.2899809e-04 7.8053570e-04 5.0780613e-03 7.9387099e-03 -3.9852269e-03 -2.2888403e-04 7.2140083e-05 -2.9912111e-03 2.2674814e-03 -3.9484779e-03 -6.6787812e-03 -2.9333395e-03 -2.7692646e-03 1.6633239e-03 -4.1548220e-03 2.6737322e-03 2.8904506e-03 1.3436792e-03 5.5009907e-03 -9.9404041e-03 -4.6789403e-03 7.1582742e-03 2.4662153e-03 5.7204728e-03 1.5569194e-03 -2.0907143e-03 6.5773805e-03 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_F_5.txt new file mode 100644 index 00000000..47798522 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_F_5.txt @@ -0,0 +1,25 @@ + 3.1303486e-01 1.2873273e-01 -1.7527798e-01 4.7961577e-01 -2.6296626e-01 -1.2664811e-01 4.1255430e-02 3.2598906e-02 1.3325212e-01 -4.9841248e-02 2.6360674e-01 2.4117561e-01 3.6669389e-01 -2.6353220e-02 -7.2651268e-02 -4.5183910e-02 3.9398863e-02 2.0827541e-01 3.0714928e-01 2.2914590e-02 -1.6687346e-01 -2.2751061e-01 -1.7397269e-02 2.6960660e-01 -7.8013783e-02 1.6726790e-01 1.6408897e-01 1.4427111e-01 -2.5340044e-02 1.6940669e-03 3.3305130e-01 3.6613544e-02 -1.4236027e-02 -1.9975578e-01 -2.7223436e-01 -4.7568346e-02 2.6183934e-01 -1.7874393e-02 -7.2790567e-02 + 2.0930710e-01 1.1448006e-01 -4.4133630e-02 1.3408904e-01 -1.4889934e-01 -2.1018824e-01 -1.0434275e-01 3.2810527e-02 3.5559226e-01 -1.8344680e-01 1.1989803e-01 -7.1283400e-03 -1.7255615e-02 -2.8802032e-01 -4.9621139e-02 -1.6268799e-01 2.1460862e-01 3.2224006e-01 -2.0682759e-01 -2.1537917e-02 -3.7603390e-01 -1.9817734e-01 -1.8231171e-01 2.5995693e-01 -1.1112314e-01 1.7936905e-01 2.5817661e-01 1.6747957e-01 -1.1028742e-03 -8.6093053e-02 -6.1904892e-02 -1.0617230e-01 1.3535855e-01 -2.1848767e-01 -1.0322896e-01 1.1469043e-02 5.3820850e-01 -7.4182051e-02 -2.3286028e-01 + 1.3370103e-01 -9.5441784e-02 -2.8371874e-01 2.7660823e-01 -9.2113529e-03 7.8026203e-02 4.0094072e-02 -1.3953009e-02 -2.3265684e-02 1.7052565e-01 -3.4509929e-01 7.8712940e-03 -5.3467589e-02 1.2259245e-01 -9.8501905e-02 -1.0470884e-01 2.3192721e-01 -1.7343790e-01 -1.7281328e-01 5.4215703e-02 6.4492329e-01 -3.4820435e-01 3.0701765e-01 -6.6539916e-02 -4.6226339e-02 -3.2064688e-02 7.0880827e-02 -3.4146106e-01 1.6735992e-02 2.7139104e-01 1.8690343e-01 -1.3841970e-01 1.4521934e-02 -2.8627121e-01 -1.3124653e-01 -9.0087985e-02 -3.0568507e-02 3.2796650e-02 -2.2004601e-01 + -1.4432495e-01 -4.8398755e-02 -7.5783148e-02 -8.7725242e-02 5.7205666e-03 -5.5276650e-03 -3.6063566e-02 -8.9167821e-03 3.0050651e-02 -1.0959905e-01 7.8966688e-02 -1.0878049e-01 1.0141855e-02 -6.6948089e-02 -9.8961979e-02 -1.5331900e-01 -1.6395149e-02 2.2502300e-02 4.2749617e-02 -2.7301248e-02 1.9224738e-02 -3.5138568e-02 -5.4927822e-02 -6.3027430e-02 -2.4655260e-02 1.8424669e-02 -5.2860745e-02 -1.7220380e-02 -3.2987209e-02 -6.6174982e-02 -6.2420270e-02 -1.6473290e-02 -5.5618943e-02 1.0328746e-01 6.6359028e-02 3.2166198e-02 -7.0339297e-02 6.1448150e-02 5.8714150e-02 + -7.3406686e-02 -1.3279181e-01 -2.0391954e-01 4.0253146e-02 -1.6328360e-01 -7.0312300e-02 -1.7842823e-01 4.8285550e-02 4.7885814e-02 -2.2426586e-01 -3.2796071e-01 -2.1716812e-01 -1.7328863e-03 1.6046936e-02 -1.4358657e-01 -5.3799163e-01 -2.2361933e-01 -2.9000494e-01 6.1562415e-01 1.0960023e-01 -3.7781966e-01 2.2495625e-01 1.8989234e-01 5.7676672e-02 5.5884064e-01 1.9619028e-01 1.8077932e-01 -2.3068461e-02 3.0589002e-02 1.5313583e-02 -2.4497748e-01 -2.3156620e-01 -1.0922072e-01 2.3256906e-03 -2.1642230e-01 -2.2524863e-01 2.9198410e-01 1.8844460e-01 1.2177200e-01 + 9.8841607e-02 1.6040232e-01 -1.0965224e-01 -7.8108148e-02 -7.7012241e-03 2.9160750e-02 1.2129792e-01 -1.3977376e-01 -1.2540433e-01 -1.0217733e-01 -2.3130767e-01 -1.6055758e-01 -3.3544448e-02 2.0623384e-01 -3.0001809e-01 -1.5265641e-01 4.6671888e-02 -5.0638194e-02 -1.4790545e-02 2.4876092e-02 3.7195459e-01 -3.9082847e-01 1.6578997e-03 8.3576142e-02 1.7696996e-01 -6.8643061e-02 -2.3901775e-02 -2.8522306e-01 -8.7460483e-02 2.6184404e-01 8.1290667e-02 2.0114195e-02 -2.9879951e-01 -5.9030716e-02 -1.0974671e-01 -1.5451855e-01 -3.4881399e-02 7.0007027e-02 -2.7570093e-02 + -1.1726296e-01 -2.0200358e-01 8.7290076e-02 1.0134013e-01 7.2314907e-02 -5.9693873e-03 -1.8731621e-01 1.1067176e-01 1.6115168e-01 -1.3528318e-02 -4.4743517e-01 -7.2897330e-02 -5.6293902e-02 -2.4815298e-01 -1.1273891e-01 2.2463977e-01 1.0260899e-01 1.6610244e-01 -2.8883353e-01 -2.3013206e-01 3.3966576e-01 -1.5652474e-01 3.1732438e-01 -1.2978396e-01 -6.7477369e-02 8.6456075e-03 -1.3833773e-01 -5.1918685e-01 1.9594601e-01 1.4299402e-02 -1.9286967e-01 -3.2122534e-01 9.2887063e-02 -3.2058589e-02 1.0306472e-01 -2.6811354e-02 3.0761716e-02 -3.3976261e-02 -1.7170816e-01 + 7.1423240e-03 -2.9159834e-02 -2.1745761e-02 1.1265951e-02 -3.8288429e-02 9.3789337e-03 1.1488990e-01 2.0272191e-02 -1.6596637e-02 8.8021373e-02 -9.4231499e-03 6.5575225e-02 1.0172212e-02 1.1211060e-01 1.7398124e-01 -6.6249908e-02 4.7128486e-02 1.1523097e-01 3.1559122e-01 -2.0248129e-02 6.1079675e-02 3.3444640e-01 -2.6053901e-02 -8.0811849e-03 -3.2952980e-02 1.4395461e-01 -1.0260068e-02 -7.2511465e-03 -9.6016409e-02 4.5389345e-02 1.4673547e-01 -2.0176525e-02 -6.6976340e-02 -1.5424448e-01 -1.6548168e-02 6.4181219e-03 -1.5923443e-01 -5.2242699e-02 6.6845050e-02 + -3.4991434e-02 -9.5741129e-02 -1.1712456e-01 -1.0688442e-01 -1.7789585e-02 -6.0689310e-02 -3.6044232e-02 8.5393677e-02 1.7810390e-01 6.6320856e-02 -5.4660780e-02 -5.7977934e-02 1.4551390e-01 8.6560773e-02 1.0417050e-01 9.8560810e-02 -3.3328954e-02 -4.6477232e-02 -2.5645639e-01 -4.6251380e-02 -1.1865766e-01 1.0082891e-03 1.5254009e-01 3.6927116e-02 4.4664886e-02 -1.0725059e-01 -7.2829159e-02 5.5727791e-02 3.3406403e-02 1.3434631e-02 2.2370761e-02 9.3981843e-03 7.3267899e-02 6.1860625e-02 2.8422911e-02 -7.7756636e-02 -9.5844777e-02 -1.8969991e-02 -7.2103570e-02 + 9.7130275e-02 -1.8888975e-01 -4.4389600e-01 9.3480859e-02 -2.0356850e-02 6.1065747e-03 -8.5183374e-02 2.1792951e-01 3.4320758e-03 6.5755541e-02 -8.9959494e-03 -1.8650063e-01 -3.5798729e-01 2.6995463e-01 -9.4517730e-02 -2.4177881e-01 -7.4210718e-02 -3.2920532e-01 -2.1391787e-01 7.4854774e-02 4.8059532e-01 -3.1309418e-01 2.1687138e-01 -1.0088255e-01 6.2566470e-02 -9.2431181e-02 2.5227041e-02 -2.5337349e-01 6.3179437e-02 1.9361167e-01 -3.9044430e-02 -2.8558347e-02 1.9225631e-01 3.3639750e-02 7.3741300e-02 -1.2785574e-01 -3.0385053e-01 -1.6744465e-01 -2.4068947e-03 + -1.9629242e-03 -4.6674773e-02 -6.3070689e-02 -4.4235473e-03 7.2523969e-03 1.3425278e-02 -1.4273062e-02 2.0245371e-02 3.4665572e-02 4.3215227e-02 -1.3705031e-02 -3.2042244e-02 1.6730490e-02 1.6824910e-02 4.2458991e-02 -2.3234192e-02 4.1074422e-02 -5.5986887e-02 -1.1357505e-01 3.3992105e-02 -4.0296050e-02 5.4445812e-03 1.1078845e-01 -5.1121273e-04 6.8078410e-02 -9.2241983e-02 1.9595707e-02 5.4938398e-02 1.5424106e-02 -1.7280330e-02 -2.9908426e-02 6.3116189e-03 2.7616437e-02 7.2206492e-02 1.3261068e-02 -4.2696674e-02 -1.1376812e-02 5.3511723e-02 4.8400267e-02 + 2.8997972e-01 -5.7796377e-02 3.5503856e-01 -3.2324295e-01 -1.9444571e-02 2.3574952e-01 1.4470823e-01 1.6773218e-01 -3.6287423e-01 3.1366312e-01 1.6592528e-01 -1.6519312e-01 -5.5425830e-01 2.4143602e-01 5.5807852e-01 -1.8973400e-01 -7.9064303e-02 -7.2003879e-01 -6.7765657e-01 3.1294631e-01 1.7184660e-01 3.9141124e-01 1.1463481e-01 3.8018935e-02 1.7701613e-02 -4.1071383e-01 1.7489931e-01 -5.0213406e-01 1.6482885e-01 2.0427013e-01 2.5081580e-02 2.5098680e-02 3.8388105e-02 2.6456661e-01 5.6987231e-02 -2.0084411e-01 -1.5967958e-01 -2.6648125e-01 -2.2961938e-01 + -1.9360239e-02 6.0604327e-02 1.8630902e-01 8.4610332e-02 -4.3286347e-02 7.8953524e-02 2.5988347e-02 -7.8724780e-02 -8.9985030e-02 2.1058401e-02 2.2077997e-01 2.1315154e-02 -6.9846304e-02 -6.3892551e-02 8.4769632e-02 1.9339884e-02 -5.5004414e-02 -1.9291947e-01 1.4798486e-01 2.4893621e-02 -1.3835832e-01 2.5302415e-01 -1.0455621e-01 5.7005063e-02 -7.7856987e-02 2.0866144e-01 9.8525454e-03 1.1027250e-01 1.0833208e-01 -2.2038619e-01 4.5738603e-02 -7.9811250e-02 4.2788170e-02 1.2067321e-01 4.1498814e-02 8.7368211e-03 -3.9140291e-02 6.2961439e-02 1.0018700e-01 + -2.2338164e-01 -8.0985352e-02 2.6883323e-01 -1.6663241e-01 -1.7698640e-02 3.5651786e-02 -2.6425720e-01 -7.9720409e-02 2.3534848e-01 -2.8965191e-03 -3.6778027e-01 -3.6400152e-02 -1.2928361e-01 -2.1295632e-01 -4.1444443e-02 2.3992508e-01 1.9783544e-01 1.7655543e-02 -1.1429700e-01 -1.8927189e-01 4.8392766e-01 3.8353700e-01 1.7031172e-01 -6.4382184e-02 -2.0765671e-01 2.7960655e-01 -8.4004188e-02 1.0664598e-01 8.7752461e-02 7.2648109e-02 -7.2709329e-02 -2.9549730e-01 8.6465135e-02 1.4863394e-01 1.6048490e-01 -1.9950270e-03 7.6724929e-02 -2.8135911e-01 -2.6401392e-01 + 5.5338848e-02 4.0601563e-02 3.2558496e-03 -6.2607223e-02 6.2219294e-02 -7.3623533e-02 -1.7766459e-02 -4.1604021e-03 2.7339593e-02 2.2600121e-02 -6.8333719e-02 3.3693955e-02 -7.9931843e-02 7.0417012e-03 -5.3643067e-02 4.4513534e-02 2.6172936e-04 4.2094758e-02 -1.4554832e-01 -8.0857193e-02 8.4289360e-02 -3.2238374e-02 5.8231918e-02 -8.7636023e-02 -3.9929958e-03 -2.8918110e-03 -1.1828764e-02 1.5458810e-01 1.0004139e-01 -1.2480982e-01 -8.1561651e-02 -3.2704627e-02 5.5146501e-02 2.0682153e-02 3.2755418e-02 2.5354854e-02 1.3677348e-01 1.4855794e-01 -9.0485617e-03 + -2.9142566e-03 -3.3974412e-03 -5.1466227e-04 -1.1573258e-03 1.1146437e-03 1.2253930e-03 -2.7052293e-03 9.5876628e-04 -1.0657767e-03 -8.6800806e-04 -2.3050423e-03 -2.6991405e-03 1.0107523e-03 1.5371669e-04 2.2893110e-03 1.5182392e-03 2.7052584e-05 -2.4352395e-04 -1.4307928e-03 6.3854406e-04 1.3444877e-03 -1.8483468e-03 2.6884783e-03 -2.2123236e-03 5.0950438e-04 -2.3504787e-03 -1.1227077e-03 2.8086904e-03 5.6670287e-04 2.0381888e-04 -2.4744485e-03 -3.0195354e-04 1.3857231e-03 3.1331329e-03 1.3311694e-03 -1.2674284e-03 -1.1771873e-03 1.3652600e-03 2.0877794e-03 + -9.5019669e-02 2.7589618e-02 -3.3578095e-02 -4.7815975e-04 2.2016411e-02 -5.9616156e-02 5.1902685e-02 4.2261915e-02 2.3196912e-02 8.5218375e-02 -6.3395213e-02 -1.1257754e-01 4.7575721e-02 1.5889215e-01 5.4072758e-03 1.2274968e-01 8.8526133e-02 2.2404696e-01 -1.4701943e-01 -1.8978859e-01 1.3479661e-01 1.0566548e-01 1.3592992e-01 -6.4423727e-02 1.3704784e-01 -3.6743764e-02 -1.8673520e-01 -1.4033182e-01 -1.5102626e-01 8.1640197e-02 -3.6388021e-02 1.2394740e-02 -2.0598482e-01 -3.2011527e-01 -2.4385632e-02 7.8098916e-02 -1.7024621e-02 -5.8649930e-03 1.4582303e-01 + -8.6372575e-02 -1.6829348e-01 1.4155100e-02 -1.1390551e-01 5.2208781e-02 -1.3883635e-02 -1.3409295e-01 7.3476611e-02 1.3347470e-01 5.4073353e-02 1.8037715e-02 -8.0313655e-02 1.9625134e-02 -3.8990895e-02 7.8693339e-02 1.9108418e-01 -1.6461592e-02 9.3679597e-02 -8.2538009e-02 -4.8310050e-02 1.2532820e-01 1.1106551e-01 8.6488918e-02 -8.3810205e-02 -1.0849138e-01 -6.1876044e-03 -1.1629053e-01 -5.4187649e-02 1.0728771e-02 -4.3016328e-02 -7.7668630e-02 -5.8260149e-02 1.5050699e-01 3.1949410e-03 9.5131382e-02 1.5190922e-02 -8.6460375e-02 -4.5450335e-02 2.3540872e-02 + -1.7418827e-02 4.5515602e-02 2.4961354e-02 2.1064355e-02 1.0084799e-02 -1.4214406e-02 2.0707141e-02 -5.3663134e-02 -4.1434808e-02 -2.7476007e-02 -2.7880921e-02 2.9574901e-02 -2.1809839e-02 1.9239962e-02 5.9786975e-03 -2.3264485e-02 3.3857108e-02 2.0498561e-02 8.4882712e-02 -2.4395730e-02 5.3615561e-02 2.0589375e-02 -5.3746791e-02 -1.1330416e-02 -2.8866733e-02 7.6446402e-02 1.7876999e-02 -2.6855367e-02 -8.2363012e-03 1.8675984e-02 2.5466946e-02 7.1423227e-03 -2.0548622e-02 -5.8271819e-02 1.2856386e-02 4.4888673e-02 -2.0874050e-02 -3.2863658e-02 -5.7431329e-02 + -1.6083811e-01 9.1715060e-03 1.7167550e-01 6.3927614e-02 -1.5546566e-01 5.4677017e-02 4.8248925e-02 -3.2258693e-01 -6.7853594e-02 1.0523844e-01 5.8279691e-01 1.9797859e-01 -7.8883069e-02 -2.1416912e-02 -1.0161445e-02 -2.8948069e-01 1.1701344e-01 -5.5241857e-01 3.6760093e-01 5.9917996e-02 -1.0616523e-01 5.2803525e-01 -2.6382877e-01 4.3160541e-03 -2.8066216e-01 3.7029796e-01 -8.2040301e-02 1.6894349e-01 -9.6355149e-02 -2.2895875e-01 1.6719891e-01 4.3258971e-02 7.2709048e-02 8.9353746e-02 5.0908299e-02 4.0957526e-02 -1.2119976e-01 -1.0629077e-01 1.2422165e-01 + 3.0583590e-02 -6.9104210e-02 5.0354338e-01 -3.9421995e-01 -1.5228122e-01 8.6839792e-02 -1.2837776e-02 2.6971743e-02 7.4909887e-02 -2.5097217e-02 5.1234175e-02 -6.2986618e-02 -1.6592575e-01 1.1495467e-01 2.9761799e-01 -3.6848205e-01 9.9415794e-02 -2.9549459e-01 -4.4071186e-02 7.1566815e-02 7.7993846e-02 4.3401909e-01 -9.3991411e-02 7.6479792e-02 1.0528518e-01 3.6765921e-01 2.0867818e-01 5.8523343e-01 -1.1786058e-01 8.3569241e-02 -4.5780162e-02 1.0153278e-02 1.2008713e-01 1.3922147e-01 -2.5510596e-02 -1.5573159e-01 1.6259682e-01 -2.5505880e-01 -3.6130446e-01 + -1.7408274e-02 2.7376833e-01 -1.6941676e-01 -1.3119189e-01 1.1319026e-01 -3.9512910e-02 1.2102892e-01 -2.1876987e-01 -2.3917734e-01 -1.0124838e-01 7.2874532e-02 6.8108363e-02 -7.3402728e-02 2.0328565e-01 -1.0732025e-01 -1.6683749e-02 7.6832528e-02 -2.1104490e-02 -1.3272253e-01 -6.0667560e-02 2.2976671e-01 -1.0804864e-01 -4.2698396e-02 -6.8912889e-02 1.3910562e-01 -2.0475210e-01 -6.2210534e-02 6.7060834e-02 4.8347231e-02 3.1757814e-02 7.8627500e-02 1.5356174e-01 -2.6320804e-01 1.2305238e-01 -1.1026155e-02 5.2753099e-02 -2.1524220e-01 2.0483571e-01 1.1971947e-01 + 2.1744878e-01 -6.1546739e-02 1.3878134e-01 -5.3430250e-01 9.4403544e-02 -1.2288801e-01 5.2642418e-01 8.5251715e-02 -1.7442043e-01 1.8888368e-01 -1.1887260e-02 -6.2784231e-02 -5.7919401e-02 4.9897087e-01 6.0436038e-01 3.7730633e-02 8.6588501e-02 -2.8407609e-01 -9.2609147e-02 6.6705317e-02 -2.2888796e-01 2.5025117e-01 -3.9629539e-02 7.6423058e-02 1.6050732e-01 -1.3867105e-01 -1.7411762e-03 3.5672287e-01 -2.1617567e-01 2.5786047e-01 2.6810644e-02 4.3636435e-01 -1.4004334e-01 1.3867953e-01 -7.9243646e-02 -6.9069190e-02 -2.6698019e-01 7.6337765e-02 1.2646932e-01 + -1.3707930e-03 2.4698315e-01 -4.2373695e-01 -1.5590874e-01 1.1682482e-01 -8.4810642e-02 2.0816784e-01 -1.7926229e-01 3.9638690e-02 -4.2080903e-02 -9.0801154e-02 6.9684257e-02 1.2203804e-01 2.3306860e-01 -4.2850334e-03 1.3260676e-01 -4.9131143e-03 2.4991963e-02 4.5457659e-02 -4.7939587e-02 -1.8744592e-01 -1.4430727e-01 -2.2399887e-01 -5.1401805e-03 2.7040991e-02 -1.7704138e-01 -8.4811093e-02 1.5946127e-01 -1.4550334e-01 -4.4814858e-02 1.2514667e-01 3.7458092e-01 -2.4821356e-01 -1.2969772e-01 -8.5881350e-03 1.1737286e-01 -2.1397992e-01 2.4401341e-01 3.6829077e-01 + 3.9422830e-02 9.0180476e-02 -2.1530365e-02 6.2352232e-02 3.1469014e-02 -3.2940065e-02 2.5942305e-02 -6.7256820e-02 -6.3649402e-02 -6.0103485e-02 5.9583311e-02 4.2447493e-02 -6.2899848e-02 -1.0845877e-02 -8.9017013e-02 -4.0732271e-02 -1.3614263e-02 6.7856095e-02 1.0772681e-01 -3.2974393e-02 2.2649979e-02 -4.5670780e-04 -9.1639495e-02 2.6891684e-03 -1.9274503e-02 5.3368889e-02 2.0486968e-02 -4.4603737e-02 -1.0069473e-02 -2.7902852e-02 3.0571744e-03 4.2379956e-02 1.3771617e-02 -7.8025736e-02 -1.7318640e-02 9.7638504e-02 6.6182495e-02 1.1941826e-02 -2.6147951e-03 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_G_1.txt new file mode 100644 index 00000000..8bf4bcbb --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_G_1.txt @@ -0,0 +1,27 @@ + -7.7549293e-02 1.1678973e-02 2.3237240e-02 1.2753501e-02 1.7580523e-02 -5.0966457e-02 -4.2912448e-04 -7.9271500e-02 1.3270634e-01 1.7620495e-02 7.7023068e-02 -6.9262487e-03 7.7071198e-02 1.1473228e-01 1.2084670e-02 2.2286445e-02 -5.1960625e-02 3.4557231e-02 3.4763385e-02 2.9652349e-02 1.1824987e-02 -5.8053266e-03 1.9538134e-02 -4.7614043e-02 8.4370758e-02 6.6053635e-02 2.4952495e-02 + 1.4396974e-02 -3.5622780e-03 -2.2262058e-02 -1.2648785e-02 9.9749988e-02 1.1609257e-01 -1.8163021e-03 8.1827642e-02 2.3551667e-02 -2.0753528e-02 3.5006647e-02 -1.0648161e-01 -1.1446538e-01 -1.6933516e-01 -3.6533491e-02 1.7109169e-03 4.1888951e-02 -7.2910263e-03 -4.1157946e-02 7.9732867e-02 1.2377634e-01 2.8273712e-02 -6.4000284e-02 -1.0899949e-02 3.0811748e-02 2.9451011e-02 7.4397943e-02 + -1.4040861e-01 -4.8700319e-01 2.9588459e-01 2.4690536e-01 4.2520271e-01 1.2353747e-01 -2.9584906e-01 -1.4833591e-01 2.0108122e-01 -1.6590286e-01 -1.1990374e-01 1.3090056e-01 -1.4504210e-01 9.9012684e-02 1.9553110e-01 -1.2353468e-02 3.8874121e-01 -7.4387823e-02 1.7505400e-01 1.7994325e-01 5.5341721e-01 -1.7844227e-01 2.9832101e-01 -1.5345114e-01 1.0796181e-01 -1.3249894e-02 6.1598728e-02 + -2.8720466e-03 4.6421366e-02 9.5849751e-02 -1.1217943e-02 1.1554738e-01 1.0156068e-02 -2.0768578e-02 -1.4237429e-01 5.4588011e-02 -2.3241595e-02 -3.7149830e-02 4.2312247e-02 2.7292566e-03 9.1180724e-02 2.9439740e-02 1.8928087e-02 -3.5466718e-02 -2.1895293e-03 -4.8717773e-03 9.5520299e-03 -3.4692119e-02 -3.0381558e-02 1.1098773e-02 -8.0609758e-03 4.2228300e-02 2.2551210e-02 -2.4041387e-02 + 3.1316442e-03 -2.9595324e-02 -4.6381350e-02 -2.5768064e-02 4.1252405e-02 1.0408566e-01 -3.2763584e-02 1.4662528e-01 2.8967266e-03 -1.8184921e-02 4.3257297e-02 -7.0250785e-02 -7.9429759e-02 -1.9581212e-01 -9.3122011e-02 1.0537875e-02 2.9440883e-04 1.3835108e-02 -8.5160834e-02 2.3279838e-02 -6.0493496e-03 2.5570689e-02 -1.3067607e-01 -4.2176338e-04 -5.3061037e-02 -8.4832801e-03 -2.0042561e-02 + 1.3275880e-01 1.6156559e-01 6.1366836e-02 -1.1823844e-01 9.8841668e-02 -1.4905168e-01 2.3300498e-01 -4.1463639e-02 4.7072028e-02 1.8376025e-01 -8.1194517e-03 2.0793981e-02 8.7418050e-02 3.2198598e-01 -7.2326541e-02 1.0913807e-01 -1.1207444e-01 -1.6303679e-02 4.2481955e-02 -3.8039513e-02 4.7547354e-02 3.2418802e-02 6.0402045e-02 -2.0057773e-02 5.6283591e-02 -8.5145449e-03 1.5230390e-01 + 1.3186127e-02 -1.0185022e-02 3.1326927e-02 3.9842030e-03 4.0758369e-02 4.4549579e-04 5.6331492e-03 -5.9172997e-02 8.5068716e-03 -3.2284367e-02 -1.7783525e-02 3.3028736e-02 -1.8778461e-02 6.1030572e-02 5.3594133e-02 -2.1332970e-02 3.3498623e-02 -8.4390748e-03 4.2458406e-03 -1.4911234e-02 3.4332799e-02 -4.1726932e-02 4.4771261e-02 -2.2424798e-02 1.4768399e-02 1.0020488e-03 5.9346268e-03 + 4.1859334e-02 -2.9573132e-01 -3.4318674e-01 4.8387225e-02 -4.7870877e-01 -2.7835998e-02 -1.2783463e-01 5.1626171e-01 -2.1539768e-01 3.0317965e-01 1.2431263e-01 9.8942723e-02 -1.3276016e-01 -3.4640208e-01 -6.9414709e-02 -1.7656814e-01 5.7449271e-02 1.2159248e-02 7.9472782e-03 1.1013178e-01 4.6496808e-03 1.2574075e-01 -1.7472042e-02 -8.5872808e-02 -2.7292203e-01 -4.5142388e-02 -2.8900353e-02 + 1.8921996e-01 2.3343039e-01 1.6723722e-02 -1.1380723e-01 -3.8959875e-03 2.2707743e-01 -1.0081972e-01 -3.4302249e-01 -1.1929650e-02 -1.0245602e-01 2.2839209e-04 -1.5124792e-01 -1.8287922e-01 -3.5271948e-01 5.9777807e-02 2.6200202e-01 2.6442233e-01 -1.4237999e-01 -8.3143744e-02 2.5095581e-02 8.2255110e-02 3.1525564e-02 -2.0083878e-01 -1.2279927e-02 -6.8782388e-02 -8.2185755e-02 1.4754295e-01 + -1.1321708e-02 -4.3983577e-02 -4.7011828e-02 7.8000073e-02 1.3591441e-01 -2.8368707e-02 1.2199375e-01 1.6116196e-01 5.8440917e-02 1.9745442e-02 -4.8141420e-02 -6.4040952e-03 -3.1491175e-02 1.0858122e-01 -3.7965873e-02 -1.3265595e-01 -1.4981176e-02 1.5068708e-02 2.7236580e-02 6.5551985e-02 7.9045868e-02 -3.0854843e-02 1.1965764e-01 -5.6141492e-02 7.2706118e-02 1.9693662e-02 -2.2659279e-02 + 1.3246641e-02 1.1369248e-01 3.2088146e-02 -3.8143232e-02 -8.7808770e-02 -1.5387057e-02 -6.6828526e-02 -6.8799461e-02 -3.0934327e-02 1.9154133e-02 7.0914410e-03 -9.4597097e-03 8.9108005e-02 -7.3566722e-02 -1.0862786e-01 1.2126195e-01 -1.2414846e-01 2.3834981e-02 -5.2634090e-02 -2.2216607e-02 -2.2201586e-01 2.8047787e-02 -1.6300635e-01 1.0153934e-01 -6.1670558e-02 -7.1543259e-02 -1.3200297e-01 + 1.5221861e-03 -1.5385351e-03 -2.0121957e-02 -2.8824094e-03 -2.4074514e-02 2.6191435e-03 -1.6521994e-04 2.7418896e-02 -5.1354945e-03 7.8640528e-03 9.0946316e-03 -2.4756169e-02 3.8926532e-03 -3.3719012e-02 -1.7110925e-02 1.4541067e-02 -5.4211608e-03 -1.6105424e-04 -1.7640984e-03 -2.0993038e-03 -2.5419341e-04 1.7235568e-02 -1.7894211e-02 8.1016792e-03 -1.0878094e-02 -4.4309410e-03 9.5809708e-03 + -6.0499103e-02 -4.0969421e-03 7.0799932e-03 2.8320680e-02 1.1777223e-01 -1.6031209e-02 4.6242994e-02 -1.3434450e-02 4.4103646e-02 -2.5341992e-02 3.5736695e-02 -3.2548893e-02 -1.3269859e-02 9.5523679e-02 1.2789594e-01 -1.3420658e-02 3.1973217e-02 -2.9958546e-02 6.5033104e-02 7.6205733e-02 7.3316530e-02 6.4227104e-02 6.9560652e-02 1.6473392e-02 5.4341052e-02 5.0981493e-02 2.2899590e-02 + -3.5701424e-02 1.8873677e-01 3.6687479e-03 2.6260366e-01 -9.8373897e-02 -3.8761002e-01 3.4112558e-01 -2.7838433e-01 -2.0452583e-01 1.1857247e-01 -2.9578074e-01 3.8346029e-01 1.9617495e-01 3.0954507e-01 1.4398190e-01 3.7601535e-02 -4.7057813e-01 -8.0436584e-02 2.3734815e-01 -1.5901359e-01 -3.8200264e-01 -1.0748144e-01 2.0271158e-01 8.2850950e-02 2.1729184e-02 -2.4869978e-01 -1.7249999e-01 + 5.0422376e-02 1.1065336e-01 1.1451675e-01 -2.0856903e-02 9.2692568e-02 2.8512220e-02 3.3526490e-02 -6.8666111e-02 -7.6082584e-02 -9.2535063e-03 -6.9227581e-02 1.4023744e-01 -2.0760938e-02 3.9864502e-03 6.2424674e-02 -9.2005243e-03 4.8780088e-02 -1.1930119e-02 -5.1914821e-02 -6.3392769e-02 -3.9452363e-02 -1.1073449e-01 -1.3010079e-02 1.4249528e-02 -1.0961698e-02 -5.2309091e-02 -9.8779003e-02 + -5.0767827e-01 -5.2846518e-01 4.3113328e-01 2.0184805e-02 8.2300415e-01 4.5373752e-01 -4.2855129e-01 -7.8755249e-01 3.9578440e-01 -5.5265893e-01 -1.0414708e-01 -1.2854310e-01 -7.8979665e-02 1.8534730e-01 6.8519541e-01 3.6314634e-01 2.8680005e-01 -1.5861648e-01 -1.3012064e-01 8.9228598e-02 4.0457536e-01 -4.4356562e-01 4.4213278e-01 1.9557697e-01 1.6248503e-01 2.1893628e-01 -1.7721942e-01 + -1.2372401e-02 9.0310275e-04 2.4633307e-02 7.5310445e-03 2.7812793e-02 -3.5080481e-03 -1.3136757e-02 -3.6510228e-02 4.1800461e-03 -1.7029320e-02 -5.0716924e-03 3.3373615e-02 -2.7001060e-03 3.2545550e-02 1.8403956e-02 -2.9462200e-02 4.4693058e-03 7.7225509e-03 -6.9038078e-03 4.6861040e-03 -1.6957019e-02 -1.8629870e-02 8.6568212e-03 -6.6004886e-03 1.0521998e-02 3.2014778e-03 -2.5779913e-02 + 2.0003792e-02 1.3410784e-02 5.0326368e-02 -6.8545791e-03 5.5329001e-02 -7.7558499e-03 -5.9939034e-03 -1.1816051e-01 -3.5338913e-02 -2.8384164e-02 -5.1691214e-02 5.3935321e-02 2.6238657e-03 8.8063119e-02 6.8743178e-02 -1.7209286e-02 6.6233699e-02 2.9580925e-03 2.3135772e-02 -2.0995937e-02 1.6988294e-02 -7.8972563e-02 5.0256708e-02 -2.7767055e-02 2.6123115e-02 1.5894310e-02 -3.2876937e-02 + 5.3118683e-02 -1.9017143e-02 1.7544259e-02 -1.1715241e-02 5.9327008e-03 2.0021952e-02 2.3571429e-02 -2.7687448e-02 1.0299248e-02 -7.1078872e-03 -2.9610226e-02 -1.8811526e-03 -4.1054615e-02 3.7065716e-02 4.7875120e-02 4.9259787e-02 2.3825318e-02 -5.4681146e-02 1.2685301e-02 -1.5425906e-02 5.9749922e-02 -2.2094951e-02 4.6107926e-02 9.6207893e-04 -1.1814331e-02 -2.3020965e-02 4.8230941e-02 + 7.0489159e-02 1.9011872e-01 -8.1472970e-02 1.7331321e-01 1.9831912e-01 -4.0349616e-02 7.0562433e-02 2.0483539e-01 3.1723185e-02 -3.8747598e-03 1.1828705e-01 -1.8584326e-01 6.0364110e-02 1.5264885e-01 -2.0096027e-01 -2.8550272e-02 -1.7577958e-01 3.9647931e-02 6.0818425e-02 9.6707755e-02 8.9854707e-03 1.1995758e-01 -2.7208443e-02 -5.4399130e-02 -7.1445224e-03 8.4741826e-03 5.1601114e-02 + 1.4939533e-01 -8.7396358e-02 2.1642989e-02 -7.0413829e-03 -5.0299311e-02 2.8713842e-02 9.0847423e-02 2.0656422e-01 -1.0187842e-01 -6.4433853e-03 -2.5821341e-02 1.5597436e-01 -1.8265327e-01 -1.1515834e-02 -1.5632447e-01 -1.1506541e-01 6.0900525e-03 -3.5159421e-02 -2.2528409e-02 6.0388565e-02 7.7374522e-02 3.8500074e-02 4.2889301e-02 -1.7682074e-01 -3.0112863e-02 -7.9323076e-02 4.3008337e-02 + 6.3910136e-02 4.0322663e-02 -5.2967195e-02 -3.9002334e-02 -9.0268922e-02 4.4323559e-02 6.2668592e-02 8.5067597e-03 4.3759666e-03 -3.6218806e-02 1.6394080e-02 -1.1985655e-01 -2.9830208e-02 -7.5070867e-02 -1.1229480e-02 8.2668444e-02 7.2540377e-02 -3.5715235e-02 -7.6804325e-03 -4.7070436e-02 1.1191093e-01 1.9684053e-03 -1.1930656e-02 1.4280172e-02 -5.6084435e-03 -3.6621861e-02 1.3299598e-01 + 3.3276084e-02 8.1639731e-04 -2.1423998e-02 -7.4692558e-03 -2.3553384e-03 5.4987950e-03 7.3439540e-02 5.0034783e-02 8.7851841e-03 1.2212682e-02 -2.0393891e-02 -5.4827974e-02 -1.1088139e-02 1.7142649e-02 -5.9161246e-03 4.4811832e-02 2.2524231e-02 -1.6077071e-02 2.1650445e-02 -1.7166942e-02 1.1495829e-01 5.0441093e-03 3.8718206e-02 -1.5886807e-02 1.6113374e-02 -3.8243290e-03 1.0046743e-01 + 9.7903643e-03 -1.6063456e-02 3.0101949e-02 2.3380023e-02 4.8818590e-02 -2.0407485e-02 -2.9159092e-02 -1.1928389e-01 5.9976586e-02 -7.1889311e-03 -3.0101283e-02 4.7938743e-03 3.9421408e-03 8.9775835e-02 7.7382404e-02 4.8697481e-02 -1.6905464e-02 -4.5348938e-02 2.9421757e-03 -2.6040952e-02 1.0172737e-02 -1.5145202e-02 5.4503889e-02 3.1139808e-02 1.3052450e-02 -1.5887898e-02 3.6340877e-02 + -5.7529239e-02 -3.2570819e-01 -3.8820386e-01 2.3295739e-02 -5.6308593e-01 4.0636325e-03 -1.6446671e-01 5.9872151e-01 -1.7859493e-01 2.5755936e-01 1.7436534e-01 -6.6850662e-04 -9.9463253e-02 -3.5943488e-01 2.8975958e-02 -1.7304131e-01 5.9750319e-02 5.7484105e-02 -1.4937981e-02 1.4699377e-01 -7.0116915e-03 2.2954239e-01 -2.7781323e-02 -5.1294262e-02 -2.9615195e-01 5.1542697e-02 -1.1814498e-01 + 1.3877250e-01 9.9833458e-02 -9.1757141e-02 -8.1227306e-02 1.4590686e-01 8.2001441e-02 -9.3580539e-02 -1.4820893e-01 7.7501362e-02 -7.5530914e-02 4.4616570e-02 -3.3233713e-01 -2.6137375e-02 -1.6360619e-01 4.8053583e-02 3.1385715e-01 9.7639275e-02 -1.0165498e-01 -7.0320150e-02 -1.0724753e-02 1.0093078e-01 6.4768357e-02 -1.7860012e-01 6.0281501e-02 -1.4484034e-02 -1.1368226e-01 1.9667435e-01 + 3.1693772e-02 -8.5129175e-03 -6.6009380e-02 -2.1293020e-02 -9.2603296e-02 2.6995442e-02 -1.9413557e-02 1.6895070e-01 -3.5784945e-02 -5.3029104e-02 5.4829546e-02 -5.5404669e-02 -4.1598180e-02 -2.1306489e-01 -5.7427371e-02 1.6664057e-02 -1.3212301e-02 4.1896991e-03 -8.6339601e-02 8.9727562e-04 -5.7726978e-02 8.9278817e-02 -2.0397908e-01 3.5115118e-02 -7.6588018e-02 -8.1587257e-02 -2.5831106e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_G_2.txt new file mode 100644 index 00000000..1a722c86 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_G_2.txt @@ -0,0 +1,15 @@ + -9.6169696e-02 -6.4859372e-02 1.4056955e-02 -7.1862254e-02 1.3410110e-01 3.2078940e-01 1.6364831e-01 -1.5944508e-01 3.4417425e-02 -1.9018490e-01 -5.6143760e-02 1.7474086e-02 -6.7627570e-01 -9.1386655e-02 1.9237936e-01 2.9480787e-01 3.5048504e-02 -1.4624858e-01 2.4276598e-01 -8.5318119e-02 -2.3059445e-01 1.9976651e-01 -1.5760797e-01 1.9601475e-01 -1.5590352e-02 -1.9174231e-01 6.5607945e-03 -5.6112481e-01 + 3.7154628e-03 6.3327309e-02 -1.7955016e-02 -7.5588875e-02 9.4019001e-02 3.9046268e-02 -1.2234956e-01 1.0173256e-02 4.2881536e-01 -3.0458125e-02 -1.6001361e-01 9.9472560e-02 2.4850849e-02 5.8581833e-03 7.0056221e-02 5.3817283e-03 -1.7759363e-01 2.2819172e-02 2.2016050e-02 4.4600946e-02 -2.2829550e-01 -2.1929965e-01 7.2277077e-02 1.7800254e-01 -1.3276266e-01 -3.5250023e-03 6.0118863e-02 5.1019911e-02 + -1.4872270e-01 -4.8172956e-02 1.6034984e-01 7.6439398e-02 1.0463692e-01 8.0328976e-03 6.2770323e-02 -3.0847300e-01 8.6151982e-02 3.2346298e-02 7.4715794e-02 -1.2407143e-02 1.5427374e-01 6.8348418e-02 -9.8673293e-02 1.1531494e-01 -1.4033683e-01 -2.5077122e-02 5.0743143e-01 -1.7857627e-01 2.8832527e-01 7.7018574e-02 -9.2255664e-02 5.6389199e-02 -1.7602502e-01 2.2234130e-02 1.4583669e-01 -2.5328561e-01 + 7.5417347e-02 -4.3016729e-01 1.4951996e-01 5.5985322e-02 2.4800885e-01 3.3659410e-01 -4.6337179e-01 -5.1515705e-01 7.4566168e-03 -5.6089480e-01 -1.8879595e-03 1.5559153e-03 3.4363724e-01 9.3921225e-03 4.6835495e-02 3.3835442e-03 2.3588676e-01 -3.4348622e-01 2.9256382e-01 -3.6876172e-01 -2.4242124e-01 1.0210445e+00 3.1025406e-01 6.3161139e-02 1.7997510e-01 6.0040440e-02 -8.1406416e-03 -3.7570845e-01 + -3.1469657e-02 2.7251929e-01 6.2435926e-01 -2.3996304e-01 -3.5721702e-01 3.3262491e-01 -5.9907318e-01 -2.6387428e-01 6.8952064e-01 -2.0280497e-01 -2.2653766e-01 8.4016191e-01 2.0250889e-02 3.4097270e-01 3.5474502e-01 -9.5463794e-02 -4.5298775e-03 2.6951902e-01 2.4185256e-01 6.2437162e-02 2.8054821e-01 -7.0612328e-01 7.7308156e-02 -1.3445999e-01 -1.5530951e-01 -4.4272843e-01 7.6409697e-01 -4.4852132e-01 + -8.8554850e-02 4.3936354e-01 4.2460286e-01 -1.5488172e-01 1.6051738e-02 -1.0574812e-01 1.1841502e-01 -2.3137773e-01 7.7572720e-02 -3.8572954e-01 1.6589763e-01 3.1801909e-01 7.2368742e-01 6.4076149e-02 1.5029827e-01 2.2535342e-01 4.5403331e-02 3.4548324e-01 -1.9102502e-01 2.4141436e-01 6.2112530e-01 -3.7596638e-02 2.8908516e-01 -4.9114496e-01 1.3432832e-03 -2.5611550e-01 -9.9002665e-02 4.2295247e-02 + 1.4365934e-01 1.4884365e-01 1.6433070e-01 -3.4018628e-01 4.2295204e-02 -1.7956435e-01 3.3330834e-01 1.6869053e-01 -6.6602437e-03 2.2119697e-01 3.5313620e-01 -8.9909002e-02 -1.8921048e-01 6.2522740e-02 1.6053591e-01 1.1398069e-01 1.4441903e-02 -3.4519606e-02 -2.7863535e-02 1.1950482e-02 -6.2512730e-02 -4.5290958e-01 -1.4878803e-01 -1.2597977e-01 1.7106179e-02 -1.9927654e-01 -3.5649057e-01 -2.2233322e-02 + -2.0924923e-01 -8.3984590e-02 -2.8775483e-01 -2.4050436e-01 6.1661697e-01 1.4577786e-01 3.7374769e-01 -3.4872034e-01 2.5253922e-01 2.0380823e-01 -3.6840394e-01 -9.2494670e-02 -1.2100912e-01 1.6630660e-01 -1.0031906e-01 5.8450900e-01 -3.3430740e-01 3.0542571e-01 7.0447530e-01 2.7430094e-01 -1.3154712e+00 -1.9009272e-01 2.1194253e-02 5.6075612e-01 -3.4669682e-02 -9.0073079e-01 -1.3263587e-01 -3.1703791e-01 + 1.3039478e-01 -1.8016977e-01 -4.2449733e-01 2.7209115e-01 1.0249691e-01 -3.1862871e-01 4.2624427e-01 1.9714887e-01 -2.7724216e-01 3.4151452e-01 3.1529807e-02 -5.3574255e-01 -1.7327922e-03 -2.2140489e-01 -4.1138140e-01 6.8587118e-02 -3.3822036e-02 -2.3877287e-01 2.5873174e-01 -1.3221575e-03 -1.7975499e-01 2.2577371e-01 -4.4381023e-02 1.3349469e-01 3.1972985e-01 -1.2280525e-01 -6.2416289e-01 3.5418671e-01 + 2.4967444e-01 -1.6682256e-01 -1.6937026e-02 -6.7264250e-03 2.6158549e-01 4.1222354e-01 -2.6989100e-01 8.7749481e-03 -2.7020900e-01 -2.1145516e-01 -4.3080508e-01 -1.0564497e-01 -2.3757171e-01 -2.7151113e-01 5.2792330e-02 5.0887497e-03 -7.0385158e-02 8.9691844e-02 -1.4935703e-01 -3.3814921e-02 5.3322580e-01 -1.8579125e-01 3.5079748e-01 -1.8067793e-01 2.4261233e-01 -1.3706379e-02 6.2902378e-01 9.8997533e-02 + -4.2975323e-01 5.1019489e-02 -3.3927075e-02 -1.9407861e-01 3.1552040e-02 -2.3890504e-01 6.9208419e-01 2.4053536e-01 -5.5868862e-01 5.3980544e-02 -1.3886885e-01 -5.6920467e-01 1.5678275e-01 -3.8207257e-01 4.4839972e-02 6.6768870e-02 -2.5398506e-01 6.6150243e-02 -1.9749371e-01 -2.1356506e-02 9.3751905e-02 -3.0607652e-01 -1.7858617e-01 7.1888220e-02 -2.8361458e-01 5.4223833e-01 -2.6199666e-01 2.6249032e-01 + 3.1104095e-01 1.0650992e-01 2.7128074e-01 2.5754038e-01 -1.0931061e-01 1.7671760e-01 4.2955789e-02 1.3909094e-01 1.2385381e-01 3.1082011e-01 2.1610335e-01 2.8275529e-01 -1.3906565e-01 3.9009301e-01 3.0732696e-04 -1.4921055e-01 -1.0826359e-01 -1.8582102e-02 5.2571167e-02 -5.4150035e-02 4.8253637e-01 2.9023086e-01 6.4831637e-02 -5.1960952e-01 1.6098779e-01 -6.9119967e-02 -3.3305389e-02 1.4715951e-01 + 5.6630126e-01 -3.7246789e-01 -3.1002203e-01 5.2030464e-01 -4.2863947e-01 -2.6670097e-01 9.0641819e-02 2.7639290e-01 1.8490123e-02 7.4178072e-01 3.7700454e-01 1.3180030e-01 -9.0388240e-01 -1.8238444e-02 -4.8467649e-01 -1.2051460e-01 4.8446755e-02 -3.6704502e-01 -3.2303040e-03 -1.3948342e-01 -2.1477063e-01 7.4123646e-01 -7.6637396e-02 -2.4125738e-01 8.0805525e-01 -2.0738932e-01 -5.6364053e-01 1.9686254e-01 + 1.6271485e-01 -3.1402281e-01 1.4407385e-01 -5.7251110e-02 2.3523899e-01 2.9081250e-01 -3.5492817e-01 -9.1923314e-02 -3.8238501e-01 -2.2061586e-01 -2.6479589e-01 1.2386504e-01 -6.9299326e-02 8.5197547e-02 1.6276216e-01 -4.0840769e-01 4.2582178e-01 -3.5233241e-01 -1.2933253e-01 -2.8412943e-01 -2.0480202e-01 1.4911280e-01 1.9702417e-01 2.7414475e-01 8.9541853e-02 5.7686294e-01 6.3758969e-01 -3.1796334e-01 + -2.3915667e-01 1.2375983e-01 -6.0092446e-02 -9.6900231e-02 -1.0032130e-01 -4.1730855e-01 5.5905199e-02 3.7209367e-01 -5.4246766e-01 1.5160418e-01 1.8804477e-01 1.2914685e-01 4.4773169e-01 -1.3270607e-01 -8.3447324e-02 -1.9338354e-01 3.0900515e-01 -2.0762487e-01 -4.5719312e-01 2.2262791e-01 6.2450686e-01 -5.4421270e-01 5.0125495e-02 2.2232626e-01 -3.3718206e-01 6.0745219e-01 3.5207506e-01 3.1570844e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_G_3.txt new file mode 100644 index 00000000..86071689 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_G_3.txt @@ -0,0 +1,26 @@ + -1.9283433e-01 2.5837837e-02 2.7887575e-01 -2.2993611e-01 2.1351422e-02 9.3607798e-03 -3.5868791e-02 -2.0738017e-01 -3.7904914e-01 2.0421096e-01 1.9978088e-01 -4.8768499e-02 5.6102140e-02 -1.3220411e-01 4.9620889e-02 1.6298140e-01 -4.5680310e-01 2.6599328e-01 -3.1777151e-01 -1.6469076e-01 2.3529382e-01 -2.4884344e-02 -1.8582475e-01 1.6361050e-01 1.4243999e-01 -1.9837785e-01 3.0334219e-01 -8.0405241e-04 1.0777059e-01 + 6.1664665e-02 5.4128078e-01 1.4385184e-01 -1.3858451e-01 1.3192391e-01 1.7206781e-01 2.5488140e-01 6.3638009e-02 -3.7171705e-01 1.1735238e-01 -7.4562033e-02 6.0800357e-02 -1.9610509e-01 -1.4188674e-01 2.4825442e-01 4.6928997e-02 3.2534836e-02 6.0081282e-01 -2.1745238e-01 -5.1707079e-02 1.8649441e-01 -4.8652324e-03 4.4550148e-02 1.2644396e-01 1.5018669e-01 -3.5546346e-02 3.5994545e-02 2.2313462e-02 1.2557235e-01 + 1.2003207e-02 1.3589856e-01 -7.5126469e-02 1.5564869e-02 9.9483256e-03 3.8531999e-02 6.0209198e-02 7.4220980e-02 -1.2119285e-01 -2.5960289e-02 5.3492419e-02 -4.5227136e-02 4.7164371e-02 4.2689159e-02 -7.0942435e-02 -1.5230268e-02 5.5007910e-02 -4.4571252e-02 -1.0502400e-01 -1.6200322e-02 2.9400379e-02 -2.2160137e-02 7.3887025e-02 4.6224354e-02 1.6607410e-02 1.8786766e-02 -6.3700577e-03 -7.9420913e-02 -1.8850147e-02 + 6.3418282e-03 -4.3432521e-02 -3.4857249e-02 1.4942009e-02 -2.3865184e-02 -2.7296722e-02 -5.3460559e-02 9.7944061e-02 -8.5254768e-02 -1.0893952e-02 -4.8163206e-02 3.3614308e-02 6.6593734e-02 -9.3437954e-03 3.2289378e-02 2.7304805e-02 1.6421865e-03 -3.1206163e-03 1.0204939e-01 -2.4715852e-02 -1.4654437e-02 -6.2405578e-02 1.2353957e-02 -2.2336451e-02 -5.6681264e-03 7.4519561e-03 -2.3356259e-04 3.6890977e-03 -8.2345305e-05 + -1.5383042e-02 8.1348815e-01 6.0632283e-02 2.6514659e-01 1.4824008e-01 5.1708795e-02 3.5511800e-01 8.8747580e-01 -3.6673727e-01 -2.0501319e-01 3.6141430e-01 -6.4919098e-02 2.2674278e-01 2.1997965e-01 6.8250171e-02 -1.2504924e-01 3.1336799e-01 3.7039407e-01 -8.0326455e-01 1.9653496e-01 1.9729788e-01 -6.1389544e-01 7.3243963e-01 -3.7083658e-03 3.2887740e-01 6.7430655e-01 -8.9071982e-01 1.0561524e-01 2.3107174e-01 + 5.8105265e-02 6.6065016e-02 6.6643837e-02 -1.1875678e-01 -1.0839711e-02 -1.3652470e-01 -3.2462782e-01 2.4589969e-01 -1.7005289e-03 -1.1643507e-02 -5.5475179e-01 -1.5087203e-01 -1.1251847e-01 -6.1814067e-01 -1.1478341e-01 -1.9000993e-01 3.9529252e-01 8.4089402e-03 3.8664007e-01 4.8158998e-01 -2.0805030e-01 -1.2778000e-01 4.5377392e-02 2.7982570e-01 2.0546146e-01 -3.4561535e-01 -1.7362449e-01 8.2610460e-02 7.3993248e-02 + -1.0380754e-01 1.0605876e-01 -9.2028615e-02 -1.1940025e-01 -6.8962762e-02 2.8652278e-02 -3.7182387e-02 -2.7018682e-01 3.2725788e-01 1.3704496e-01 -2.0243849e-01 3.9751077e-02 -7.5848490e-03 -1.5407658e-02 -7.4488062e-02 2.4316951e-02 1.8587240e-01 -1.4619346e-01 6.7414723e-02 2.8583019e-02 -1.6241882e-01 1.5494734e-01 -2.2563706e-02 -7.7119178e-03 -1.1176473e-01 6.7351054e-03 -1.3166155e-01 4.9610363e-02 -1.7263326e-01 + 6.3935042e-02 7.2282882e-02 -2.3116827e-02 -3.8821916e-05 3.8397794e-02 -5.5756490e-02 9.3339998e-03 9.0085691e-02 -8.0910206e-02 -2.4651364e-02 1.0215652e-01 2.0833617e-02 -7.8523423e-03 -3.4903461e-03 2.9333570e-02 4.5578084e-02 4.6760331e-02 3.4222425e-02 -1.3291436e-02 1.9167310e-02 3.7330112e-02 -4.4238843e-02 1.7266173e-02 1.3054614e-03 -3.1666485e-04 4.4876728e-03 -4.3395506e-02 -6.7378991e-02 6.0166496e-02 + -1.0342305e-01 1.6699653e-01 1.4514613e-03 1.4928924e-02 1.7205221e-01 1.7403196e-01 2.0993395e-01 5.5551457e-01 -7.0587277e-02 7.0711291e-02 2.1261595e-02 -6.5811747e-02 2.4948015e-01 -3.1377525e-01 1.4305759e-01 -4.0912639e-02 -3.1496927e-01 4.8084457e-01 -4.4509046e-01 -1.0825171e-01 1.6271342e-01 -3.0481335e-01 1.2843725e-01 1.5219711e-01 3.3891127e-01 1.1435364e-01 7.9863043e-02 4.5922847e-02 6.8337542e-02 + 1.0786817e-01 6.9626002e-02 -2.5754108e-02 2.5883144e-02 9.1364548e-02 -7.6682795e-02 -2.0979497e-02 1.0762473e-01 -7.0293284e-02 -4.3369418e-02 1.6557968e-01 -1.0506015e-02 -4.7802994e-02 -4.4246776e-02 1.1810683e-02 -3.6753725e-02 -3.1402470e-02 -8.2238339e-03 -6.8428656e-02 4.7945382e-02 -2.8675682e-02 -1.8551078e-01 4.0443765e-02 1.0657540e-01 2.6715475e-02 -1.0003604e-01 -9.3270549e-02 -8.9335449e-02 6.9267505e-02 + -1.8413331e-01 -5.6076853e-01 2.8633087e-01 -2.1350958e-01 1.4877835e-01 2.8338264e-01 -2.4959241e-02 -3.1162142e-02 4.1477586e-01 1.5853696e-01 1.6208094e-01 -1.7310328e-01 -1.8580545e-02 -3.0766559e-01 2.7245664e-02 -6.6462117e-03 -6.5569438e-01 3.0805894e-01 -3.3392164e-01 -8.8719478e-02 5.0821161e-02 -7.4707352e-02 -3.0464276e-01 2.8559265e-01 2.0592473e-01 -1.5077788e-01 6.4371640e-02 1.6733258e-01 6.9747660e-02 + -1.7099062e-02 -7.1251613e-03 1.0282427e-02 -4.3703496e-03 2.9399483e-04 2.4063594e-02 2.2185193e-02 -3.6081435e-02 2.6040124e-02 1.0354600e-02 2.4005633e-02 -1.4542725e-02 -7.6037111e-03 -2.5391452e-03 -6.5685112e-03 -4.2964035e-03 -2.1229392e-02 6.0803522e-03 -4.2848844e-02 4.9426295e-04 7.9985762e-03 2.4863487e-02 -1.1418378e-02 8.3590636e-03 1.1842378e-03 -4.7561882e-03 9.9667010e-03 1.0834638e-02 -1.8229395e-03 + 2.5859537e-01 5.1228227e-01 -4.0058197e-01 3.1582789e-01 3.2607698e-02 -1.9063337e-01 3.0594891e-02 2.1973894e-01 -4.2968783e-01 -1.5524216e-01 2.8013952e-01 1.8404903e-02 -1.8738192e-01 1.3635480e-01 6.6750042e-02 -9.0707879e-02 3.2215826e-01 -2.4575803e-01 -1.5080358e-01 6.0779974e-02 -5.1009072e-02 -1.1905612e-01 1.9148481e-01 -1.5690265e-01 -2.2329308e-01 3.4420426e-01 -2.7286095e-01 -5.9065188e-02 -1.2287005e-02 + 2.1959518e-02 -1.3614061e-01 -5.9286588e-02 1.0636418e-01 -1.8717698e-02 2.2759475e-02 -1.5354381e-01 -4.6628970e-02 -8.0951999e-02 -4.5017610e-02 -9.6517551e-02 -3.0162527e-02 -9.8913653e-04 4.2883960e-02 -7.3332068e-02 3.2387818e-02 -2.8114286e-02 -4.7491857e-02 1.3255694e-01 -2.6088244e-02 6.0623234e-03 9.3148593e-03 6.3702629e-02 -1.0482832e-02 5.0016319e-02 -1.5413126e-02 7.8990138e-02 -1.4075303e-02 1.5861785e-02 + 4.0556265e-02 2.2455600e-02 -4.5987218e-02 2.8054512e-02 8.8690376e-03 -5.0494594e-02 -2.9044459e-02 8.5296551e-02 -5.4812153e-02 -2.0701681e-02 1.1232361e-03 2.0677701e-02 4.9257166e-02 7.0320595e-03 7.9615157e-03 2.6208617e-02 2.9487156e-02 2.1253780e-03 2.9986895e-02 -1.9826838e-02 1.3379978e-02 -3.1477966e-02 2.8109979e-02 -1.5375762e-02 -4.0531911e-03 5.3937715e-02 -1.6094474e-02 -3.7329001e-02 2.6181822e-02 + -8.1026844e-02 -7.9525599e-02 -8.5562321e-02 5.3610887e-02 -3.9810264e-02 1.8928496e-01 1.1060348e-02 8.4920189e-02 1.2792734e-01 5.6022912e-02 -1.6150238e-01 -2.1451469e-02 2.0625919e-01 -1.2366739e-02 -9.8607948e-02 -5.7399385e-02 -1.1634438e-02 -2.6275424e-02 -1.4254294e-01 -9.0003338e-02 1.5766684e-03 6.1233916e-02 1.5790736e-02 1.1775640e-02 3.8772302e-02 1.3609600e-01 9.6907904e-02 4.2561902e-02 -7.3159022e-02 + -2.3987637e-02 -1.8504059e-02 4.4341640e-02 -3.3258727e-02 6.8151341e-03 1.1726290e-02 3.7663034e-02 -7.6064611e-02 6.6358254e-02 1.0472404e-02 2.4662508e-02 -3.1342043e-02 -6.6712430e-02 -1.1285673e-02 1.2334414e-02 -1.5279062e-02 -3.9330449e-02 7.1597923e-03 -3.9476777e-02 3.3652456e-02 -1.8155676e-02 5.5798742e-02 -2.6654050e-02 1.7447910e-02 -1.8448238e-02 -7.0157702e-02 2.3534858e-02 2.7409032e-02 -2.8222545e-03 + 4.3779882e-03 -1.3401233e-01 -3.2995788e-02 -2.7750987e-02 -9.6643739e-03 -4.2953796e-02 5.8106090e-03 1.0139560e-01 1.6760795e-01 2.8618263e-02 3.3538396e-01 2.3558163e-01 3.0526935e-01 5.4093052e-02 2.5197850e-01 3.1765824e-01 -2.2440050e-01 -7.8378291e-02 -8.5777700e-02 -1.2406925e-01 6.1082660e-02 -1.4542910e-02 -8.6797895e-02 -1.9515639e-01 -1.8756161e-02 3.2600256e-01 -1.0207176e-01 -5.8392085e-02 1.2910181e-01 + 2.3101347e-01 1.1736417e-01 7.2766645e-02 -4.0134550e-02 9.2580013e-02 -4.0780130e-02 -9.2962373e-02 2.6196552e-01 -1.6760933e-02 -1.0890072e-02 3.8939869e-01 1.6342649e-01 4.8467101e-03 -2.7203835e-01 8.3730292e-02 -3.4375160e-02 4.1527470e-02 -6.3431601e-02 -3.7430555e-02 9.9256850e-02 -4.2870596e-02 -3.6173582e-01 -9.3992050e-02 1.0177919e-01 -4.4135544e-02 -2.0239482e-01 -2.4954359e-01 4.0311588e-03 5.9237680e-02 + -1.7670504e-01 5.7963748e-02 -1.2976945e-01 -3.4336626e-02 -8.2645356e-02 1.9031469e-01 1.5087298e-01 3.2932913e-01 -1.1833485e-01 -6.2845409e-02 -9.8099415e-02 -1.1214593e-02 2.5162341e-01 -1.5498289e-01 -3.6679230e-02 6.4473964e-02 1.6509269e-01 6.3883028e-02 6.1138494e-02 1.0619818e-01 -2.0958055e-02 9.7492809e-02 9.3653941e-02 2.1638121e-02 -1.1652548e-02 -1.4583286e-01 7.5226538e-02 -8.6783370e-03 -5.4590950e-02 + 7.9280299e-03 -1.6305641e-02 -8.5971061e-03 3.0553830e-03 -7.6894829e-03 -3.3470299e-02 -2.9604040e-02 5.1595288e-02 -3.8735519e-02 -5.0627779e-03 -3.2234037e-02 1.9224920e-02 1.4073844e-02 4.1055709e-03 2.6137575e-02 1.1206562e-02 -8.7658057e-04 1.9355966e-03 6.2880026e-02 -1.0508634e-02 -1.3879735e-02 -3.0020460e-02 2.4513988e-03 -2.0461711e-02 -1.1375741e-02 1.6986487e-03 9.1533273e-03 1.0959924e-02 7.4811028e-03 + -1.4558306e-04 -5.6718810e-02 -1.4136213e-02 -1.2213470e-02 -6.9609089e-03 -1.9578136e-02 -3.3335111e-02 -3.6938854e-02 6.6961486e-02 2.5104913e-04 -3.7910133e-02 1.5556899e-02 1.0826857e-02 -3.0055484e-02 2.0718583e-02 1.0460821e-02 -1.4657795e-02 -1.9232806e-02 6.2903765e-02 5.7253070e-03 -3.5956276e-02 3.6194985e-02 -2.1318183e-02 1.3610039e-02 -3.4374288e-02 -2.1196468e-02 9.9155510e-04 1.8626637e-02 -3.1774756e-03 + -2.7920012e-01 -8.0708510e-02 1.1207914e-01 -5.8819224e-02 -2.5077480e-01 -1.6766490e-01 2.6592842e-01 4.0645171e-01 -9.5688297e-02 4.0826870e-02 5.2255231e-01 1.4605498e-02 4.0801544e-01 1.0285533e-02 2.0960166e-02 1.4153349e-01 -4.2321072e-01 -5.2262632e-02 -4.8384330e-01 1.0876071e-02 -5.9797558e-02 -4.0917303e-01 8.8379672e-02 -3.8548405e-02 -6.8924780e-02 1.7796549e-01 -1.8665965e-01 1.1314864e-01 4.3770956e-02 + -4.4213591e-02 -1.3744664e-01 -2.1908332e-03 9.6226487e-02 -9.7395521e-02 5.9398639e-03 -8.9302998e-02 1.2931607e-01 -1.5026009e-01 -9.3248094e-02 -1.2784298e-01 -3.1683821e-03 4.3560880e-02 1.7805576e-01 -2.8563882e-02 -1.0980847e-01 1.4269573e-02 -1.3981283e-01 1.9909737e-01 -1.5962551e-02 -9.2248253e-02 -1.3508544e-01 4.4207877e-02 -1.2398023e-01 2.3678454e-02 1.0560785e-02 6.6021874e-02 1.2504993e-01 -3.6648654e-02 + -6.9462262e-02 2.1666366e-01 1.0111418e-01 -6.0029402e-02 7.9590545e-02 1.9155222e-01 5.9525278e-02 2.1045648e-01 -1.2423492e-01 -5.0767704e-02 -1.3892166e-01 -1.2515315e-01 -2.6699066e-01 -1.0820024e-01 -1.7107551e-01 -3.1867010e-01 2.5109017e-01 7.3942686e-02 -9.3615689e-02 1.0884583e-01 -1.0165334e-01 -9.6088729e-02 -3.9198044e-02 2.7098234e-01 1.0893328e-01 -2.2905761e-01 -4.2893454e-02 2.7399546e-01 1.7565821e-02 + 5.3089653e-02 8.7979536e-02 1.2799766e-01 -1.1217756e-01 5.9799398e-02 -6.3047305e-03 1.7749800e-01 1.4556257e-01 -9.3790864e-03 5.8783875e-02 1.8459954e-01 3.7914458e-02 -2.1785204e-01 -2.6526718e-02 1.0804424e-01 1.2805678e-01 1.2663168e-01 1.1770117e-01 -2.2228951e-01 3.7125093e-02 8.9178327e-02 -1.9137382e-01 3.5269940e-02 -4.9109315e-02 5.4994676e-02 -1.6503452e-01 -6.9311151e-02 -6.3667002e-02 2.0105047e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_G_4.txt new file mode 100644 index 00000000..76837f7c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_G_4.txt @@ -0,0 +1,25 @@ + 1.6626083e-02 -1.1023053e-02 2.1373949e-02 2.0128318e-02 -7.6224899e-03 -2.0139073e-02 -1.6325921e-02 2.9941152e-02 -5.0534903e-02 -1.3280968e-03 3.8244099e-02 -1.1232580e-02 -4.0788511e-02 2.3633397e-02 -5.5024949e-02 1.1318227e-02 5.3840870e-02 1.8284375e-02 -8.0933360e-03 2.7522950e-03 -8.8569257e-03 -8.3530087e-03 4.2381639e-02 1.2383283e-02 -9.5856058e-03 1.3069524e-02 1.4526148e-02 -3.9062728e-02 -2.9388641e-02 6.0562354e-03 3.5060551e-02 -3.2405204e-02 -1.8777297e-02 -3.8747594e-02 5.3086029e-03 -5.2850430e-03 + -6.9235451e-03 1.4004540e-02 -4.1959021e-03 -1.4015504e-02 7.5704094e-03 7.6401955e-03 8.3929548e-03 7.8284449e-03 3.8097208e-02 5.3375472e-04 -1.0292748e-02 5.5616104e-03 9.2703923e-03 -8.3175194e-03 3.3177749e-02 -7.0695212e-03 -1.8665378e-02 -1.2298797e-02 -3.1614349e-04 -4.7330536e-03 -1.3961478e-04 5.7525232e-03 -3.5419997e-02 -1.2835497e-02 1.2663157e-02 5.3156149e-03 -6.5606371e-03 1.4566726e-02 -9.9754477e-06 -5.5290962e-03 -2.6751182e-03 1.6652104e-02 9.7796925e-03 2.5179090e-02 -2.0107798e-02 -3.7675905e-03 + 5.8047731e-03 -1.9200450e-02 -9.3659477e-02 -9.7643298e-03 -5.1276478e-02 1.5561672e-02 2.4161845e-02 -5.5666311e-02 8.4405079e-02 2.4775625e-02 -6.8562660e-02 -1.5315207e-04 1.2127792e-01 -3.8583838e-02 9.4702029e-02 1.1342826e-02 -4.0179671e-02 -5.3788704e-02 -3.2040428e-02 2.6970410e-02 8.8172025e-03 -1.0016479e-02 -4.5035225e-02 9.8861240e-03 -5.3163715e-03 -1.2941426e-02 3.7975321e-02 5.9417737e-02 -3.7929789e-02 -3.2969428e-03 -8.6890058e-02 4.7426557e-02 1.1469418e-02 2.9491012e-02 7.5479596e-02 -1.8512888e-02 + 6.5430837e-02 -9.8948714e-03 2.0167371e-01 1.3888885e-01 7.0947069e-02 1.0032601e-01 -1.1196320e-01 -8.8200199e-01 -3.9951989e-01 -4.6717248e-02 -1.3504617e-01 8.1736171e-02 -2.5532510e-01 1.8356765e-02 -8.2990379e-02 -1.9457127e-03 1.7333097e-02 8.8703836e-02 -1.7263752e-02 3.8435014e-01 1.2934902e-01 1.8315080e-02 -3.8051896e-02 9.7451474e-02 -5.5550104e-02 -6.0547426e-01 4.2369235e-01 1.2234710e-01 3.7069524e-01 3.0971658e-02 -1.0185949e-01 -2.6885464e-01 -8.9818649e-02 -1.2319352e-01 -1.8706611e-02 1.0385737e-01 + 3.9343132e-02 -1.7258264e-02 5.9028424e-02 3.9966998e-02 -1.6005037e-02 -4.2783674e-02 -3.2897762e-02 9.7815233e-02 -3.8471648e-02 3.5834426e-03 6.5377330e-02 -2.0468583e-02 -1.0502922e-01 3.9880340e-02 -1.0516555e-01 1.5133985e-02 9.6835509e-02 4.4877020e-02 1.3211248e-02 -1.5293405e-02 -5.1447162e-03 -1.2969186e-02 -1.1105136e-02 1.4231915e-02 -4.5061247e-03 3.2579420e-02 -3.7216966e-03 -4.3500589e-02 -1.4407366e-02 4.9276582e-03 8.1894017e-02 -1.1310440e-01 -3.5709393e-02 -6.5006216e-02 2.3394870e-02 2.5834655e-04 + 3.4428162e-03 -1.3971275e-02 -2.0797754e-03 1.2099299e-03 1.1252047e-02 -1.2109202e-02 -1.4383896e-02 2.6696344e-02 -2.6490649e-02 -3.7454906e-03 2.1102876e-02 -6.1224478e-03 -2.9491999e-02 1.9355192e-02 -7.3112654e-03 2.0907503e-02 2.3896778e-02 -1.3171482e-02 -1.1962114e-02 1.7014597e-03 -4.8322664e-03 -4.0899323e-03 2.7309999e-03 1.8900814e-02 4.9160109e-03 7.1919758e-02 2.7790250e-02 -3.8390011e-02 -6.2377003e-02 -6.1063610e-04 2.6546270e-02 -6.4882671e-03 -9.6317401e-03 -1.3224096e-02 -7.6275572e-03 -6.8245231e-03 + 1.4262000e-02 -3.5917126e-03 2.2798097e-02 1.2848092e-02 -6.0721425e-03 -2.0516531e-02 -1.4506307e-02 4.1035209e-02 -3.2772037e-02 1.0714812e-03 4.1717036e-02 -1.0846142e-02 -3.8236959e-02 1.9936113e-02 -4.2830671e-02 8.6867922e-03 5.0037274e-02 1.4586511e-02 -1.1865538e-02 -3.9794906e-03 -1.2561267e-02 -5.6772852e-03 2.4957037e-02 4.0100883e-03 -4.5435595e-03 1.4703322e-02 9.3588431e-03 -3.3912058e-02 -3.0537180e-02 2.3150320e-03 3.4632104e-02 -2.6744958e-02 -1.4674863e-02 -2.7053809e-02 -1.5470244e-03 -9.1940433e-03 + -9.0694157e-03 -4.1842206e-03 -3.8628864e-02 -1.4779478e-02 1.7786778e-02 1.4259213e-02 6.1097144e-03 2.1137495e-03 3.7377948e-02 3.4429447e-03 -7.5704023e-02 4.4766130e-03 5.9511132e-02 -3.7977029e-02 6.3742708e-02 -2.9985912e-02 -5.4016685e-02 -2.0242456e-02 1.5325124e-02 8.5420918e-03 -1.3176908e-02 7.3380196e-03 4.4706013e-02 -6.3273683e-03 1.6059421e-03 -6.5367377e-02 -8.7690908e-02 -1.3196908e-02 6.3454278e-02 5.7139748e-03 -5.3579987e-03 1.0954390e-01 1.6941213e-02 4.4893550e-02 -2.2293549e-03 -3.1707688e-02 + 5.1176280e-02 9.0946920e-02 -3.2093654e-02 2.5738585e-02 4.1042426e-02 -8.2291336e-02 -5.2117855e-02 2.9290850e-01 1.8609490e-01 7.9786863e-03 -8.6757193e-03 -1.7300472e-02 -2.8788946e-01 -1.3791153e-02 -8.0882501e-03 -5.8305680e-02 3.3062426e-02 5.1795299e-02 1.8259407e-01 -4.2077261e-02 -8.3985477e-02 -3.3577795e-02 -1.2228737e-01 -3.1415346e-02 5.2782894e-02 2.8797494e-01 -4.7347270e-01 -3.0880593e-02 2.9267366e-01 -5.4467353e-02 1.0129373e-01 -1.4079878e-01 1.2486004e-03 -2.9701715e-02 -2.7725736e-02 3.1260936e-02 + 1.2095107e-01 1.2324353e-01 -4.3236435e-01 1.3003031e-01 -9.4923969e-03 -1.3719062e-01 -6.1158360e-02 -4.8487766e-01 -2.3998693e-01 -1.2852802e-02 -2.0197625e-01 -8.2229298e-02 1.4240627e-04 -4.7482627e-02 -1.4801583e-01 -1.6796918e-02 4.3347084e-02 1.1742463e-01 7.4217926e-02 4.3198190e-01 -3.1111045e-01 -3.2766783e-02 1.8871110e-01 -2.4684340e-02 -1.8870182e-02 2.5782244e-01 -3.5795466e-01 -2.8451186e-01 -4.5248501e-02 1.5654067e-01 -1.7335884e-01 2.2171804e-01 -1.3649286e-01 -2.1530259e-01 -1.3455546e-01 -3.4208665e-02 + 8.8362732e-03 -1.7706830e-02 2.8299404e-03 1.6268161e-02 -4.3397316e-03 -4.8773483e-03 -9.2275905e-03 -5.7703529e-03 -4.0788745e-02 -3.0320148e-03 7.6245019e-03 -4.1947243e-03 -1.6750482e-02 1.1732051e-02 -3.2175294e-02 7.1012691e-03 2.3717292e-02 8.1814109e-03 -1.4461384e-04 7.6395942e-03 3.1779545e-03 -7.8375763e-03 4.1808644e-02 1.7204811e-02 -1.0695505e-02 3.1970111e-04 9.1494405e-03 -1.9927890e-02 -3.7047490e-03 5.3326411e-03 5.3642060e-03 -1.0778258e-02 -1.1942533e-02 -2.6941257e-02 1.3043139e-02 9.4525962e-04 + -6.6732574e-02 5.3665572e-02 1.2511893e-01 -9.7829297e-02 -1.4727551e-02 2.1029482e-02 9.1141075e-02 1.6829741e-01 3.0298851e-01 5.2114369e-03 5.7146207e-02 7.1302259e-03 8.4180133e-02 1.8623213e-03 8.8859296e-02 -2.5456270e-03 -9.2163604e-02 -1.9933853e-02 -5.2175693e-02 -1.4559576e-01 2.7282238e-02 6.0610392e-02 -3.1083014e-01 -1.0674796e-01 5.6102888e-02 1.4848724e-01 7.5494619e-03 1.0729286e-01 -2.5535663e-01 -9.9890833e-03 4.4580223e-02 -8.0143682e-02 5.8156997e-02 1.4791471e-01 -5.2479330e-02 1.2502033e-02 + -1.7173196e-02 9.9508492e-03 8.5933188e-03 -3.1666687e-02 1.2705867e-02 1.2782935e-02 2.3209446e-02 4.9591079e-02 1.1964252e-01 1.5704336e-03 -1.9450110e-02 1.2047307e-02 4.4829175e-02 -2.2938525e-02 7.0593611e-02 3.6449255e-03 -5.6285591e-02 -2.3529890e-02 3.1022376e-04 -2.6786163e-02 2.9138655e-02 2.7327105e-02 -1.1288670e-01 -1.5314394e-02 3.0119799e-02 8.3627403e-02 -5.7455371e-03 5.5329055e-02 -5.2644207e-02 3.1136455e-03 -9.0977710e-03 2.0096946e-03 1.2376666e-02 6.4520776e-02 -4.1605648e-02 4.2096977e-03 + 2.4802827e-02 -2.3712255e-02 -9.6634545e-02 7.1718196e-02 6.5399749e-03 -9.0855506e-03 -5.3323757e-02 -7.7119692e-02 -2.6199176e-01 -2.2321793e-02 -1.4251786e-02 -6.7892024e-03 -6.3407288e-02 2.2269496e-02 -1.0866067e-01 2.1514536e-02 8.9779364e-02 4.6467119e-02 4.9762552e-02 1.1676756e-01 -4.9349385e-03 -3.6037508e-02 2.5328885e-01 7.1791498e-02 -6.8895552e-02 -1.1147869e-01 1.5485020e-03 -8.7267023e-02 9.8622175e-02 1.6233032e-02 -2.0094009e-02 1.9859576e-02 -4.6187813e-02 -1.4588426e-01 7.4444590e-02 1.9524802e-02 + -4.7084698e-04 1.9555722e-02 6.8662372e-02 1.9894309e-02 -6.7664225e-03 -1.5032661e-02 -7.8108474e-03 5.0957907e-02 -8.0405004e-02 -1.7535626e-02 1.1430864e-01 -1.4023769e-02 -7.9324427e-02 5.6466494e-02 -1.4413860e-01 2.3148495e-02 6.9947405e-02 7.0577100e-02 5.3790296e-04 -2.7542653e-02 -1.2158254e-02 1.3751217e-03 -1.1610706e-02 -1.9466412e-02 -1.1344510e-02 1.0261635e-01 7.3086837e-02 -2.1738985e-02 -9.6041270e-02 1.2088832e-02 5.7820120e-02 -1.2568233e-01 -2.2327571e-02 -6.1617449e-02 -3.6913190e-02 3.8917994e-02 + 8.9141226e-02 8.9503918e-02 5.3459298e-02 4.9604692e-02 -7.2493213e-02 -1.3076125e-01 -9.3825629e-02 -5.1716142e-01 4.5657324e-02 2.8849756e-02 7.1557628e-02 -3.1169636e-02 -4.6217681e-01 -5.2304422e-02 -4.8532166e-02 -2.3314942e-02 1.2180726e-01 7.4386053e-02 -8.8291596e-03 6.7445518e-02 -3.7760817e-02 -7.6602019e-02 -3.7177354e-02 1.8499781e-02 7.6017020e-02 6.3428173e-01 -7.3517866e-02 1.1116594e-01 -2.0256702e-01 -5.2284968e-02 -3.5844013e-01 -7.0262352e-02 -3.8978585e-02 -7.8578632e-02 -1.0791348e-01 6.4626512e-02 + 2.0498319e-02 -8.0844931e-02 -4.2669956e-02 4.9469794e-02 -2.2413005e-02 -1.6591568e-02 -1.4557372e-02 -8.4427232e-02 -1.2805809e-01 -5.7407997e-03 -3.6992807e-02 -1.7915629e-02 2.5638735e-02 1.2038177e-02 -5.7802315e-02 3.5523877e-02 2.1159015e-02 2.8655177e-03 -8.2715700e-03 4.3606117e-02 1.0407097e-02 -2.1806908e-02 1.1862772e-01 7.8395558e-02 -5.1000465e-02 1.1611482e-02 6.4575880e-02 -6.1602835e-02 -1.8441668e-02 3.6348517e-02 -4.0261939e-02 -1.7231455e-02 -3.7277788e-02 -8.3930724e-02 1.2053396e-01 1.0271974e-02 + 4.8961913e-03 1.7138640e-02 5.9807046e-03 -1.5071612e-02 1.7249972e-02 -7.2443172e-03 -1.1604010e-02 6.0820254e-02 8.3511675e-02 1.0966071e-02 -5.4620591e-02 6.4442529e-03 2.0869620e-03 -2.9773220e-02 4.6095117e-02 -2.6887858e-02 -1.7583833e-02 -2.7349705e-02 1.6718911e-02 -5.5246129e-03 -1.1293805e-02 1.0693067e-02 -1.0189487e-02 -1.5418937e-02 2.0710867e-02 -3.3037463e-02 -8.3829584e-02 2.1673864e-03 5.2672064e-02 -8.3621926e-03 1.7495124e-02 8.2000110e-02 6.4634521e-03 4.0859770e-02 -6.4803648e-02 -2.9648322e-02 + -1.8680844e-03 -6.6046978e-03 -5.1785171e-03 2.3512316e-03 8.2688441e-04 5.4816349e-03 5.7205854e-04 -1.4973946e-02 -6.2385339e-03 -2.5631876e-03 -9.3918233e-03 2.3290179e-03 4.4942636e-03 -8.1606461e-04 6.0297120e-04 5.2410340e-04 -6.2996344e-03 -1.8229919e-03 4.0664747e-03 3.3455322e-03 6.5331624e-03 -9.9901020e-04 5.1057887e-03 5.8728572e-03 -2.8877244e-03 -6.4337292e-03 3.3616204e-03 2.7169451e-03 8.8417962e-03 8.9614329e-04 -7.3819066e-03 1.6027763e-03 5.0137917e-04 -2.1833761e-03 7.2655083e-03 3.7137184e-03 + -2.1924482e-02 1.7187890e-02 -2.3969204e-02 -2.3107988e-02 8.8420745e-03 2.3516902e-02 1.9123144e-02 -4.5538392e-02 6.1470617e-02 2.2188889e-03 -5.1986804e-02 1.5839460e-02 6.0513796e-02 -3.4214259e-02 6.2393202e-02 -1.8693894e-02 -7.3774907e-02 -1.7531043e-02 1.7227384e-02 -3.4623900e-03 3.3851552e-03 1.7365916e-02 -1.8813412e-02 -1.8488123e-02 5.6056274e-03 -3.0942807e-02 -2.8280111e-02 4.8135106e-02 3.3682851e-02 -2.3428041e-03 -3.5124802e-02 6.2712688e-02 2.2044228e-02 4.9271091e-02 -9.5049347e-03 7.2784874e-03 + -6.9129274e-03 1.2729148e-02 -4.5013093e-03 -1.3409302e-02 8.6738961e-04 3.6468635e-03 1.0470939e-02 -1.9409961e-03 3.7189953e-02 4.0474568e-03 -1.2199402e-02 2.6515215e-03 2.4014100e-02 -1.3284710e-02 3.0859028e-02 -5.4474006e-03 -2.4798469e-02 -8.3140783e-03 -7.0450337e-04 -4.5794815e-03 -3.4932942e-03 6.9126215e-03 -3.5450445e-02 -1.3900765e-02 7.5467696e-03 1.5030574e-03 -8.0979359e-03 1.8366787e-02 2.7483990e-03 -2.4999456e-03 -9.8371898e-03 1.0782764e-02 9.6034650e-03 2.2639980e-02 -7.5333628e-03 -4.3789706e-04 + 4.4475179e-02 -9.1560119e-02 2.9284683e-02 9.2162077e-02 4.3908958e-03 2.2799002e-02 -2.0261526e-02 -3.0458886e-01 -2.1230896e-01 -4.7193268e-02 7.9820311e-02 5.3448899e-03 -1.6618644e-01 7.8928031e-02 -4.8112518e-02 1.0402656e-01 7.8351910e-02 -1.1524796e-02 -2.2459540e-02 1.1755847e-01 7.1462074e-02 -2.7519269e-02 -9.8827575e-03 1.3246298e-01 -7.7826227e-03 6.6280469e-02 3.2923563e-01 -1.8904691e-02 2.6551201e-02 2.8388037e-02 -9.1388921e-02 -2.3242238e-01 -7.8215704e-02 -1.2600211e-01 6.1810158e-02 4.9363148e-02 + 2.1993485e-01 -2.5911142e-01 3.6671253e-03 9.8245444e-02 -1.7709146e-01 -2.4214478e-01 -1.9947346e-01 -9.6221270e-02 -3.4915441e-01 1.6456309e-01 -3.2765888e-01 -9.7281518e-02 -1.5934815e-01 -1.4844552e-01 -1.1091771e-01 5.5855080e-02 3.3697238e-01 -6.4141173e-02 -1.2831457e-01 1.6197654e-01 -1.5104321e-01 -1.0323415e-01 7.5574923e-01 1.8119891e-01 -8.5310831e-02 2.7849833e-01 -8.0606409e-02 -1.3064254e-01 -3.5532964e-01 6.6908068e-03 -1.1132198e-01 4.3911077e-01 -1.1822694e-01 -1.6565967e-01 2.6098314e-01 -1.7257203e-01 + 7.4539293e-03 -2.7900879e-02 -3.9439050e-03 2.2187652e-02 -4.0731698e-03 2.1684361e-03 -9.6846319e-03 -2.9458234e-02 -5.5562605e-02 -7.0985955e-03 -4.4815157e-03 -1.1884951e-03 -1.0640865e-02 1.1049535e-02 -3.6290505e-02 8.2741643e-03 1.7630778e-02 8.7979814e-03 6.6162570e-03 1.3981681e-02 1.1946909e-02 -1.0023898e-02 5.8005663e-02 2.7173663e-02 -1.7176055e-02 -1.0604792e-02 1.3077486e-02 -1.7283364e-02 1.2550796e-02 8.1420080e-03 -4.8487380e-03 -8.6634900e-03 -1.2766899e-02 -3.4162660e-02 2.5579407e-02 7.0659104e-03 + 1.7225756e-02 -1.8483632e-02 7.0746929e-03 2.7046939e-02 -1.5830938e-02 -1.3996879e-02 -1.1660019e-02 -3.3935560e-03 -6.9028876e-02 -2.4120333e-03 2.5491716e-02 -1.1342519e-02 -2.2011437e-02 1.8812249e-02 -5.9291277e-02 1.2032779e-02 5.0081156e-02 2.0793272e-02 -6.3393300e-03 1.3865317e-02 -2.2415203e-03 -1.5555594e-02 5.6821258e-02 2.0174043e-02 -1.9886990e-02 -1.7530156e-02 9.7600003e-03 -3.4401556e-02 -1.6806097e-03 8.3211110e-03 1.0998171e-02 -3.8018429e-02 -1.9992114e-02 -5.0305132e-02 2.4443332e-02 -6.0794716e-04 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_LW1_G_5.txt new file mode 100644 index 00000000..de65b1a6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW1_G_5.txt @@ -0,0 +1,15 @@ + -4.5048442e-01 -1.3327686e-01 -2.3582268e-01 1.7064628e-01 -1.2323010e-01 -2.0468260e-01 -3.0766897e-01 1.1231230e-01 4.1945766e-01 -2.1513490e-02 -4.3671737e-02 -2.7192586e-01 -2.5565369e-02 7.3522815e-02 3.3218553e-02 1.1614729e+00 -9.2165831e-01 4.8752915e-01 9.1689356e-03 -1.5592561e-01 -2.9402118e-01 -2.3744421e-01 -9.0346352e-02 4.1279187e-01 -3.4681085e-01 1.9424730e-01 5.3078627e-02 -1.2847603e-02 -1.4177787e-01 6.6929691e-01 -2.7508862e-01 1.1199145e+00 2.0661141e-01 2.1331477e-01 -8.8695770e-02 2.4201054e-01 3.0080435e-03 7.4423008e-01 9.8077591e-03 1.7810821e-01 -4.9583873e-02 -3.0341916e-03 9.9913149e-02 + -1.0298178e-02 3.3752316e-02 3.2266003e-03 1.9441259e-02 1.9660064e-02 -7.0088453e-02 -3.6811183e-02 -6.1929132e-02 4.6398482e-02 2.6251299e-02 -3.0814169e-02 -4.5189905e-02 4.2326912e-02 -3.0366668e-02 -2.2321858e-02 1.2147987e-01 -9.6870197e-02 -6.1564157e-02 4.9221443e-02 6.0828466e-02 1.7722358e-02 -2.7848091e-02 8.7885722e-04 1.1205888e-01 -1.7191655e-01 -3.2884488e-02 2.5565394e-02 -7.1395048e-02 1.3201326e-02 1.8778083e-01 -5.4958674e-02 4.5587627e-02 -1.3621913e-02 2.0693347e-02 -3.5460946e-02 1.3340612e-03 -6.4438581e-03 3.9432065e-02 2.1067839e-02 2.8306110e-02 1.5112952e-02 3.3921560e-02 1.2583711e-04 + 2.9295037e-02 1.5044874e-03 7.3274710e-04 -2.7470259e-02 -5.1806936e-02 1.0146421e-02 1.4903087e-02 5.9209387e-02 -2.1153756e-02 3.2488827e-03 -1.6987287e-02 2.0829153e-02 -2.0489391e-02 -9.8186936e-04 -1.2378706e-02 -4.0279201e-02 2.0216305e-02 6.8686536e-02 -2.3074086e-02 2.6624501e-03 -1.3127710e-02 3.2041517e-03 2.6006294e-02 -3.1191126e-02 1.2832172e-01 8.7235450e-04 1.5045568e-03 2.0870911e-02 7.4048325e-04 -6.0257727e-02 9.5528797e-03 -3.0832464e-02 1.7343153e-02 -1.6080088e-02 5.2915846e-03 -1.6417580e-02 -1.0599261e-02 -6.7452464e-02 -1.5414942e-02 -4.5624207e-02 1.2447154e-02 1.0265101e-02 -6.8087520e-03 + 2.2784566e-01 -8.8030209e-02 -4.4144893e-02 5.2103060e-02 5.1123282e-01 -1.3296785e-01 -1.3653467e-01 -9.6820361e-02 1.4844406e-01 1.0950908e-01 1.1146641e-01 -1.3318374e-01 -1.7297180e-01 1.0690159e-01 -3.8249525e-02 1.1449974e-01 1.8486235e-01 -2.7816469e-01 6.9801763e-02 -2.0890025e-01 4.4849145e-02 1.9547069e-01 3.9959222e-01 2.5067639e-01 -1.8301136e-01 -7.3834725e-01 4.1095702e-02 -1.4701397e-01 -1.1166854e-02 -2.3794087e-01 -2.4583369e-02 9.4738655e-02 3.8942179e-02 1.2811730e-02 6.6909178e-02 6.9719772e-02 4.8130098e-03 -1.4459864e-01 -3.6345119e-02 -1.6157971e-02 -1.8255180e-02 -1.2168538e-01 4.4959524e-03 + -2.9714043e-04 -4.7147641e-03 3.2632426e-02 -3.0356093e-02 -3.8562731e-03 1.1467079e-02 2.4604757e-02 2.0213456e-03 1.2746692e-02 1.2244996e-02 -1.1180892e-02 2.9155647e-02 -2.6701957e-02 -2.5433070e-03 -1.6558790e-02 -2.9994770e-02 9.2106797e-03 1.6394228e-02 -5.4895303e-03 8.4724462e-03 -4.3299255e-03 -4.1449832e-03 8.3389217e-03 -8.5524432e-03 4.0069148e-02 -3.5092224e-02 1.1054196e-02 -1.2086239e-02 -1.1064292e-02 2.0448117e-02 1.8493261e-02 1.3754172e-02 6.5591631e-02 -1.5360108e-02 -3.5065270e-03 1.3773283e-03 9.7558527e-03 4.9214671e-03 -1.5434900e-02 -2.4264550e-02 3.0907891e-02 1.8190587e-02 -2.2927528e-03 + -3.5747603e-02 -6.3053589e-02 -5.1178605e-03 -1.6187131e-02 -4.8649655e-02 1.4033618e-01 4.9336008e-02 1.5055309e-01 1.1753041e-03 -6.5621361e-02 5.8209171e-02 5.3441008e-02 -6.5866966e-02 4.9599435e-02 7.4447143e-02 1.6219389e-03 8.0229681e-02 1.3695383e-01 -9.4291250e-02 -1.0747304e-01 -1.0506435e-01 2.0186999e-02 5.7135842e-03 -2.0534357e-01 1.4506777e-01 9.3144664e-02 -6.1619329e-02 2.0263009e-01 -5.2129426e-02 -1.2617425e-01 9.0585449e-02 -1.7960814e-04 -8.1001989e-03 8.2076356e-03 2.9995275e-02 -3.3068881e-02 4.2448094e-02 4.0199267e-02 -2.1621151e-02 -3.7647441e-02 -6.1549384e-02 -7.9096011e-02 -1.0918279e-02 + -7.9937472e-02 5.7991742e-02 1.1533232e-02 -2.2142178e-03 -1.1023172e-01 8.4932789e-02 1.7340595e-01 -7.0882029e-03 -1.6267054e-01 -3.2380268e-02 -1.4946788e-02 5.4286746e-02 9.8911813e-02 -4.7249650e-02 3.6699055e-02 -2.3981958e-01 9.3159096e-02 -8.1432536e-02 -2.8307894e-03 1.1713793e-01 6.5012262e-02 -9.8343826e-02 -3.5867289e-01 -1.9228407e-01 5.0962569e-02 5.2813404e-01 -4.8621779e-03 6.4032803e-03 7.6596619e-02 1.3373735e-01 4.1937476e-02 -2.7313119e-01 -1.1255867e-01 -5.3112805e-02 -1.8446105e-02 -8.2359192e-02 -3.7134284e-02 -9.2387126e-02 3.7514450e-03 4.7574830e-02 -1.2255825e-02 8.0644068e-02 -6.7464651e-03 + -8.8454723e-02 1.4908256e-02 3.6246018e-01 -2.5196783e-01 -1.4789340e-01 1.5988970e-01 6.4704205e-02 -9.3848612e-02 6.6626339e-02 -1.5048595e-01 -5.6027310e-02 2.8665305e-01 -2.1110585e-02 -9.9800033e-02 8.7923212e-02 3.3809361e-01 3.5525602e-01 1.2991406e-01 -1.3527140e-01 4.5190489e-02 -3.4963102e-01 2.7788819e-02 -1.2519256e-01 -3.9035246e-01 2.2267132e-01 -2.1239070e-01 -1.6875042e-01 2.7653833e-01 -1.9832094e-01 -1.2773306e-01 8.0275852e-02 -1.8531175e-01 2.0071657e-01 4.3667988e-02 9.2071891e-02 -1.8362189e-01 2.2073551e-01 1.2236543e-01 2.3058478e-02 -3.5537563e-01 1.8379509e-03 -2.2852997e-02 -1.0358146e-01 + -4.7200896e-02 6.9599482e-02 5.7065475e-02 -8.9093356e-02 -3.0307882e-01 1.5803254e-01 2.2355042e-02 1.4753327e-01 -1.8185471e-02 -1.2259579e-01 -1.0856745e-02 1.7646519e-01 -5.1605350e-02 -2.5401741e-03 1.0132600e-01 3.2152404e-01 2.8968330e-01 2.1285215e-01 -3.8222541e-02 8.0738233e-02 -7.9514726e-02 -1.3880847e-02 -1.2217289e-01 -3.3165106e-01 -1.2940727e-01 2.2261980e-01 -1.0273844e-01 1.7278396e-01 1.4971142e-03 2.2124176e-01 1.1030819e-01 -2.2721708e-01 -1.6851874e-01 -2.9419081e-02 -8.1350033e-03 -1.1394905e-01 6.8868044e-02 -2.1704952e-01 8.8814867e-03 -2.2763713e-02 -4.6833270e-02 3.2013484e-02 -5.6160368e-02 + 5.5518458e-02 7.9430541e-03 -2.0484958e-02 2.5363034e-02 -4.2117534e-02 -7.4104514e-03 -3.8828615e-03 4.6623658e-02 -3.8059894e-02 -1.8689902e-02 2.1036666e-02 -9.1489147e-03 4.3639117e-02 1.6564639e-02 2.8659947e-02 -2.8637049e-02 -1.0836940e-02 4.5023600e-03 -2.2187654e-03 -5.8474944e-03 1.5473261e-02 3.1765670e-02 2.3976834e-02 -2.1578766e-02 1.0598094e-01 8.2812336e-02 -1.2492351e-02 5.3182472e-02 2.5460181e-03 -6.4243409e-02 -1.4300469e-02 -2.8962267e-02 -7.3326699e-02 2.6759997e-03 6.1109313e-03 -2.9340199e-03 -9.1571814e-03 -1.0910228e-01 1.1578886e-02 -2.8892195e-02 -2.8402930e-02 -2.8528297e-02 3.3292163e-03 + -1.0422194e-01 -9.8090212e-02 3.5831149e-02 -6.9987515e-02 -7.7702584e-02 1.9671743e-01 4.4862566e-02 4.0505779e-02 6.5805191e-02 -1.1630261e-01 5.6311735e-02 1.2057061e-01 -1.6403349e-01 5.5562572e-02 1.0532937e-01 6.6099940e-02 7.6417734e-02 2.8613455e-01 -1.6562536e-01 -1.0780837e-01 -1.8232513e-01 -2.9833839e-03 -1.3718938e-01 -2.5606024e-01 4.7304405e-03 2.7713886e-01 -1.0888064e-01 3.0392441e-01 -9.0856748e-02 2.9242929e-02 1.2998106e-01 3.2441480e-02 6.7818632e-02 4.1813540e-03 5.6816721e-02 -1.6259999e-03 9.0205093e-02 4.3730483e-02 -4.0325241e-02 3.7579707e-02 -5.5398508e-02 -8.0651389e-02 -2.4424553e-04 + 2.7222732e-02 -2.9258782e-02 3.1171500e-02 4.1898890e-02 2.4198498e-01 -1.3487251e-01 -1.0863093e-01 -1.1620030e-01 1.9794984e-01 6.3688836e-02 -1.3445237e-02 -1.2578549e-01 1.5489563e-01 -1.3655667e-02 -5.7845009e-02 1.0657495e-01 -3.1417698e-01 -1.9072499e-01 2.0877627e-02 -3.8221374e-02 -5.6474680e-02 3.2887955e-02 2.7755423e-01 2.3014166e-01 9.7889724e-02 -5.7687574e-01 4.5568435e-02 -8.5429951e-02 -1.3499002e-01 5.9969290e-01 -7.9182281e-02 2.1911804e-01 2.1276028e-01 9.0225962e-02 1.3847453e-02 9.2697226e-02 -1.0998332e-02 2.4301820e-01 9.2360584e-03 -3.3604942e-01 4.1995237e-02 -4.4197966e-02 3.6302403e-02 + 2.5278729e-01 -2.2467972e-01 5.7177240e-02 -3.9466313e-02 3.5599718e-01 1.1793692e-01 2.3219761e-01 -2.0882192e-01 -1.8559229e-02 -5.3715447e-02 8.7294453e-02 4.5337752e-02 -1.8815406e-01 6.5956099e-02 4.8173690e-02 -4.1355546e-01 7.3881718e-02 -3.2576328e-01 -2.2902079e-01 -2.1349443e-01 -1.3854738e-01 1.6267790e-01 2.6896482e-01 -3.1038223e-01 5.8244205e-01 -2.6846763e-01 -3.8094185e-02 3.1165561e-01 -1.9298888e-01 -1.1114436e-01 8.8221836e-02 -1.9602762e-02 3.7982372e-01 8.3533985e-03 1.4381844e-01 1.3678983e-01 4.8119226e-02 -6.9456406e-01 -8.4449347e-02 -1.9610159e-01 2.4534380e-02 -1.6692754e-01 8.4430260e-02 + 4.0050914e-02 -1.3578815e-02 1.2307839e-02 -1.3752572e-02 -3.9196307e-02 1.0786608e-02 2.4426457e-02 4.0937559e-02 -4.7903708e-02 -1.0353885e-03 -4.6308853e-03 2.6884974e-02 -1.0978625e-02 -4.4449393e-03 -1.1909067e-03 -8.5584562e-02 3.5803658e-02 2.9199706e-02 -2.1538631e-02 -5.1662433e-03 1.8146920e-02 2.1353903e-02 2.9125875e-02 -4.7278548e-02 1.6580657e-01 2.8392304e-02 -1.1044159e-03 2.3321042e-02 -8.2904213e-03 -1.1549838e-01 1.1386137e-02 -3.3672272e-02 1.1916756e-02 -1.6789790e-02 8.0815375e-03 -8.7199653e-04 -6.1926414e-04 -9.5265887e-02 -3.2309383e-03 -4.6220299e-02 1.7880574e-02 -8.9660236e-03 2.8251192e-03 + -1.0220802e-02 6.3653904e-03 -1.6838873e-02 3.0607729e-02 4.6579885e-02 -2.0144976e-02 -1.6578172e-02 -7.2321856e-02 9.2132557e-03 -2.9066427e-04 8.8815240e-04 -4.4184226e-02 4.3148786e-02 -8.5521454e-03 -6.4355868e-04 4.0270551e-02 -5.7063999e-02 -6.4154136e-02 2.4267029e-02 3.9584846e-03 -1.1960426e-02 -2.9267120e-03 -1.4944368e-02 3.6672150e-02 -9.9626777e-02 6.0181496e-03 5.7052682e-03 -2.7212307e-02 1.4231689e-03 8.6073749e-02 -2.5275763e-02 1.1874629e-02 -2.8614767e-02 2.4678284e-02 4.7588813e-03 -1.4488318e-02 -1.4746223e-02 3.5125399e-02 2.2794475e-02 1.6587316e-02 -1.6230832e-02 -1.5647852e-03 6.2079920e-04 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_F_1.txt new file mode 100644 index 00000000..bf213644 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_F_1.txt @@ -0,0 +1 @@ + -5.7730602e-01 -2.0593709e-01 -1.3452235e-01 4.9825886e-01 -4.6180675e-01 -1.6960955e-01 5.5052973e-03 -9.6626458e-02 -5.1773646e-02 2.8244642e-01 -9.0643711e-03 -2.1265454e-02 -3.6507798e-02 2.5775783e-01 -5.2994540e-01 2.9898754e-01 5.1052612e-01 -3.1769404e-02 2.2665326e-01 -5.5595199e-01 2.4603715e-02 -6.2351636e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_F_2.txt new file mode 100644 index 00000000..724fe8ae --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_F_2.txt @@ -0,0 +1 @@ + -1.3232072e-02 5.3473471e-01 6.1048889e-02 6.6676953e-01 -2.3683602e-01 2.1318286e-02 -2.2296652e-01 -4.4579839e-01 3.4282045e-01 -1.6135279e-01 2.9547815e-01 3.4630198e-01 3.1670837e-03 -7.5420448e-02 3.9776135e-01 -4.1271719e-01 2.1986920e-01 3.4502241e-01 -1.3751680e-03 5.3216032e-01 2.8777569e-02 2.0825868e-01 1.8740857e-01 -6.1758536e-02 4.5458681e-01 -3.9399266e-02 5.6739990e-01 4.9429007e-01 -9.3184216e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_F_3.txt new file mode 100644 index 00000000..2e631e6c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_F_3.txt @@ -0,0 +1 @@ + -2.3719086e-01 -2.2415985e-01 -1.6665092e-01 -4.0994403e-01 -2.6455837e-01 3.4138514e-01 5.4668747e-01 -1.5868281e-01 -4.7715013e-01 -1.7604689e-01 -7.3683141e-02 -6.9623659e-02 -8.2474669e-02 3.7183267e-01 3.3340926e-01 5.7760343e-02 -1.0639299e-01 1.8368233e-01 4.1984281e-01 3.9345079e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_F_4.txt new file mode 100644 index 00000000..7d503968 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_F_4.txt @@ -0,0 +1 @@ + -3.7888039e-01 4.4563848e-02 9.8246796e-02 -1.8502315e-01 2.5835253e-01 -3.2661956e-01 4.5368407e-01 -2.1559379e-01 6.7917808e-02 1.8896394e-01 -1.2030574e-01 -2.7798828e-01 3.5663957e-01 4.0364884e-02 -2.6017899e-01 1.0886157e-01 -2.3335319e-01 -2.4793389e-01 -2.7898873e-01 1.6448794e-01 -1.0160022e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_F_5.txt new file mode 100644 index 00000000..0fa7637c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_F_5.txt @@ -0,0 +1 @@ + 4.8932195e-01 3.9774096e-01 3.5560463e-01 -7.4459020e-02 -6.7078887e-01 2.8984080e-01 2.0576445e-01 -2.8501833e-01 3.2724879e-01 -3.9277088e-01 2.4614969e-01 -2.1847677e-01 1.3789820e-02 3.1904003e-01 2.5043159e-02 5.4667911e-03 -2.8613392e-01 1.5091534e-01 -2.0295906e-01 3.3826963e-01 -3.2329178e-01 4.4392065e-01 -2.1443730e-01 2.9598231e-01 -2.8679814e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_G_1.txt new file mode 100644 index 00000000..69876200 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_G_1.txt @@ -0,0 +1 @@ + 2.0738774e-03 7.4889618e-02 -9.4462909e-02 -4.4346226e-02 -9.6785834e-02 3.4062530e-02 7.5571358e-02 2.7071637e-01 3.2068467e-01 1.7389261e-01 -3.9702512e-01 -1.2331741e-02 1.7466184e-01 3.5042417e-01 -1.2047825e-01 -3.0438973e-01 -5.1914946e-03 5.2676248e-02 1.0003535e-01 5.0463206e-02 3.3976907e-02 1.3301392e-01 1.2772039e-01 5.2777499e-02 3.4688386e-01 3.0494898e-01 -1.5841263e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_G_2.txt new file mode 100644 index 00000000..6464c947 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_G_2.txt @@ -0,0 +1 @@ + 3.9878600e-01 -3.6546593e-01 -3.1024498e-01 -3.2241452e-01 2.4544142e-01 1.1746405e-01 -6.7171020e-01 2.6337899e-01 -2.2276938e-01 -3.0030314e-01 -1.3493953e-01 -3.7295282e-01 -1.9373121e-01 -2.2688744e-01 -2.0821799e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_G_3.txt new file mode 100644 index 00000000..fa73c610 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_G_3.txt @@ -0,0 +1 @@ + 4.0925561e-01 2.1631888e-01 -1.9638972e-01 -1.7542337e-01 3.6302240e-01 5.7265854e-01 3.4481075e-01 -1.7297162e-01 7.1702445e-02 -1.8712534e-01 -2.7370809e-01 7.6946651e-02 3.3826098e-01 -1.9514865e-02 -1.6328322e-01 1.1333496e-01 1.7521643e-01 3.7055668e-01 -3.6556845e-01 -4.0318692e-01 -8.4467531e-02 7.8526293e-02 4.2231605e-01 -2.5538969e-01 -9.9999577e-02 -2.0169714e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_G_4.txt new file mode 100644 index 00000000..d25b5b42 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_G_4.txt @@ -0,0 +1 @@ + 1.6682980e-01 -6.1241062e-02 -2.1703622e-01 3.9885885e-01 2.8728000e-01 1.0514205e-01 1.4637470e-01 -1.2963646e-01 2.4361154e-01 4.2968976e-01 6.7786920e-02 -2.3973112e-01 -1.4486691e-01 2.5966580e-01 2.7712999e-01 -3.1387936e-01 1.2190769e-01 -6.4069745e-02 -1.9546962e-02 -1.9785892e-01 -6.6691092e-02 2.4549019e-01 -2.7042714e-01 4.7779414e-02 1.3148778e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_LW2_G_5.txt new file mode 100644 index 00000000..8bcc6597 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_LW2_G_5.txt @@ -0,0 +1 @@ + 3.0716727e-01 -2.0785392e-01 1.6415149e-01 2.3228367e-01 9.7333773e-03 1.8540048e-01 -1.5096613e-01 -2.0074146e-01 1.8376400e-01 2.1563539e-01 1.7322884e-01 1.5765385e-01 -4.8801370e-01 2.2894236e-01 -1.0959976e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_b1_F_1.txt new file mode 100644 index 00000000..e2e22345 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_F_1.txt @@ -0,0 +1,25 @@ + 1.0133919e-01 + -7.5849315e-02 + -6.4945182e-01 + 2.1473967e-01 + -4.8304761e-03 + 1.0757461e-02 + -9.5582057e-02 + -2.8071147e-01 + -4.9463409e-02 + 5.2787492e-02 + 1.5169342e-02 + -1.3369731e-01 + 7.3219062e-01 + -7.5931108e-01 + -1.8792726e-01 + -1.5526764e-01 + -2.0585592e-02 + -3.5520914e-02 + -1.8215867e-01 + -8.4661563e-04 + 2.5639599e-02 + 5.4384684e-01 + -6.9754252e-01 + -2.3652096e-01 + 1.2289269e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_b1_F_2.txt new file mode 100644 index 00000000..6ea13b16 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_F_2.txt @@ -0,0 +1,31 @@ + 1.9564818e-01 + -1.2420874e-01 + -2.9938463e-01 + -1.1900985e+00 + 3.0380923e-01 + -5.2310096e-01 + -5.5403372e-02 + -1.5711316e-01 + -2.0505260e-01 + 2.9221628e-02 + 1.0703369e-01 + -6.6083630e-01 + -8.8081328e-02 + -8.6410785e-02 + -5.1682388e-01 + 4.2312469e-02 + -3.5680024e-01 + 2.7529111e-02 + 6.4687925e-01 + -7.6206116e-02 + 2.5096154e-01 + 2.9721383e-01 + 1.0266910e-01 + 2.2504903e-01 + 1.5216935e-01 + -2.6503611e-01 + -4.9077020e-02 + 2.0409800e-01 + 1.1083368e-01 + 1.6727229e-01 + -1.0893954e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_b1_F_3.txt new file mode 100644 index 00000000..c413bc6b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_F_3.txt @@ -0,0 +1,33 @@ + 1.1065474e+00 + 1.7590813e-01 + -1.2097932e-01 + 2.4985693e-01 + -1.5148131e-01 + -3.5935159e-01 + 2.7860841e-01 + -1.0103460e-01 + -4.5181980e-01 + 4.5550284e-01 + -3.7784853e-02 + 4.2395855e-01 + 1.9868765e-01 + 2.7064337e-01 + 1.1629633e-01 + -3.9760359e-01 + 3.3749926e-01 + 3.2913633e-01 + 2.1625894e-01 + 2.6904165e-01 + -3.1017051e-02 + 6.1229633e-01 + -1.1720953e-01 + 5.2108129e-01 + -2.3894635e-01 + 2.0125630e-01 + 3.2194977e-01 + 6.0534474e-01 + -8.7968907e-02 + 3.1642515e-01 + 2.3321994e-01 + 9.9351899e-01 + -1.3088311e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_b1_F_4.txt new file mode 100644 index 00000000..e487a80a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_F_4.txt @@ -0,0 +1,36 @@ + -4.0723910e-01 + -9.4469031e-01 + 1.9812949e-02 + -6.5443689e-02 + -7.5322695e-02 + 2.6409912e-02 + -2.6378648e-01 + 1.4166661e-01 + 6.7997981e-03 + -7.2177589e-02 + -1.5035253e-01 + 6.5790746e-03 + -1.2821975e+00 + 5.4601218e-01 + -2.3324526e-01 + -7.9066230e-02 + -5.4124271e-02 + 4.6181061e-02 + -2.6226793e-01 + 5.7289879e-02 + -2.5366537e-01 + -6.0749847e-02 + -3.2841245e-01 + 8.2998743e-02 + 1.1226064e-01 + -5.2751662e-02 + 1.1476865e-01 + 9.2452271e-02 + -5.5137542e-01 + 9.0243140e-02 + 9.2914914e-02 + 8.6401443e-02 + 4.0462561e-02 + 1.3301099e-01 + 1.2602935e-01 + 3.8278992e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_b1_F_5.txt new file mode 100644 index 00000000..e2a36f05 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_F_5.txt @@ -0,0 +1,39 @@ + 1.7156982e-01 + 3.2874196e-02 + 6.2998278e-01 + 2.9251866e-02 + -7.9773607e-04 + -5.2085246e-03 + 4.5256870e-01 + 1.1487098e-01 + -4.4455300e-01 + 3.5812476e-02 + 5.9650828e-01 + 8.8545669e-02 + -5.1770038e-01 + 3.6174166e-01 + 1.4911208e-01 + -6.6578114e-02 + 3.5598970e-01 + 6.2394150e-02 + -7.3825965e-01 + 7.3655192e-02 + 1.4232787e-01 + 6.4433026e-02 + -6.4587881e-02 + 2.0336095e-01 + 3.2708607e-01 + -1.7613944e-01 + 2.3282181e-01 + 2.7962633e-01 + -9.2004161e-02 + 6.2563706e-02 + -7.0655104e-02 + 1.3860374e-01 + -1.6375502e-01 + 1.5992383e-01 + -8.7387141e-02 + -2.7791148e-02 + 9.2795486e-01 + -6.7554099e-02 + -2.0446519e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_b1_G_1.txt new file mode 100644 index 00000000..2fd5831a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_G_1.txt @@ -0,0 +1,27 @@ + -1.0072590e-01 + -3.2739678e-01 + 2.2291018e-01 + 1.4661819e-01 + 4.0188606e-01 + 8.2827658e-02 + -2.9397651e-01 + 4.2042489e-02 + 1.9142498e-01 + -7.9335871e-03 + 4.4574272e-02 + -3.5847026e-02 + 8.4281292e-02 + 2.6546652e-01 + 2.1187230e-01 + 2.1148585e-01 + 1.1576535e-01 + 4.5082268e-02 + 1.5326791e-01 + 1.1542434e-01 + 2.7511457e-01 + 1.5195235e-01 + 2.5874991e-01 + -1.0739658e-01 + 2.3213187e-02 + 1.4660167e-01 + -7.3715876e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_b1_G_2.txt new file mode 100644 index 00000000..b0df9f97 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_G_2.txt @@ -0,0 +1,28 @@ + -1.8034562e-01 + -8.4604839e-02 + -1.1024336e-02 + -1.6545316e-01 + 5.3073306e-01 + 1.9040209e-01 + 3.8562537e-01 + 1.9263573e-02 + -5.0036023e-01 + 4.9033537e-03 + -3.8827545e-01 + 4.4617418e-01 + 5.6915096e-02 + -4.9279606e-02 + 2.4685268e-01 + -2.2181452e-01 + 1.1184289e-02 + -6.3918715e-01 + -3.7661653e-01 + -2.8187351e-01 + -5.1415655e-02 + -4.3888890e-01 + -1.2207162e-01 + -1.0377884e-01 + -1.9106938e-01 + 9.8538968e-01 + 8.5504808e-01 + -3.6142800e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_b1_G_3.txt new file mode 100644 index 00000000..c737f4dc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_G_3.txt @@ -0,0 +1,29 @@ + -2.7018504e-01 + 1.4662197e-01 + 1.0684520e-01 + -1.3654701e-01 + -1.6193879e-01 + -7.7238510e-02 + -1.2562141e-01 + -8.8780783e-01 + -5.0516067e-01 + 1.8437126e-01 + -7.0466220e-01 + 8.1384378e-02 + 1.8312504e-01 + 3.3676145e-01 + -1.0806297e-02 + 2.9743524e-01 + 1.9900901e-02 + -5.4352870e-01 + 5.4195283e-01 + -2.4037614e-01 + 7.3962235e-02 + 8.0025084e-01 + -3.5698326e-02 + -2.5875900e-01 + -2.6649300e-01 + -2.5044846e-01 + 6.5157565e-01 + -6.4627003e-02 + -1.3134000e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_b1_G_4.txt new file mode 100644 index 00000000..295e17d4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_G_4.txt @@ -0,0 +1,36 @@ + -5.4908636e-02 + -1.0627051e-01 + 1.9622023e-01 + -1.1399313e-01 + -6.4749372e-02 + -5.3312337e-02 + -1.0544400e-02 + -1.8992146e-01 + 1.5445492e-01 + 4.3932960e-02 + 3.2615873e-01 + -3.2414930e-02 + 2.6838422e-01 + 3.9961989e-02 + -1.5368403e-01 + 7.4980810e-02 + 1.3708040e-01 + -9.2667339e-02 + -2.2855908e-01 + -3.1843709e-01 + 2.0020613e-02 + 8.1441514e-04 + 3.3616589e-01 + 2.0997213e-02 + 2.0454687e-03 + 3.9789904e-02 + -5.0904881e-01 + -1.8994030e-02 + -7.4091152e-01 + -6.6860814e-03 + -5.5068698e-02 + 2.6688284e-01 + 2.7971373e-02 + 1.0657638e-01 + 8.9797978e-03 + -9.8589670e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_b1_G_5.txt new file mode 100644 index 00000000..00ae4221 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b1_G_5.txt @@ -0,0 +1,43 @@ + -1.1655315e-01 + 1.3770711e-01 + 5.2276420e-02 + -3.9537521e-02 + 3.1391918e-01 + 4.5411823e-02 + 2.0627667e-02 + 3.6243053e-02 + 9.8043000e-02 + 3.0255145e-02 + -5.2408059e-02 + 6.8786051e-02 + -1.3591194e-01 + -7.7237331e-02 + -5.4291616e-02 + -1.2625664e+00 + 1.1931316e+00 + -2.7840309e-01 + 1.9335337e-01 + 8.4827289e-02 + 1.1763914e-01 + -7.8310321e-02 + -2.3425329e-01 + -3.0560968e-02 + -1.0431169e-01 + -2.0676469e-01 + 1.6484375e-02 + -3.0078335e-01 + 9.3644021e-02 + 3.3887661e-01 + 7.2759019e-02 + -4.4669841e-01 + -1.9808770e-01 + -7.2441843e-03 + -7.3080285e-02 + -1.2473387e-01 + -4.5708543e-02 + 3.4362596e-01 + 3.0900276e-02 + -1.5867662e-01 + 3.2933975e-02 + 1.3841052e-01 + -4.8159390e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_b2_F_1.txt new file mode 100644 index 00000000..4c9e6487 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_F_1.txt @@ -0,0 +1,22 @@ + -5.7775762e-01 + 2.6964615e-01 + 1.6632516e-03 + -7.1500733e-02 + -1.8927798e-01 + -6.7918849e-02 + -8.0879152e-04 + 4.7469098e-03 + -9.5967884e-04 + 1.6449940e-02 + -3.7828394e-03 + -1.4636845e-03 + -2.9341512e-03 + -2.4671413e-01 + -3.3422045e-01 + -3.3416450e-01 + -5.8561117e-02 + -1.1610879e-03 + -1.0445385e-01 + -3.1047420e-01 + 8.2762978e-05 + 6.1276540e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_b2_F_2.txt new file mode 100644 index 00000000..607df9c6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_F_2.txt @@ -0,0 +1,29 @@ + -3.5068170e-03 + 6.6897126e-02 + 1.2255700e-04 + -4.0091828e-01 + -8.2621099e-03 + -1.4804365e-03 + 2.4407193e-02 + -2.9492393e-01 + -1.9689923e-01 + 3.3849018e-02 + 1.3330998e-01 + 2.1878788e-01 + -5.6536804e-04 + 5.0397278e-03 + 1.3064847e-01 + 3.4331754e-02 + -8.3369691e-02 + -1.8828689e-01 + -5.2310783e-02 + -1.2086557e-01 + -1.1931230e-02 + 2.5283761e-01 + -2.3234464e-02 + -5.4889409e-02 + 1.7439640e-01 + 1.4158202e-02 + 6.9955554e-01 + -2.5830452e-01 + 5.2671454e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_b2_F_3.txt new file mode 100644 index 00000000..20d8c46c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_F_3.txt @@ -0,0 +1,20 @@ + 1.1530573e-01 + 5.6402295e-02 + 4.3108262e-02 + 4.0676198e-01 + -1.4433740e-02 + 1.3970142e-01 + -9.4270611e-02 + -2.7111875e-01 + 2.0034218e-01 + -9.2605397e-02 + -1.9205319e-02 + 4.8401701e-01 + 1.8345251e-02 + -6.6375427e-02 + 2.2708886e-01 + -1.8288450e-02 + 9.6547248e-03 + 6.8825590e-02 + -8.4278879e-02 + 3.6144319e-03 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_b2_F_4.txt new file mode 100644 index 00000000..d9331b4d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_F_4.txt @@ -0,0 +1,21 @@ + 1.9738705e-01 + -7.9224784e-03 + -7.1605909e-05 + 2.1291349e-01 + 1.2933625e-01 + 4.2940638e-01 + 1.1378795e-01 + -2.0618562e-01 + 6.4058833e-03 + -9.7993786e-03 + -4.4882497e-01 + 2.3417093e-02 + -1.6350223e-01 + 1.2919823e-01 + 1.4293115e-01 + 1.7136099e-02 + 2.4403632e-02 + 9.6161529e-02 + -3.2947301e-01 + 1.2464378e-01 + 1.6872688e-03 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_b2_F_5.txt new file mode 100644 index 00000000..e5d4ba0c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_F_5.txt @@ -0,0 +1,25 @@ + -6.1529789e-02 + 1.4030981e-01 + 2.7183651e-02 + -4.7801088e-02 + 1.0258195e-01 + 9.4511630e-02 + -8.8302532e-02 + -7.3168861e-02 + -7.1943503e-02 + -4.2502699e-01 + -4.0742018e-03 + 1.2931014e-01 + 1.6533975e-02 + -1.1642365e-01 + 1.2664681e-01 + -1.7942576e-03 + -2.4960379e-02 + -1.4711097e-01 + 2.2515813e-03 + -2.8072136e-01 + 4.1641471e-01 + -2.6787057e-02 + 2.0870636e-01 + -1.9197203e-01 + 6.8464871e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_b2_G_1.txt new file mode 100644 index 00000000..a2256cc7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_G_1.txt @@ -0,0 +1,27 @@ + 3.3561417e-02 + -6.0876837e-02 + 4.2198340e-01 + -1.6036614e-02 + -3.0072539e-02 + 8.6512533e-03 + -1.0124513e-02 + 1.9259392e-01 + -1.9745684e-01 + -5.7157061e-03 + 3.8210199e-02 + 2.8555373e-03 + -3.0449703e-02 + -1.0944093e-01 + 6.4321145e-02 + 3.0679318e-01 + -8.2391505e-03 + -3.7153872e-03 + -9.6106858e-03 + 1.8716343e-01 + 3.8275418e-03 + -5.4370148e-02 + 4.7947498e-03 + 2.5241317e-02 + 2.8504333e-01 + -1.9832876e-02 + -4.0869876e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_b2_G_2.txt new file mode 100644 index 00000000..bf9deea7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_G_2.txt @@ -0,0 +1,15 @@ + 1.1822119e-02 + 5.1966891e-02 + 1.5741258e-01 + 8.2823220e-02 + 3.8119555e-01 + -1.4330888e-01 + 2.2076469e-01 + -2.1573262e-01 + -3.3542150e-01 + 3.0625297e-01 + 1.5979402e-01 + -2.6072130e-02 + -3.4032454e-01 + 4.2728171e-01 + 5.0443599e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_b2_G_3.txt new file mode 100644 index 00000000..86730d8d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_G_3.txt @@ -0,0 +1,26 @@ + 2.8554394e-01 + 7.7073470e-02 + 5.1836404e-02 + 1.4901060e-03 + -4.0300290e-01 + -3.3975836e-01 + 1.6929407e-01 + -1.6013298e-04 + -1.0946071e-01 + -3.7637941e-02 + -7.7166732e-02 + 1.9102275e-03 + -2.7620047e-01 + 6.2548424e-02 + -2.3416800e-03 + -2.8429796e-02 + -2.2896438e-03 + -2.2255239e-03 + -1.3431771e-01 + 1.0583514e-01 + -3.1013889e-03 + -1.9638854e-02 + 3.5599305e-01 + -4.5067950e-04 + -1.0838451e-01 + 7.7965464e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_b2_G_4.txt new file mode 100644 index 00000000..93858e96 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_G_4.txt @@ -0,0 +1,25 @@ + 5.7490779e-02 + -2.4318384e-02 + -5.6206932e-02 + -4.4171828e-01 + 1.0714807e-01 + 3.9580747e-02 + 5.2057877e-02 + -2.2120360e-02 + -8.2486663e-02 + 3.9562391e-02 + 2.0586445e-02 + 1.1032798e-01 + -2.9408365e-02 + -7.1679744e-03 + 9.0932660e-02 + -1.0534347e-01 + 5.6229048e-02 + 3.4020141e-03 + -9.2527273e-03 + -5.7066747e-02 + -1.8534206e-02 + -1.3768562e-01 + 4.2543333e-01 + 9.6534410e-03 + 3.8145698e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_b2_G_5.txt new file mode 100644 index 00000000..76ede5a8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b2_G_5.txt @@ -0,0 +1,15 @@ + -4.1072930e-01 + 2.5810624e-02 + -6.1713476e-03 + -2.8294545e-01 + 1.9181804e-02 + -1.1756104e-01 + 3.8849891e-01 + 1.1199926e-02 + 3.0039151e-02 + -1.5879828e-02 + -1.7810179e-01 + -2.4485461e-02 + -3.2933989e-01 + 1.1239740e-02 + 2.4265640e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_nit_b3_F_1.txt new file mode 100644 index 00000000..5e9935f9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_F_1.txt @@ -0,0 +1 @@ + -8.8365207e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_nit_b3_F_2.txt new file mode 100644 index 00000000..7d027964 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_F_2.txt @@ -0,0 +1 @@ + -1.0570900e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_nit_b3_F_3.txt new file mode 100644 index 00000000..273aaa6d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_F_3.txt @@ -0,0 +1 @@ + 1.6044731e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_nit_b3_F_4.txt new file mode 100644 index 00000000..a8a34e07 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_F_4.txt @@ -0,0 +1 @@ + 8.6775222e-02 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_nit_b3_F_5.txt new file mode 100644 index 00000000..140a5f29 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_F_5.txt @@ -0,0 +1 @@ + 2.2365788e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_nit_b3_G_1.txt new file mode 100644 index 00000000..d7d4af0d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_G_1.txt @@ -0,0 +1 @@ + 1.4120655e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_nit_b3_G_2.txt new file mode 100644 index 00000000..f4c80aec --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_G_2.txt @@ -0,0 +1 @@ + 1.0718763e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_nit_b3_G_3.txt new file mode 100644 index 00000000..dd69596b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_G_3.txt @@ -0,0 +1 @@ + 3.8614948e-04 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_nit_b3_G_4.txt new file mode 100644 index 00000000..416aab4f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_G_4.txt @@ -0,0 +1 @@ + 3.9341947e-01 diff --git a/argopy/static/assets/canyon-med/poids_nit_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_nit_b3_G_5.txt new file mode 100644 index 00000000..6273d1f6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_nit_b3_G_5.txt @@ -0,0 +1 @@ + 2.1308991e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_IW_F_1.txt new file mode 100644 index 00000000..ca3d6b03 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_F_1.txt @@ -0,0 +1,33 @@ + -8.5278042e-02 -1.7727533e-01 -4.7064378e-01 -8.8161308e-02 9.4602826e-02 -3.1448344e-02 -2.5740122e-01 + -2.5841110e-01 3.0555558e-01 -3.3509009e-01 1.0609113e-01 1.8947642e-01 6.8425380e-01 -5.6220562e-01 + -1.8882127e-01 1.0213414e-01 6.9526625e-02 -3.0708987e-01 3.3881824e-02 -8.2269711e-02 -5.0296090e-01 + 1.1987864e-01 -3.4326416e-02 2.3826957e-01 -3.5786641e-02 3.3882899e-01 1.1126197e-01 1.0599090e-01 + -2.6813296e-01 1.3144157e-01 1.6584198e-01 -5.2320325e-01 4.9614006e-02 2.6767089e-03 -2.0383486e-01 + 1.2331653e-01 1.1575301e-02 1.7031831e-01 -7.3982957e-01 1.1824432e-02 7.4015749e-02 -8.5733380e-02 + -4.6009402e-01 1.7013848e-01 3.7318830e-01 -5.1580245e-01 2.7711456e-01 5.9211268e-01 2.5134864e-01 + 7.2312678e-02 -4.1583175e-02 -2.8790379e-01 1.1526171e-02 8.1927214e-02 1.9566209e-01 3.0830975e-01 + -2.5790096e-01 -1.8968061e-01 -8.5602343e-01 -2.9012975e-01 -1.0355924e-01 -1.6815207e-02 7.0729343e-02 + -2.3738429e-03 2.9315327e-01 2.7454528e-01 4.6577573e-01 -3.6137115e-02 -2.1433652e-01 4.2918122e-01 + 2.2786863e-01 -4.5337991e-01 -1.6758559e-01 -1.0805131e-01 -4.4461948e-01 -1.0539161e-01 5.6400297e-01 + -1.3931292e-02 8.4534012e-02 -3.3106362e-01 -6.4606544e-04 -2.3188382e-02 4.8765984e-02 3.6027342e-01 + -5.3656458e-02 1.0575514e-01 -1.2665490e-02 2.6351834e-01 -5.8065382e-02 2.4591839e-01 9.7417794e-02 + -4.9462374e-01 -9.3000973e-02 2.9672846e-01 -9.8050499e-02 -4.6617169e-01 1.1825710e-01 1.4800058e+00 + -3.1892316e-01 3.5287109e-01 2.2391159e-03 -1.3527504e-01 2.8066308e-01 -1.4961028e-01 5.0211781e-02 + -1.5739923e-01 -2.6735417e-01 -1.3682060e-01 3.0521452e-02 -2.7462165e-01 4.7848782e-02 -2.2509946e-01 + -5.1519425e-01 5.5840398e-01 -2.4742774e-01 2.7897190e-01 3.0054201e-01 1.4526799e-01 3.8410498e-01 + -4.1481213e-01 1.6409347e-01 -5.9272747e-01 6.5751426e-04 -1.0728140e-02 -9.1559156e-02 1.8037826e-01 + -2.9102688e-02 1.4745988e-01 1.0014635e-01 -8.0573822e-01 4.3812453e-01 -1.7012393e-01 -8.6020604e-02 + -8.6912920e-02 2.0614541e-01 -2.0623773e-01 1.8485196e-01 -5.9418038e-02 1.8375171e-02 3.6513902e-01 + -2.1819484e-02 8.0008122e-02 2.5494102e-02 1.4636493e-01 2.4426558e-01 -1.4251766e-01 1.4365010e-01 + -2.8227961e-02 5.2600061e-02 9.7723607e-02 -5.7930321e-02 3.1436766e-01 1.8055124e-01 1.4668932e-01 + -8.4339952e-03 -1.9868736e-02 -6.0104962e-02 -1.8022515e-01 -3.0273080e-02 2.6342587e-02 -2.2311794e-01 + -3.6682416e-02 4.2930903e-02 9.1126948e-02 -1.7584398e-02 6.3745840e-03 4.1123902e-02 1.8016977e-01 + -9.1387247e-02 -1.3335881e-01 -3.6992630e-01 4.7715321e-01 1.7352674e-01 -1.4248180e-01 5.6647221e-01 + -2.8337116e-01 5.4313819e-01 1.7996370e-01 3.6282477e-01 9.6983748e-02 3.2476816e-01 -2.1218128e-01 + 1.8160081e-01 -2.1747068e-01 -2.0041149e-01 9.8504543e-02 -1.3578402e-01 -2.5123043e-01 2.1292753e-01 + 5.8661545e-02 -9.9794237e-02 2.9909635e-01 -7.9816000e-02 1.1882175e-01 1.9864366e-01 -2.9941540e-01 + -2.7671356e-01 2.0459100e-01 5.4720651e-02 -3.0421797e-02 2.4239331e-01 -3.3168025e-01 -4.2884806e-02 + -1.0108789e-01 -1.3254616e-01 -3.9653431e-02 1.3357871e-01 1.5243850e-01 3.3846000e-01 2.0957195e-01 + -1.7523395e-03 -2.0429398e-01 4.9094173e-02 5.3474452e-02 1.3142526e-02 -1.1231743e-01 -1.7508148e-02 + 1.4116541e-01 -1.2052451e-01 2.2313054e-01 1.4351650e-01 -1.1400993e-01 -2.0264342e-01 4.4189047e-02 + -4.2845478e-01 2.1760017e-01 2.8176548e-01 -1.1965318e-02 6.0304492e-02 -9.5937317e-02 -1.8620487e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_IW_F_2.txt new file mode 100644 index 00000000..edb9c52f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_F_2.txt @@ -0,0 +1,34 @@ + 2.6603206e-02 -2.2264545e-01 -7.5515035e-02 2.9338046e-01 2.8250390e-02 -5.3057414e-02 -2.0696264e-01 + 3.9306873e-01 1.7398096e-01 1.3358594e+00 -8.4725640e-02 5.6005658e-02 7.5795985e-02 -1.1152992e-02 + -9.0075830e-02 1.9427607e-01 2.3612123e-01 1.3484301e-01 -2.4422190e-01 -4.7208484e-01 -1.2966822e-02 + -6.7429292e-02 -3.2293802e-01 -8.1411275e-02 2.9109028e-01 -4.4229110e-02 1.0633659e-03 2.5160899e-01 + 5.5453779e-02 -6.3869109e-01 1.3986289e-01 7.8542475e-02 -8.0772928e-01 7.0006983e-01 2.0767920e-01 + -4.8513236e-02 -1.5864614e-01 -1.7686569e-01 -3.1600353e-01 3.3557122e-01 3.3777220e-01 -1.1199030e-02 + 1.6089004e-01 5.7569139e-02 -3.1849744e-01 -4.0697778e-01 -1.5768512e-01 -1.5946293e-01 -5.4656642e-01 + 9.5831851e-02 -2.7760030e-01 2.7137445e-02 2.1353376e-01 2.3221833e-01 7.1696556e-01 1.5786321e-01 + -3.0962008e-01 8.4377691e-02 -2.3956245e-01 2.5153568e-01 -3.5001255e-01 5.1199437e-01 9.6397533e-01 + -1.8232368e-01 2.9883304e-01 9.8988612e-02 3.0113008e-01 4.2017709e-01 -1.1373482e-01 1.6525165e-01 + 1.8502713e-02 1.3701680e-01 1.2093730e-02 1.7495434e-01 -4.3347090e-02 1.3525575e-01 -1.6186591e-01 + 1.4125626e-01 -2.0064005e-01 -8.4094186e-02 -6.1611685e-02 -1.8945802e-01 2.2379110e-01 -2.0025004e-01 + -1.8625870e-01 -1.7056867e-02 2.9629156e-01 6.0916233e-01 -2.7499296e-01 5.5328821e-01 9.0539803e-01 + 3.8103237e-01 -7.0780416e-01 1.3897171e-02 -9.7777184e-01 8.7896706e-02 -1.1843096e+00 2.7890320e-01 + 1.8284514e-01 -4.4851443e-02 -3.6148079e-01 1.1878402e-01 -7.4744745e-01 1.0500048e-01 2.6250567e+00 + -1.1630796e-01 9.8181871e-02 -1.9788204e-01 1.3271141e-01 1.0640034e-01 5.0315446e-02 -7.4752271e-02 + -2.0410734e-01 -7.6376643e-02 2.4981913e-01 -2.7030146e-01 -3.8783764e-03 9.0026752e-02 -2.4654945e-01 + 7.7628287e-01 -7.5500786e-01 6.7533862e-02 -8.0199233e-01 -6.8338798e-01 4.3183105e-01 -1.6525858e-02 + -1.8054625e-01 -4.8604786e-02 -1.8257990e-01 -1.3901714e-01 6.9833813e-02 1.9328722e-03 -7.5905190e-02 + 1.9777690e-01 -2.7134023e-03 -1.9019641e-01 6.5029890e-01 -1.3459446e-01 -3.0063318e-01 -1.7909755e-01 + 2.6630470e-02 -9.6811337e-02 1.8912193e-01 -2.2141791e-01 -8.4981896e-03 1.0970198e-01 1.1359656e-01 + -1.2573581e-01 -9.7870139e-02 -1.5996844e-01 -2.6506583e-02 -6.1768035e-02 1.9297368e-02 -3.8051949e-02 + -1.6249503e-02 6.4884900e-03 -1.9742734e-01 1.1298389e-01 -4.7244266e-02 -3.4882637e-02 2.2551271e-01 + 1.3203265e-01 -8.3220757e-02 5.3788178e-02 -5.8926637e-01 -1.3690734e-01 3.4576793e-02 7.1974781e-01 + 1.1598347e-01 -3.5599143e-02 -1.9406340e-01 -2.3038194e-01 1.5847958e-01 -2.7083747e-01 -2.0856252e-01 + -3.5079763e-01 -1.8426920e-01 -3.2290094e-01 -5.6225823e-01 -7.8637855e-02 -2.2174690e-02 -5.3356733e-01 + 2.3683362e-01 -1.6150253e-01 -2.0852595e-01 5.1453914e-01 -6.6408725e-02 -2.4157695e-01 7.5374493e-02 + 1.5378389e-02 -2.3329551e-01 1.4787813e-01 2.5838257e-02 3.3217715e-01 -2.2796260e-02 -1.8303073e-01 + -2.8127704e-01 2.7377039e-01 1.4000201e-01 -1.1934332e-01 5.1819667e-02 -1.3355527e-01 -1.9890201e-01 + 1.3392434e-01 5.7173560e-02 2.7461384e-01 -1.4923854e-01 2.4902727e-02 -1.9243479e-01 -2.4470160e-01 + -1.9164130e-01 5.6283514e-01 -1.9384188e-01 -4.3899155e-01 1.0586355e+00 -6.5009802e-01 3.8052045e-02 + -3.9986260e-01 -2.8871077e-01 -1.1583907e-01 -3.0335162e-02 1.6785069e-01 1.6889015e-01 -1.9016994e-01 + -3.4536742e-01 3.3552196e-01 -6.3567200e-01 3.3805577e-01 3.8620664e-01 7.4236280e-03 1.7341038e-01 + -3.3089934e-01 7.6961681e-02 3.4997399e-01 2.3031694e-02 -1.4220236e-01 -1.1997967e-01 -2.7787049e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_IW_F_3.txt new file mode 100644 index 00000000..7f9997b8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_F_3.txt @@ -0,0 +1,35 @@ + -4.4792928e-02 3.8872555e-01 8.4038296e-01 1.0393495e-01 -1.5838679e-01 3.0741902e-02 6.6705103e-01 + -2.8493339e-01 5.3795945e-02 9.0750806e-02 -3.0010571e-01 2.7266145e-02 2.4943051e-01 -1.7841257e-01 + -5.7363173e-02 1.2061561e-01 1.0145973e-01 7.7281657e-03 6.0393004e-02 1.7057470e-01 6.8242074e-02 + 1.4946931e-01 -7.6518598e-03 -3.2036692e-02 1.0374899e-01 -4.5248925e-02 -1.0956215e-01 -4.2672586e-01 + -6.1016369e-02 5.2893338e-02 1.5224156e-01 1.0530695e-02 9.2835772e-02 -1.7745187e-01 -8.8347658e-03 + 7.1095324e-02 -1.3849911e-01 -3.3238546e-01 -1.7732981e-02 -2.5318552e-02 -2.2285048e-02 3.5497473e-01 + 1.5266863e-01 -4.2536678e-02 -1.4484929e-01 1.9421763e-01 -1.1037240e-01 -1.7828272e-01 -1.4354629e-01 + 1.2003331e-01 2.3271160e-02 1.7077246e-01 2.3124363e-01 -2.1137305e-02 -4.9253566e-02 4.5295667e-01 + -3.1377889e-03 8.4661740e-02 1.1942620e-02 -4.0450185e-02 -3.6403888e-02 -1.8586705e-02 1.4436621e-01 + 4.4770051e-01 -5.6680086e-01 -2.2371141e-02 3.9584990e-01 -1.2474466e+00 7.8848584e-01 6.5587529e-02 + -8.0670226e-02 9.9294967e-02 -2.2610978e-01 3.4757139e-01 -9.1274220e-02 3.9498377e-02 1.8597884e-01 + 3.6452059e-02 -1.4918296e-01 2.1922472e-01 -5.5335016e-03 5.9435649e-02 -1.8251610e-02 -8.5264789e-02 + 8.6464062e-01 -1.0330617e+00 1.8624128e-01 -1.0158826e+00 -5.7657441e-01 -5.8839489e-02 -8.7162769e-02 + -2.0980478e-01 -1.1607941e-02 -1.8325085e-01 4.7385733e-01 -5.6655837e-01 -8.1903691e-02 2.9036627e-01 + 1.1570244e-01 -8.3340245e-02 -1.6621813e-01 -1.1411566e-03 -1.0520599e-01 1.1314609e-01 -4.0249607e-02 + -8.3370400e-02 2.1537035e-01 -3.0915580e-02 7.4061306e-02 1.4332847e-01 6.2451711e-02 1.4370423e-01 + 1.1910641e-01 -2.3500106e-01 3.1096076e-01 -7.0869901e-01 1.1048340e-01 1.3865828e-01 -3.3487260e-01 + -4.8860040e-02 -4.6913199e-03 -2.4824691e-01 3.1457205e-01 3.0371327e-02 3.4347609e-02 -4.6368893e-02 + 7.2745397e-02 2.4854746e-02 4.0274607e-01 3.5337323e-01 -5.0906466e-02 -6.6634694e-02 -9.2664495e-02 + -1.0039197e-02 1.3974935e-01 2.9591178e-01 1.3994118e-01 -3.0316573e-02 4.8094250e-02 3.8963721e-01 + -1.0082406e-01 -2.3073969e-01 -3.8299971e-01 8.1861257e-02 -8.6118593e-02 -5.0932186e-02 8.0086861e-01 + 7.8739596e-02 5.0365770e-02 -2.5062240e-01 5.2969057e-01 -3.0540222e-02 -1.3689140e-01 3.6427158e-01 + -2.4593125e-01 1.1692260e-01 -1.3510183e-01 1.7004134e-02 -3.7510738e-02 -3.1396117e-02 6.0495261e-02 + 1.3847954e-01 -9.0119851e-02 -1.4139017e-01 8.6973439e-02 -2.2642987e-03 -1.6419874e-01 -2.8216266e-01 + 4.1128666e-04 2.4705862e-02 -8.8873420e-02 1.0097731e-01 -1.8883672e-02 1.3752362e-01 -2.0758560e-01 + 2.6083930e-02 6.2177093e-02 5.1632351e-02 -1.1372911e-01 -9.6561087e-02 -1.8374643e-03 -2.2039306e-01 + 5.7210708e-02 1.5702907e-01 6.6493004e-01 -2.2690892e-03 -9.8835572e-03 3.5026266e-02 4.6208517e-01 + -9.9145077e-02 1.6584028e-01 6.8468749e-02 -2.5354971e-01 1.1450661e-01 1.1469842e-01 -9.8362053e-02 + 9.3460916e-03 -4.8124990e-01 3.6075293e-02 -1.5705380e-01 -5.3994299e-01 1.9095201e-01 -1.1366952e-01 + -9.1160639e-04 1.0441584e-01 2.1442299e-01 -2.4811301e-02 4.6921504e-02 -6.3804150e-02 -1.4689750e-01 + -8.3043304e-03 -2.2219545e-02 1.4198376e-01 1.0293923e-01 9.4051939e-02 -8.6523430e-02 -1.7470159e-01 + -1.0342164e-01 4.5410270e-02 1.0633012e-01 -6.8632463e-02 -7.7649999e-02 9.2501322e-02 3.3546403e-01 + 9.2795983e-02 2.1994897e-01 2.6634072e-01 3.1890402e-01 -2.1504945e-01 8.4538173e-01 -3.4477972e-01 + 1.0192100e-01 7.9733874e-02 2.5270721e-02 -5.0107693e-02 -5.1210867e-03 -1.1312631e-01 2.4316805e-01 + 3.3800791e-01 7.1839731e-02 1.9646558e-01 5.2756447e-02 -5.3665749e-02 -1.6363059e-01 4.6545051e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_IW_F_4.txt new file mode 100644 index 00000000..e39f9fa3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_F_4.txt @@ -0,0 +1,39 @@ + -1.6708793e-03 1.6667643e-01 -2.7743209e-01 1.8293270e-01 -3.0741068e-02 -1.5976830e-01 2.4744047e-01 + 3.1085783e-02 -3.6622635e-02 -7.6245436e-02 9.8606742e-02 3.4965755e-02 -2.4070947e-02 -1.1636071e-01 + -3.4437423e-01 9.9495078e-02 -2.9821730e-02 -1.3703955e-01 1.9773738e-01 5.3871655e-02 1.8191439e-01 + -6.9977720e-03 -1.0242557e-01 9.4624082e-02 -7.8463978e-02 4.6772473e-02 1.8429705e-01 5.5957941e-02 + 7.1271720e-02 8.2328211e-02 -1.5116649e-01 7.5865860e-02 -1.8966247e-02 -9.3923174e-02 -9.9666273e-02 + -6.9062085e-02 2.3992802e-01 -5.7270296e-02 1.5467186e-01 -1.4238813e-01 -1.9819911e-01 5.9406403e-02 + 5.4977162e-02 8.6900277e-03 -2.5289760e-01 2.9540412e-01 -6.5933979e-02 8.0034033e-01 -1.3647300e-01 + -6.9804622e-02 -1.3345060e-01 1.8942496e-02 7.3459449e-03 2.7067736e-02 6.2116937e-02 2.1636684e-02 + -5.4793033e-01 7.1075509e-02 2.2772405e-01 -3.1413690e-02 1.0539411e-01 -2.9075499e-01 9.3714035e-02 + 1.0442468e-01 8.4592504e-02 7.9035244e-01 4.2527843e-01 2.1463626e-01 2.1801789e-02 7.9045452e-02 + 3.3459443e-02 5.1193051e-01 -1.8807103e-01 -2.9662104e-02 -1.7597873e-01 2.4497965e-02 4.3246135e-01 + -1.4332440e-01 -5.2098825e-02 2.7035138e-01 -9.8427713e-02 3.6125246e-02 -1.4068452e-01 -7.0183511e-02 + 7.3484911e-02 1.8000726e-01 -9.8230858e-02 9.5914507e-02 -9.2182990e-02 -1.6239801e-01 -4.8932656e-02 + 3.0189866e-01 -3.3573762e-01 3.1809217e-01 -7.0136825e-03 3.9932366e-01 -7.6136166e-01 3.9438920e-01 + -1.5938362e-01 -2.1156663e-01 2.8432418e-01 -1.7092033e-01 4.6204960e-02 2.6576692e-01 -2.1417935e-01 + -7.4770091e-01 -5.7893015e-01 7.6479593e-01 -2.3641781e-01 -5.7287642e-01 3.4477856e-01 2.1966653e+00 + 2.3978902e-02 -3.0807663e-01 -1.4616328e-01 3.4065707e-01 -6.3049890e-01 7.6011990e-01 2.9529189e-02 + -1.0611351e-02 2.2027775e-01 -7.8584865e-02 6.9576731e-02 2.1851850e-01 6.8464004e-02 2.6012932e-01 + -1.1704943e-01 1.6103259e-01 2.3964752e-02 1.1954913e+00 9.5195592e-03 5.0462828e-03 1.4801515e-01 + 1.2039828e-01 3.4432142e-02 -1.8688042e-01 -5.2386013e-02 1.1619155e-03 3.0452419e-01 9.7604073e-02 + -6.3672252e-01 4.7524941e-01 1.4954486e-01 -1.0080726e-01 1.3252056e-01 2.1041088e-01 -1.1316235e-01 + -2.4050777e-02 1.4509849e-02 2.1596176e-01 1.2801716e-01 3.3124746e-02 -1.1970363e-01 -1.0066938e-01 + 2.2039875e-02 1.1582691e-01 -1.9682182e-01 1.5913025e-01 -1.7824526e-02 8.6406867e-02 8.7149127e-02 + -2.2183808e-01 3.1851692e-02 1.3383802e-01 -7.9382047e-02 1.6062476e-01 7.1290375e-02 1.5531382e-02 + -3.9749459e-02 -1.4056557e-01 2.8325937e-01 -2.2629594e-01 4.6982740e-02 1.8508445e-01 -2.4033231e-01 + -1.8880594e-01 1.0869362e-01 1.3618361e-01 6.8115245e-02 2.6308059e-01 -2.0083393e-01 2.1164333e-03 + -1.0529777e-01 -4.9986400e-02 2.5017117e-01 -1.8787012e-01 -4.1341744e-02 4.2721286e-02 -5.6320690e-02 + -1.2154497e-01 8.1261433e-02 1.4027783e-01 -1.0775975e-01 3.1723041e-02 7.5101580e-02 -7.7787334e-02 + 3.5890631e-01 -8.2754920e-01 4.3169385e-02 -4.5668746e-01 -4.3713379e-01 -5.4540309e-01 5.8364146e-01 + -4.3190121e-02 1.0744206e-02 2.0925019e-01 -1.6521680e-01 -4.8776230e-02 -2.0488301e-01 -1.9971540e-01 + 1.9172603e-01 5.9760878e-02 -3.6053937e-01 2.9231807e-01 -3.7029039e-02 -4.8228804e-01 4.1902413e-01 + -9.5016429e-03 -1.3733182e-01 2.7577862e-02 -8.2195439e-02 -3.8888767e-02 1.5727678e-01 -2.8653828e-02 + 7.1236830e-02 -2.4987405e-01 4.1266778e-01 9.9562959e-02 -2.5280804e-01 -2.9860804e-02 -1.2221404e-01 + 9.9638384e-02 -1.0145819e-01 -4.7470661e-02 -5.8743505e-02 3.4379112e-02 1.7717739e-01 2.2857005e-01 + 8.4755619e-02 2.0226758e-01 9.7907597e-01 1.0379293e+00 1.3670406e-01 -8.6440395e-02 4.6868170e-02 + 4.6614049e-02 2.0328747e-01 3.9788659e-01 -9.1295232e-02 -2.5334470e-01 1.8592449e-01 6.5905848e-01 + -9.6352965e-02 1.9727102e-01 4.6039918e-01 4.6912396e-01 2.0094408e-01 5.0298048e-02 1.2239126e-01 + -4.7368236e-02 -1.9799590e-01 -4.4578454e-01 4.5725002e-01 -3.0600702e-02 -7.0864012e-01 7.4909934e-01 + -1.1871852e-01 1.5177322e-01 -7.3511311e-03 6.7983752e-02 5.1503705e-02 -4.7565121e-02 -1.4553936e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_IW_F_5.txt new file mode 100644 index 00000000..505abfa4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_F_5.txt @@ -0,0 +1,41 @@ + 1.4220936e-01 1.1393939e-01 -1.2218334e-01 -2.1261560e-01 -1.1059136e-03 -9.1387966e-02 -2.2238353e-01 + -1.3510658e-01 7.7391433e-02 -2.2436074e-02 -1.8801712e-01 5.1758821e-02 8.3392443e-02 3.8791031e-01 + -5.3337595e-02 -6.6870844e-02 7.0604631e-02 -5.6276176e-02 -1.1279105e-01 -6.1089873e-02 -2.1381351e-01 + 1.2301381e-02 -2.2538074e-01 -8.2629252e-02 -1.5893477e-01 -7.3494377e-02 1.7366485e-02 2.6875670e-01 + 3.9447059e-02 5.3679977e-02 -1.4234963e-01 1.4629611e-01 -1.3573514e-01 1.2081388e-01 -2.4475082e-01 + -2.0890301e-01 -1.8582518e-01 -3.7194620e-01 2.7581202e-02 -2.8036335e-02 -1.2843001e-01 -5.2079116e-01 + 2.4375748e-01 -1.7158769e-01 -2.6777991e-02 -1.0383665e-01 -1.2074411e-03 -1.4969106e-01 -1.1562880e-01 + 1.8613503e-01 -1.0086442e+00 -3.5472831e-01 -1.5600556e-01 -5.0035746e-01 4.2022923e-01 -7.5056482e-02 + -9.9505130e-02 1.1530665e-01 8.4867614e-03 -2.7665067e-01 5.7124373e-02 -5.0191900e-02 -2.8598579e-03 + -1.0040594e-02 1.2174007e-01 -6.4613946e-03 -1.2867775e-01 4.7175729e-02 -1.1862299e-01 3.8163788e-01 + -2.2807265e-01 1.5217665e-01 -3.3385459e-02 9.0327051e-02 2.0245253e-01 2.9554620e-01 -8.2625399e-02 + 3.4414234e-02 8.0356670e-02 7.3382595e-02 -3.7872965e-01 1.9741696e-01 2.2575079e-01 -1.5979607e-01 + -3.7476807e-01 1.0686857e-02 1.8093215e-01 -8.9665771e-03 -5.1613551e-02 -8.7814316e-02 -2.8804744e-01 + 6.9090157e-02 3.9720391e-02 1.3451189e-01 -1.9220309e-02 -1.6705526e-02 -1.1509315e-01 -2.1527936e-01 + -1.6739051e-01 9.0158716e-02 5.0614368e-02 3.2637282e-01 2.6975911e-02 1.1589975e-01 5.5613810e-01 + -1.1689113e-01 1.1814536e-01 2.6563036e-02 7.4327766e-02 -6.6962784e-02 2.2035868e-02 -2.0717461e-01 + 8.4276367e-02 -1.2396140e-01 -5.9491880e-02 4.6429460e-02 -1.1108466e-01 -8.0795877e-02 5.5667243e-01 + 2.3608890e-01 -3.3180947e-01 2.5247226e-01 -3.2673806e-01 2.2352994e-01 1.2363657e-01 -5.0479906e-01 + -9.0042278e-02 4.6874710e-03 -1.2877240e-02 3.3574148e-01 2.1341192e-02 -4.3627289e-02 1.2584888e-01 + -2.8094945e-01 3.3901453e-01 -2.3856406e-02 3.5231482e-02 -3.1837268e-02 -1.6271534e-01 -2.9460486e-02 + -3.0174882e-01 4.2119493e-01 -3.6563597e-01 2.1171416e-01 7.5340058e-02 2.3183040e-01 -4.2759555e-01 + 1.1226692e-01 -6.0910690e-01 1.0979093e-01 2.2301608e-01 -4.8780385e-01 -1.9390134e-02 -7.0855028e-02 + -1.9366526e-01 1.7820046e-01 9.1107956e-02 -5.1663641e-01 2.6101764e-01 -6.1256167e-01 -3.1956822e-01 + -1.7743709e-01 -9.5014367e-03 -7.0872462e-01 -2.3965725e-01 -9.1296316e-02 2.0215994e-01 -1.7362704e-01 + 3.2465760e-01 -2.7468077e-02 3.6239158e-01 -1.4658982e-01 -2.3515707e-01 -6.2999512e-02 -2.5753863e-01 + -8.0051109e-03 -4.9949466e-01 -3.4369612e-01 -2.3023957e-01 2.3721943e-02 -1.5624759e-01 -5.3753803e-01 + 6.1909188e-02 -5.9781510e-02 -1.6572927e-02 7.0684761e-02 1.2527023e-01 4.0608140e-02 2.9666433e-02 + 1.6882648e-01 2.5634188e-02 2.5866323e-01 -1.3065531e-01 1.0544774e-01 -3.5427815e-01 -3.9868099e-02 + -3.1188320e-01 4.7139483e-01 3.0802399e-02 4.6312727e-02 4.5911348e-02 -9.2790627e-02 -6.3153999e-02 + 2.5488514e-01 -1.5531307e-01 -1.6155269e-02 -1.2236311e-01 -2.9550439e-01 -8.1224474e-02 -3.7300181e-02 + 2.6659873e-01 -1.2429279e-01 2.6161385e-01 -3.4419245e-01 1.3244788e-01 -7.4843801e-02 -6.6641998e-01 + -2.8292642e-01 1.7258376e-01 -5.5846346e-01 3.3916998e-02 -1.2691368e-01 -9.8376073e-02 -2.9985633e-01 + -3.9281939e-01 4.6888227e-02 -2.3826711e-01 -3.0378772e-02 -1.4025781e-01 2.4255155e-01 1.4765692e-01 + -1.9574201e-01 -6.4954934e-04 -9.8247282e-02 8.5683620e-02 -1.9248788e-01 2.0082626e-01 1.3160206e-01 + 1.0628279e-01 -4.8126556e-02 1.4242232e-01 -3.1402391e-01 2.3786406e-02 -7.4472348e-02 -2.2465049e-01 + -9.3783033e-02 1.0884554e-01 1.2568820e-01 4.4398370e-02 9.5839387e-02 3.0938790e-01 -7.3954235e-03 + -5.9886009e-02 1.8367970e-02 -1.4075551e-02 9.6366945e-02 -2.4465100e-01 -3.4380541e-02 1.7634400e-01 + -4.7059269e-01 -1.6168731e-01 4.0640942e-01 -3.5218581e-01 -7.1020048e-02 5.4931356e-02 -1.4352539e-01 + -1.5184035e-01 -1.2811311e-02 -6.7881983e-02 7.2300888e-02 2.0871900e-01 4.5262277e-02 2.5577865e-01 + 9.9818429e-02 -4.4450806e-01 -1.9975984e-01 1.2276545e-01 -1.2733668e-01 -5.1183383e-01 4.7134709e-01 + 9.1501130e-02 -4.3223191e-02 -1.3032935e-01 -1.8786747e-01 5.5497575e-02 5.1036262e-02 -8.6883497e-04 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_IW_G_1.txt new file mode 100644 index 00000000..b9d10804 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_G_1.txt @@ -0,0 +1,32 @@ + 2.0344961e-01 9.0179884e-02 -2.9014132e-01 -1.3453754e-01 2.6579062e-01 -5.4950075e-01 -8.7532092e-02 + 3.0193967e-02 -1.9370547e-01 -6.2774687e-01 -3.1094160e-01 -3.8290755e-02 -2.6071318e-01 2.3887155e-01 + -1.9972463e-01 -4.4553982e-01 -1.4587907e-02 9.1256445e-01 -7.5682325e-01 5.9371011e-02 -4.2779380e-02 + 4.5352062e-02 -1.9348455e-01 2.9799599e-01 2.3661632e-01 1.5199886e-02 -1.7441366e-01 -3.9359758e-02 + -4.8903004e-01 4.9853846e-01 -3.0528464e-01 6.6357698e-01 3.9833407e-01 -8.7613679e-01 2.6490991e-01 + -4.5137590e-01 4.0042655e-01 1.2286836e-01 -1.5903917e-01 -1.2282617e-01 2.2447619e-01 -4.0905297e-01 + 2.9247337e-01 -6.9898455e-01 1.2191581e-01 -1.1482055e-01 -1.0328140e-01 7.2282589e-03 -1.4076858e-01 + -3.9784245e-02 -8.0723179e-02 7.1905458e-02 -3.4699710e-01 3.0416621e-01 2.0039187e-01 -3.6069469e-01 + 5.7643956e-01 -7.1038355e-01 1.6291835e-01 6.6466475e-01 1.3803334e-03 -1.9036466e-01 1.4779882e-01 + -4.7111592e-01 3.7539550e-01 -6.1306989e-02 -2.1037927e-01 6.5185381e-02 -1.7338833e-01 -1.2516121e-01 + -6.7248265e-01 1.4951204e-02 -2.6206155e-01 -1.7866167e-01 -1.9605344e-01 2.4047757e-01 6.1865652e-01 + -7.3362135e-02 8.1039325e-02 1.6724833e-01 -1.5825399e-01 3.8151760e-02 4.7028676e-02 -1.2116961e-01 + -3.7541927e-01 1.6014319e-01 -6.6021300e-01 4.7728910e-01 5.1650993e-01 -2.4240058e-01 2.6440716e-01 + -9.3469330e-01 5.3443440e-01 -1.1627107e-01 -2.5381696e-01 -1.0602696e-01 -4.3571852e-01 -6.1268425e-01 + -1.6828614e-01 -2.3982045e-01 -2.7662413e-01 -4.8897946e-01 -7.7900316e-02 4.9935067e-02 -8.8561875e-02 + -4.9692136e-01 2.9515645e-01 -4.2718531e-01 1.7492034e-01 -1.0202181e-02 -9.3194037e-02 3.1896910e-01 + 3.1559759e-01 -1.2354282e-01 -1.1248088e-01 -4.2822237e-02 -1.2541101e-01 -1.2185553e-02 3.6122640e-01 + 4.2828484e-01 -3.1859050e-01 -1.3155344e-01 1.6869262e-01 6.5245453e-03 -4.4413054e-01 -7.5331983e-02 + -1.2562643e-01 3.3749600e-01 -5.1273657e-02 -9.4993222e-02 1.4771830e-01 -1.2814145e-01 2.9521309e-02 + 4.0994419e-01 -4.1644888e-01 1.6775371e-01 -5.4928323e-01 -5.5520513e-03 -5.0573460e-01 2.2458238e-01 + -5.6498769e-01 3.1353184e-02 -9.7786438e-02 -2.3275979e-01 -1.6737564e-01 1.7257363e-01 4.6210944e-01 + -1.7254995e-01 3.3769500e-01 1.7614444e-01 -3.1997273e-02 -4.0063204e-01 3.2360559e-02 6.2155559e-01 + -4.6263975e-01 3.0938120e-01 7.0308318e-02 8.2225981e-01 3.2207306e-01 -1.4714479e-01 1.8303149e-01 + 3.1067668e-01 -2.4881060e-01 7.6263672e-02 -1.3467034e-01 -6.7117601e-01 3.7681178e-01 -7.2156482e-02 + 2.7995215e-01 -3.0766697e-01 5.1706612e-01 -7.2303221e-01 -1.3802063e-01 -2.0621340e-01 5.8631737e-01 + -3.0311625e-01 9.8717428e-02 -4.5624243e-01 -5.1774127e-02 1.9378191e-01 9.3151614e-02 2.4634546e-02 + 1.1196986e-01 1.0791946e-01 -1.6867701e-01 -1.3181566e-01 -3.8222869e-02 1.6040361e-01 -8.6120017e-01 + 8.5597740e-02 -9.1728087e-02 2.8719393e-01 -2.1591297e-02 -2.0754078e-01 1.4102257e-01 5.7181266e-01 + -6.8005232e-01 5.4794441e-02 -3.9131703e-01 3.4060577e-02 1.4803982e-01 2.0146632e-01 9.8356131e-02 + 3.8352190e-01 -3.7845220e-01 4.9367884e-01 -3.1587832e-01 -2.0706298e-02 -1.2462130e-01 1.8750515e-01 + 2.1149634e-01 3.8137424e-02 4.9294349e-01 2.7338455e-01 -1.2717992e-01 -2.6264388e-01 7.1672328e-01 + -2.1023583e-01 -1.2181238e-01 3.7974390e-01 2.7780871e-01 2.2204454e-01 -4.4594356e-02 -1.6038117e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_IW_G_2.txt new file mode 100644 index 00000000..cc234dad --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_G_2.txt @@ -0,0 +1,35 @@ + -1.7434512e-02 9.4265758e-02 3.8520214e-02 -5.9539651e-01 -2.5252499e-01 -2.6874594e-01 -3.8197094e-01 + 3.4329057e-01 -1.2287681e-01 -5.4359942e-01 -6.5573209e-01 -3.2648457e-01 -3.7500573e-02 1.2014060e-01 + 4.0084912e-02 1.1025013e-01 -2.3168381e-04 -2.7071031e-01 8.6043056e-02 -1.2388927e-01 -2.8288709e-01 + 6.3251572e-01 6.4520038e-02 -2.3019638e-01 -1.3229352e+00 1.2017301e-01 -4.3352396e-01 2.3085029e-01 + -1.5602235e-01 -1.1944289e-01 8.3978685e-02 6.1547931e-02 -5.1475682e-02 2.3498128e-01 -2.5936046e-01 + -8.3909809e-03 -1.2070846e-01 -5.6358384e-02 1.1777992e-01 -2.0444671e-01 -1.4398808e-01 9.7544412e-02 + 4.2197792e-01 -9.0173474e-02 1.3625952e-02 -5.7641270e-01 2.5298949e-01 -7.8740521e-01 -1.6719083e+00 + 1.2402144e-01 2.8238642e-01 -3.2426991e-02 1.9813809e-01 -4.9123272e-02 -2.6314692e-01 2.0356828e-01 + 2.8060618e-01 -1.3554790e-02 1.4033436e-02 -7.4755585e-02 -3.7013003e-02 1.3840909e-01 -2.5970901e-01 + 1.7102111e-01 7.1220787e-02 -2.1842839e-01 7.3601268e-02 -6.5568186e-02 -3.2372340e-01 3.4055040e-01 + -1.7967044e-01 2.0743292e-01 -4.3180182e-01 6.1651625e-01 3.1853080e-01 5.4619516e-01 -6.0243628e-01 + 5.7920318e-02 -1.3580159e-01 -2.1787768e-01 -6.4265884e-01 1.0733886e-01 2.8770030e-01 -2.1310102e-01 + 1.7657945e-01 4.6051086e-02 -2.7783174e-01 1.1347242e+00 -2.8998764e-01 7.3843514e-01 5.0455636e-01 + -1.6719406e-01 3.4866376e-02 7.9794110e-02 -2.7662484e-01 9.4556004e-02 -1.1984675e-02 -5.4818534e-01 + -1.2997145e-01 -3.0258226e-01 2.8040076e-02 -7.0472490e-02 -2.5474232e-01 -9.8741114e-02 2.7345953e-01 + 1.0318178e+00 -1.1041396e+00 2.4099746e-01 -2.7352888e-01 -1.2788905e+00 2.4377964e-01 -3.7608682e-01 + 1.2857637e-01 3.5821834e-03 -8.4710954e-02 -1.3052608e-01 -6.2076658e-03 1.3127228e-01 -2.0751456e-01 + -9.2114686e-03 -8.1928405e-02 -4.3538763e-03 -3.8207040e-01 2.0515521e-01 2.3630688e-01 -1.7008701e-01 + 9.8569102e-03 -1.3619588e-01 1.1857061e-01 -3.0166666e-01 -1.4474524e-02 9.9687926e-02 -1.0082843e-01 + 1.8956904e-01 -5.8427256e-02 -8.7867829e-02 -1.7022981e-02 1.1074178e-02 -8.0599205e-02 3.3961983e-01 + -1.9811711e-01 -2.6063383e-01 5.9761065e-03 1.5506359e-01 -2.3400986e-01 1.7835893e-01 5.0448123e-01 + 5.6638695e-03 1.0181107e-01 -7.9734092e-02 -7.7961480e-02 1.4679871e-01 2.8290142e-02 -1.7639365e-01 + -1.6018186e-01 -1.0508004e-01 1.3871398e-01 6.6767423e-02 1.3893223e-01 2.3408081e-01 -2.2196089e-01 + -7.4032510e-02 -9.5465057e-02 -1.5019266e-01 -9.7945672e-02 1.0619875e-01 -5.5123622e-02 -1.3589336e-01 + -1.1604120e-02 2.7126244e-01 1.0684990e-01 1.3532333e-02 -1.3220532e-01 1.1727767e-01 5.8322217e-02 + 1.6182503e-01 -1.6323770e-01 -3.0381905e-01 6.6093413e-01 -8.5118703e-01 4.5233032e-01 -1.6477805e-01 + 1.4371485e-01 -7.0340417e-02 -1.1746048e-01 -1.4999659e-01 -5.3625658e-02 -4.1964589e-02 -8.9049276e-02 + -2.2613957e-01 6.4557448e-02 -1.5181509e-01 3.2339408e-01 -1.5609825e-01 4.1416660e-01 2.4587736e-02 + 6.0984897e-02 4.6188974e-01 -5.2314140e-02 7.0425145e-01 1.1175820e-01 5.5250829e-01 -1.6298952e-01 + -2.0825264e-01 -5.1614875e-02 -8.8505644e-02 -4.4181312e-01 -1.4965712e-01 -4.9258096e-01 -3.2597052e-02 + -2.7018100e-02 1.4356827e-01 1.5966924e-02 3.4664493e-01 -5.3081240e-02 -8.0748568e-02 2.5689114e-01 + 1.8146598e-01 -2.4167197e-01 1.2426611e-01 9.3980449e-02 -4.5815067e-02 1.9611169e-01 -3.1143003e-01 + -1.0046154e-01 1.2960196e-02 8.3119377e-02 5.4008554e-01 -9.8747303e-02 -8.7071024e-02 7.0738420e-02 + -1.6984732e-01 -1.3566194e-01 1.4632268e-01 2.3813635e-01 -3.3961396e-02 1.7359599e-01 2.5135251e-01 + 3.7801589e-01 -7.4716462e-02 6.3032450e-01 1.7624482e-01 -7.5121343e-02 -4.3860788e-01 3.5095609e-03 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_IW_G_3.txt new file mode 100644 index 00000000..7d64bdea --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_G_3.txt @@ -0,0 +1,37 @@ + 1.0644699e-01 -1.3122974e-02 1.4342766e-01 2.4394968e-01 2.7790814e-01 1.4350221e-01 -9.1492986e-02 + -2.8446430e-01 -4.4380704e-02 1.1843915e-01 -2.0249060e-01 -1.1495297e-01 -1.0567723e-02 2.7829834e-01 + -9.1538755e-02 -1.1800841e-01 2.6004760e-01 3.1590817e-01 9.4800865e-02 -4.5248584e-02 1.2175694e-02 + 2.6917701e-02 -4.3324266e-02 -1.0950136e-01 -1.2745467e-01 1.2002697e-01 7.4088060e-02 -2.0897034e-01 + 1.1498850e-01 -1.1192515e-01 -2.1741546e-01 2.9902601e-01 -2.5470347e-01 4.9589892e-02 -3.9932547e-01 + -1.4337353e-01 1.3150905e-01 -2.6073382e-01 -1.0467034e-01 -1.8911981e-01 -2.6050196e-01 2.0743756e-01 + 1.4860180e-01 3.7000408e-01 1.4200754e-01 -1.8881546e-01 -1.4750999e-03 2.0534379e-01 3.6782184e-01 + 1.6469145e-02 2.5803555e-01 -5.4329228e-02 -1.9952371e-01 3.5142602e-01 -1.8427937e-01 1.7544257e-01 + -1.9319945e+00 1.1584456e+00 2.7599384e-01 -5.9602233e-01 -1.8597337e-01 -1.1068883e+00 -4.8418592e-01 + 3.9058967e-01 -1.4933859e-01 9.5053663e-02 -1.9535623e-02 1.8492726e-01 4.7808543e-01 -8.3183527e-02 + -7.6392505e-02 3.7818848e-01 -2.9412005e-01 -1.3120064e-01 -4.2979981e-01 7.9994357e-03 -5.5705753e-02 + -4.0015467e-02 1.8034523e-02 4.5658205e-02 1.8792322e-01 1.0066299e-01 1.1122756e-01 2.2650040e-01 + 3.2047894e-01 -2.4050939e-01 -4.5240337e-01 -5.2134344e-01 -4.0623530e-01 -1.4853108e+00 4.0365292e-01 + -1.0601521e+00 2.7642553e-01 2.4480585e-01 2.7091097e-01 -1.0384161e-01 5.5691794e-01 1.5455611e-01 + -1.8879889e-02 5.4988066e-02 -1.8723023e-01 5.0839898e-01 -2.1775144e-01 -1.0554995e-01 3.0389995e-01 + 4.7143517e-01 -9.5993485e-01 2.8907625e-01 -3.5352463e-01 -3.1822443e-01 7.5886443e-01 -2.8975484e-01 + -6.5529472e-01 -2.3778425e-01 -7.5893554e-02 1.8980452e-02 -1.1548901e-01 -8.7677595e-03 -2.4684715e-01 + 9.8067457e-02 -2.4785966e-01 -3.9675266e-01 6.4419571e-01 -4.6632384e-01 -3.9108906e-01 -3.5439037e-01 + 4.3713003e-01 -6.8371246e-02 -6.3903703e-01 -3.3963619e-02 3.2883225e-01 3.4384972e-01 4.5784671e-01 + -1.0963677e-01 -1.7325021e+00 3.7113643e-01 3.3605533e-01 4.2920022e-01 -5.1544002e-01 1.8799315e-01 + 5.9353883e-01 3.3408791e-01 1.5715387e-04 -1.1314715e+00 1.3257871e+00 3.7202767e-01 1.7592371e-01 + -1.8961582e+00 -7.7629025e-01 4.3849675e-03 1.6957973e+00 -3.5951833e-01 4.6370288e-01 1.4977839e+00 + 9.9635568e-01 1.5377693e+00 4.2785479e-01 1.8577809e+00 -1.8534547e-01 2.7788378e+00 2.1768230e+00 + -9.8290011e-03 4.5528363e-03 1.1342448e-01 -6.2572496e-01 -2.0484348e-01 7.5053570e-01 -4.0296785e-01 + -4.0474076e-01 -1.2469847e-01 -2.7442855e-01 -1.4176946e-01 -6.6660412e-02 -6.2703216e-01 3.6842661e-01 + 1.6995924e-01 3.1010838e-01 1.2039949e-02 -2.5579829e-01 -2.1793847e-01 5.2150500e-02 -8.8040698e-02 + -2.6404815e-01 -3.7058508e-01 -5.4946048e-01 -5.2864425e-03 3.5741963e-01 -6.0439941e-01 4.6442125e-01 + 3.1021622e-02 2.5842236e-02 2.1232391e-01 -2.1653022e-01 -8.7920054e-02 4.8728433e-02 3.2676490e-01 + -2.3213218e-02 5.1440052e-02 -2.4867092e-01 -5.5147732e-03 1.4763532e-01 -7.7246812e-03 -1.4150794e-01 + -1.9384537e-01 -1.0145297e-01 -2.5045707e-01 1.0688988e-03 -4.1219655e-02 -4.9210931e-01 3.6096486e-01 + -2.1947973e-01 -2.4437954e-02 2.7335306e-01 3.5403742e-01 4.4971662e-02 -1.2947929e-01 1.2123135e-01 + -1.7616679e-01 -1.5683286e-02 -2.8074987e-01 1.2442417e-01 6.6308302e-02 4.3095413e-02 2.6022362e-02 + 1.5021341e+00 -5.6849308e-02 1.5183665e+00 -1.1367125e-01 3.8162989e-01 -7.0186527e-01 -3.7373606e-01 + 1.1069381e-02 -1.6726854e-01 2.3906369e-01 1.7109706e-01 -1.0787935e-01 -1.7342328e-01 3.9936418e-01 + 1.5762167e-01 7.2705585e-01 -2.5785298e+00 -2.1545068e-01 8.6197954e-01 -1.4965111e-01 -2.3582494e-02 + 1.3906105e+00 -1.1431508e-01 -1.0710039e+00 -3.4658564e-01 8.0865717e-02 -3.1440272e-01 -2.5959689e-01 + -4.8558710e-02 3.2247690e-01 -4.5218601e-01 4.6209243e-01 -5.1383449e-01 -2.2633321e-01 3.1674623e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_IW_G_4.txt new file mode 100644 index 00000000..18fc33fc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_G_4.txt @@ -0,0 +1,40 @@ + -1.5174637e-01 3.7062215e-02 4.6302505e-02 -1.5343924e-01 4.9861843e-03 -4.2862262e-02 -2.1634198e-01 + 1.6384408e-01 1.7989341e-03 4.1979526e-01 1.3339074e-01 -4.6197676e-02 -4.0247230e-02 7.9024105e-01 + -8.0042304e-02 5.1236540e-02 -9.5385188e-02 9.8281300e-02 -2.2175790e-01 -2.5420194e-02 2.4746588e-02 + 1.6090011e-01 -2.3941995e-01 9.3592763e-02 3.0124162e-02 -5.7203851e-02 3.3211998e-03 9.1814341e-02 + -1.8683658e-01 1.0612098e-01 1.9496742e-01 -1.9367050e-03 7.2600619e-02 -7.6500009e-03 5.0996038e-02 + 1.3938443e-01 -8.7640379e-03 1.5647773e-01 9.2308827e-02 2.0866322e-01 -4.2415755e-02 -1.0415697e-01 + 2.0218261e-01 -1.8852639e-01 2.1932996e-01 -6.6601486e-02 1.1030434e-01 3.0128117e-01 -1.5057817e-01 + 1.8663416e-01 -3.1359061e-01 8.4691933e-02 8.1323031e-02 2.2779393e-01 -4.0330394e-02 -2.0842560e-01 + -3.8001917e-01 -1.6070595e-03 3.9956100e-01 3.9362273e-02 2.2702555e-01 9.5072543e-02 -9.8045612e-01 + 2.5352466e-01 -3.3504775e-01 1.3146775e-01 -1.1615134e-01 1.3668513e-02 -5.1912851e-01 2.1875060e-02 + -1.4560732e-01 -5.3550839e-02 3.0998015e-01 -1.5109947e-01 -9.6971784e-02 -6.5025516e-02 -8.3784528e-02 + 1.2988307e-01 -2.8205386e-01 2.3081814e-01 -1.1047466e-01 7.2003054e-02 2.4183241e-01 -8.6703883e-02 + -9.6165044e-02 2.1894248e-01 -3.3195096e-01 1.0620817e+00 -3.2886670e-03 -3.7016762e-01 3.5817167e-01 + 2.9482465e-01 -1.8734453e-01 -8.4139145e-02 1.1927791e-02 -7.9070363e-02 -1.1157972e-01 1.5442316e-01 + -5.8811381e-02 2.4687041e-01 -4.0502783e-02 1.0382013e+00 2.5575515e-01 5.7859240e-01 -1.1614980e-01 + -1.0013048e-01 1.6069633e-01 -1.3853209e-02 1.0984774e-01 1.3089917e-02 9.4634204e-02 1.3598687e-01 + -1.0280558e-01 1.2916194e-01 1.4817053e-01 -4.7290912e-02 -6.3005742e-02 3.3625910e-02 1.5237073e-01 + -1.2236828e-01 2.2497563e-01 -2.0485999e-01 2.0707861e-01 2.6923870e-01 -2.5549447e-01 7.9239407e-02 + 2.3178101e-01 -2.4881827e-01 -1.3483701e-01 1.3992431e-01 -2.8097923e-02 7.9435728e-02 -1.9501100e-01 + 3.4717273e-02 -9.4307152e-02 2.1592354e-02 1.1895438e-01 7.8508178e-02 -1.4938665e-02 -1.7245662e-01 + 1.8316384e-01 -1.0165035e-01 -1.4665432e-01 1.9636709e-01 1.0124845e-01 -1.6494709e-02 -2.4127942e-01 + -3.5294191e-01 5.1798854e-01 1.0974612e-01 3.0882457e-01 1.6658260e-01 1.8787137e-01 -8.9696210e-02 + -2.4756834e-01 2.3496033e-02 -1.8093661e-01 -1.3828282e-01 1.9139383e-03 2.9267993e-01 6.1745904e-02 + -5.8752235e-02 1.0633453e-01 1.5116909e-01 -8.3320671e-02 -9.7273801e-02 1.1167177e-01 2.8316716e-01 + 1.7866724e-01 -3.6354697e-01 -2.1578454e-02 2.2358519e-02 -1.7020764e-01 -1.1670687e-01 2.5987118e-02 + 1.4616351e-01 -1.7647922e-01 1.8691997e-04 -8.2070538e-02 2.7777918e-02 9.5295666e-03 3.7035372e-02 + 5.7140089e-02 -7.0506002e-02 -1.1219026e-01 9.9483745e-02 -1.7891040e-02 -2.3467150e-01 1.7163102e-01 + -1.1627732e-01 1.2650075e-01 1.3065978e-01 -2.1645764e-01 -1.0398576e-02 3.2953453e-01 -1.7408236e-01 + -9.5279361e-02 8.7926541e-01 1.9297398e-02 5.7809273e-01 8.9551580e-01 -2.3378687e-01 -1.4352372e-01 + -2.3054669e-01 -3.7263886e-01 5.2899343e-01 1.9000931e-02 -4.2404306e-02 1.5187466e-01 1.4280476e+00 + 1.4508915e-01 -1.2124879e-01 -1.7175892e-01 8.4453095e-02 2.8173470e-02 -1.5335257e-01 1.6494334e-01 + -1.0456318e-01 3.5802618e-02 2.2121618e-01 -3.7595365e-01 2.8310858e-02 2.3947285e-01 -3.8560878e-01 + -2.0891231e-01 2.5570662e-01 4.6430990e-02 -2.1447105e-01 2.1673215e-03 1.9770116e-01 -7.5435447e-03 + -2.0605943e-01 -1.3111408e-01 -5.5250332e-01 2.8074541e-02 4.0789228e-01 -6.7213418e-02 -9.1060153e-01 + 4.5062770e-02 -2.0258143e-01 1.0964737e-01 -1.1218666e-01 1.4579895e-01 -1.4563064e-01 1.9040642e-01 + -1.2560250e-01 -2.7225684e-01 -1.6793879e-01 8.4071590e-01 -5.3302838e-01 3.2238547e-01 -7.5223977e-02 + -8.4457380e-02 3.5538940e-02 1.6204847e-01 -9.8983257e-02 -2.0125573e-02 1.1184048e-01 1.0209471e-01 + 7.2858518e-02 7.3228891e-02 -5.1568354e-02 2.0580255e-01 5.3055535e-02 -7.3950179e-02 1.2193320e-01 + -1.2990593e-02 -2.4056272e-02 2.6311991e-01 -2.0072884e-01 -8.7288855e-02 5.1739053e-02 1.6148752e-01 + 7.4564996e-03 -4.4970049e-02 -3.5001649e-03 1.9508051e-01 -8.6989467e-02 1.5450570e-01 2.3550558e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_IW_G_5.txt new file mode 100644 index 00000000..7c126d77 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_IW_G_5.txt @@ -0,0 +1,49 @@ + 5.3034502e-02 1.3371794e-01 2.0258681e-01 -1.7014559e-01 1.8915609e-01 -4.1418696e-01 2.6820092e-01 + -1.8902866e-01 -1.4605146e-01 -3.0127983e-02 2.4248853e-01 -5.1086936e-01 5.1391217e-02 1.4676163e-01 + 2.8737230e-02 -1.3904877e-01 -4.3294811e-02 -1.3117663e-01 -2.1546642e-02 -2.1023507e-01 1.9913550e-01 + -1.1509955e-01 -1.6967433e-01 -4.8572673e-02 1.0406585e-01 -2.9977629e-01 -9.4121847e-02 2.3764670e-01 + 8.0939089e-03 2.9539048e-01 -2.7990812e-03 1.8762227e-01 1.3430278e-01 -3.8339481e-01 3.1630362e-02 + -2.5844390e-01 5.8256049e-01 -1.4540710e-01 4.1289641e-01 4.5037466e-01 -4.7668423e-01 4.4620672e-01 + 5.6921908e-02 1.0530717e-01 4.6158767e-01 8.1173456e-01 -9.3777518e-02 -1.9356647e-01 6.6960686e-02 + -7.3628889e-02 -1.4346168e-02 9.6277577e-02 1.7527415e-01 1.7252290e-01 -8.6059766e-02 9.3132341e-02 + 7.8675198e-03 -3.2062455e-01 6.4512217e-02 9.3269788e-02 -3.0288665e-01 -3.2119273e-02 1.0451253e-01 + -1.4675379e-01 8.5743442e-03 -6.7891714e-02 6.2243243e-02 -1.2800925e-01 -1.7278725e-01 1.6854235e-01 + 5.1525911e-02 -7.7000807e-02 1.9803353e-01 -2.0650130e-01 -1.7569704e-01 -1.3184113e-01 2.0456457e-01 + -4.4210466e-03 -5.1877187e-02 6.4287288e-02 1.9650823e-01 -9.6738855e-02 1.7214132e-01 2.7654049e-01 + 2.0933577e-01 -5.3660730e-02 -1.7052343e-01 2.9431292e-01 4.5786818e-02 -1.1113578e-01 1.7990647e-01 + 5.5156487e-03 2.5486421e-03 -8.0536229e-02 1.7591160e-01 -1.2345186e-01 -1.4390084e-01 7.9029772e-02 + 1.1887753e-01 1.0868134e-01 2.5638402e-02 -2.6355731e-02 1.5926459e-01 9.0321252e-02 -1.9677087e-01 + -5.9165747e-02 1.1482780e-01 8.8052218e-02 -5.4311175e-01 8.4968012e-02 -8.8438247e-02 -8.8298669e-02 + -1.5383863e-02 2.5994864e-02 -5.0665559e-05 -2.0956107e-01 -3.0995473e-01 -2.5898865e-02 -2.8495218e-01 + 1.8544935e-01 4.5392461e-02 -1.6606026e-01 -1.3757248e-01 -3.9537298e-02 1.3590483e-01 -1.0632876e-01 + -4.2534360e-01 7.8013626e-02 4.7253716e-01 4.2433252e-01 2.6790414e-03 2.4793760e-01 -5.9068682e-01 + -1.7992591e-02 -5.5084109e-02 -1.6343643e-01 1.7004541e-01 -4.9324704e-02 -2.4947574e-01 2.1060964e-01 + 1.2294675e+00 -1.4507857e+00 3.8797762e-01 -2.8628670e-01 -1.3508764e+00 3.5640405e-01 -6.5314359e-01 + -6.9581483e-02 -5.1930672e-02 9.3370494e-03 9.4110539e-02 2.0851524e-01 8.7796439e-02 -3.3592868e-01 + 1.3609626e-01 -4.8386246e-02 4.3362301e-02 -6.9695265e-02 4.1175511e-02 1.3473851e-01 -4.3688147e-02 + 1.1614544e-01 2.1402952e-02 -1.7860569e-02 1.5660059e-02 1.1400318e-01 -9.6635359e-02 -1.5486237e-01 + -1.6532551e-01 -2.9212609e-02 -2.8853206e-02 7.1284254e-02 -5.7970068e-02 -1.2455305e-02 -7.8003275e-02 + -9.1365415e-02 -3.2774241e-02 1.2405476e-01 -1.7713794e-01 -5.7349881e-02 6.4331005e-02 -5.6712805e-02 + -5.7825061e-01 7.8953186e-01 -2.0258982e-01 7.3669149e-01 7.8372952e-01 1.2688192e-01 2.3135320e-01 + -1.3429356e-01 -7.6108774e-03 -1.3575527e-01 1.3515833e-01 -6.9929805e-02 -2.1908385e-01 1.0929343e-01 + -6.2144862e-02 2.4530311e-02 1.5328934e-01 -1.7464130e-01 4.1527113e-02 1.0121351e-01 2.1088357e-02 + -3.6106560e-01 -1.2303590e-01 3.7409385e-01 -3.3930386e-01 4.8991467e-02 2.0992204e-01 -2.4380698e-01 + 1.5390031e-01 6.1202641e-02 -1.9779900e-01 1.8453093e-01 -4.5791620e-02 -1.3028810e-01 -1.2654400e-02 + -3.5829900e-02 9.9387673e-02 5.3070411e-02 -8.2442905e-02 2.0761125e-01 1.0359047e-01 -3.6604974e-02 + 1.5681865e-01 3.9739594e-01 8.5830448e-02 7.2203109e-01 -2.2288341e-01 2.1714941e+00 1.2510637e+00 + -2.1426177e-01 1.5850621e-01 -4.5567847e-01 -2.1290091e-02 2.2251511e-01 9.7826465e-02 2.3195754e-01 + 1.6750073e-01 -2.2666436e-02 6.2658275e-02 8.1691844e-02 3.5903795e-01 -1.3373007e-01 2.8634053e-01 + -5.0353355e-02 -6.9095691e-02 2.8454614e-01 -1.3799146e-01 -6.6320016e-02 2.1465785e-02 -2.7889077e-01 + 3.2642536e-01 2.3017661e-02 -1.1463333e+00 -7.3815670e-01 -2.0307418e-04 -2.7125879e-01 -3.1996521e-01 + -3.2942560e-01 -6.7253517e-02 3.4561781e-01 -6.8512244e-03 3.2740210e-03 2.3601537e-01 -3.2436185e-01 + 2.1438666e-02 -8.6755974e-02 -9.9276469e-02 1.6120176e-01 -8.9644591e-02 -2.1448671e-01 1.0590955e-01 + -1.5470165e-02 -4.9549129e-02 -1.9511653e-01 -4.7796970e-02 2.3355023e-01 2.1053642e-03 -1.6864188e-01 + -1.7331571e-01 3.3354485e-02 4.6887266e-02 4.9990877e-02 -1.4441786e-01 -1.4001840e-01 1.1828286e-01 + -9.2748997e-02 -8.7659534e-02 -7.9588388e-02 -5.9764286e-03 -4.3118525e-02 1.1574826e-01 -9.3173114e-02 + 5.5986735e-02 -2.8406103e-02 1.5771236e-01 -1.1587233e-01 -2.9744887e-02 1.7549176e-02 2.1779658e-02 + -8.6566844e-02 1.3410171e-02 1.5732848e-01 -3.0702792e-01 3.6480661e-02 1.0756591e-01 -3.6303799e-02 + -8.0624738e-02 4.4418262e-01 1.5969770e-02 -2.0362188e-02 4.5008079e-01 -1.3362898e-02 -1.1242652e+00 + 6.2090513e-03 -1.4442538e-01 -1.1010197e-01 1.7961491e-01 -5.8728069e-02 -2.0494665e-02 2.7695219e-02 + -2.4578448e-02 -6.2003782e-02 1.1901163e-01 -2.2204087e-01 1.2128333e-01 2.7353963e-01 -1.2060047e-01 + -4.4407319e-01 2.3318755e-01 -5.3036723e-03 -1.2794385e-01 -1.1245259e-01 5.3722483e-01 3.9467347e-01 + -8.5669587e-02 1.3260299e-02 9.5323740e-02 8.9343173e-02 -4.5095950e-02 -9.9607640e-02 7.6240872e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_F_1.txt new file mode 100644 index 00000000..19f819a9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_F_1.txt @@ -0,0 +1,23 @@ + -1.1495237e-01 -7.8324252e-02 6.1045617e-02 2.1973364e-01 -1.3727192e-01 1.4125247e-01 1.6201807e-01 1.2328612e-01 8.0869045e-02 1.3560364e-01 1.1052138e-01 -3.5935149e-02 3.8895122e-02 2.1845477e-01 -2.9696032e-02 -1.0385152e-01 1.7220844e-01 -1.6218295e-01 -1.3267667e-01 1.8338976e-01 -9.9670042e-02 -1.4945483e-01 1.7175042e-01 -5.9097922e-02 -1.4630289e-01 -1.3150668e-01 3.4984133e-02 -2.2797804e-02 3.4906839e-02 -3.5078470e-02 -5.0945000e-02 -1.1703956e-01 8.6000995e-02 + -2.6354160e-03 5.9235178e-01 1.2938304e-01 -1.6944911e-01 1.9119407e-01 -1.3257509e-01 2.6080111e-01 2.8435884e-01 -1.9073696e-01 -7.2970425e-02 1.3248705e-01 2.9809242e-01 5.0910046e-02 -1.6568241e-01 4.2704770e-04 1.6930146e-01 -3.6434845e-01 -1.8160967e-01 1.5418890e-01 -1.8436431e-02 -1.6807429e-01 -1.3127452e-01 2.6002505e-01 -6.8362128e-03 1.2467979e-01 1.5668567e-01 4.5302750e-01 1.9794922e-01 -2.4708681e-01 -7.3237216e-02 -8.0086346e-02 -2.7538420e-01 -3.9469321e-02 + -1.5444626e-01 6.9495465e-02 7.7757053e-02 8.2077865e-02 1.6384222e-01 3.3301180e-01 1.0112197e-01 -9.5170333e-02 3.0418523e-02 -5.6574498e-02 1.1271101e-01 -8.6817071e-02 -7.8324596e-02 -3.3962883e-02 -1.1456204e-01 -2.1844262e-02 -4.3653402e-01 -2.9925145e-01 1.3165841e-01 -2.5676320e-01 -1.5917942e-01 3.0665794e-02 6.2180247e-02 -4.9916235e-02 -3.5846234e-01 -2.3919369e-01 -1.8440986e-02 1.9888004e-01 -1.2554201e-01 -4.2362249e-02 4.7519089e-02 -6.4064218e-03 -3.2823481e-02 + 1.2849634e-02 -3.3663665e-02 2.6996800e-02 8.2841524e-02 -1.4260924e-01 5.4161127e-02 1.8479335e-01 5.5519843e-02 -7.9075303e-02 2.8625977e-02 7.3698356e-03 -6.0282381e-02 -1.5029127e-01 -1.3440144e-02 1.6984811e-02 -5.7132032e-02 9.5959807e-02 -1.3334885e-01 7.2749184e-02 -1.7496980e-02 -8.6548051e-02 -2.0369959e-02 -7.2477205e-03 8.9323493e-02 -5.1425794e-02 2.1289559e-02 -1.9079516e-01 1.8375189e-01 7.0387163e-02 -6.6259632e-02 -5.6329703e-02 -3.4862096e-02 6.4229053e-02 + 8.1045511e-02 -4.4211704e-02 -4.0288518e-02 4.8819426e-02 8.9851639e-03 -4.1555540e-02 -1.2699949e-01 -1.3713341e-01 9.5219202e-03 -2.4688003e-02 -6.8483690e-02 -7.6542496e-02 -4.3372177e-02 -7.1432413e-02 -2.4585506e-02 -5.6647429e-02 -1.3605445e-01 -9.3047356e-02 3.5749558e-02 -1.6031203e-01 1.2417375e-01 8.6379441e-02 -1.3334898e-01 7.5702371e-02 -6.9380482e-02 -7.4279657e-02 1.3554529e-02 8.4523962e-02 -3.7582195e-02 1.1648305e-01 5.9066632e-03 1.1974498e-01 -7.1467719e-02 + -1.8198253e-01 2.9774741e-01 2.2896542e-01 1.3227541e-02 -5.8321063e-02 -1.4377111e-01 7.8425670e-02 7.7675043e-02 -1.2969122e-01 8.8870237e-02 2.3898350e-01 1.9814201e-01 1.6410197e-01 -1.3606928e-02 6.4300420e-02 1.1084866e-01 -1.9348057e-02 -7.8509688e-02 -4.7279084e-02 5.0944009e-02 -7.3693539e-02 -3.3900070e-01 3.2359781e-01 -3.4118486e-02 -6.8731176e-03 5.6558187e-02 2.7058232e-01 -2.6378741e-03 3.6599623e-02 -2.3007535e-01 2.1683122e-02 -1.3634900e-01 -1.4550582e-02 + -1.7585634e-01 8.9814563e-03 -1.1708926e-01 9.7981527e-02 -1.4078246e-01 -6.5424554e-02 1.5304227e-01 5.1542230e-02 -1.1187756e-01 1.7172649e-01 1.5064033e-01 6.1707081e-02 9.4838497e-02 1.5572998e-01 4.3735938e-02 2.3971517e-02 -6.3272990e-03 -1.0675673e-01 -2.5754022e-02 6.2405546e-02 -9.2469444e-02 1.1210812e-02 -1.6695600e-02 6.0618268e-02 7.3871403e-02 -5.3121809e-02 9.7005197e-02 1.1538370e-01 -6.2089291e-02 5.0923460e-02 -2.9272197e-02 -6.6185830e-03 9.2060869e-02 + -1.3829900e-02 -4.2784424e-02 -3.1439885e-02 9.9124249e-03 -2.9708990e-02 -1.4400354e-03 -1.4850398e-02 -2.9927932e-02 -5.4492509e-04 4.7501812e-02 -9.0173681e-03 -1.4015233e-02 9.6277388e-03 3.2552857e-02 3.5842400e-03 -1.4777164e-02 -3.1313424e-02 8.9538258e-03 -2.1324337e-02 -2.1820566e-02 1.9355761e-02 1.6262013e-02 -4.1688710e-02 2.3945624e-03 -1.7516391e-02 -1.5714230e-02 -2.5303035e-02 4.1662658e-04 3.6904569e-02 3.0603000e-02 3.2697100e-02 1.5635739e-02 4.4413864e-02 + 7.6894510e-03 -8.1582167e-02 -1.2333138e-01 1.3147339e-01 -1.0282557e-01 -4.3770940e-02 -4.0790367e-02 -1.0541722e-02 -6.0357763e-02 8.4919968e-03 6.0422670e-02 -8.8891934e-02 -1.7261410e-02 3.3891043e-02 -1.0604328e-01 -3.5766605e-02 1.8318356e-02 -2.4979717e-01 1.0056403e-02 -8.1063115e-02 8.5793132e-02 -7.1040651e-03 -5.9764951e-02 8.5566845e-02 5.1196747e-03 -2.1175946e-01 1.2398470e-01 6.0674866e-02 -1.2696070e-01 -2.8272543e-03 8.2926936e-02 8.5942306e-02 -7.1974018e-02 + 1.6375209e-01 1.0914969e-01 1.2062474e-01 1.2781456e-01 3.0949368e-01 -1.0916472e-01 3.7844587e-01 3.2921176e-02 -4.6781913e-02 1.0617358e-01 -4.7909064e-01 6.4576657e-02 7.2277837e-02 -2.5659936e-01 5.2980436e-01 -3.0871171e-01 5.4145810e-01 2.8716190e-01 4.3097791e-01 3.2848651e-01 2.1843888e-01 1.2402050e-01 -1.0448773e-02 1.1316565e-02 -7.1354579e-02 4.3543720e-01 -7.6336559e-02 -1.2242497e-01 2.5152179e-01 3.1883931e-03 -2.4679268e-01 -1.4986741e-01 3.4784745e-01 + 2.8175310e-02 3.2357706e-02 2.0653363e-02 -1.8808234e-02 3.3756798e-02 1.0519606e-02 8.9967869e-03 2.2875130e-02 8.3868491e-03 -5.3637414e-02 -2.9878874e-03 3.3749799e-03 -1.9738960e-02 -4.6743094e-02 9.4091889e-03 2.1656292e-02 2.3639832e-02 -3.0593074e-04 2.9592680e-02 7.5621967e-03 -1.0554904e-02 -9.6180495e-03 2.6129690e-02 -5.7696973e-03 1.5440922e-02 4.9572008e-03 2.0033846e-02 -1.6488854e-03 -3.3092253e-02 -1.7124484e-02 -3.5387036e-02 -9.7224015e-03 -4.3437869e-02 + 2.0583486e-01 -8.6031291e-02 1.6596067e-01 -2.0307610e-01 2.3836271e-01 1.8561391e-01 -1.7960204e-01 -1.1911845e-01 3.6372039e-01 -3.0842808e-01 -1.5005358e-01 -1.3907645e-01 -2.1205016e-01 -1.8319987e-01 -1.6829851e-02 -9.1248500e-02 1.3054190e-01 5.5271465e-02 2.0031993e-01 5.2720578e-02 -6.0166424e-02 -3.1694159e-02 1.7390042e-01 -8.2789241e-02 -1.8405034e-01 -2.4931009e-01 6.5023180e-02 -1.3166621e-01 -1.4036808e-02 -1.7579251e-01 -6.5106127e-02 1.4024345e-01 -9.1290405e-02 + -5.9508392e-03 2.9932127e-03 1.3705920e-02 1.8854222e-02 8.8639313e-03 5.0640466e-03 1.4301726e-02 -9.8435615e-03 -9.8969778e-03 1.7240588e-02 -2.9844004e-02 -4.0088774e-03 8.4755072e-03 -9.3765160e-03 2.2926311e-02 -2.9881814e-03 6.7906566e-04 1.9078669e-02 9.2510397e-03 8.4483399e-04 6.3840581e-03 1.8996124e-02 -1.5265667e-02 5.3289704e-03 -7.8332472e-03 3.6212734e-02 -4.0447077e-02 1.5314260e-02 2.4834577e-02 1.9683993e-02 -2.3038919e-03 -1.3977995e-02 3.6937704e-02 + 7.7229393e-02 -8.5118276e-02 -6.8876461e-02 -1.7163255e-03 -1.8800076e-03 -1.2655302e-02 -1.3645800e-01 -1.0134266e-01 2.1803028e-02 3.5202790e-02 -1.6543608e-01 -8.1092245e-02 -1.9995042e-02 -6.7373104e-02 2.5550716e-02 -5.8013258e-02 -9.1609051e-02 3.7945912e-02 6.7078997e-03 -7.4990482e-02 1.0556377e-01 1.0181300e-01 -1.6345388e-01 -1.3666762e-02 -5.7013622e-02 2.4793492e-02 -7.2986350e-02 -2.4663916e-02 9.2980673e-02 9.2845318e-02 3.7332174e-02 6.9103624e-02 6.7168987e-02 + 4.2107502e-02 -5.6783104e-02 -3.6716056e-02 -4.4842197e-03 1.3284151e-02 -1.4064845e-02 -4.2428613e-02 -6.4995368e-02 -2.0800461e-02 3.5043779e-03 -5.9622752e-02 -4.7657678e-02 -3.2808075e-02 -2.7372645e-02 2.8787122e-02 -4.0263941e-04 -3.1211762e-02 3.7207988e-02 2.6865497e-02 -6.5158214e-02 8.2696773e-02 4.4369745e-02 -6.5116861e-02 1.2596542e-02 -6.9376179e-03 -8.3768111e-03 -5.9950460e-02 2.9666587e-02 2.8945624e-02 5.9746707e-02 4.3639435e-02 4.3821091e-02 1.0354142e-02 + -4.1062823e-01 -1.4083928e-01 -7.3168019e-01 4.0615305e-02 -3.3327074e-01 -3.7713485e-01 2.1916356e-01 4.8514687e-01 -4.2776426e-01 7.5936473e-01 6.2733512e-01 5.8793323e-01 3.0844699e-01 1.2819820e+00 -3.1002027e-02 -3.4823359e-01 9.1530033e-02 -4.9821475e-02 -4.1035777e-01 5.4147348e-01 1.9395580e-02 2.7750717e-02 -1.9940662e-01 7.5880812e-02 5.0916558e-01 -8.4224833e-02 5.7262294e-01 -2.1440204e-01 -2.3180630e-01 2.1302426e-01 -2.7817012e-02 -9.1374616e-02 -1.7766379e-01 + 3.3677077e-03 5.7264693e-02 5.5849904e-02 6.3776517e-04 3.1219248e-02 8.3703956e-03 5.2619041e-02 6.2364811e-02 -1.5729411e-03 -6.3014373e-02 2.5422108e-02 2.1423310e-02 -1.6740285e-02 -4.1772253e-02 2.2154710e-02 3.7962273e-02 7.9305034e-02 1.5866019e-02 3.8625278e-02 5.5471767e-02 -2.8296482e-02 -3.9972622e-02 7.6970658e-02 -1.6924508e-02 3.6309552e-02 1.5852225e-02 8.7012979e-03 -1.3833199e-02 -3.0375272e-02 -6.9522129e-02 -3.4896333e-02 -3.3280840e-02 -5.1419289e-02 + -9.7267906e-02 -1.6158584e-01 5.2045915e-02 2.2386265e-01 1.6242633e-02 -7.0352290e-03 -1.6890591e-02 -2.6976995e-02 -2.3537405e-01 6.8782045e-02 -1.4971847e-02 -5.9176601e-02 1.6827085e-02 6.2628690e-02 -1.0506214e-01 -2.8892439e-01 -1.5525936e-02 -1.7190301e-01 4.2716602e-02 6.8768291e-02 1.2625710e-01 5.1364931e-02 9.1732364e-02 9.4697287e-02 -2.4893668e-01 1.9437950e-01 -1.0908902e-01 8.9906947e-02 4.9429040e-02 4.7428791e-05 -4.2596007e-02 -7.0725765e-03 1.9097861e-02 + 1.1675666e-03 -4.7264212e-02 -1.8345810e-01 1.1610845e-01 -1.6219316e-01 -1.6346490e-01 1.4107712e-01 7.5099152e-02 3.2430189e-03 1.1504967e-01 1.3628399e-01 1.1976640e-01 9.6195102e-02 1.4661634e-01 1.6730398e-01 1.0620632e-01 1.9071518e-02 3.8559302e-02 1.4657054e-02 -1.2372578e-02 2.1410418e-01 2.5961342e-02 -1.3924634e-01 8.4952824e-02 2.2054778e-01 -3.1832167e-01 2.7383107e-01 -8.8851598e-02 -9.4522244e-02 6.4406266e-02 8.9273851e-02 5.5643038e-02 4.0466995e-02 + 7.8723707e-02 1.2033624e-01 4.5401936e-02 2.0365976e-04 9.4228022e-03 -6.3966461e-02 2.4835560e-02 6.5507760e-02 -1.8884873e-04 -9.0164331e-02 -5.6023664e-02 1.8082712e-02 -5.9982395e-03 -2.1611084e-02 -2.6920620e-02 -2.1968138e-02 -8.0021378e-03 -7.7993287e-02 -4.0838095e-02 -2.5213511e-02 6.5500590e-02 -2.1827624e-02 -5.0397557e-02 5.5549557e-03 3.3947710e-02 6.3243548e-02 6.5184252e-02 -5.9179251e-02 -1.2105782e-01 -4.9693130e-02 -6.3511524e-03 -9.5597578e-03 -1.1951202e-01 + 1.7078814e-02 -5.1128742e-02 1.7696529e-01 2.1149654e-01 3.1141765e-01 2.5102086e-01 1.4645369e-01 -2.6166308e-01 2.4042487e-02 -8.3635673e-02 -2.8121722e-01 -2.4643813e-01 -2.2421290e-01 -2.9844750e-01 9.1118995e-02 -3.3736705e-01 -5.5970742e-02 -4.3563086e-01 4.7215875e-01 -1.6370018e-01 -7.9054082e-03 1.5293862e-01 -2.3189485e-03 1.2850512e-01 -5.8352829e-01 3.6265945e-02 -3.2909466e-01 3.4416883e-01 1.5601277e-01 -1.0283850e-01 -6.0240877e-03 7.7833163e-02 2.1959530e-01 + 1.0635234e-01 -6.1859060e-02 -1.7494695e-01 5.0743509e-02 -3.4113836e-03 -1.4355514e-01 1.6933567e-02 1.1950125e-01 -1.7365550e-01 -6.7485043e-02 -1.7939368e-01 -5.6105505e-02 3.5829589e-02 -2.4633402e-02 -1.4968135e-01 -8.5260125e-02 -6.9247903e-02 -2.6709439e-01 5.3376083e-03 9.2529977e-03 5.1399362e-02 1.0482656e-01 -1.6361123e-01 -3.6416163e-03 7.8539785e-02 1.1119496e-01 2.7383767e-01 -4.7798249e-02 -2.5559378e-01 9.2226230e-02 -6.7758877e-02 1.3465342e-02 -2.2146469e-02 + -3.8305201e-03 -4.4933854e-02 -3.7255800e-02 1.0630188e-02 -3.5656435e-02 -2.1174962e-02 -2.0052869e-02 -1.1693249e-02 -2.1899722e-02 1.7020268e-02 6.4721445e-03 -6.0434720e-03 3.9914806e-03 3.1609660e-02 -3.2997739e-02 -2.5768295e-02 -2.6157540e-02 -3.9476370e-02 -1.5686594e-02 -2.6967147e-02 1.7427557e-02 9.7002789e-03 -3.0564251e-02 2.0126974e-02 1.2136458e-03 -1.5443381e-02 3.1160667e-02 2.5089749e-04 -8.5907102e-03 1.5538001e-02 1.3601915e-02 2.8697060e-02 -3.4936379e-03 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_F_2.txt new file mode 100644 index 00000000..54c5ea85 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_F_2.txt @@ -0,0 +1,30 @@ + -1.4178882e-02 3.2406585e-02 1.9711884e-02 -3.3834749e-02 2.6431096e-03 -1.6404350e-02 2.0219087e-02 -2.0492998e-02 -1.1022775e-02 4.1527343e-03 2.8485151e-02 6.9512007e-03 -8.2259202e-03 5.0072808e-02 -1.1623582e-02 -1.6195996e-02 -1.6481551e-02 -8.1706104e-03 6.4363333e-02 4.8448637e-04 -1.4351557e-03 -3.8505043e-02 1.5366410e-02 -3.2531506e-02 -5.1491344e-05 1.3903859e-02 2.2443760e-02 -1.6986636e-02 -2.2354437e-03 -4.9214793e-03 2.6607929e-02 2.2371107e-02 -6.7150660e-03 1.7724888e-02 + -2.9198760e-02 5.1090715e-02 4.4257276e-02 -6.9276278e-02 1.8229760e-03 -3.4917770e-02 4.1424690e-02 -1.3739017e-01 -3.7160127e-02 4.0351229e-02 6.3511787e-02 7.1324129e-02 -3.9022534e-02 7.1921121e-02 -2.7241849e-02 -6.7112807e-02 3.0491728e-03 -4.5631440e-02 1.0544117e-01 -2.1933521e-02 -6.3751341e-02 -8.3436984e-02 4.1087421e-02 -9.8549409e-02 4.8521792e-02 3.6350786e-02 4.0310502e-02 -5.6958880e-02 -4.4168720e-02 1.2004695e-01 7.2198266e-02 -1.8104043e-02 -1.1993293e-02 2.5714419e-03 + -2.1855293e-02 8.4095027e-02 -2.9071239e-01 4.4378459e-02 -3.6373319e-02 2.9202173e-01 -4.0269385e-02 -3.3302709e-01 -2.5070751e-01 -7.5743602e-02 -2.1577428e-01 2.6835771e-02 -2.1305039e-01 1.7662849e-01 4.1533163e-01 -8.5222564e-02 1.3264673e-01 1.0535898e-01 1.2504345e-02 -2.5913457e-01 1.9012586e-01 2.2404260e-01 -1.2917017e-01 2.6479778e-01 1.5148724e-01 1.6733549e-01 -1.8201136e-01 1.1665313e-01 -1.2648932e-01 -3.2823061e-03 1.4227850e-01 5.3163864e-02 7.5314552e-02 -9.8543947e-02 + 2.3678340e-02 1.1363544e-01 -2.1918522e-02 -2.4224381e-02 -8.3423000e-02 -1.5197022e-02 8.1140213e-02 1.6190632e-01 -1.8203676e-02 -1.4442468e-01 3.1514141e-02 2.1394664e-02 -7.9136453e-02 8.7885062e-02 7.5446107e-02 5.0388027e-02 -5.2149704e-02 1.0787836e-01 -4.2465195e-04 3.0355820e-02 -3.5122751e-02 3.1064446e-03 -1.1238050e-02 1.6632100e-02 5.1117418e-02 3.5436915e-02 3.1888835e-02 -5.4001629e-02 -3.0478416e-02 -3.8608340e-02 -2.3689499e-02 3.7425852e-02 6.0253146e-02 -7.2109111e-02 + 3.4229598e-02 -5.1285842e-02 -1.0287115e-02 6.1100459e-02 -8.0108379e-03 8.6626587e-03 -1.6687223e-02 5.0828271e-03 2.7274510e-02 -3.1454046e-02 -2.3582415e-02 8.7906553e-03 -1.1721814e-04 -3.0852526e-02 8.4660090e-03 1.2389558e-02 3.3229407e-02 2.6590743e-02 -3.8325680e-02 6.1064247e-02 -7.2475413e-03 -1.0631368e-02 -3.0744387e-02 5.1138872e-02 1.6189415e-02 -6.4422151e-02 3.4667391e-02 2.9700937e-02 -1.6489011e-02 -3.6828042e-02 -7.7958074e-02 -3.8859046e-04 4.9620371e-02 -1.5927923e-02 + 1.4454706e-03 -1.8366588e-01 -1.1271929e-01 2.0863002e-02 2.7075482e-01 8.8266696e-02 -1.5413252e-01 3.6924584e-02 2.4618336e-01 -1.0736352e-01 3.0816817e-02 1.9176335e-01 8.9050167e-02 -1.9109501e-01 -5.3692854e-02 9.2546345e-02 1.4324927e-01 1.0440951e-01 2.0774180e-01 -6.1660294e-02 4.2082120e-02 -2.8655080e-01 1.2446116e-01 -2.5929345e-03 -5.4828573e-02 -1.2333028e-02 2.0777106e-01 -3.2022222e-02 -7.9961100e-02 -9.6671729e-02 -3.1027207e-01 1.1098800e-01 5.6979871e-02 -1.2494122e-01 + 5.3110939e-02 2.5328317e-02 4.6419530e-04 4.2723188e-02 -6.1293567e-03 2.5196672e-03 3.0762779e-02 -6.8960309e-02 8.0713114e-02 -1.8076100e-02 -2.1634593e-04 -1.2870513e-02 3.2005917e-02 4.4381013e-02 -1.5822910e-01 4.4677448e-02 4.4375759e-02 4.1025766e-02 -1.9358796e-02 6.6617745e-02 -1.5399670e-01 1.5430554e-02 1.6382225e-02 9.1913926e-02 -6.6692901e-02 -5.6867624e-02 1.0764390e-01 -1.3320962e-02 6.8467867e-02 -9.4554107e-03 -1.2109006e-01 4.3649342e-02 -8.2078761e-03 3.3578497e-02 + -5.7585619e-02 5.3551598e-02 1.6495122e-02 -6.6332375e-02 -3.5283333e-02 -8.2006558e-02 2.1748548e-01 1.9188054e-01 -4.4167552e-02 -2.5452234e-01 -6.0054607e-02 1.3670104e-01 -1.1138447e-01 2.5611437e-02 1.6056359e-01 -4.9313208e-02 1.8811148e-01 1.8563925e-01 3.4705858e-02 -4.6133604e-02 2.2882227e-04 -5.8028094e-02 -1.0028386e-01 -3.4486101e-02 -3.1151105e-03 2.1143730e-01 4.7390936e-02 -9.8491137e-02 -8.8137671e-03 1.6163005e-02 7.7552964e-02 1.4846580e-01 -1.7264284e-01 2.4800720e-02 + -6.0224391e-02 -1.8754932e-02 -2.4789399e-01 -8.1343125e-02 2.3478323e-01 1.8805739e-01 -9.4006542e-02 1.2966141e-02 -7.7722871e-02 -1.1296654e-01 -5.6793801e-02 1.8800454e-01 5.7058846e-02 -1.2026560e-01 -7.1609148e-02 -4.9331585e-02 9.8449508e-02 2.7756649e-01 -1.2353234e-01 -3.6564525e-01 3.1882839e-01 3.0615705e-01 -7.0809551e-02 -5.6450352e-02 -5.7403160e-02 9.3108869e-02 -1.9387851e-01 8.7073541e-02 -1.8347632e-01 3.5694923e-02 -1.1862307e-01 4.0675954e-02 -1.7110008e-01 -2.9064358e-02 + -4.8841659e-02 -1.5510649e-01 -7.5003612e-03 -2.9843373e-02 9.9520429e-02 2.7102605e-02 -1.1665546e-01 -2.2408810e-01 -7.7414534e-02 1.4176488e-01 3.6510783e-02 -4.1283835e-02 -7.3541011e-03 -1.5369474e-02 1.0052923e-02 -3.8211505e-02 -9.2115667e-02 -8.3891558e-02 2.3418690e-02 -9.5624635e-02 1.8397049e-01 9.7779598e-02 1.0500411e-01 -1.0687338e-01 -8.8794979e-03 -7.4003354e-02 -1.0368425e-01 9.2514552e-02 -3.0371883e-02 2.3190010e-02 5.0199670e-02 -4.4392522e-02 -8.5241767e-02 5.0418059e-02 + -1.3852383e-01 -9.6834196e-02 4.3188131e-02 -5.3306368e-02 1.7496074e-02 -4.2814977e-02 -7.7372879e-02 -2.4097590e-01 -5.9911029e-02 1.1453977e-01 4.8143889e-02 -3.9480479e-02 -3.5597390e-02 -4.0327968e-03 1.1042160e-01 -5.0823999e-02 -5.8376106e-02 -1.0235245e-01 5.8410534e-02 -1.0021796e-01 1.0116605e-01 -1.3621566e-03 3.4930372e-02 -9.0555288e-02 3.1132731e-02 2.0756455e-02 -1.0281087e-01 -1.3727764e-01 2.2958802e-03 1.1471682e-01 2.3271229e-01 -6.6614012e-02 -8.0429692e-02 3.2916990e-02 + 1.5884813e-01 -2.1176698e-02 8.7279747e-03 8.8703943e-02 -2.3392833e-02 5.5290238e-02 -5.6095466e-03 -9.1084295e-02 -1.1454408e-01 -2.0301975e-03 -1.4451550e-01 1.0737381e-01 -1.9071348e-01 2.8220340e-01 -5.4196796e-02 1.8052536e-03 1.0427990e-01 -3.7058114e-02 1.6454095e-01 5.4272297e-02 -4.0820033e-03 7.0400799e-02 8.8442196e-02 9.2737651e-02 -6.7938241e-03 6.6430343e-02 2.7133316e-02 1.5695089e-01 7.8673232e-02 -8.5952312e-02 1.2868028e-01 1.9342113e-01 -8.8574919e-02 9.5382903e-02 + -5.7269620e-02 -1.0762397e-01 4.1796674e-02 2.8129911e-02 -1.4052058e-02 -6.6023852e-03 2.0549442e-03 -9.9374546e-02 4.8490112e-02 8.8523072e-02 -5.9625346e-02 1.5927891e-02 6.3637964e-02 -4.6408119e-02 -3.4837501e-02 -1.1851491e-01 1.4200645e-01 -2.9424382e-02 1.8468370e-02 1.0530122e-01 -5.6324642e-02 -8.7148172e-02 5.8406147e-04 1.2196746e-01 -9.4930822e-02 -1.0253028e-01 6.2946378e-02 -3.0377249e-02 5.8301102e-02 -8.1537426e-03 -1.4973226e-02 -2.5702875e-02 -1.4546796e-01 8.1449852e-02 + 3.3743590e-02 1.7584137e-01 -2.1691578e-02 -3.1975629e-02 -1.0811244e-01 -6.1506914e-03 7.3519979e-02 2.6436243e-01 6.3859893e-02 -1.8712722e-01 1.1809193e-02 8.0547676e-02 -8.7327332e-02 2.0370498e-01 4.2999344e-02 1.1094546e-01 1.6738404e-01 4.2409897e-02 3.8731162e-02 7.8424056e-02 -8.3581503e-02 -3.5286840e-02 -3.5620699e-02 1.1655130e-01 -1.6713393e-02 1.1432537e-01 1.1854668e-01 -6.3771290e-02 -1.4446056e-02 -8.2075215e-02 -7.6394950e-03 7.1501568e-02 6.7495263e-02 -2.9994029e-02 + -2.6638559e-01 -2.9081721e-01 9.0283372e-02 -1.7859786e-01 -2.1715750e-01 -1.7372278e-03 -1.2602702e-01 -2.1332019e-01 -3.5349821e-02 3.8229802e-01 6.5618453e-02 -2.3380206e-01 9.6746187e-02 -8.8534917e-01 1.0756006e-01 -8.7575381e-03 2.3946424e-01 -6.9435367e-01 -1.0144907e-01 -3.5335629e-01 9.3678318e-02 8.2426708e-02 -2.1423189e-01 2.8692203e-01 -1.6391062e-01 1.2532717e-01 -4.5951277e-01 -3.4154207e-02 7.8170627e-02 1.0231910e-01 3.3494085e-01 -1.5287196e-01 -5.5647437e-02 1.1646761e-01 + 5.2316558e-02 4.8687379e-02 2.4830582e-03 1.0755241e-02 3.8123407e-02 -1.6136409e-02 2.5343880e-02 1.5362398e-01 9.4543487e-02 -3.2353795e-02 3.2950427e-02 6.5400421e-02 7.2280238e-02 2.3667175e-02 2.2789079e-02 5.9854621e-02 7.1826878e-02 2.9426380e-02 7.0645232e-02 4.8694923e-03 -7.7042109e-03 -4.2999819e-02 -1.6863925e-02 -4.3514278e-02 1.4151194e-02 2.4535960e-02 3.0639811e-02 1.7812361e-02 -7.2014543e-02 -5.7084167e-02 -4.2281014e-02 2.9391887e-02 7.4955863e-02 -5.5478328e-02 + 9.7691341e-02 -7.9195518e-02 -1.1012737e-01 5.3142814e-02 8.9979271e-02 7.1342267e-02 -1.4178921e-01 2.3573835e-01 -5.3914259e-02 -3.0729693e-02 -5.9803368e-02 1.2828861e-01 -4.5192165e-02 -7.2990940e-03 -2.8785827e-03 8.0344406e-02 7.6571882e-02 7.2890455e-02 -1.7468337e-01 -2.8155921e-02 1.9592556e-02 -4.7748190e-02 -1.4781869e-01 -3.0273731e-02 4.8151183e-02 -2.5751063e-02 -3.9668770e-02 1.8516597e-01 -2.1617365e-01 2.8306866e-02 -3.2667349e-01 -5.0314105e-02 1.8813421e-01 -1.4510794e-01 + 8.1426507e-02 -1.9059086e-01 5.2196274e-02 2.9158858e-01 2.0333114e-01 -1.4903414e-01 -8.5897996e-02 -4.3045224e-02 9.9131431e-02 -1.4907844e-01 1.9655220e-01 1.0633569e-01 8.7852385e-02 1.3484306e-01 1.1487739e-01 2.0537047e-03 -2.8139705e-01 3.4166282e-01 5.2764805e-02 3.5362637e-01 -5.2641289e-02 -9.1342003e-02 7.9305891e-02 7.4530386e-02 1.4890560e-01 -4.5245442e-01 5.1826779e-01 -1.7626088e-01 -2.3615789e-01 -2.8634497e-01 -6.3469738e-01 9.5538728e-02 2.1518866e-01 -1.5965175e-01 + -8.1561735e-03 -1.6152256e-01 1.8885247e-02 5.5012153e-03 4.0845941e-02 2.5341723e-02 -1.3586756e-01 -8.0542705e-02 -5.1553160e-02 4.5573623e-02 5.7585783e-02 -5.2109811e-03 -3.1626037e-02 1.6254390e-02 -7.5710453e-03 4.8278295e-02 -8.9626415e-02 -1.2915095e-02 2.4320897e-02 6.2779998e-03 1.5116447e-01 1.9707882e-02 2.3955603e-02 -6.9504691e-02 2.5305568e-02 -5.2989904e-02 -1.5793003e-02 7.0064093e-03 -1.0250811e-01 -9.5076640e-02 -4.1911945e-02 4.9302607e-03 5.1580875e-02 2.7730092e-02 + 1.6499342e-01 -1.1458627e-01 -2.8769372e-02 1.3836677e-01 1.2965331e-01 1.0175113e-02 3.4802595e-02 -3.2951284e-01 -2.0495484e-01 6.5938402e-02 6.4892244e-02 -5.0494381e-02 -1.1160382e-01 -3.9564431e-02 -9.9947329e-02 -3.2782801e-03 -1.1613415e-01 -1.3822992e-02 -9.0284677e-02 9.3612134e-02 -4.6388832e-02 1.8071838e-01 1.7234905e-02 -1.3710572e-01 1.4023621e-01 -7.6002271e-02 1.7997089e-01 1.2651922e-01 -1.0476815e-01 1.3438563e-01 -1.1275755e-01 -5.1421207e-02 1.7099388e-01 -6.3421541e-02 + 1.0904348e-02 1.6139169e-02 -7.1349345e-02 -1.1724720e-02 -6.8078818e-02 5.9497062e-02 4.7540516e-02 1.7489033e-01 -2.5198379e-03 -7.3350747e-02 -1.2749389e-01 -3.7567183e-02 -5.9679683e-02 5.7236595e-02 3.4002136e-02 2.0531622e-02 4.6055597e-02 1.2654387e-01 -1.5612671e-02 -1.5307134e-01 -4.8449195e-03 -3.5171637e-02 -4.8140741e-02 6.1720600e-02 3.1756583e-04 1.0332558e-01 -2.2817207e-01 -8.8683527e-03 1.8162284e-02 3.7598844e-02 1.2954348e-01 -1.4415688e-02 -7.8854924e-02 -8.6243018e-02 + 2.7237530e-02 -6.0470763e-03 2.2020001e-03 2.5647110e-02 1.1448246e-02 -1.0101638e-02 -7.1885519e-03 4.0665248e-02 2.9602070e-02 -1.9111996e-02 5.6380168e-02 2.2368039e-02 1.6612980e-02 -2.4779988e-02 3.8757311e-02 2.4312516e-02 9.0224124e-05 -2.7872334e-02 -9.9068011e-04 5.0284088e-02 -1.4146786e-02 1.1253456e-03 3.0548908e-03 -3.7558421e-03 3.7285310e-02 -2.4461979e-02 4.2222248e-02 -2.7946361e-04 -3.8594359e-02 -2.2487605e-02 -5.9646780e-02 -7.4692692e-03 8.8744385e-02 -2.9027893e-02 + -2.1850868e-01 5.3332076e-02 -1.0801209e-01 1.6059129e-01 2.3814979e-01 6.5769769e-02 -3.5662096e-01 -2.1570063e-01 8.1263542e-01 2.2540228e-01 -1.1402969e-01 -2.2890339e-01 5.7070300e-01 1.7818605e-01 -8.8671164e-01 2.2356426e-02 -4.2367502e-01 -1.3091025e-01 8.2713789e-02 -6.9611898e-02 2.1259454e-02 -5.3822535e-02 3.1812007e-01 4.6864748e-02 -8.3389549e-02 -3.5390813e-01 1.3581094e-01 -1.9832868e-01 -2.3113652e-01 -2.5396325e-01 -8.9804233e-02 -2.1349920e-01 -4.9774379e-02 -4.2724801e-01 + -5.7726370e-03 1.2517905e-02 1.5069373e-02 -1.4530902e-02 -6.4882558e-03 -1.0212654e-02 1.4099415e-02 -1.1671596e-02 -5.8810465e-03 2.4422882e-02 3.3572785e-02 -6.1466789e-03 7.6370756e-03 6.7495694e-04 -5.6598254e-03 -1.4915765e-02 -1.5658263e-02 -2.9414252e-02 2.1938800e-02 -9.3280213e-03 -1.8834083e-02 -1.7257391e-02 1.3683993e-02 -1.8024172e-02 -1.9668489e-03 3.3287191e-03 -8.1680883e-03 -8.5161288e-03 1.0457612e-03 2.1014530e-02 2.2357909e-02 -9.2688829e-03 -3.8918225e-03 4.5844681e-03 + 2.8141960e-02 -4.4359922e-02 -4.6547553e-02 -9.6636708e-02 -9.3277452e-02 9.4210041e-02 1.1719869e-01 -6.3672595e-02 -1.6711976e-01 -5.2828939e-02 -3.4558335e-02 5.5899774e-02 -2.4727555e-01 3.5465790e-02 -2.2931169e-01 -4.8581280e-02 6.7414141e-02 1.1327467e-01 4.6848328e-02 3.4885465e-02 -8.7806905e-02 -7.5537486e-02 -8.5215305e-02 -4.0937940e-02 1.4521860e-01 1.9875097e-02 -4.9088925e-02 1.5145327e-01 8.5392999e-02 6.5894041e-02 7.4215489e-02 5.4291285e-02 -1.8396805e-01 -1.5120374e-02 + -5.4362951e-02 1.6388958e-01 5.0252938e-02 -1.2102055e-01 -9.6973346e-02 -4.5050197e-02 6.1565075e-02 7.0612585e-02 -3.6093653e-02 4.0824282e-02 4.9594799e-02 -1.6701905e-02 1.8281490e-02 2.5219339e-02 -4.3314623e-02 -3.8843935e-02 -5.3898648e-03 -6.8027019e-02 7.5979553e-03 -7.3436107e-02 -3.8371808e-02 -5.3488915e-02 -2.6411076e-03 -5.4657738e-03 -4.5690400e-02 4.8733804e-02 -1.0820053e-01 -3.7884966e-02 3.3667131e-02 8.6508953e-02 1.1175075e-01 -6.2531328e-02 -7.3074552e-02 4.9970414e-02 + -3.8418039e-02 -2.9104356e-01 5.6709601e-02 8.0005183e-02 9.6317886e-02 -1.0435073e-02 -9.2909394e-02 -6.7842972e-02 1.3354986e-01 5.7096004e-02 -1.3093745e-01 1.8526668e-02 7.0464124e-02 2.4528580e-02 -1.2445141e-01 -3.8859529e-03 1.1693135e-01 -1.3454475e-01 -5.9257351e-04 6.8297892e-02 5.9276892e-02 -3.4240801e-02 5.1860004e-02 8.7072812e-02 -1.6573801e-01 3.3395986e-02 7.3726083e-02 8.3807233e-04 1.1556638e-01 -6.8927500e-02 1.0872644e-02 1.1255837e-02 -1.0984674e-01 1.2396717e-01 + 1.6371201e-03 -4.0893758e-02 -1.8453865e-01 -2.2721745e-01 -1.7197147e-01 1.7547215e-01 2.7154891e-01 3.7616931e-02 -4.3928858e-01 -2.1445504e-01 1.1301018e-01 -4.7932269e-02 -5.2006977e-01 -2.0076540e-03 5.2288347e-01 1.0876714e-01 2.2096447e-02 3.5494580e-02 1.1797649e-01 -9.2869235e-02 3.6694696e-02 -2.3982961e-02 -1.0141551e-01 -8.5968283e-02 2.7307433e-01 3.5856353e-01 -2.5350186e-01 7.1649210e-02 8.7334146e-02 1.9818039e-01 1.5093349e-01 2.9357830e-02 1.8176626e-01 -2.2001537e-02 + 2.4808700e-02 -1.0778657e-01 -7.5184046e-02 5.6941864e-02 -1.1253266e-02 9.4627403e-02 -4.4795235e-02 2.5854547e-02 6.7571079e-02 -1.1331915e-02 -1.6224922e-01 -5.5218645e-02 -1.4208394e-02 3.6069993e-02 -8.3136270e-02 8.1721729e-02 4.3488314e-02 1.9612559e-03 -4.4225939e-02 -4.8836993e-02 -3.9832449e-02 -1.2468102e-02 -3.5728954e-02 1.2634365e-01 -3.8132324e-02 4.8028646e-02 -1.2021636e-01 6.9771935e-02 6.8224410e-02 2.5731855e-03 5.4140831e-02 -2.0646373e-02 -3.5242714e-02 -6.6992602e-02 + -1.5682232e-01 2.2461385e-01 2.6902792e-02 -3.3154417e-01 -1.5785103e-01 -2.8453988e-02 5.1784022e-02 -5.7814753e-02 -2.9321404e-01 2.1168277e-01 9.0807622e-02 -5.8952525e-02 1.4584352e-02 -1.0095182e-01 -5.4580898e-02 -1.9932053e-01 -7.1441453e-02 -1.1982487e-01 2.4149419e-03 -2.5310803e-01 6.9253185e-02 -1.0113109e-01 -1.2107170e-01 -1.1060163e-01 -5.5261169e-02 1.1824584e-01 -4.1638698e-01 1.0757666e-01 8.7099524e-02 1.9936265e-01 2.4365105e-01 -1.6904981e-01 -2.1467801e-01 2.3540691e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_F_3.txt new file mode 100644 index 00000000..25c9ee5d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_F_3.txt @@ -0,0 +1,19 @@ + 8.3192584e-02 -1.7921003e-01 -1.2029384e-02 4.8242120e-02 3.7208927e-02 -9.6277992e-02 1.4310014e-01 2.4318111e-02 -3.6394761e-03 7.3537452e-02 8.5692786e-03 5.3166191e-02 1.1238702e-01 6.2925568e-02 4.6758268e-02 -1.2624128e-01 7.0348161e-02 7.8538477e-02 3.4659875e-03 -4.1915858e-02 -1.0472800e-01 -4.2544329e-02 -1.1255842e-01 2.2103314e-02 4.2452662e-02 2.6078997e-02 -5.7332199e-02 -5.7009323e-02 8.8645258e-02 5.8403539e-02 6.7772847e-02 -5.1835454e-02 -7.1767206e-02 3.2734821e-02 9.7942815e-02 + -3.0940665e-02 2.2031768e-02 -6.9694772e-02 -2.8841557e-02 -2.7219479e-02 -3.9581148e-02 2.8680251e-02 -5.2302779e-02 -1.2311138e-01 -6.8211599e-02 -1.4480204e-03 -1.9293264e-02 3.4479661e-02 -4.7783933e-03 1.0656467e-01 -1.6255499e-01 1.0447484e-01 8.8535544e-02 -1.6026026e-02 -6.3418672e-02 -1.3555213e-01 -3.2734679e-03 -1.3515252e-01 -5.9646511e-04 6.9471687e-02 1.5552859e-01 -1.3795463e-01 -7.3506158e-02 -1.0359256e-01 2.6275273e-02 3.6063620e-02 -8.8777425e-02 5.8851421e-03 1.3254906e-01 3.4065859e-02 + 1.4354969e-01 -2.6719406e-01 -8.1020617e-03 3.0630489e-01 -1.4003994e-02 5.3436220e-02 3.1748179e-01 -5.4415203e-02 -3.4337917e-02 4.1341997e-01 2.4240483e-01 1.6220173e-02 6.5042118e-01 5.5054651e-01 2.5597367e-02 -1.7082542e-01 -1.2330728e-01 3.1861977e-01 2.5377539e-01 4.0197414e-02 -1.3264168e-02 1.8654587e-01 3.2203115e-02 1.0731477e-01 -4.3985039e-03 -1.7693463e-01 -5.1820242e-02 -2.6132032e-01 4.1071469e-01 -5.7715709e-02 4.8514162e-02 -6.8875934e-02 -1.0704124e-01 -1.3021281e-01 -8.9120550e-02 + -1.7754717e-02 5.0930529e-02 5.3350277e-02 -1.0663129e-01 4.3044235e-02 -6.1308661e-03 -9.9339238e-02 2.1579088e-02 -1.4646148e-03 6.2523773e-03 3.2661000e-02 -1.0091557e-02 3.8758224e-02 -3.2460418e-02 -1.1085890e-01 8.7502744e-02 -2.9153560e-02 5.6224306e-02 -5.1389481e-02 7.9417298e-02 4.4344588e-02 4.6133608e-02 2.2024475e-02 -6.5848612e-02 -6.8352952e-02 -1.1024502e-01 -3.7718629e-03 8.7462700e-03 -3.5143756e-02 -1.1074661e-02 -2.5103587e-02 4.2551416e-02 -1.7730539e-02 4.4817313e-02 -3.8136564e-02 + -2.4256438e-01 1.7995950e-01 1.2839212e-01 -1.2190763e-01 -1.9813139e-03 -2.6472371e-01 -2.6041341e-01 3.7035639e-02 4.2657702e-02 -1.6895347e-01 -2.7137570e-01 3.1460155e-01 -2.1336006e-01 -3.9854599e-01 -3.0163249e-02 -1.2357156e-01 4.1891990e-01 -3.7200286e-01 1.7019088e-01 5.6185463e-03 -5.0777864e-01 -2.3520016e-01 -1.4854758e-01 -1.6043008e-01 -2.1164944e-01 2.7804313e-02 1.3998938e-01 1.5493776e-01 -1.2681275e-01 1.8687733e-01 3.7448971e-02 1.4179972e-01 1.6343403e-01 3.2755388e-02 2.3276511e-01 + -4.9796882e-02 -2.4803472e-01 -3.6713918e-02 8.0139793e-02 1.8884747e-01 -2.6105222e-01 1.5297167e-01 5.5536059e-02 6.7868390e-02 -1.4839588e-01 -1.1643738e-01 7.8272946e-02 -1.4831459e-01 2.5967508e-02 -1.4345364e-01 3.5700442e-02 -8.8249889e-02 -2.0841176e-01 6.9751900e-02 8.0815303e-03 -1.3844702e-02 2.6072953e-02 -5.6169124e-02 9.2681156e-02 -1.0248178e-01 -8.5010309e-02 -7.1809578e-02 -3.6776914e-02 -8.5824750e-02 2.7945803e-01 9.2544766e-02 9.8308242e-03 -1.6048727e-01 1.2875174e-01 2.2742228e-01 + 7.9266633e-02 8.8888772e-02 -1.5774979e-02 -6.9338168e-02 -1.0798137e-01 1.3006038e-01 -4.3775676e-02 -5.8751932e-02 -5.9823367e-02 1.0639113e-01 9.8016111e-02 -8.3285006e-02 1.7805606e-01 -4.6921669e-02 9.8946175e-02 -8.6546382e-02 1.9021554e-02 1.4651188e-01 7.1400322e-02 -1.7198891e-02 3.2589966e-02 2.5345497e-02 5.3588832e-03 1.7470433e-02 9.3850593e-02 1.1551232e-01 -4.5027643e-02 -2.2657290e-02 1.3532325e-02 -1.0822503e-01 -5.0549709e-02 -6.2418775e-02 1.5414221e-01 -6.7958928e-03 -1.6095091e-01 + -1.5053675e-02 2.0250116e-03 4.3739590e-02 3.6327773e-02 -2.4538132e-02 -1.0357926e-02 3.4306933e-02 3.8834515e-02 9.1987647e-02 -4.4085674e-02 -6.3418519e-02 4.7715551e-02 -5.2233061e-02 1.3938437e-01 5.8114314e-02 9.8961463e-03 5.2627519e-02 -3.1066873e-02 4.3879667e-02 -2.0744994e-02 1.8405862e-02 -1.6857729e-02 2.9619018e-02 6.4431545e-02 -1.5942813e-02 3.3319349e-02 1.0030241e-02 -2.8481373e-02 -3.0965909e-02 1.7669308e-02 3.1747417e-02 -1.0257888e-02 3.4188497e-03 3.0861355e-03 7.4390426e-02 + 5.3307862e-02 3.1588822e-02 4.5993539e-02 -8.4524388e-02 -2.8442971e-02 4.9896314e-02 -6.2099648e-02 4.5942534e-03 -2.9360779e-02 7.9201780e-02 4.8984724e-02 3.4110896e-02 1.1691096e-01 -2.5259571e-02 -5.0227679e-02 -3.5989939e-02 8.5743195e-03 6.3020704e-02 5.5167068e-02 6.4629733e-02 5.8276125e-03 1.0389518e-01 -2.5683909e-02 -5.2796669e-02 -6.1015120e-02 -7.0262786e-02 7.7741167e-02 -4.2640353e-02 -4.4204495e-02 -1.7693719e-02 -9.3172660e-03 4.7762687e-02 2.1457476e-02 3.8141062e-02 -5.6410145e-03 + 1.3202398e-02 -1.0818339e-01 3.4361111e-02 -4.5706896e-02 2.0910729e-01 -2.1167157e-01 4.5071973e-02 3.9032834e-02 1.9740933e-02 -1.1761567e-01 -9.4289033e-03 -1.1455492e-02 -6.1304540e-02 -4.3934730e-02 -2.3297688e-01 7.7864416e-02 -5.7657749e-02 -4.9661637e-02 -6.5752791e-03 1.0535647e-01 9.9491047e-03 1.2764860e-02 4.7853484e-02 -3.7169977e-02 -7.7330591e-02 -1.2808176e-01 -8.8988742e-02 2.5120712e-03 -3.4022033e-02 1.5166875e-01 5.8483130e-02 2.4497528e-02 -1.3464563e-01 6.8071540e-02 1.0613145e-01 + 4.8456539e-02 -1.7035525e-01 -3.5457158e-02 -5.1771780e-03 -2.6228163e-02 7.6055431e-02 1.4021345e-01 1.4695116e-01 8.2477958e-02 -8.4699245e-02 4.6388300e-02 -1.6116063e-01 -2.3549085e-01 1.2645849e-01 9.3293395e-02 1.0211214e-01 -2.2241851e-01 -2.7923488e-02 -1.3001120e-03 -1.5402197e-02 3.2819212e-01 1.8879321e-01 5.1707447e-02 1.5512289e-01 7.3128011e-02 6.9717630e-02 -1.5472785e-01 -9.4169362e-02 -1.9154754e-01 -5.0163155e-02 5.0366718e-02 -1.0055471e-01 -1.4347468e-01 4.7468924e-02 1.6444443e-01 + -1.0271845e-01 8.1917303e-02 -8.7205971e-02 4.6235984e-02 -1.7471184e-02 1.8308563e-02 -7.6886015e-03 -3.5578622e-02 -3.1028445e-02 -1.5629309e-01 -4.7122854e-02 -9.0605716e-02 -3.0839956e-01 -6.8805981e-02 4.0211095e-02 -2.9052972e-04 -3.6489633e-02 -7.2640329e-02 -1.8446584e-02 -6.6840725e-02 1.4552075e-02 -1.0718880e-02 6.6731684e-03 1.0715361e-01 2.7859065e-02 1.3177466e-01 -6.4222493e-02 -2.5613614e-02 -1.4198960e-01 -9.6240763e-03 1.4590340e-02 -7.3626639e-02 2.5758189e-02 3.1054703e-02 -7.4056086e-03 + 9.0315327e-01 -1.2226114e-01 1.9473309e-01 -4.4522439e-01 -3.2272632e-01 6.0543504e-01 -1.7770156e-01 3.6822563e-01 1.3477879e-01 6.3298069e-01 3.7597258e-01 -1.1317683e-01 4.5152613e-03 5.1336001e-01 2.9200973e-01 1.7305204e-01 -6.7505809e-01 2.1327136e-01 1.4000407e-01 4.6477739e-01 9.0322821e-01 5.4625285e-01 1.4884891e-01 -3.5647755e-01 -8.2655708e-02 -1.0645966e-01 5.7498754e-01 -7.2673075e-02 -9.8948589e-02 -3.3580912e-01 -3.0834403e-01 3.3339451e-01 1.9773207e-01 1.5269374e-01 3.3444947e-01 + -1.7294814e-02 2.7010645e-02 -3.5711668e-02 3.5521414e-02 -5.4383899e-02 4.8488456e-02 2.3973663e-04 -3.1720924e-02 -1.1193206e-02 -2.7931905e-02 -1.1603542e-02 -2.7388786e-02 -5.8452088e-02 1.4773316e-02 7.9771610e-02 -2.8340494e-02 -8.8066069e-03 -3.1082668e-02 2.7066483e-02 -3.7226234e-02 1.2144936e-02 -4.7509466e-03 -9.3459258e-03 5.3345026e-02 2.2218526e-02 8.7712413e-02 1.0709847e-03 -2.3312869e-02 -1.3074557e-02 -2.9115940e-02 -1.2540568e-02 -2.7874739e-02 4.4468905e-02 -1.3793035e-02 6.8606481e-04 + -1.6052472e-02 9.0223795e-02 -8.7181277e-02 2.5554993e-02 -1.3525430e-01 1.4964718e-01 1.3943437e-02 -2.0555467e-02 -3.0031480e-02 -1.6644898e-03 -1.5686216e-02 1.8410876e-02 -2.1039803e-02 5.8189257e-02 1.8434694e-01 -1.2822032e-01 4.7364146e-02 5.2066697e-02 2.5804787e-02 -6.1991214e-02 1.8532351e-02 -1.4941251e-02 -4.5638612e-02 2.3198431e-02 4.5101892e-02 1.5777203e-01 6.9639694e-02 -3.0364688e-02 2.8637261e-03 -1.4996131e-01 -6.1253554e-02 -1.1094654e-02 1.2445854e-01 -2.1939994e-02 1.8467045e-03 + -2.6581549e-02 1.3034181e-02 5.0368869e-03 -6.8984072e-02 1.7835094e-01 -1.6103576e-01 2.6619347e-02 1.4061749e-02 -3.5799882e-02 -4.1845243e-02 3.1571163e-02 -3.7803837e-02 4.0097880e-02 -6.7795206e-02 -1.9034916e-01 5.1230610e-02 1.9682956e-02 9.2661321e-02 -1.3381020e-01 1.2068213e-01 -2.5003930e-02 -6.1663361e-02 1.1927471e-02 -1.4396637e-01 -1.8360316e-02 -1.0148085e-01 -1.0058080e-01 8.9346264e-02 6.8869930e-02 2.1834031e-02 -3.0048040e-02 1.7588340e-02 -3.8368041e-02 3.9578949e-02 1.0133385e-02 + -1.4719757e-02 -4.9999730e-02 -4.3249015e-03 6.1280566e-02 6.3486914e-04 -4.4373982e-02 2.9955931e-03 -2.3069782e-02 -1.2613564e-02 6.2573381e-03 -5.0910079e-03 -3.1337122e-03 -5.1361923e-02 -3.1299899e-02 -5.7428159e-03 2.8939575e-02 -2.5810165e-02 -4.2662398e-02 4.2316742e-02 -4.7068598e-03 -1.5415088e-02 -1.9218816e-03 -2.0778507e-02 4.0473302e-02 9.0112914e-04 -2.3138021e-02 1.2762410e-02 -1.3333662e-02 4.3158904e-03 5.3309815e-02 2.1437603e-02 -2.9334573e-02 -2.8311536e-02 -1.7662338e-02 -8.2613246e-03 + 1.4091930e-01 -2.2179855e-01 -1.1823466e-01 -1.7936908e-01 -2.0875262e-02 1.8529882e-01 -2.8535339e-02 3.4118271e-01 7.5198632e-02 2.3972313e-01 4.4018252e-02 -1.4970409e-02 4.5916290e-02 1.6464944e-01 3.7089713e-02 -2.9788534e-02 -2.6553442e-01 -1.3423413e-01 -7.3847278e-02 1.2845097e-01 5.9565533e-01 3.5898206e-01 1.3926878e-02 -1.5496650e-03 -1.8035447e-01 -1.0490313e-01 2.3698019e-01 -1.7391645e-01 2.1520545e-02 -9.6454013e-02 -3.3624479e-02 1.8273258e-01 -3.5024474e-01 1.4747839e-01 4.3321816e-01 + -1.1296178e-01 2.6746624e-02 -3.8612169e-02 1.6816636e-01 7.8017416e-02 -9.7348198e-02 5.5151354e-02 3.8076521e-02 8.7396655e-02 -1.2580994e-01 -1.2120503e-01 1.0976376e-01 -2.6477537e-01 5.9067900e-02 2.3389374e-02 4.0941237e-02 5.8656809e-02 -7.2128548e-02 -1.1467761e-02 -3.5455448e-02 -9.5996892e-02 -1.5576872e-01 1.1386635e-01 -1.7829423e-02 -3.7468949e-02 -6.1171313e-03 5.5436824e-02 1.2678939e-01 8.8126025e-02 1.5787617e-02 1.9030158e-02 2.8439905e-02 1.7766644e-02 -1.1174114e-01 3.1746818e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_F_4.txt new file mode 100644 index 00000000..648334ac --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_F_4.txt @@ -0,0 +1,23 @@ + -3.5512483e-02 -3.5070362e-02 1.0845871e-01 7.1989169e-02 -7.8902645e-02 -8.7465871e-02 -1.6434795e-02 7.0132946e-02 8.5112303e-03 1.0801201e-01 -1.5234207e-01 2.2424598e-02 -7.5421705e-02 -2.9689821e-02 8.1646284e-02 -3.6863878e-02 1.8203562e-01 -6.2214718e-03 -9.0434510e-02 -6.8920933e-03 -4.3757727e-02 8.6473249e-02 8.4483986e-04 -3.1304191e-02 -2.5456500e-02 7.1635990e-02 9.7337613e-03 -1.0613793e-02 9.3637825e-02 -5.9259039e-02 -6.7834515e-02 -9.5285640e-03 9.0245107e-02 1.0676183e-01 4.5963424e-03 -5.2340059e-02 8.4303339e-02 -3.1617000e-02 -7.7888799e-02 + 1.4435464e-02 -6.7562620e-02 -3.4781204e-02 -4.0259074e-02 -4.7453328e-02 5.8617655e-02 -5.8745172e-02 2.5198922e-02 2.8543792e-02 -2.0769572e-02 3.9954049e-02 9.9060836e-03 -2.0291700e-02 9.5584189e-02 -1.7995680e-02 7.9014873e-04 4.8085314e-03 -8.7505076e-03 -2.6484591e-02 9.5641378e-04 2.9561104e-02 8.0119049e-02 1.9549566e-03 5.6197235e-03 -5.5000275e-03 -2.9754109e-02 2.4857269e-02 1.4768930e-02 3.9054884e-02 2.4109797e-02 3.8746028e-02 7.3982525e-03 8.8208751e-02 -3.1954846e-02 7.2374049e-02 8.3255427e-02 7.3912051e-02 1.1601751e-02 2.3749036e-02 + 1.4723372e-02 3.3995422e-03 4.4940758e-02 2.8154924e-02 -2.9185838e-02 1.9737772e-03 -4.1522699e-02 6.2329219e-04 3.3676756e-02 6.4422144e-03 -4.6488050e-02 3.5554144e-02 -2.3189464e-02 2.9899498e-02 4.9105813e-02 -5.0836572e-02 1.4405862e-03 3.7649949e-02 -9.9798212e-03 -1.8552499e-02 7.2352846e-02 1.0237026e-03 2.4486690e-02 4.1895476e-02 2.6126301e-02 5.0807397e-02 1.1846991e-02 3.4444169e-02 4.5190572e-03 -2.8370561e-02 -2.0592050e-02 -5.8014347e-03 2.3935994e-02 1.4277932e-02 -3.4788026e-02 -7.1215559e-03 3.3290907e-02 -5.0743268e-02 -2.5673199e-03 + 1.5729442e-02 5.3828377e-02 2.6675375e-02 3.4084693e-02 9.8786255e-03 -2.8453917e-02 3.7524325e-03 -2.3212881e-02 4.3388896e-02 1.7776975e-02 -4.9089433e-02 8.7811324e-03 -1.2904597e-02 -6.6123569e-02 5.0004342e-02 -2.4916827e-02 -1.4351194e-03 8.9217492e-03 3.3049318e-02 1.6853430e-02 2.0229016e-02 -4.5432507e-02 -1.0963053e-02 3.8771048e-02 3.0951564e-02 3.7731851e-02 -8.7513725e-03 2.0002508e-02 -3.8144563e-02 -3.4354376e-02 -3.2530483e-02 7.1875281e-03 -6.0436553e-02 1.8982831e-02 -7.4213245e-02 -3.1056997e-02 -2.5684384e-02 -4.8217171e-02 -8.2266949e-04 + 5.6548715e-02 -7.3776689e-02 6.8565328e-03 -9.4975277e-02 -8.9008265e-02 1.6300929e-01 -3.1997147e-01 -1.3293496e-02 1.6256819e-01 -1.3935140e-01 2.2991479e-01 8.7168033e-02 -7.2243796e-03 3.5242188e-01 -2.0310289e-02 -1.5165719e-02 -9.4334906e-02 -3.3202979e-02 -1.5108748e-01 -1.0110755e-01 1.0274005e-01 1.7749987e-01 -1.9229273e-02 1.6942718e-02 -3.4291333e-02 9.1422870e-02 9.0731551e-02 6.3692899e-02 4.0938094e-02 3.5935607e-02 1.5979853e-01 -1.6209633e-02 -1.5577391e-03 -1.0668085e-02 8.9775473e-03 1.1317000e-01 7.8139461e-02 4.6585927e-02 7.2844204e-02 + 6.1861782e-02 2.8936193e-02 2.2647161e-01 1.1002890e-01 3.9999431e-02 -4.3504088e-02 4.6896768e-02 -6.2560902e-02 -7.3391296e-02 -1.1426417e-01 -1.0414246e-01 1.8697190e-02 -2.6148746e-02 -1.3918791e-01 -4.7496001e-03 1.9579266e-01 1.2108665e-01 1.1229504e-01 -7.7536761e-02 -1.5571992e-02 1.3454963e-01 -3.3680273e-02 1.0866838e-01 -3.3696550e-03 -4.2323760e-02 1.6564571e-02 -1.6187311e-03 8.4054500e-03 -7.3925552e-02 -9.2194721e-02 4.0258871e-04 -2.0042256e-02 -1.4832617e-01 9.8168745e-02 -2.0267122e-01 6.8301936e-02 -7.6008816e-02 -8.0350862e-02 -7.9245511e-02 + -1.3677938e-02 -6.2107808e-02 1.3452289e-01 9.3535492e-02 -5.6084628e-02 -4.6924201e-02 1.4341052e-01 9.2064584e-02 -6.8804343e-02 -7.5684724e-02 2.4009471e-02 -6.6793303e-02 -9.3091612e-02 3.0330993e-02 3.5148878e-02 1.0385389e-01 2.4007092e-02 1.3697713e-01 -5.7722613e-02 4.0402760e-02 1.1002148e-01 4.3404241e-02 6.5267957e-02 6.0044207e-02 -5.9064947e-03 -6.6567832e-02 6.6089212e-02 -3.6968968e-02 -1.2197058e-01 -2.9624118e-03 -4.4553593e-02 6.5804305e-02 4.2392849e-02 3.5243711e-02 -5.8007903e-02 3.8290097e-02 4.5970650e-02 5.0790350e-02 -1.4081527e-02 + 2.2323581e-03 -2.5656126e-02 -2.7555375e-03 -1.0302006e-02 -1.7923818e-02 1.9516988e-02 -3.2066643e-02 7.3115775e-03 2.8988829e-03 -6.0064769e-04 1.0223818e-02 1.6082829e-02 -2.0596427e-03 5.0557791e-02 -5.6151100e-03 -1.1287883e-02 -8.4562059e-03 7.1100460e-03 -2.2108402e-02 -1.2053982e-02 1.1721773e-02 2.4152752e-02 3.6707341e-03 1.5214360e-03 -1.1354478e-03 4.2085058e-03 1.0619943e-02 3.0060748e-03 3.0145852e-02 1.3992262e-02 9.2243844e-03 -1.0906788e-02 3.5203853e-02 -1.0273923e-02 2.9836265e-02 1.5738957e-02 2.4104817e-02 -3.1658265e-03 6.2663083e-03 + 4.6696766e-03 -3.8311807e-02 -1.0690778e-02 -2.2191200e-02 -2.8565851e-02 3.6078731e-02 -6.6607532e-02 2.8056987e-03 1.1930662e-02 -2.2488591e-04 1.5886192e-02 3.2482550e-02 2.6748862e-03 7.7636876e-02 -1.1609853e-02 -2.9741114e-02 -1.7298677e-02 5.7338396e-03 -3.1635165e-02 -2.2633476e-02 1.7089924e-02 3.5155772e-02 9.6978354e-05 4.2912901e-04 -4.5580728e-03 1.6761258e-02 9.2208956e-03 5.5144763e-03 5.3982284e-02 2.3193751e-02 1.5465092e-02 -2.2865056e-02 5.1975429e-02 -1.7249712e-02 4.8691070e-02 2.7951487e-02 3.7075307e-02 -9.8713693e-03 1.3209560e-02 + 4.9244333e-02 -6.6370239e-03 6.7710381e-02 4.1612799e-02 -8.9554191e-02 5.3197579e-02 -4.5090705e-02 -1.6603512e-02 9.5742767e-02 -2.8918699e-02 -1.2397029e-01 5.1289203e-02 -8.6788195e-02 -4.6898710e-02 8.2888306e-02 -4.0274269e-02 7.4748421e-02 4.8454243e-02 -8.8587105e-02 2.6439308e-02 1.6537353e-01 1.3303071e-01 1.7775492e-02 1.1316212e-01 1.8416395e-02 1.4673969e-02 5.8172463e-02 4.8430173e-02 -4.9327314e-02 -8.6311282e-02 -7.8627613e-02 -1.6344521e-02 6.9059276e-02 6.1329618e-02 -6.6803231e-02 -5.8013813e-02 9.5573922e-02 -1.0605838e-01 6.0197998e-02 + 3.2647383e-02 -4.4261126e-02 4.5476966e-02 -1.0899329e-01 -2.5111593e-02 1.2654023e-01 -2.4872837e-01 -3.3681173e-02 9.8037849e-02 -5.2884443e-02 1.1125593e-01 1.3040347e-01 5.9674154e-02 2.2462302e-01 -6.1240431e-02 -1.3450905e-02 -1.1707953e-01 -4.1823774e-04 -8.3146165e-02 -1.2174463e-01 5.7491214e-02 5.6399623e-02 2.2386384e-03 1.5943975e-02 -2.0023242e-02 1.4615731e-01 2.8166248e-02 7.6094864e-03 1.1642266e-01 6.7241525e-02 7.4849927e-02 -6.9369602e-02 1.6481036e-02 -6.4639234e-02 5.2119796e-02 7.3219174e-02 4.5600520e-02 -3.1936280e-02 5.4813491e-02 + 1.3464066e-01 2.5315599e-02 2.7191551e-01 -6.8656691e-02 4.5019429e-02 1.1671918e-01 2.3807851e-02 -8.9716469e-03 3.7436328e-01 -1.7678063e-01 1.9815175e-01 -2.7452520e-02 2.0584209e-02 -1.8036476e-01 -9.7628357e-02 5.9506198e-03 -3.5217600e-01 1.0542668e-01 3.7482445e-01 -3.2768518e-02 5.0703183e-01 -1.0704572e-01 6.3608071e-02 2.0315427e-01 -7.6121372e-02 1.2334108e-01 -2.4603513e-02 8.1928083e-02 -6.1132217e-01 -5.6941792e-02 2.0405163e-02 3.0488901e-03 -2.9738165e-01 -6.2795252e-02 -5.2466346e-02 1.7390829e-01 3.4047405e-02 2.6970936e-02 1.1427861e-01 + -1.4755100e-02 2.0599587e-02 6.6700508e-02 -1.0260714e-02 -4.2920083e-02 4.9225241e-02 -9.6254331e-02 -3.4325705e-02 1.1671493e-01 -8.7106902e-03 1.5178613e-02 1.1400086e-01 3.7606819e-02 3.0955019e-02 -3.0908653e-02 -2.9004418e-02 -7.9205229e-02 7.0177192e-02 -3.4115659e-02 -9.6429307e-02 9.1576936e-02 -1.1041678e-02 3.0489532e-02 7.6337995e-02 3.3626492e-03 1.6630404e-01 -5.8360838e-03 -2.9020302e-02 6.0586646e-02 2.1470691e-02 -6.1709833e-02 -6.0854772e-02 1.4026690e-03 -4.8927710e-02 5.4734558e-02 -4.1003355e-03 8.1528894e-02 -1.1874647e-01 7.5096414e-02 + -4.4919258e-03 1.2196533e-02 -6.0012314e-02 3.3431913e-02 9.0066294e-03 -4.3512943e-02 -1.0979739e-02 -3.6097807e-02 -9.8437113e-02 2.0208116e-02 6.2085726e-02 -1.6927129e-02 5.7874077e-02 -2.8981252e-02 -3.1999227e-02 -3.8810329e-02 2.1232216e-03 2.6941286e-02 3.7876063e-02 2.5956623e-02 -1.1380583e-01 -5.1869538e-02 -1.3181823e-02 -7.0952026e-02 -3.5846281e-02 -1.9870036e-02 -3.9700219e-02 -2.1782280e-02 8.0528451e-03 2.8670020e-03 3.1544745e-02 -4.4307128e-02 -9.9754252e-02 1.7731162e-02 3.9544169e-02 1.9490476e-02 -9.2765189e-02 2.0509031e-02 -4.4994955e-02 + -5.3316886e-01 6.3948286e-02 9.2294042e-02 1.3296683e-02 -9.7765968e-02 -2.2348329e-01 -2.3446721e-01 5.5726112e-02 1.6612698e-01 -2.2691878e-01 -3.7525934e-01 3.7041418e-01 -1.5416801e-01 4.6100947e-01 4.4462724e-01 -1.3868053e+00 -3.8600387e-01 -3.8143921e-01 -5.1661367e-01 -2.5377252e-01 2.0934613e-01 1.7030089e-01 -2.7096543e-01 2.1432752e-01 5.0818292e-01 1.4269085e-01 3.1077106e-01 7.8173326e-02 -3.8066210e-01 2.8198597e-01 -4.9129028e-01 1.6149034e-01 5.2973697e-02 -1.7275890e-01 -4.1526499e-01 -7.7817218e-01 -2.7693391e-01 -6.2504076e-01 1.2348517e-01 + -1.4032482e-01 -3.0141699e-01 5.3672281e-01 4.2207716e-01 -3.4371782e-01 -1.0698829e-01 -1.1478951e-01 7.6163238e-02 3.6432800e-02 -3.9741418e-02 2.5701865e-01 3.1523753e-01 -2.1462393e-01 5.7336005e-01 5.0182134e-01 -2.9432364e-01 -3.2478901e-01 3.1379094e-01 -1.7355459e-01 5.0189080e-02 5.2561662e-01 1.3662225e-02 -1.7189261e-01 2.9870038e-01 3.1930691e-01 2.8393146e-01 3.6854628e-01 3.2473816e-01 3.7361480e-03 1.2723288e-01 -5.6222274e-01 3.4802291e-02 1.6300537e-01 1.1198436e-01 -7.0607688e-02 3.1210512e-02 5.6808195e-02 -4.6735063e-01 -1.4486096e-01 + -6.9097762e-02 -8.1061683e-02 -6.8131659e-02 -4.8491016e-02 -2.8504908e-02 1.9646155e-03 -7.1074727e-02 3.4314871e-02 5.5584534e-03 9.4558061e-02 9.7699307e-02 2.5567891e-03 -3.3006352e-03 3.3912930e-02 -1.3753467e-01 -1.2353037e-05 4.2018708e-02 -6.9823800e-02 2.5887143e-02 -4.3476401e-02 -1.9095808e-01 -3.6643999e-02 1.2584516e-02 -6.7066706e-02 -2.9813271e-02 -4.1923122e-02 -8.6339539e-02 -1.2583402e-01 2.4292642e-01 -1.9133636e-02 3.1344523e-02 -1.5049752e-02 1.8418860e-02 -1.6487472e-02 1.9281191e-01 8.0074238e-02 -3.5627658e-02 9.5454959e-02 -8.6591397e-02 + 2.6785931e-02 5.0423430e-02 2.3563286e-02 1.8819133e-02 2.2891085e-03 -8.1369909e-03 -3.2524455e-02 -3.2779025e-02 7.6109850e-02 4.1688572e-02 -6.8642074e-02 4.9962052e-02 -2.4714031e-02 -4.6989453e-02 7.4222963e-02 -3.8039391e-02 -4.5399597e-03 2.5533806e-03 2.8807100e-02 1.6806506e-02 3.3544205e-02 -3.4232814e-02 -3.1179311e-02 5.2159305e-02 4.8702406e-02 5.6999601e-02 -6.8050872e-04 4.2448806e-02 -1.8978259e-02 -2.3494328e-02 -3.9992477e-02 2.2245415e-03 -4.4444526e-02 4.0829094e-03 -7.0372664e-02 -3.0114428e-02 2.4686108e-03 -9.0307321e-02 1.5016920e-02 + 6.3159182e-02 -2.0727744e-02 1.7929213e-02 1.4014511e-01 -6.4123540e-02 -5.2969560e-02 -4.4320398e-02 8.1733400e-03 -7.3541635e-02 1.6714967e-01 -9.5932543e-02 -2.2671715e-02 -3.3135609e-02 -2.6882965e-02 2.1785304e-02 1.0367128e-02 9.3684741e-02 1.7358489e-01 1.3727094e-01 2.3300859e-02 3.6188683e-02 -4.9942127e-03 7.2637594e-02 -1.2410548e-02 -2.6703462e-02 5.3558299e-02 -8.0489302e-02 1.6154266e-02 5.0397956e-02 -7.5150690e-02 1.5034978e-02 -5.7425404e-02 8.1228579e-02 6.3111475e-02 1.0899477e-01 1.2138240e-01 1.2171520e-01 3.8295394e-02 -7.1860130e-02 + 2.3262614e-02 8.2400970e-02 -5.0722823e-02 -4.6525032e-03 -1.5597542e-02 3.9605872e-02 -2.7796546e-02 8.7921840e-03 1.5444213e-01 4.1251506e-02 -7.7479966e-02 7.6845350e-02 -3.0046136e-02 9.5139191e-03 1.6544418e-01 -2.0647194e-01 -1.5779866e-01 3.7502618e-02 1.9639994e-01 6.1437612e-02 1.4722293e-01 -1.1722502e-01 -1.5611405e-02 1.8529456e-01 1.6846390e-01 1.2011701e-01 -1.6421373e-02 1.4047028e-01 -5.9218033e-02 6.4196524e-03 -4.5016898e-02 2.8962571e-02 2.5929846e-02 -6.2782056e-02 -8.5300086e-02 -3.5797336e-02 1.0806564e-01 -1.4800364e-01 1.1261491e-01 + -1.5477492e-04 -7.1405122e-02 2.3455858e-01 2.7220103e-01 -4.5631386e-02 -3.2661796e-01 1.6270185e-01 2.0522532e-01 9.8615901e-02 1.6982061e-01 -5.8425756e-01 -1.5450931e-01 -2.4296272e-01 -3.5998043e-01 2.2905949e-01 1.1282702e-01 2.2026487e-01 3.0881922e-02 1.7620354e-01 2.0274651e-01 -7.2577660e-02 -2.5313797e-01 -7.0244427e-02 5.3775459e-02 4.5106169e-02 -1.4866080e-01 -7.2072084e-02 8.5325349e-02 1.7524213e-01 -1.8331063e-01 -1.8932119e-01 9.6080919e-02 -9.8142733e-02 2.2867838e-01 -3.7933615e-01 2.5941281e-02 -3.5408790e-02 1.7029569e-01 -2.9128204e-01 + 6.7388651e-03 -5.0669541e-02 1.2691909e-02 7.3001010e-02 1.9497553e-03 -4.7455411e-02 1.4462206e-01 2.9365840e-02 -1.3507910e-01 -2.2741029e-03 -2.2423822e-02 -6.9178507e-02 6.1512966e-03 1.7385887e-02 -6.2774124e-02 2.0243300e-01 8.3407521e-02 1.1188524e-01 -7.2851604e-02 5.1549551e-02 -2.5604330e-02 3.1137708e-02 8.3952972e-02 -5.5651589e-02 -2.3731789e-02 -1.6845539e-01 2.7536384e-02 -3.7811863e-02 2.3246585e-03 3.2564872e-02 2.0778565e-02 3.2615572e-02 1.1271411e-01 -1.9367508e-02 5.0155887e-02 1.0321104e-01 4.2385488e-02 3.9443797e-02 -6.3502285e-02 + 2.7087972e-03 -2.7685245e-02 -7.5586220e-03 -1.6600043e-02 -1.8808187e-02 2.6210137e-02 -4.6871640e-02 2.3064449e-03 8.6436461e-03 2.5117160e-03 1.0815391e-02 2.4708299e-02 1.5889926e-03 5.7213351e-02 -8.6369233e-03 -1.9312923e-02 -1.3729765e-02 2.9813101e-03 -2.5443599e-02 -1.7193225e-02 1.0750630e-02 2.4371521e-02 -1.7659904e-03 6.6808690e-04 -2.7474853e-03 1.1550580e-02 7.4303964e-03 2.3806108e-03 4.2091375e-02 1.7588981e-02 1.0213945e-02 -1.6967664e-02 3.9454579e-02 -1.2750525e-02 3.6516761e-02 1.7283894e-02 2.6677702e-02 -7.8393092e-03 9.9965888e-03 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_F_5.txt new file mode 100644 index 00000000..8a0598a9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_F_5.txt @@ -0,0 +1,22 @@ + -5.0835268e-02 1.7285681e-01 -3.1072868e-03 -6.4926483e-02 -6.8574142e-02 1.6582640e-02 -4.8467815e-02 -1.1042685e-01 1.1022995e-01 9.5871940e-02 1.4980453e-01 1.0001849e-01 4.1221913e-02 1.5536525e-02 -1.8531288e-03 -9.5431764e-02 3.8424839e-02 -3.8701184e-02 -2.3643047e-02 5.2937401e-02 2.6213088e-02 3.2384002e-02 4.4051124e-02 -6.6103421e-02 7.8409879e-02 -7.9573339e-02 6.4861013e-02 -2.7168154e-02 2.9723009e-02 3.7168348e-02 -1.8646427e-02 -4.4270734e-02 -2.4177636e-02 -1.8928656e-02 -4.0437245e-02 -4.5850445e-02 -5.1344339e-02 6.7654031e-03 -3.1245517e-02 2.3981269e-02 -1.2228361e-02 + -6.9226628e-02 7.4690995e-02 -2.1142431e-02 -2.2275742e-02 -5.9391798e-02 -8.1469740e-02 -6.4957729e-02 -3.4330791e-01 6.5514657e-02 2.0848050e-02 6.6765302e-02 5.9015359e-02 7.4922353e-02 -1.5202349e-01 -3.1736337e-02 -1.7889714e-02 4.8025834e-02 -1.4496726e-02 -1.6725020e-01 1.6207860e-01 9.7005696e-02 1.7671894e-01 1.0503098e-01 -1.5841966e-01 1.0080563e-02 -1.6929516e-01 7.0901304e-02 -1.7817195e-02 -1.2740507e-01 -2.0669577e-02 6.5259433e-02 -1.0944160e-01 9.1415089e-02 1.4839875e-01 -1.2756903e-01 -1.1352230e-01 5.5892724e-03 3.7939942e-02 2.1591749e-02 -1.5351080e-01 1.1650826e-02 + -1.3197717e-01 9.3497566e-03 4.8969003e-02 -1.0772558e-01 -7.9323280e-02 1.4775238e-01 -1.0042650e-01 3.3667864e-01 6.5793331e-02 4.2049673e-02 1.6603153e-01 6.8804078e-02 1.1166873e-01 -8.8833496e-02 1.5624816e-01 7.5063620e-02 -6.5154592e-02 1.4251938e-01 8.2762844e-02 7.9178004e-03 -2.6391645e-02 2.3234140e-02 -1.4064369e-01 -9.4191754e-02 6.0612058e-02 9.7311606e-03 1.0842689e-01 -7.3621654e-02 3.6685039e-02 -4.5862080e-02 3.1189245e-02 4.5912537e-02 -3.7047319e-02 -5.3887096e-02 2.0667074e-02 3.1761440e-02 -2.3949837e-02 6.2439078e-02 6.0980175e-02 6.2810084e-02 -1.2868050e-01 + -1.3990545e-01 2.9196890e-01 8.5543700e-02 -2.2333608e-02 -1.8300921e-01 -2.2512079e-02 -8.0413222e-02 -1.8710935e-01 1.6947981e-01 2.9441896e-01 1.3634063e-02 8.6329139e-02 5.6459638e-02 -3.9210532e-03 -1.5793426e-01 -1.6314713e-01 1.0314101e-01 -3.7451869e-02 -1.1595450e-01 1.6648054e-01 -2.0581294e-01 1.6930753e-01 1.7332772e-01 -1.1976578e-01 4.0240431e-02 6.0140230e-02 1.5038737e-02 1.6866645e-01 1.5405497e-01 -1.1503143e-01 3.1573994e-02 2.3920020e-02 -3.2176952e-02 -4.0558320e-02 7.2924304e-02 -8.0446375e-02 -9.1967382e-03 -4.7584750e-02 2.6748441e-02 2.5223725e-01 -6.5096961e-02 + -6.4855465e-02 -6.5476232e-02 1.8548756e-02 -1.0539606e-01 -3.9444369e-02 2.4323263e-01 3.4948540e-02 5.6307523e-01 -5.2140115e-03 -3.4115565e-02 -2.3163250e-02 -1.0630777e-01 9.5428157e-02 -5.4760953e-02 1.3615706e-01 3.2721646e-02 2.1389764e-02 2.0747321e-01 -1.5541348e-03 -1.4176894e-01 -1.9029549e-01 3.9614857e-01 -2.5602733e-01 -6.1906599e-02 -9.1063094e-02 1.2433170e-01 1.6805731e-01 -1.4052531e-01 -1.7210471e-01 8.6223945e-03 1.7704113e-01 2.1745507e-01 -1.3164074e-01 4.1862672e-02 4.7772735e-02 -1.3995673e-01 -7.2536485e-02 -1.0980642e-01 -1.5056267e-01 7.8957241e-02 -1.0417460e-01 + 3.6547792e-02 1.0353915e-02 -3.0357548e-02 5.7988475e-02 3.8166700e-03 1.3886637e-01 4.5417980e-02 2.1127001e-01 -2.0074459e-02 7.8252840e-03 -1.1550039e-01 -3.2916541e-02 9.8170755e-03 1.0575183e-02 -1.5248321e-03 3.1254538e-02 -2.1431159e-02 1.0742954e-01 3.5242231e-02 -1.8828424e-01 -2.3718332e-02 -8.1095994e-02 -7.4637025e-02 6.5046007e-02 -5.4295012e-02 2.1115720e-01 6.6907989e-03 -1.3102004e-02 -5.8968326e-02 1.1128393e-01 1.0973105e-01 1.1760991e-01 1.4116971e-02 -2.3918115e-02 1.3170990e-01 -9.2201072e-02 -1.4281848e-02 5.8330517e-02 -5.9489711e-02 9.2202325e-02 -8.8256532e-03 + 3.1309767e-02 4.4260255e-03 3.7250063e-02 2.7982104e-02 4.0220423e-02 -4.8721559e-02 4.7002361e-02 -7.9548668e-02 -1.0348161e-02 -2.2161735e-02 6.1376817e-02 -2.3563556e-02 -4.5252849e-02 -5.3615643e-02 -3.4399041e-02 -3.1570278e-02 1.0488560e-02 -7.5229981e-02 -1.6686619e-02 7.2271999e-02 4.0694166e-02 3.6719703e-02 1.5756380e-01 1.3676251e-02 -5.7812270e-03 -1.9761796e-02 -3.3368724e-02 -2.4935352e-02 -4.3355969e-02 -1.9149623e-02 -6.6115499e-02 -5.4702429e-02 8.4599826e-02 7.0259419e-02 -9.2722361e-02 3.7255037e-02 6.1817526e-02 2.1190624e-02 3.2328852e-02 -2.3992073e-02 6.0584150e-02 + -7.3850969e-02 2.4992469e-02 -2.8633415e-01 1.0959172e-01 -4.1750378e-02 -2.2169418e-01 6.0085303e-02 -2.9751061e-02 -1.4168877e-01 -4.8468409e-02 2.0501703e-01 -7.1079066e-02 -1.4991680e-01 -7.6013107e-03 4.1781301e-01 -1.9910485e-01 3.2407975e-01 -4.0754642e-01 6.3400773e-02 -1.5481942e-01 -1.3896977e-01 1.1407506e-01 -3.1907359e-01 -4.0639976e-01 -1.6241828e-01 -3.7212433e-01 -5.2999911e-02 -9.2509101e-02 -1.9339211e-01 1.3897657e-01 -3.6098753e-01 -3.7196389e-01 1.7733891e-01 2.0200382e-01 -1.9100541e-01 2.0527257e-01 1.3144294e-01 -1.1015189e-01 7.6693510e-02 1.8676174e-01 1.0106105e-01 + 1.1066599e-01 -6.1365605e-02 -8.5752271e-02 1.0833288e-01 1.2275384e-01 -7.9527134e-02 1.1758399e-01 8.5216321e-02 -1.5107851e-01 -5.8043741e-02 -2.7500971e-01 -3.3415602e-03 -3.1875960e-02 1.7168825e-01 -1.2452184e-01 -7.5504141e-02 -2.9070323e-02 -7.0699914e-03 1.6066193e-01 -1.4327781e-01 -1.1963222e-01 -2.2433110e-02 -6.4229479e-02 4.6653621e-02 -5.7820282e-02 8.0021658e-02 -6.9187270e-02 3.9671326e-02 -2.7090613e-02 2.6698189e-01 -3.7982680e-03 -1.1562389e-01 4.2366966e-02 -6.2779109e-02 1.2655519e-01 -9.2123625e-02 -8.6178463e-02 -4.5485757e-02 -1.7032283e-01 2.2324175e-01 2.6980369e-02 + 2.6067546e-02 -6.4574755e-02 5.7037185e-02 1.1054726e-02 3.2277738e-02 -1.4604809e-01 2.9091127e-02 -1.4569126e-02 -5.7315242e-03 -6.2855089e-02 -7.9784479e-02 -7.9877474e-02 -3.5659344e-02 -1.3165173e-01 -5.2762016e-02 6.9869568e-02 2.9586224e-02 3.7217951e-02 1.1110323e-01 6.8285724e-03 1.0714676e-02 3.2708883e-02 6.4430317e-02 8.5331851e-03 -4.3890178e-02 9.3553239e-03 -3.2031357e-02 -4.1836538e-02 -1.6787177e-01 -4.3305405e-02 -5.3500503e-02 -5.5344855e-02 1.4494871e-02 1.1797046e-01 -5.6676227e-02 -2.5247611e-02 1.7473267e-02 1.3456512e-04 4.4990081e-04 1.0325181e-02 1.7076869e-02 + 6.5419977e-02 -9.5780963e-02 -2.9353894e-03 1.2969174e-01 1.0061974e-01 -1.5454617e-01 2.2392221e-01 5.9752151e-01 8.4843059e-03 8.0938151e-03 -9.3012384e-02 7.1325069e-02 -2.4565201e-01 -7.2254986e-02 -1.0958295e-02 -3.4932506e-01 1.9257374e-01 2.8776058e-01 -2.6003668e-01 -2.9982256e-01 -5.3469128e-01 4.0119928e-01 -9.3377171e-02 -5.4695101e-02 2.0636428e-01 3.7738636e-01 -1.0255719e-01 1.6598077e-01 -3.6621242e-01 1.9025540e-01 7.3261712e-02 -2.4596344e-01 -2.0650140e-01 -1.6267105e-01 -1.4536034e-02 -7.4440061e-02 -3.7102559e-02 -1.1490613e-02 -7.6756283e-02 3.2672640e-01 1.7898351e-01 + -1.1086979e-01 -7.5033563e-02 -1.5607063e-01 -2.3107078e-02 4.9764614e-03 -1.6073501e-01 -3.5880968e-02 -3.9864918e-02 -1.8359549e-01 -3.5870961e-02 1.0830948e-03 -3.5592915e-02 1.6814518e-02 4.4639454e-02 1.6176456e-01 -5.7148975e-02 1.6375995e-01 -2.4194173e-01 2.3466595e-02 -1.0397042e-01 -1.5409317e-01 1.3032103e-01 -2.6216467e-01 -6.7898055e-02 4.6000616e-02 -2.9172252e-01 8.6106059e-03 -4.1403002e-02 2.7381280e-02 2.5538541e-01 -1.5392718e-01 -3.1251817e-01 4.2338838e-02 -7.6972168e-02 -3.9691308e-02 1.7591534e-01 5.1373630e-02 -3.5715542e-01 -5.1094698e-02 1.3970770e-01 -7.3069960e-02 + -1.1186921e-01 2.7127173e-01 -1.8335530e-01 2.1148674e-01 -8.6066832e-02 -2.9102262e-01 -5.4941665e-03 -4.4525672e-02 -9.6602082e-02 3.7834008e-01 -1.9420093e-01 -1.4325032e-01 -1.5810134e-01 -4.1280828e-02 -1.4842063e-03 -2.2087418e-01 1.8613139e-01 -2.6538609e-01 1.2212111e-01 -1.7970303e-02 -6.3146202e-02 -2.0940412e-03 -3.4449162e-01 -1.8987106e-01 -3.0256245e-01 -3.1536837e-02 1.5888814e-01 2.2086114e-02 -1.3054297e-01 -1.7936252e-01 -2.9873110e-01 -4.2319680e-02 5.3142066e-02 1.4069416e-01 -2.1391124e-02 -2.7294125e-01 2.2401049e-03 -1.4673424e-01 1.9158406e-01 5.3773744e-01 4.9752631e-03 + 1.2420438e-01 8.8256320e-02 1.9890141e-02 1.7086290e-01 1.8955302e-02 -3.9149318e-01 8.6422085e-02 2.3155164e-01 3.3530580e-02 -1.7945533e-01 1.4005647e-01 1.1572196e-01 -6.0998366e-02 -3.1073888e-01 -1.1731133e-01 6.9507197e-02 1.6791101e-02 1.1545643e-01 -1.3356307e-02 -2.8768659e-01 -9.1292944e-02 -3.5290090e-02 2.8827189e-01 1.6854992e-01 -3.0693302e-01 2.0792559e-02 -2.4670375e-01 -2.4253345e-01 -2.9846095e-01 2.5178545e-01 -2.0523864e-01 -2.7755219e-01 3.6196934e-01 2.9683953e-01 1.0767935e-01 2.0785736e-01 -2.6724854e-03 1.3927418e-01 -2.4229471e-02 -2.7331066e-01 1.6493636e-01 + -6.5297492e-02 -6.7013300e-02 1.8283302e-02 2.9123017e-02 2.3025604e-02 4.6487961e-02 -8.4827150e-03 8.1496852e-02 -1.1343104e-01 -1.8265526e-01 -2.2297719e-02 -1.6727759e-01 8.3810845e-02 -1.1548307e-01 -2.6422490e-01 1.2054423e-01 -2.6692697e-02 2.2837404e-02 9.1985330e-02 -1.0801516e-01 -9.3320677e-02 2.2061175e-01 1.1078216e-01 1.5804983e-01 -5.3181428e-02 1.2527049e-01 -1.8936222e-02 -7.4632062e-02 -7.7523665e-02 1.3737130e-01 8.0023715e-03 -7.7167164e-02 1.7010442e-01 6.9085976e-02 1.2498641e-01 -6.2862157e-02 2.9691121e-02 -1.5407641e-01 -7.4474736e-02 1.9467912e-01 -1.0274154e-01 + -4.4822254e-02 2.0379837e-01 -1.0935567e-01 -2.9645237e-02 -2.7803004e-01 -5.1756094e-02 -5.9654517e-02 -2.9492668e-01 1.4972331e-01 1.4734067e-01 4.9051033e-02 4.0052278e-01 8.2968894e-02 4.1363169e-03 -5.5669780e-02 5.1264356e-02 -1.8738898e-01 3.3317541e-01 6.2377367e-03 -1.4984801e-02 -9.6890008e-02 -2.3730176e-01 3.2572355e-02 -2.5526610e-01 1.6891563e-01 7.4049202e-03 1.3297689e-01 2.9762275e-01 -2.7237869e-03 -7.5078980e-02 3.6113797e-01 -2.0793516e-01 -2.2356165e-01 -9.1303249e-02 2.0795197e-01 -6.5745029e-04 -1.5202118e-01 5.1051561e-01 -3.5829161e-03 -3.8256327e-01 -3.1396969e-02 + 7.2349840e-02 -7.8883823e-02 3.9309984e-02 9.6823334e-02 1.1117794e-01 -9.2527556e-02 5.9103877e-02 -2.2560966e-01 -7.1054240e-02 -1.2432306e-01 -4.3562122e-02 -9.5449922e-02 -8.1485180e-02 -2.6646885e-02 -1.3599701e-01 -2.5755782e-02 1.7701716e-02 -1.6277467e-01 -1.1905166e-02 5.6007546e-02 5.8017022e-02 2.7144780e-02 2.2434859e-01 9.0491773e-02 -2.0480870e-02 1.9701436e-03 -1.2050257e-01 1.5495510e-02 -1.1398804e-01 2.7857285e-02 -1.0760600e-01 -1.0494429e-01 1.7593763e-01 1.0739658e-01 -7.6207966e-02 7.3036810e-02 9.9459513e-02 9.5318783e-03 1.8061395e-03 -3.4802098e-02 9.6591826e-02 + 4.4605178e-02 -6.2663535e-02 4.8287911e-02 -1.7799104e-03 3.5449364e-02 8.0075154e-02 4.4807921e-02 8.9262061e-02 2.8092646e-03 -2.0119372e-02 7.7384303e-03 -6.4055328e-02 -1.3972553e-02 1.5501898e-03 3.4443921e-02 -5.3530452e-02 3.1257770e-02 -1.7149118e-02 -4.9400571e-02 4.4071932e-02 -1.6545707e-02 5.3022073e-02 8.2555007e-02 5.4636118e-02 -1.5897206e-02 4.8160532e-02 -4.8541110e-02 -2.3541347e-02 8.5894329e-02 -8.9202909e-02 -5.6155876e-02 9.5283824e-02 5.5830674e-02 -3.4090607e-02 -6.8319765e-02 9.0078695e-02 6.8603995e-02 -6.6123097e-03 7.8611892e-02 -1.4616417e-02 4.1043786e-02 + 1.9579920e-02 -1.7138606e-02 -5.8459833e-02 3.3412130e-02 3.9719702e-02 -3.2357284e-02 5.2390161e-02 -6.3863775e-02 -9.3477434e-02 -3.3697314e-03 -1.6363278e-02 -2.8137225e-02 -1.4316250e-02 2.0155728e-03 -7.5137834e-03 -4.1490763e-02 3.1150133e-02 -3.2028921e-02 -1.6069117e-02 -3.4112831e-02 5.6504941e-03 6.1781362e-02 -5.6771167e-02 -8.4227595e-02 2.6274180e-02 5.9583209e-03 -3.5108744e-03 1.0350463e-02 -6.6618572e-02 2.3627244e-02 -1.5362394e-02 -6.6652206e-02 3.1212949e-02 3.0986012e-02 -1.5903524e-02 -2.7235575e-02 2.4294265e-02 -1.8717891e-02 -8.7313832e-03 8.4568410e-02 2.9912217e-02 + 1.1032246e-01 -1.3644993e-01 1.6152708e-01 -5.3559703e-02 3.6285661e-02 2.8689479e-01 8.2294958e-04 2.8352192e-02 6.3504544e-03 -3.3943997e-03 -6.9599199e-02 -1.7556573e-02 1.6891009e-01 1.5412641e-01 -4.2738097e-01 8.3665419e-02 -2.3044691e-01 2.0275505e-01 -1.7319413e-01 2.7304301e-02 2.7341203e-01 -9.6868773e-02 2.9079707e-01 2.1448919e-01 1.4264671e-01 4.0475294e-01 8.2604410e-02 1.5584210e-01 1.7264589e-01 -1.8473633e-01 2.8114891e-01 2.3095240e-01 -1.0941180e-01 -8.5395447e-02 2.0157767e-01 -8.4729082e-02 -8.9019064e-02 2.4780117e-01 6.3823488e-02 -4.9124099e-02 -1.4348486e-02 + -1.1364832e-01 -3.9287434e-02 -1.0796530e-01 1.3148923e-01 -8.5897855e-02 -3.2768641e-01 -3.5904981e-02 8.4483514e-02 -4.3664730e-02 -2.8352529e-02 7.8019028e-02 -2.9668601e-01 -3.7190360e-01 -3.7538158e-01 6.5635356e-01 7.2847092e-02 4.9291545e-01 -3.7974552e-01 2.6380616e-01 -3.6508194e-02 -3.4008270e-01 -4.5766627e-02 -5.0480633e-01 -4.1286324e-01 -1.3011138e-01 -4.3553606e-01 -2.2039235e-02 -2.3767265e-01 -8.5994517e-02 3.5750865e-02 -6.6461374e-01 -2.5692438e-01 -6.2399298e-02 6.3809189e-02 -4.4373867e-01 3.7872534e-02 1.4816022e-01 -2.2602088e-01 2.6489774e-01 1.6317175e-01 4.6410376e-02 + -5.7062194e-02 1.1710297e-02 1.2721804e-02 -4.0795517e-02 -7.9403160e-02 6.1443212e-02 -2.8279342e-02 1.4245674e-02 3.1637986e-02 6.6609845e-02 5.4544305e-02 -1.2703873e-02 3.9398352e-02 8.5939179e-04 3.6811461e-03 -2.5129946e-02 2.4046757e-02 4.6652194e-03 -4.1867564e-02 7.5599376e-02 -6.2370220e-02 5.8248371e-02 5.9510885e-02 -2.1968805e-02 -1.5083826e-02 2.5986806e-02 4.0015020e-02 3.9855485e-02 1.0701778e-01 -1.0850379e-01 2.6995710e-02 3.7478363e-02 -3.6111820e-02 -4.2098736e-02 -2.7464626e-03 -1.9706377e-02 -3.0758590e-03 1.0381217e-03 7.2025779e-02 2.9144585e-02 -5.4437039e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_G_1.txt new file mode 100644 index 00000000..9d9ae849 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_G_1.txt @@ -0,0 +1,24 @@ + -4.8506363e-02 -5.0970722e-01 -1.1153893e-02 3.1399863e-01 -1.7210022e-01 4.3885921e-03 1.3764305e-01 1.9369996e-01 -1.2751671e-01 1.3064538e-01 -4.2177483e-01 1.3386489e-01 -3.5779885e-01 -1.4418892e-01 -1.2513729e-01 -4.1698479e-01 -2.9698891e-01 -9.0403110e-02 9.1420600e-02 7.8608443e-02 -1.7002682e-01 2.3476427e-01 3.0272330e-01 -1.4447137e-01 3.6250542e-01 -2.2059005e-01 -1.7714356e-01 -6.3204900e-02 -5.0068580e-01 4.1585512e-01 3.2539145e-01 3.8674988e-01 + 6.0396018e-02 -1.9288250e-01 -1.0916192e-02 -9.6443078e-02 -5.4915890e-03 -1.0961001e-01 3.7788328e-02 1.9739162e-01 -2.4877723e-01 -1.0976711e-01 -3.4820614e-02 -1.1328564e-01 -9.1959979e-02 -5.1309015e-03 -2.8293503e-02 -1.7264353e-01 1.5293619e-01 1.2878601e-02 -1.9361873e-01 -5.9440696e-02 1.6251087e-01 -1.9889582e-02 1.4144703e-02 5.3488831e-02 1.0953159e-01 7.3847581e-03 -8.8427125e-03 1.3394674e-01 -6.8191550e-03 1.7853767e-02 7.8718955e-02 1.3800687e-01 + 1.0265573e-01 9.0808913e-02 -1.3727916e-01 -5.1150844e-03 1.2207858e-01 -2.2000928e-02 -1.5683549e-01 9.9655854e-02 -1.1979220e-01 7.4583902e-02 -4.7191061e-02 -7.4994187e-02 1.1845395e-01 3.3186087e-01 9.8942723e-02 -5.1597783e-02 -1.5480256e-01 -1.0840829e-01 -3.4555043e-02 -1.3733153e-01 2.1662704e-01 6.0345158e-02 5.2617395e-02 -1.6455610e-01 -1.7845826e-01 1.7018852e-01 -2.1366225e-02 -2.4649270e-02 3.9597568e-03 3.3583827e-02 2.6437672e-01 -7.3907354e-02 + -1.0735465e-01 -2.2759326e-01 8.6041149e-02 -7.7665621e-02 -1.5289086e-01 7.3440943e-02 -3.7852681e-02 1.0630946e-01 -6.2910752e-02 9.1291794e-02 -7.8397852e-02 1.1314958e-01 -2.0102430e-01 -1.3803708e-01 -1.0365010e-01 -2.4602905e-01 -1.2165474e-02 4.6720342e-02 1.8986931e-01 1.9741954e-01 -1.3238988e-01 -2.3391715e-01 -1.2960288e-01 1.1847778e-01 7.3616889e-02 -4.6437623e-02 -2.3081182e-02 -1.0485875e-01 -2.3407799e-02 2.3070877e-02 -1.3355937e-01 2.1270278e-01 + 1.0020643e-02 -1.6295408e-02 3.6520273e-02 -2.9351572e-02 2.5177583e-02 -2.3527840e-03 -1.8661467e-02 3.4129067e-02 -4.8976577e-02 -1.7398612e-02 -3.7808313e-02 -3.5073215e-02 -6.5529389e-03 2.2257778e-02 -9.0794587e-02 -3.5756138e-02 1.3765497e-02 -1.7274921e-02 -1.4007694e-02 -3.3374775e-03 1.7930158e-02 -3.3083180e-02 -2.9035145e-02 4.3405067e-02 -9.9634704e-02 2.2726819e-02 -4.5821420e-02 2.5523566e-02 -5.8483509e-03 -1.3348887e-02 3.2699172e-02 -5.9273477e-02 + 1.4619976e-02 -1.0154609e-01 -6.8960696e-02 1.5500935e-01 -1.2763746e-01 4.9517614e-02 -2.4704233e-02 5.1722783e-02 5.4705538e-02 -5.2726663e-02 -1.4467458e-01 4.7597802e-02 -3.4078307e-01 -3.3532039e-02 4.3446345e-02 -4.8951540e-02 -4.5670612e-02 -7.1062121e-02 2.0934912e-01 2.5407601e-01 -1.0825166e-01 1.0694621e-04 -1.0652707e-01 1.6942002e-01 2.3713163e-01 -1.2003329e-01 -1.3887838e-01 -1.1631753e-01 -2.5839803e-01 2.9451798e-01 -3.5491058e-02 -2.6120315e-02 + 3.5549152e-02 -1.2854537e-02 2.3193854e-02 5.0777762e-02 -2.1845009e-02 -5.5708798e-02 -2.3932535e-03 -1.3528318e-01 9.8264036e-02 -4.8613703e-02 9.3340133e-02 -2.6007281e-02 1.1593085e-01 -8.8975506e-02 4.3094163e-02 3.5045468e-02 8.0677123e-02 8.1195590e-02 -2.2294894e-02 2.6802404e-02 -5.6316911e-02 -4.9349156e-02 1.5369115e-02 -1.2970975e-02 1.5809640e-03 2.4921656e-02 2.7696625e-03 2.6082665e-02 6.0753988e-02 -9.5207561e-02 -1.0068587e-01 1.1786375e-02 + -2.8281669e-02 -3.9968596e-02 -3.8397506e-02 4.5399525e-03 2.9422066e-03 4.7311615e-02 -4.2604488e-02 3.8015821e-02 -2.7941102e-02 3.6593876e-02 -1.5408479e-01 6.4861888e-03 -8.7233320e-02 -2.0808765e-02 -4.8531364e-03 2.8094272e-02 6.9116232e-03 -7.3596791e-02 1.9861338e-02 1.4454753e-02 -7.2325103e-02 2.6688196e-02 5.7272403e-02 5.8788808e-02 1.8546005e-03 -1.3389413e-02 -1.4823334e-01 -6.1793422e-02 -4.2240278e-02 7.2161998e-02 -2.3224823e-03 -1.5256518e-02 + 8.5442755e-02 -9.4094303e-02 1.9105156e-01 -1.0808627e-01 -1.5565693e-01 -6.8859708e-03 4.3639086e-01 2.8752533e-01 -1.3112598e-01 -5.9796024e-02 1.3010153e-02 -7.3749390e-02 6.6071064e-02 -9.4012401e-02 -3.0364403e-02 2.0704311e-01 1.5770088e-01 -1.2052446e-01 -8.3518080e-02 -1.0910117e-01 2.0616670e-01 5.7314537e-02 1.1498094e-02 6.1306318e-02 -6.6457086e-02 -5.9522879e-02 1.4095524e-01 2.1506618e-01 2.6003472e-01 -1.0747237e-01 -1.0159179e-01 7.3775300e-03 + 1.6976835e-01 1.8761293e-01 5.8092436e-02 -2.5850265e-02 2.9807178e-01 -3.1438461e-02 -1.6994209e-02 -2.8320258e-02 4.4810746e-03 -4.6760511e-02 3.6196219e-02 1.1903381e-02 -6.3637687e-02 -8.1750421e-02 -1.8303017e-01 6.1542399e-02 6.4518775e-02 1.5788976e-01 -6.8273126e-02 8.9063742e-02 -6.7925917e-02 -4.0719228e-02 -9.1585621e-02 1.0663198e-02 -1.3766520e-02 -8.9771519e-02 -1.1742108e-02 6.5717769e-02 -5.7156241e-02 7.0379246e-02 4.7082446e-02 -1.3576588e-01 + -7.9055968e-02 -1.0677943e-01 -5.9619973e-01 -2.6391813e-01 9.9730523e-02 1.8864245e-01 -1.9903297e-01 5.9445226e-01 -8.7626464e-01 3.2788203e-01 1.9081783e-01 4.8138770e-01 -1.2452892e-01 -1.0156273e-01 -2.1933491e-02 -1.2604171e-01 -3.1332300e-01 -5.5721179e-01 1.2736158e-01 -2.7030725e-01 2.5987226e-01 4.1854925e-01 3.2557347e-01 -4.8174723e-01 4.0121802e-01 -2.3780709e-02 1.1427492e-01 -2.7960246e-02 -1.7810440e-01 3.6628045e-01 7.6212277e-02 2.5159530e-01 + 5.2763794e-02 -1.9335794e-01 1.4452246e-02 2.1277891e-02 -4.3093825e-02 -5.5911647e-02 5.2409669e-02 -9.8761658e-02 1.6785720e-02 -1.7873785e-01 -1.2783732e-02 -4.8982716e-02 -3.5490717e-02 -2.1869832e-01 5.6636036e-02 5.4361144e-02 9.4964056e-02 -7.0213031e-02 2.6540005e-02 -1.0241940e-01 -1.2943917e-01 3.1387012e-02 1.6136821e-01 -3.1272250e-02 -8.0328167e-02 9.4434203e-02 -2.0970223e-01 7.2350434e-02 4.2255463e-02 -8.6121222e-02 1.5872263e-02 1.2584669e-01 + -1.6517452e-02 -1.0471955e-01 -1.0469534e-01 5.4098844e-02 -8.8204957e-02 2.5553126e-01 -1.3724590e-01 -3.4397346e-02 -1.5833673e-01 2.4573046e-01 2.3684636e-01 1.5683350e-01 -1.1358102e-01 3.0361003e-01 1.6294202e-01 2.2410336e-01 -2.1199517e-01 -1.7001401e-01 2.4238564e-01 1.3194257e-01 1.6592334e-01 2.1439538e-01 9.6917230e-02 -4.0371015e-02 1.7378368e-01 2.4751864e-02 -6.4136326e-02 -1.1843571e-01 1.7895638e-01 -1.2700316e-01 -1.0655346e-02 1.3881860e-01 + 7.0480246e-02 -7.5299952e-02 -3.1527559e-02 -1.2486194e-01 -9.3135983e-02 -4.2718531e-02 9.2818163e-02 2.3279163e-01 -1.4364913e-01 -8.7804312e-02 -2.0452983e-01 2.1163619e-02 -1.7550149e-02 -6.4723345e-02 -1.3628390e-01 -2.0183846e-01 -2.3340659e-03 -1.1375136e-02 -4.1809460e-02 -4.3454787e-02 2.1816224e-02 -7.7005304e-02 -2.0670749e-02 -1.3640743e-01 -3.6841674e-02 4.5717627e-02 4.8846031e-02 1.0258682e-02 -7.6059369e-02 7.4286294e-02 1.3288195e-01 -9.4968043e-02 + 3.3352666e-01 3.6984040e-01 -9.2665166e-03 3.9129436e-03 -1.9227417e-01 6.8880305e-02 -1.2509290e-01 -5.3391268e-03 -1.8221768e-01 1.2383183e-01 -6.5370403e-02 1.1280777e-01 2.4228316e-02 -7.9980930e-02 9.2842088e-02 4.5232777e-02 1.0939907e-01 1.3168622e-01 2.7141670e-01 3.4827983e-01 -8.2217474e-02 -1.4213644e-01 -3.2293098e-01 -5.5412998e-02 2.3097366e-01 -6.4468079e-02 3.6645484e-01 -1.0092880e-01 3.0515295e-02 5.1634201e-02 -4.7003547e-01 -2.7869200e-01 + 3.3402637e-02 -1.1693292e-01 5.6814957e-02 8.4115317e-02 -2.8418087e-01 -5.7611331e-02 2.0062954e-01 5.0171571e-02 5.4476080e-02 -7.0152370e-02 -1.9584443e-01 5.0537530e-02 -2.3049822e-01 -7.2508074e-02 -6.1670358e-02 -2.5869979e-01 -2.9805308e-02 6.5682004e-02 4.2165322e-02 1.5878717e-01 -7.3270377e-02 -5.4597242e-03 -1.2187988e-01 7.4165087e-02 7.3622424e-02 -1.7389086e-01 -2.0394638e-02 3.7040621e-02 -1.7531636e-01 8.8512402e-02 1.6487953e-01 9.4305733e-02 + 1.4328252e-01 2.7270119e-02 6.3748456e-02 3.5011891e-02 -2.7907966e-01 -6.1004307e-02 3.9149486e-01 -2.4917034e-02 8.2846820e-02 -3.0175831e-02 -1.8653807e-01 5.7178901e-02 -2.7386568e-01 -1.4429681e-01 6.8460200e-02 -2.5629310e-01 1.1406964e-01 1.5042545e-01 -1.9501580e-01 1.5666992e-01 -2.8985677e-02 9.9913562e-02 -2.1506937e-01 1.3053568e-01 8.4320307e-02 -2.4378933e-01 -5.6621960e-02 1.2242661e-01 -1.7706584e-01 5.5826631e-02 2.5012486e-01 8.8544804e-02 + 6.2995323e-02 1.1206196e-01 -6.9918253e-02 -1.2923717e-01 7.6317177e-02 -1.0326922e-01 -8.0492681e-02 -7.7073071e-02 1.5221062e-02 1.1947418e-03 1.5771230e-01 -1.3221422e-01 4.8430979e-03 8.2622843e-02 1.1488699e-01 1.6514704e-01 -1.3790004e-02 1.2025920e-02 5.3487116e-02 4.7240020e-02 2.2246846e-01 1.0603577e-01 2.5753387e-03 1.1494181e-01 -6.7139246e-02 1.1734569e-02 -1.3519563e-01 2.7801975e-02 1.5221306e-01 -5.5740992e-02 1.9774246e-01 3.6357128e-02 + -1.1402445e-01 1.6418729e-01 -1.0062355e-01 1.7037853e-01 1.6463051e-01 1.0415869e-02 -3.4881847e-01 -1.4207260e-01 2.2237266e-01 6.7272565e-02 -9.8813712e-03 8.2003632e-02 1.1711023e-01 8.6083700e-03 -1.1716953e-01 6.9188725e-02 -1.8412140e-01 2.7762171e-02 2.3775471e-01 1.6906354e-01 -1.1152970e-01 3.9928731e-02 7.6635781e-02 -7.7890771e-03 2.0066915e-01 -1.5586151e-01 -2.7865290e-02 -2.2172781e-01 -1.8839556e-01 1.9854422e-01 3.1120191e-02 -1.2555368e-01 + 1.2272370e-01 3.0281663e-01 -4.0010208e-01 7.7795488e-02 7.1761358e-02 6.6203408e-02 -2.1748374e-01 -2.4877196e-02 1.0669873e-01 1.7767091e-01 1.2292509e-01 9.8760016e-02 4.3575742e-03 3.7642383e-01 1.2175254e-01 8.4086177e-02 -1.9306810e-01 -4.5224690e-02 1.7432012e-01 3.4925831e-01 2.9512913e-01 2.5038361e-01 -1.3363659e-01 -7.2306797e-02 3.7380347e-01 -1.8389280e-01 -1.5304827e-01 -3.6841621e-02 -1.3824461e-01 1.7702528e-01 3.0584210e-01 -1.5556323e-01 + -8.0212962e-02 2.7346201e-01 -6.7626645e-02 1.0921773e-01 2.3123557e-02 -4.2525237e-02 -5.0284194e-02 -1.5636791e-01 1.3368358e-01 -6.1583050e-02 1.1781433e-02 -3.6043286e-02 -6.9571733e-02 -1.4317400e-01 2.6035639e-01 -4.2660540e-02 8.7714098e-02 -1.7854391e-03 3.6781785e-02 1.4533996e-02 -7.4321247e-02 3.8651509e-03 -3.0957792e-01 2.4115728e-01 1.5443291e-01 -1.1822776e-01 -7.6398451e-02 -1.1734789e-01 -1.7593559e-01 1.3794580e-01 9.1485673e-02 -1.2710660e-01 + -1.7565057e-02 2.7521399e-02 3.1840301e-01 1.4300039e-01 -2.8908211e-01 -1.5394618e-01 3.3900678e-01 -7.8718077e-02 2.8417421e-01 -1.8811925e-01 2.5830513e-01 -2.3675411e-01 -1.8128480e-03 -1.6816602e-01 2.8020417e-01 6.9515691e-02 1.9954016e-01 2.0577660e-01 -1.8479265e-01 5.1885922e-02 9.8703826e-02 -1.5842626e-01 -3.4401612e-01 1.9781700e-01 1.5314311e-01 -1.9615898e-02 9.0006521e-02 1.4621935e-01 6.7396983e-02 -3.9172281e-02 -3.9804735e-01 -1.5322240e-01 + -7.2427969e-02 -3.4611393e-02 -3.7048246e-02 6.7536228e-02 2.5372227e-03 1.8790395e-01 -1.5102735e-02 -1.6959046e-01 1.7638917e-01 1.3648868e-01 1.2749700e-02 1.3638500e-01 -1.4599442e-01 7.5011264e-02 9.1299584e-02 -4.0176911e-02 -1.0627823e-01 -5.2623900e-02 1.6238484e-01 4.6468789e-02 3.9868277e-03 5.7246203e-02 2.9785248e-02 5.1775302e-02 -1.0937114e-02 1.9515284e-02 -1.8050284e-01 -4.3451695e-02 3.2077663e-03 -7.4666235e-02 6.1601691e-02 1.1138868e-01 + 1.0986763e-01 -1.6226719e-02 3.9598688e-01 -4.0916501e-01 4.8540074e-01 -5.9539693e-01 2.5614443e-02 -5.8614527e-01 3.0603177e-01 -5.5243716e-01 7.0037134e-01 -2.7193570e-01 5.0506850e-01 -1.0945038e+00 -2.8474989e-01 3.6082177e-01 6.1415041e-01 -1.3300413e-01 -5.3658311e-02 -7.5092057e-02 5.2955232e-01 9.5690585e-01 3.8352407e-01 -4.1098807e-02 -3.5941289e-01 -3.0531310e-02 -9.9405430e-01 6.7654442e-01 5.6871578e-02 -2.8570730e-01 1.0728229e+00 -1.4991287e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_G_2.txt new file mode 100644 index 00000000..9d6149a1 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_G_2.txt @@ -0,0 +1,24 @@ + -1.0356267e-01 2.5279531e-02 3.2238848e-02 1.2864713e-02 -6.4933317e-02 -4.8875125e-02 -7.9695050e-02 5.2001227e-02 -8.6555218e-02 2.5097396e-02 3.6441118e-02 8.8938932e-03 3.8797599e-02 -1.3924861e-02 -4.1740254e-02 8.6433540e-02 -5.6344445e-02 6.6953662e-02 4.1196378e-03 1.4020473e-02 -1.5775027e-02 -2.9959329e-04 1.0397642e-01 1.1162803e-02 -4.9517408e-02 -7.0053947e-03 -5.8920091e-02 -1.3978640e-01 -7.0235237e-02 6.6153526e-03 -3.5626947e-03 -7.2736222e-02 7.3145854e-03 5.8192543e-02 -3.9382262e-02 + -2.3451688e-01 -7.8211569e-02 -1.5827367e-01 2.0379584e-02 -6.0636972e-02 7.8606793e-02 -2.6815460e-01 2.0135817e-01 1.1408882e-02 1.8158981e-01 -2.0462453e-01 -1.7620268e-01 4.0102132e-01 -2.7594515e-01 1.1098915e-02 1.6874849e-01 -1.5379613e-01 -1.6315959e-01 -1.0273398e-01 9.4925984e-02 1.7138978e-01 -7.4113063e-02 2.9202160e-02 -5.4823165e-02 9.3701973e-02 8.0934615e-02 -6.3996805e-02 -2.1599950e-02 1.6090785e-02 -1.2479842e-01 1.2500504e-01 -1.5079618e-01 1.5944492e-01 1.6474494e-01 3.1230177e-02 + -1.6827826e-01 -3.5542234e-02 5.4928895e-02 -5.7848181e-02 -8.9678521e-02 -1.1257972e-01 -1.0717292e-01 1.2711896e-03 -1.2643777e-01 -2.1793096e-02 3.2326245e-02 3.8250085e-02 4.6293129e-02 7.2976300e-02 -9.7008340e-02 2.9059316e-01 -6.3917227e-02 5.9869734e-02 3.7743808e-03 -8.3185794e-02 -3.1004660e-02 7.4134348e-02 9.0603597e-02 2.2322863e-02 -4.9518507e-02 -2.1526047e-02 -3.4632397e-02 -2.5818737e-01 -4.5789415e-02 8.7402272e-02 2.4588379e-03 -7.4160287e-02 5.8578119e-03 4.5734961e-02 -8.8641648e-02 + -4.9817760e-02 7.5182208e-03 5.3889472e-03 -5.2608039e-02 -6.8552254e-03 -8.7010884e-03 -2.0313984e-01 7.2983737e-02 -7.0365943e-02 5.9620127e-02 -2.6115163e-02 -1.8047773e-02 1.3603337e-01 -5.4670802e-02 -3.0846216e-02 9.9350159e-02 -6.0305844e-02 -5.5021572e-02 -2.4870625e-02 4.9901279e-04 -2.2367640e-02 -2.3015236e-02 2.0552594e-02 1.8584654e-02 4.3515368e-02 7.6782425e-02 -1.2537729e-02 -1.1309283e-01 1.2236751e-02 -4.0601738e-02 2.9325825e-02 -1.2987205e-01 3.2741234e-02 4.7601912e-02 4.1723684e-02 + 1.0185157e-01 8.5872525e-02 1.4727825e-02 1.8671261e-01 1.1309536e-01 2.2444462e-03 4.1491406e-02 -5.7166795e-02 1.1320693e-01 1.0950484e-01 -8.6118021e-02 1.1223056e-01 -7.3548210e-02 -3.6803422e-02 -1.0014945e-01 -8.1177419e-02 1.5337954e-01 6.6960806e-02 3.3310916e-02 -1.5262300e-02 -9.5177966e-02 3.5166263e-02 8.5098115e-02 -1.4049173e-02 -3.0053919e-02 5.5935189e-02 5.0276988e-02 9.6309312e-03 -6.3522545e-02 -3.0103022e-02 -1.0397299e-01 1.4010715e-01 -2.6928336e-02 -6.1485646e-02 8.8167256e-02 + -2.0587397e-01 7.0613337e-02 -4.6731210e-02 -4.1720055e-02 4.8216685e-02 -3.1390891e-02 -1.1047129e-01 1.6288000e-01 -5.3762784e-02 -8.8345943e-02 1.5310592e-01 -7.8730685e-02 1.5720432e-01 1.8339563e-04 -1.8898706e-01 -6.4954324e-03 -1.1679210e-01 2.2933846e-02 -2.9608509e-02 -6.5061862e-02 -8.6633909e-02 7.9265920e-02 8.4754793e-02 -1.4558926e-02 8.4593880e-02 8.5073848e-02 -9.0845971e-02 -1.4560329e-01 -4.1161679e-02 -9.0852034e-02 1.3963165e-02 -3.8886370e-02 7.0016366e-02 7.5261442e-02 2.8291170e-02 + -1.2129803e-01 -2.6278067e-01 -1.3703809e-01 3.3133252e-01 5.4570575e-02 1.9660427e-01 -9.9058553e-02 -3.5338783e-01 -1.8977025e-02 4.2995473e-02 -1.3657107e-01 4.1919528e-03 -3.6216985e-02 -4.0865906e-03 2.6101296e-01 8.2026185e-01 1.0327075e-01 8.3367939e-02 3.1727477e-02 1.3729234e-01 3.8245986e-01 -4.0545515e-02 7.9675673e-02 2.7507089e-01 -4.3051696e-01 -3.5149217e-01 2.2964509e-01 2.9671675e-01 3.9732634e-02 6.1624369e-02 -1.7097154e-01 7.2163093e-04 -4.8013338e-02 6.3892954e-02 -3.9319250e-01 + 1.7558571e-01 9.8706226e-02 -9.4214286e-02 4.6814397e-01 4.6547149e-01 -9.5037428e-02 7.1027539e-01 -3.6679839e-01 1.4749250e-01 -5.1873311e-01 -1.4140022e-01 2.6352026e-01 -2.2990001e-01 1.7645619e-01 1.2932247e-02 -1.7659525e-02 2.7558647e-03 3.4784582e-01 3.0706266e-01 -7.0873146e-02 1.1724035e-02 -1.5139812e-01 2.6920368e-01 -1.1560405e-01 2.6188489e-03 -1.3328173e-01 -7.9821399e-03 4.0684479e-01 1.4322060e-01 -1.8769868e-01 -2.0622432e-01 4.3204588e-01 -2.6008182e-01 1.3345425e-01 -4.0546895e-02 + -3.7271856e-01 3.4404449e-01 -1.2062250e-01 -2.0880354e-01 -2.5890174e-01 1.3981307e-02 -9.6050573e-01 3.5558299e-01 -3.2454033e-01 2.1339378e-01 -3.8038497e-01 -1.3200773e-01 3.7318119e-01 -4.5086189e-01 2.3264388e-01 2.6302975e-01 -2.2945447e-01 -1.4312863e-01 -1.4140602e-01 2.9250758e-01 3.6444201e-01 -1.5195859e-01 -1.5596312e-01 -1.7901050e-01 6.2689815e-02 -3.6959138e-02 -1.6413950e-01 -1.9874650e-01 -3.5389251e-02 -1.5396403e-01 3.4831141e-01 -2.5510610e-01 1.0084549e-01 2.4382782e-01 2.5512510e-01 + -2.7843143e-01 -4.6135728e-01 -8.8561400e-02 -2.9114418e-01 -1.7634161e-02 -1.6280402e-01 1.6296711e-01 2.6366066e-02 8.2367158e-02 -1.6053092e-01 3.1806753e-01 -3.2446684e-01 -3.1143718e-01 -1.3218700e-01 -2.1353775e-01 -5.1865222e-01 7.0497504e-02 -1.8389589e-02 -1.0194525e-01 9.7768784e-02 -9.4820069e-03 6.0207789e-02 -8.9683010e-02 -6.5878871e-02 2.9616771e-01 -2.2214639e-01 -1.2783633e-01 1.7762736e-01 5.7734652e-01 -3.7891668e-01 1.9820435e-01 -1.6557881e-01 1.2086028e-01 6.9901935e-03 -1.1049009e-01 + -1.4988287e-01 -3.6680898e-01 -2.0019356e-01 3.3584709e-01 -2.3194521e-01 1.2950388e-01 -5.5097277e-01 2.6907255e-01 -1.5197692e-01 2.8553873e-01 -5.3209437e-01 -2.7291267e-01 7.5909590e-01 -3.4499720e-01 1.4110111e-01 1.3494383e-01 -2.3471440e-01 -2.2248858e-01 1.4776514e-02 5.4452015e-02 2.6900538e-01 -1.8693647e-01 -8.7319372e-02 -1.3034605e-01 -1.6812761e-02 4.1746640e-01 -1.2310607e-01 9.2526323e-02 -1.9414574e-01 4.8189478e-02 1.7865403e-01 -1.7974663e-01 4.5733803e-02 2.4591245e-01 7.2395754e-02 + 5.2650670e-02 -1.2892874e-02 4.8604786e-02 4.4573662e-02 3.2569377e-02 -5.0966575e-02 5.3401526e-02 -3.4613375e-02 -9.4436650e-02 -9.6404138e-02 1.8276846e-02 2.0285341e-02 -8.1036455e-02 9.3204939e-02 -6.3475286e-02 -5.2793607e-02 2.9035541e-02 9.7541303e-02 3.5341959e-02 -1.0316323e-01 -9.8965909e-02 3.0644596e-03 -2.6332350e-02 -5.4756349e-02 4.3954450e-03 9.4985044e-02 -7.2441586e-02 1.5192767e-02 2.3889974e-02 -4.0597168e-02 1.7118147e-02 1.1810088e-01 -5.0946148e-02 -8.5151900e-04 -9.7150181e-03 + 1.1267954e-01 6.7915234e-02 2.8261563e-02 -5.3395819e-01 2.0575572e-01 -6.3270222e-02 -6.9014195e-02 2.1062327e-01 -1.4827340e-01 -1.8080597e-01 3.0177936e-01 -1.0851294e-01 4.7490064e-02 8.9406499e-02 -1.3046526e-01 -3.3545761e-01 -2.4671440e-01 -1.3497532e-01 -1.9508357e-02 -3.4958665e-01 -9.4801994e-02 -3.1347319e-02 9.1189812e-02 -1.0280981e-01 3.0079155e-01 2.6747612e-01 -3.0808275e-01 7.3150880e-03 6.6140229e-02 1.1300560e-02 1.8717991e-01 -1.2032142e-02 2.1851588e-01 1.6107948e-01 1.4708208e-01 + -7.2724094e-02 1.8429259e-02 4.3024352e-02 3.1165181e-02 -7.4443605e-03 -5.1107481e-02 -1.0533422e-01 4.7429119e-02 -8.8259779e-02 1.7363976e-02 -4.4814886e-03 3.4129465e-02 4.9122948e-02 -2.7408735e-03 -8.4676151e-02 6.8193720e-02 -5.5632654e-02 4.2049211e-02 -4.0058770e-03 -1.6995467e-02 -5.4279354e-02 1.3264377e-02 7.7009824e-02 2.9754694e-03 2.5437612e-02 4.6242472e-02 -5.3501301e-02 -1.0573543e-01 -5.9982401e-02 -1.0703567e-02 -1.3987299e-02 -7.4817938e-02 -1.2535649e-02 5.9260015e-02 -9.1370552e-03 + 3.1139823e-02 3.4710811e-02 7.3207421e-02 -1.4403831e-01 -1.6878981e-02 -1.3716254e-01 3.7364895e-03 -1.1545871e-01 -1.7319921e-01 -8.5026572e-02 1.9063122e-01 1.0472914e-01 -8.3631128e-02 -2.1568030e-03 1.1994817e-01 -1.0721622e-01 -1.0439777e-01 9.2708968e-02 1.5694601e-01 -3.7317072e-02 6.4164262e-02 -1.1295736e-01 1.5411719e-01 -5.7930627e-02 -8.5359286e-02 7.5819689e-02 -2.7766827e-01 -1.7588206e-02 3.8786951e-02 -5.2547459e-02 4.0428597e-02 -2.4564735e-02 -5.3470153e-02 3.3711137e-02 -1.4226471e-02 + -1.8702932e-01 7.3278153e-02 -2.3050031e-02 2.2176065e-01 -1.8629523e-01 -3.5460775e-02 -3.8103450e-01 2.0021463e-01 -1.7112117e-01 2.4420126e-01 -1.6839613e-01 1.3287018e-02 1.9229029e-01 -2.4828504e-01 -8.5126578e-02 1.0689144e-01 -8.4094620e-02 9.8396718e-02 -6.2931778e-02 5.8955610e-02 2.5704668e-02 1.6857254e-02 1.3286757e-01 1.4583051e-02 -7.2157758e-02 -8.0823297e-02 -4.7204748e-02 -1.6851471e-01 -1.1479612e-01 9.9828117e-04 3.5991591e-03 -1.8768039e-01 -2.7149768e-02 9.5309370e-02 -8.4338568e-02 + -4.7672903e-02 2.6880619e-03 1.2228740e-02 1.9249030e-01 3.1812605e-02 1.2980915e-02 -5.7416134e-02 -1.4170397e-02 -1.0415185e-02 8.6310205e-02 -1.2569378e-01 4.3174278e-02 1.1372074e-01 2.7566788e-05 -1.9127792e-01 3.9307424e-01 2.2678275e-01 1.6135669e-01 -1.1936850e-01 -1.0170900e-01 -1.7195476e-01 1.5577657e-02 1.4504686e-01 3.2004079e-02 -2.1109135e-01 2.8757494e-01 9.8161566e-02 -3.7664620e-02 1.0563046e-01 -2.4539577e-01 3.4355320e-02 3.6386278e-01 -1.1193353e-01 1.1023961e-01 -1.8951462e-01 + -1.0673620e-01 4.1807048e-03 5.0360933e-02 -3.2771050e-02 -7.0739201e-02 -7.1333572e-02 -7.2659147e-02 2.5012000e-02 -9.7893590e-02 4.7705059e-03 3.3419375e-02 2.9004374e-02 3.7924927e-02 2.7595745e-02 -4.4888514e-02 1.2332460e-01 -7.5126579e-02 3.2138252e-02 2.3612972e-02 -1.8280904e-02 -2.8668716e-03 1.9760717e-02 6.9575757e-02 -1.3749694e-02 -2.3532209e-02 -7.8609970e-03 -6.6523133e-02 -1.5880900e-01 -6.3942042e-02 4.7742017e-02 4.3176281e-03 -8.0751509e-02 9.4806295e-03 4.7795141e-02 -1.6625714e-02 + -8.6153398e-02 7.0150485e-03 -1.2285267e-02 -7.7222259e-02 -4.3260687e-02 -3.0409176e-02 -1.8180934e-01 7.5982472e-02 -1.2322112e-01 1.8762417e-02 -2.2680270e-02 -4.1403512e-02 1.3343308e-01 -7.0723003e-02 -2.6526502e-02 1.2716295e-01 -5.6282136e-02 -4.6437116e-02 -2.0515624e-02 -5.8850566e-03 3.0341565e-02 2.2878497e-02 4.4144546e-02 7.9228457e-02 3.0750199e-02 6.2950790e-02 -5.0644675e-02 -1.1986885e-01 5.9333977e-03 -7.2060038e-03 -1.7172649e-02 -1.1510276e-01 5.5985908e-02 3.0172324e-02 5.6211882e-02 + 1.7074334e-01 3.9829540e-02 1.7910514e-01 6.5102592e-03 -1.5615130e-01 -9.4004965e-02 -1.9501848e-02 1.0274554e-01 -1.4376085e-01 6.1241173e-02 -8.0736513e-02 3.3154154e-02 -3.8016648e-01 1.5151128e-01 -9.8850909e-02 -9.0782401e-02 -8.5562315e-03 -9.5234295e-02 5.3897315e-03 -1.0907700e-01 -1.8742132e-01 1.5982507e-01 -1.5146616e-01 6.5796991e-02 4.8998864e-02 -3.4136617e-01 6.8455032e-02 -3.1328021e-01 -1.7358675e-01 3.6484112e-01 -6.8310386e-02 -1.6415429e-01 -1.1092283e-01 -1.6358617e-01 1.6574466e-01 + -3.9130789e-02 2.6187532e-03 2.8412120e-02 5.4693636e-02 -8.1149497e-03 -3.5787095e-02 -6.5630697e-02 3.9238194e-02 -7.6169565e-02 6.3528050e-03 1.0007899e-02 -1.5541262e-04 1.0943677e-02 1.9215192e-02 -3.8604769e-02 3.6387363e-02 -4.8025238e-02 6.4146333e-02 -3.6137035e-03 9.8023840e-04 -7.9012488e-02 -3.8516045e-02 6.7257014e-02 -3.9028701e-03 -7.2932358e-03 4.6039996e-02 -2.7035295e-02 -7.2520419e-02 -3.0021443e-02 6.7831152e-03 -3.8062032e-04 -5.0850017e-02 -1.8050781e-02 4.0966324e-02 -3.0809931e-02 + 2.4778699e-02 -2.9558001e-02 4.0689606e-03 -5.6523784e-02 7.2769587e-03 -1.6506153e-02 2.8275580e-02 -2.5840216e-02 -3.1603347e-02 -5.3542320e-02 4.6252390e-02 -1.8299653e-02 -4.8253874e-02 4.1082125e-02 1.1557535e-02 -3.7822120e-02 -1.4046019e-03 1.1433684e-02 1.9595940e-02 -5.4089585e-02 -1.4244261e-02 -3.1932721e-03 -4.2580962e-02 -2.6722898e-02 6.8044904e-03 1.0880737e-02 -3.7250760e-02 3.3556898e-02 5.3052798e-02 -1.0287647e-02 3.3265760e-02 4.5000492e-02 6.7903561e-03 -1.8082758e-02 -8.0470326e-03 + -1.1380362e-01 4.2955361e-02 5.6873618e-02 3.0552606e-02 -3.6322625e-02 -7.1162248e-02 -1.5080718e-01 6.5579006e-02 -1.1702008e-01 4.3221803e-02 -1.6013017e-03 4.4804403e-02 8.1032476e-02 -2.7815709e-02 -1.0277489e-01 1.3534121e-01 -7.4021511e-02 5.0866107e-02 2.0323714e-03 -1.6016139e-02 -5.1154780e-02 2.6557959e-02 1.2428302e-01 1.8827195e-02 -6.0843861e-03 4.8885306e-02 -6.6130847e-02 -1.8157726e-01 -9.9225851e-02 3.2214514e-03 -2.6864514e-02 -1.1258600e-01 -1.8077141e-02 7.7748317e-02 -1.7424622e-02 + -1.1206749e-01 1.0527805e-02 -1.3535061e-02 7.9231666e-03 -8.0051062e-02 -1.8574371e-02 -2.1728355e-01 1.0844187e-01 -1.3118439e-01 4.7015446e-02 -7.8466966e-02 -3.9844547e-02 1.2881208e-01 -7.7714984e-02 -3.4614122e-02 1.4527426e-01 -6.9169165e-02 3.3388267e-03 -1.2537596e-03 2.8130036e-02 -1.9214555e-02 7.6813884e-03 5.6427371e-02 4.5222488e-02 1.7327968e-02 6.2946388e-02 -3.4687227e-02 -1.2494433e-01 -2.3736047e-02 -8.6019293e-03 -1.0462393e-02 -1.2643258e-01 -1.0684510e-02 5.5267610e-02 2.8235103e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_G_3.txt new file mode 100644 index 00000000..ffa71f85 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_G_3.txt @@ -0,0 +1,23 @@ + 7.3541158e-02 8.9024706e-02 1.7304234e-01 -1.1944091e-01 -4.3878928e-02 -1.5026814e-01 -7.1031294e-02 -5.5425570e-02 1.5453027e-01 3.5370126e-02 -3.4019706e-01 1.4820195e-01 2.4310856e-01 1.3796595e-01 -4.6797169e-02 4.6357505e-02 1.0486533e-01 1.5283272e-02 -2.4504950e-01 3.8075225e-02 1.9539887e-02 9.5625436e-02 -1.7631073e-01 1.6497333e-01 -3.5253925e-02 -1.0624454e-01 -1.3517502e-01 1.5374946e-01 -1.7154810e-01 -1.3983359e-01 2.4115963e-01 -1.0981802e-01 1.9556993e-01 2.3158211e-01 1.2905029e-01 -2.4523102e-01 -2.0656571e-01 + -3.1346861e-02 -1.8672754e-02 -2.3778395e-02 3.0137698e-02 -2.7932014e-02 -1.9039235e-02 1.5566115e-02 8.2819430e-02 -1.1328420e-01 3.2115839e-02 4.0877223e-02 -7.4733220e-02 -1.0444408e-01 -1.0744811e-01 -1.3716442e-01 1.0898266e-01 2.7774098e-02 1.2728479e-02 -2.0031451e-02 1.1509333e-01 8.8369119e-03 8.0617691e-02 1.2155780e-01 -2.2166167e-02 1.0553063e-01 6.9983333e-02 2.0994939e-02 -4.2917654e-02 -3.4019445e-02 9.6289258e-04 -1.5769432e-01 7.1468166e-02 9.4132573e-02 -3.2608954e-02 1.5321362e-01 1.0657974e-01 -4.3321315e-02 + 1.0368911e-01 -3.2450564e-02 -2.1249053e-01 4.4322629e-02 -1.7208795e-01 -6.5194090e-02 1.9733338e-01 1.7831423e-01 -1.0674081e-01 9.9580376e-02 1.5113822e-01 -2.6003375e-03 -6.9265191e-02 7.5216952e-02 -1.4531814e-01 -9.7584985e-02 -1.6900114e-01 -6.3068180e-02 -1.4765360e-01 -1.7541397e-01 2.2009514e-01 -5.9138964e-03 1.9110880e-01 1.3667968e-01 1.3878194e-02 2.7933536e-01 -1.0446658e-01 -1.4062758e-02 -1.4960124e-01 -8.7599895e-02 -4.9197991e-02 -3.4666015e-02 1.6220185e-01 -1.5549133e-02 1.5493560e-01 4.3664146e-02 4.4865223e-02 + 2.5032712e-01 -3.8137292e-01 3.0475808e-01 -4.7314585e-02 3.7758668e-01 -4.1012948e-01 -7.1362184e-01 -2.6415049e-01 3.2768039e-01 1.8569645e-01 -6.4576420e-01 2.0623154e-01 -2.9519531e-01 2.2163576e-01 -1.9123432e-02 3.8058741e-01 3.0130612e-01 9.3548256e-01 -3.3581657e-01 -8.2624036e-01 -2.2687855e-01 -1.6113196e+00 -8.2909333e-01 1.1010684e-01 -6.8624044e-01 -4.7261228e-01 -7.0135902e-01 -7.0409485e-02 -3.8968957e-01 -4.8793754e-01 1.7702231e-01 3.7173682e-02 -1.2441645e+00 3.6106619e-01 2.3845285e-01 -7.4593392e-01 -3.9043653e-01 + 1.8174194e-01 -2.0489018e-01 4.1546203e-02 1.0245589e-01 1.6633311e-01 -6.9741071e-02 -1.4448847e-01 1.1607053e-01 2.5470021e-01 -7.6007257e-02 -1.4521482e-01 -1.2371320e-01 -2.0340788e-01 1.4531369e-01 -3.3505496e-01 2.2354712e-01 5.3618009e-02 -7.0621757e-02 -1.2992007e-02 -2.5191558e-01 4.1662610e-02 -2.0980471e-01 7.3718471e-03 2.9655451e-01 -6.4975719e-02 2.7630425e-02 1.9070900e-01 -2.2989747e-01 2.1705332e-01 -1.2787141e-01 -5.7841712e-02 -5.6884004e-02 -2.4590137e-01 -7.4221745e-02 8.3010063e-02 -9.0084687e-02 -2.1578938e-01 + -7.1288215e-02 -1.9921754e-02 1.3689624e-01 -1.0102480e-01 8.8361513e-02 -7.5061841e-03 -1.4929537e-01 -1.2042266e-01 4.2054637e-01 -1.4321920e-01 -1.5712663e-01 3.3966634e-02 2.5498809e-01 8.1687890e-02 7.2487403e-02 -1.2464785e-02 1.5365633e-01 1.1654961e-01 -1.3566192e-01 -1.2055256e-01 -2.0457263e-02 6.1220541e-03 -4.1603149e-01 -5.2876578e-02 1.1600932e-01 -1.4543956e-01 -9.7483343e-02 2.5939762e-02 -5.3126694e-02 4.8423574e-03 7.7640527e-02 -3.3536699e-02 -4.5334721e-02 9.1297465e-02 -1.2421202e-01 -9.2276681e-02 -3.6410636e-02 + -8.7131278e-02 1.1657670e-02 -5.9824835e-02 4.9563909e-02 8.4042435e-02 -4.6983678e-02 -7.9272235e-02 -9.2547913e-02 5.6675810e-02 -3.4463068e-02 6.2668576e-02 -1.5370947e-01 9.0501492e-02 -1.0632477e-01 -8.1734573e-02 -4.1465458e-02 9.5295195e-02 -1.6050826e-01 -5.3090740e-03 7.2484343e-02 8.4329261e-04 -3.2354834e-02 1.5724853e-02 8.0128980e-02 -3.7960891e-02 8.9635811e-02 1.3347752e-02 1.0441881e-02 -6.6766924e-03 -2.1266649e-03 -1.1245191e-01 -2.2686090e-02 4.4516516e-02 -3.2891483e-02 2.9268881e-01 1.4518013e-01 -1.1402635e-01 + 1.1316140e-01 -2.0169816e-01 -2.8817175e-02 1.2267750e-02 -1.2216907e-01 6.7625133e-02 2.5780588e-01 6.3363748e-02 -2.6032024e-01 2.3748087e-01 3.0945250e-02 1.2532238e-01 -3.1572618e-01 1.7186604e-01 -1.7874003e-01 2.4080173e-02 -4.2092664e-01 9.7693987e-02 3.9574667e-01 -2.1454445e-01 4.2594944e-01 7.4247275e-02 2.7953572e-01 -3.2259255e-01 -9.1830485e-02 2.5483506e-01 -1.7061426e-01 -8.7408037e-03 9.0924752e-02 1.2391343e-01 1.5724424e-04 1.1269001e-01 4.1378963e-02 7.6591624e-02 2.2054713e-01 1.9591288e-01 1.0531280e-01 + -8.7448302e-03 -1.5529367e-02 -1.9404121e-02 -8.5876990e-03 8.4741417e-03 9.7967523e-03 -1.1285577e-02 3.2432989e-02 -4.5933257e-02 2.3893799e-02 -6.5883687e-02 3.8202415e-02 5.9267722e-02 -1.2654707e-02 -4.1690448e-02 1.0900098e-02 2.0539790e-02 5.4786923e-02 -1.9688121e-02 -1.6236710e-02 -1.9341884e-02 -5.1454032e-03 -1.4951260e-02 2.7770294e-02 1.0497778e-02 4.7456147e-03 -1.9790884e-02 4.5197891e-03 6.6768921e-04 -2.7300477e-02 -2.2428256e-02 -8.6472635e-03 9.3446826e-02 -2.4512171e-02 4.2902924e-02 -1.0139625e-02 2.0248951e-02 + 4.3237630e-02 2.7573565e-02 -1.9086015e-02 -3.6919966e-02 1.6137877e-02 -1.3714419e-02 -2.6292007e-02 1.6316785e-02 -1.9529296e-02 3.4673195e-02 -4.3889504e-02 8.0768510e-02 6.6268347e-02 8.7091709e-02 1.9923844e-02 -3.3092740e-02 1.1170702e-01 1.0656802e-01 -3.4039401e-03 -1.0862867e-01 -1.2362926e-02 -3.1710393e-02 -2.0004399e-01 7.4197943e-02 1.2744246e-02 -1.3397510e-01 4.3695379e-02 9.8832636e-03 7.4818277e-02 -1.1531544e-01 -4.0928560e-02 3.1607909e-02 -7.5704066e-03 3.2818688e-02 6.4054699e-02 -2.5900231e-02 -3.6039851e-03 + -1.1449287e-01 -8.2715456e-02 -1.1770907e-02 2.6862254e-02 8.4722411e-02 -1.4323417e-01 -4.9880689e-02 -1.3712013e-01 3.2062966e-02 9.1217029e-02 4.5989184e-02 -2.7718666e-01 1.0937925e-01 -4.7990816e-01 -8.2552395e-02 -1.1782011e-02 -2.3911295e-01 -1.3148806e-01 -2.2138363e-01 2.7232160e-01 -5.7844577e-02 -4.0034839e-01 3.0195726e-01 -1.8655423e-01 -5.3814451e-02 2.8833959e-01 1.1802596e-02 8.7637216e-02 -1.7574393e-01 -3.3198000e-02 -1.2547654e-01 -2.8026248e-01 6.9225566e-01 6.6850780e-02 -3.0693225e-01 4.0884747e-01 -1.2414146e-02 + 3.6165201e-02 2.3457419e-01 1.3013666e-01 -1.2879502e-01 -8.9757403e-02 -1.6640042e-01 -2.7010172e-02 -9.0173072e-02 -9.3372505e-02 5.7890770e-03 -2.4181686e-01 1.3989232e-01 3.8089578e-01 9.1434072e-02 -7.4609146e-02 1.1886762e-01 6.4857616e-02 -1.7309044e-01 -1.4707132e-01 -5.3775403e-02 2.5838722e-01 -1.9703228e-01 8.6068831e-02 2.4961574e-01 -5.3454198e-02 -8.7457592e-02 -7.6286834e-02 2.9495450e-01 -1.5883471e-01 -1.1931573e-01 1.5801687e-01 -1.6661660e-01 1.4172067e-01 2.4534201e-01 1.3331428e-01 -4.2624970e-02 -2.4307275e-01 + 8.6199049e-03 1.3032973e-02 1.8130690e-01 -6.0311320e-02 -3.6012895e-02 4.0638000e-02 5.6782657e-04 3.8536134e-02 1.2889180e-01 -1.0263559e-02 -1.6188391e-01 1.2893209e-01 1.4028104e-01 3.8591097e-02 8.1865216e-02 1.3450014e-02 -3.9031625e-02 9.8174082e-02 2.8409608e-02 9.6963209e-02 -5.6261953e-02 7.9789061e-03 -6.2530367e-02 -1.2946543e-01 2.0708490e-02 -1.0540856e-01 3.3469915e-02 8.5337861e-03 9.1512152e-02 8.3980289e-02 1.8114704e-01 6.1926499e-03 -4.4166748e-03 4.0552095e-02 -3.5210965e-01 -1.5302798e-01 1.1866178e-01 + 3.2930809e-01 -1.3834700e-01 1.8491664e-01 -2.1590348e-02 -2.5401585e-01 -1.7152264e-01 1.9122770e-01 2.5708217e-01 6.0816154e-01 -9.0989774e-02 6.5659211e-02 1.8522837e-01 -5.9585416e-01 6.1209975e-01 -7.1355521e-02 -7.2355468e-01 -4.2640975e-01 -2.9058297e-01 -6.5912844e-02 -1.1762937e+00 3.2732596e-01 -4.1261745e-01 -4.2327967e-01 -3.8397175e-01 -2.1492777e-02 1.5016725e-01 9.2123323e-02 -1.2543626e-01 -9.0824461e-02 6.5637159e-03 3.8103407e-01 -4.3893857e-02 -2.5666095e-01 2.8324248e-01 -2.7115684e-01 4.5657451e-02 -1.5491974e-01 + -1.2622831e-01 3.0837132e-01 -1.6933693e-01 -1.7830553e-02 -1.2784483e-01 -1.3523378e-01 1.4500791e-01 1.8194061e-02 9.0203592e-02 2.3904759e-02 1.0297014e-01 -3.9152880e-03 2.7672854e-01 -1.6568859e-01 -1.8900368e-01 -1.3661452e-01 9.3843816e-02 -3.0372827e-01 -1.1484577e-01 1.2527750e-01 4.6833069e-01 -2.1555754e-03 -1.7892878e-01 3.3355221e-01 9.4997800e-02 1.4374511e-01 -4.2324438e-02 3.4015439e-01 -2.4666406e-01 -9.9261377e-03 -1.2596803e-01 -1.8426798e-01 -1.6653168e-04 1.0628005e-01 2.3834783e-02 1.4531164e-02 -2.6292143e-01 + 5.6740312e-03 -1.1454792e-01 -2.6292548e-02 1.6646995e-01 3.2214511e-01 2.6888832e-01 -6.7930034e-02 -1.6202193e-01 -8.8738524e-02 -2.4354653e-01 1.8083715e-01 -2.9138620e-01 1.7374321e-01 -6.1820568e-01 6.0860952e-02 4.4605537e-01 2.2125474e-01 1.5995732e-01 1.7452627e-01 3.9859420e-01 -1.7195927e-01 5.1741072e-01 5.3149063e-01 -1.1528764e-01 1.3401348e-01 4.9172611e-02 1.2098380e-01 -2.6948903e-01 2.7001583e-01 3.0646316e-01 -2.2685345e-01 2.2153714e-01 2.7119282e-02 -4.4377504e-01 3.3003511e-01 7.4979261e-02 1.4228153e-01 + -1.7850150e-03 6.6137553e-02 -1.6119127e-01 4.6447826e-02 -1.1003983e-01 1.5320629e-01 1.0744154e-01 1.3853342e-01 1.2709132e-01 -1.8847588e-01 1.6744918e-01 -3.2196205e-03 -1.3521059e-01 8.6599083e-02 1.3373907e-01 -1.5281100e-01 1.2877332e-01 -6.3779864e-02 -4.2834997e-02 -1.0975654e-01 -3.8967770e-02 -1.2954523e-02 -1.0518561e-01 1.3851299e-01 1.6343490e-01 -4.5830778e-02 6.5480553e-02 -6.1221731e-02 4.9331435e-03 1.3127773e-02 -5.0081607e-02 1.1784163e-01 -4.3078192e-01 -4.8179039e-02 2.7662225e-02 -1.3056445e-01 2.0188205e-01 + 1.1531933e-01 -1.8175166e-01 8.8052276e-02 -2.8074169e-02 -6.3069359e-02 2.7168115e-01 -3.1325738e-03 1.1155309e-01 1.5870872e-01 -6.1629838e-02 -1.2914570e-01 1.8577733e-01 1.1231344e-02 1.7893699e-01 4.6931312e-02 1.0538246e-01 -2.3268852e-02 1.2458938e-02 3.1845806e-01 -1.8508473e-01 1.2297939e-02 -2.6734003e-01 1.5144385e-01 -3.2817251e-01 5.0393287e-02 1.9586120e-02 -8.3689358e-02 -1.2406524e-01 2.4754672e-01 1.5634325e-01 3.9466177e-02 1.4172705e-01 -6.6321223e-02 -5.2485463e-02 9.5335445e-02 -1.5987363e-02 7.3440011e-02 + 1.3507488e-01 -6.4667238e-02 -1.3084354e-01 2.2434255e-01 -5.2036922e-03 4.0118496e-02 9.6028051e-02 9.6921989e-02 -3.0067991e-01 2.6788727e-01 2.5754051e-01 -1.0551679e-01 -2.5860547e-01 -2.0845826e-01 -2.3676556e-01 4.8491462e-01 3.5754696e-02 -3.2903276e-01 3.3081920e-01 4.7091783e-01 -2.0186057e-01 -3.2765002e-02 -1.4909956e-01 -1.9088850e-02 -2.0012856e-01 -6.3891660e-02 2.9320530e-01 -2.3606846e-01 3.9939513e-01 -2.0780670e-02 -2.0948286e-01 5.4511544e-02 -2.1035622e-01 -3.0531899e-01 -4.4272128e-01 -3.1580937e-01 3.2600581e-02 + -1.4932813e-01 2.7805721e-02 -2.0955065e-01 6.3426673e-02 1.5180951e-02 8.3228355e-02 -6.6800443e-02 9.1103097e-02 2.5989107e-01 -7.9674114e-02 3.5879945e-02 -1.0258532e-01 9.8219539e-02 -1.7116587e-01 -2.0029539e-01 5.5573373e-02 1.8918861e-01 1.2141250e-03 -1.7677758e-01 7.8997243e-02 -8.5680739e-02 -1.5626205e-01 1.6661429e-02 2.0868801e-01 1.3388222e-01 1.9283640e-01 -1.3535082e-01 -2.8822305e-02 -4.5681697e-02 -5.1788725e-02 -2.7972497e-01 -3.6390393e-02 1.5821456e-01 -7.0026396e-02 3.6755364e-01 1.1538915e-02 1.1557149e-03 + -5.5061164e-02 -1.1313295e-01 8.4106864e-02 1.1409324e-01 3.9429606e-02 1.3355931e-01 -9.8270349e-02 -4.9559469e-02 1.4030461e-01 -5.7429768e-02 9.3358400e-02 -1.3586291e-01 -3.3802374e-02 -7.7770032e-02 8.6856435e-02 6.4986114e-02 -4.9368253e-02 -9.9910671e-02 1.0038518e-01 2.1430061e-01 -1.9567348e-01 -3.3260275e-02 1.5271492e-01 -1.5794043e-01 -4.5748981e-02 -6.5037054e-02 7.8158396e-02 -1.2537205e-01 1.8420809e-01 1.0649115e-01 -2.1490166e-02 5.8394943e-02 -9.0264316e-02 -8.2001347e-02 -1.0352439e-01 9.7047516e-02 2.1276438e-02 + -1.1553978e-01 -2.2087793e-02 6.4435102e-02 -7.9599955e-02 3.4269231e-02 2.1892140e-02 -3.2084743e-02 1.0366382e-02 3.7971973e-02 3.6435851e-02 -2.5549494e-01 1.3931396e-01 1.3485227e-01 4.4232933e-02 -3.2167156e-02 -1.3580199e-01 -1.1775839e-02 1.0452778e-01 -1.6545416e-02 -2.9774165e-01 1.4762212e-01 -3.2844065e-01 9.7189109e-02 9.5812507e-02 -7.6422758e-02 -3.3742506e-02 -1.7999823e-01 1.3456139e-01 -4.1883308e-02 -9.8617734e-02 -4.3895545e-02 -1.3088422e-01 3.1664528e-01 4.9221182e-02 3.0431646e-01 1.8272759e-01 -3.3355762e-02 + -9.6710609e-02 1.0557564e-01 -2.3042165e-01 1.4789214e-01 -1.3862999e-01 -5.1326439e-02 1.2954384e-01 5.2651321e-02 -1.3431147e-01 1.8723111e-01 1.9639790e-01 5.1678373e-02 1.3489000e-01 -2.7961713e-01 -3.0042278e-01 1.1975240e-01 -9.6760708e-02 -8.2566855e-02 -4.7995784e-02 1.0790240e-01 2.9380819e-01 -2.9405383e-01 -1.1055071e-01 3.9067062e-01 1.0656063e-01 2.1015762e-01 -7.5358676e-02 1.8306932e-01 -1.2602335e-01 -1.8354711e-01 -3.3088290e-01 -5.7289834e-02 -4.6209669e-01 -6.0277571e-03 -3.5027641e-03 -3.1767969e-02 -1.6211292e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_G_4.txt new file mode 100644 index 00000000..9b9d6d37 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_G_4.txt @@ -0,0 +1,18 @@ + 1.0776617e-01 -2.2868626e-02 1.5420728e-01 -1.0703202e-01 3.3329638e-01 1.5085512e-01 -1.7746051e-01 -7.7483424e-02 5.4213384e-02 6.2948793e-02 -4.1839472e-02 -2.7767819e-01 -6.5286580e-02 -2.4144506e-02 -1.7509303e-01 2.2555205e-01 9.0573815e-02 8.6547526e-02 -3.0938659e-01 -4.8122615e-02 -4.9469259e-02 2.4672998e-01 -4.4162655e-01 -5.8369003e-02 -3.3047553e-01 -1.5072364e-01 1.1068901e-01 -3.6619281e-02 2.7953758e-01 -3.9754660e-02 -6.3288123e-02 1.2387892e-02 -2.0997744e-01 -2.8981447e-02 9.5279993e-02 -6.8466811e-02 -2.4556263e-02 4.7445921e-02 2.4774396e-01 5.5963507e-02 + -8.4662285e-02 1.3835433e-01 -6.6078202e-02 1.1091712e-01 -4.5293014e-03 -5.4319769e-03 9.6060408e-02 -1.3191715e-01 8.5886604e-02 -1.7083396e-01 -8.0795658e-02 5.5828181e-02 1.3027063e-01 1.0202846e-02 8.4816989e-02 -1.6509144e-03 2.7676285e-02 9.3072538e-02 -2.3130140e-02 -1.0772915e-01 -6.0389810e-02 6.0153776e-02 6.4232075e-02 9.9731280e-02 5.5874952e-02 -1.0598664e-01 1.4404333e-02 -6.9907706e-02 5.7475984e-02 1.5282890e-01 6.6893953e-03 -1.1028789e-01 -1.0334942e-01 -9.6987365e-02 -7.5144482e-02 1.2473709e-01 2.9851872e-02 7.7435776e-02 -7.4887540e-02 2.1714893e-01 + -1.0646180e-01 1.1217848e-01 3.2985729e-02 -5.1270908e-02 -2.4656851e-02 7.4008094e-02 -1.1680240e-01 6.2484955e-02 1.3594359e-01 4.2741818e-02 -1.3603557e-01 6.3293574e-02 -3.5673780e-02 5.2675629e-02 6.4856759e-02 1.3131903e-01 -4.1389747e-02 -2.2518752e-02 1.7906388e-02 -3.0899048e-02 -3.9294641e-02 1.1681322e-02 -3.3999982e-02 6.5159706e-02 -1.7444895e-02 -1.1418169e-01 -4.5745841e-02 7.4023789e-02 -1.1686761e-01 8.2567033e-02 -1.4513357e-02 -5.7832148e-02 -1.5507529e-01 -5.6612358e-02 1.0423825e-01 7.0018056e-02 5.4326318e-02 3.6020533e-02 -1.6921406e-02 1.1375322e-01 + 2.7502415e-02 7.3165820e-03 1.1204961e-01 -5.7887836e-02 6.9143700e-02 9.9225766e-03 -9.1128741e-02 -1.8639765e-02 3.5686088e-02 5.7514884e-02 3.6122868e-02 5.1104056e-03 -5.8277278e-02 -4.0593092e-02 -7.4994133e-02 2.7080876e-02 4.3402013e-02 -1.3835685e-01 -7.8287114e-02 -9.4894019e-02 -3.6443358e-02 -6.0061756e-02 1.9191094e-02 1.6632970e-02 -5.9672447e-02 -1.3810054e-01 -8.2294524e-02 6.9503211e-02 -6.9221928e-02 3.6014266e-02 -8.0910897e-02 3.9670400e-02 -1.6807173e-02 4.2100984e-02 1.2836614e-01 -2.8795282e-02 7.6759444e-02 1.4077934e-02 1.0436420e-01 5.6697933e-02 + -5.8107597e-02 3.5671983e-02 -1.8357636e-02 -1.0174533e-01 1.0024800e-02 6.8761501e-02 5.7927147e-02 1.2365545e-01 7.9889184e-02 -1.9766636e-01 -2.2383899e-01 3.0359199e-02 -1.1581370e-01 5.1140897e-02 1.9877076e-01 1.2935596e-01 -1.9029446e-02 9.4970004e-02 -1.7935850e-02 6.7250838e-02 -5.7826602e-02 8.9693115e-02 -1.7072655e-02 3.6978406e-03 -1.3177835e-01 -1.5629901e-03 2.5163859e-02 9.1992046e-02 1.0935474e-03 2.1193966e-02 -3.0924037e-02 2.1556458e-02 -1.0551563e-01 -8.6232025e-02 7.9909575e-02 -7.2398318e-02 1.2422103e-01 5.0906891e-02 -1.1491274e-02 7.5505059e-02 + 9.8500056e-03 -2.1389512e-02 5.4480988e-03 -1.5714953e-02 -1.6322540e-02 -3.8986167e-03 -5.8325158e-04 2.3258380e-02 -2.1351299e-02 3.3194896e-02 4.1468140e-02 -2.0182520e-03 -2.3907468e-02 -1.2841904e-02 8.7871450e-03 -2.0005499e-02 -1.2333607e-02 -9.5144341e-03 2.4122250e-02 2.7824450e-02 3.6164260e-02 -2.8941005e-02 1.2933085e-02 -1.5348716e-02 3.2337857e-02 3.0007946e-02 -2.2556389e-02 3.3136858e-02 3.7942759e-03 2.4179608e-03 7.7319005e-03 3.0700883e-02 4.8585259e-02 4.7787002e-04 5.2336863e-03 -3.9393724e-03 -4.8417471e-03 -6.5763328e-03 6.0144998e-03 -6.1299102e-02 + -6.1472652e-02 -6.8178304e-03 -1.2473953e-01 2.8788909e-02 -9.9935487e-02 2.9605446e-03 1.2676321e-01 -3.8979422e-02 -3.0298387e-02 -1.2662952e-01 1.8164594e-02 7.8611233e-02 -2.2007455e-02 8.0777503e-03 1.2339271e-01 -7.0502450e-02 2.8410436e-02 5.1154025e-02 -5.6396560e-03 5.8913545e-03 -2.9833134e-02 6.1737185e-02 1.5863833e-01 1.0088614e-01 8.3627592e-02 1.1768969e-01 2.6500760e-02 1.0450541e-02 1.3924781e-01 1.4746524e-02 3.8649287e-02 6.9874198e-02 2.6095970e-02 -2.5283164e-02 -2.2270998e-02 9.7139551e-03 8.8724568e-02 4.1652323e-02 -8.2353962e-03 4.8916296e-02 + 1.0446303e-01 -1.1523138e-01 -2.0097292e-02 -1.8712092e-02 -5.3835070e-03 -7.3294597e-02 2.9598277e-03 -6.1172705e-02 -2.6313580e-01 5.7007914e-02 1.3760172e-01 -8.3880173e-02 5.8038975e-02 6.5371997e-02 6.9301935e-03 -1.2024483e-01 6.2932444e-02 9.3062121e-02 1.7032556e-03 9.1773996e-02 -5.7982926e-02 3.1581910e-02 1.1069773e-02 6.4984037e-04 2.6926151e-02 1.1460969e-01 6.1693684e-02 -9.5320060e-02 6.8856384e-02 -3.5310632e-02 2.8589650e-03 5.2537792e-02 7.8399463e-02 -2.8529958e-02 -1.3978915e-01 -5.8353514e-02 -9.1617685e-03 -5.9190399e-02 3.0180163e-02 -1.2523794e-01 + -8.9615618e-02 1.2013259e-01 6.1149062e-02 9.5680726e-02 -1.1959054e-01 1.0796087e-01 -1.0221888e-01 2.0834435e-01 3.8010193e-01 2.7165108e-01 -8.3723745e-02 4.4904853e-02 -7.4706786e-02 -1.0398279e-03 -1.1486786e-01 5.1863302e-02 -1.6885701e-01 -1.8625815e-01 1.8263615e-01 -2.8377558e-03 2.0768621e-01 -1.9811624e-01 -1.0038437e-01 -1.6578037e-01 1.4059405e-01 -1.0510832e-01 -2.1626807e-02 -3.6959315e-02 -2.6589570e-01 2.2202955e-03 6.7412350e-02 -1.5094829e-01 -1.7710290e-01 1.0677355e-01 1.3709765e-01 2.3786021e-01 -1.2758430e-01 3.8844584e-02 -1.4263487e-01 7.3334078e-02 + -2.6866430e-02 4.2536637e-02 4.5935261e-02 -2.4026745e-02 5.2999559e-02 3.7494049e-02 -4.3718002e-02 9.9178706e-03 1.1628394e-01 -1.7376485e-02 -6.4280783e-02 -1.2278735e-03 -1.7345473e-02 -4.6689648e-02 -3.5595176e-02 9.9961095e-02 -7.4706074e-03 -2.5174536e-02 -6.5751921e-02 -3.6927958e-02 1.1975661e-02 5.1080252e-02 -5.0852522e-02 -1.3113190e-02 -6.8575273e-02 -6.0261328e-02 -1.7399648e-02 3.6494907e-02 1.6250723e-02 -9.8033841e-03 -1.3917985e-03 -2.3637156e-02 -2.1481428e-02 4.2027208e-02 7.5118366e-02 1.2317809e-02 -1.0465164e-02 1.8066299e-02 1.3054682e-02 5.9714958e-02 + 1.1921467e-01 -1.0039178e-01 -1.7265422e-02 -2.9763431e-01 1.5770465e-01 -6.1649497e-02 -3.1116377e-01 -9.4827009e-02 -2.4943568e-01 -1.9358857e-01 -5.0282961e-02 -1.8465877e-01 7.0964867e-02 -2.7433136e-01 3.4855672e-01 1.2093617e-01 3.8460651e-02 1.6316341e-01 -3.0118647e-01 6.9357086e-02 2.7242425e-02 4.9640900e-01 7.2848001e-02 4.4129895e-02 -2.5073848e-01 -1.3625025e-02 -6.4514487e-02 7.4118548e-02 3.6795232e-01 -4.7436313e-02 -4.0490349e-03 9.3980391e-02 1.8141482e-01 1.3281708e-01 1.1503557e-01 -2.9403495e-01 -1.4031838e-02 1.4077966e-02 4.2531490e-02 -1.5659945e-01 + 3.9645139e-03 1.5594278e-02 -3.4762900e-02 6.5377588e-02 -7.5561306e-02 -2.1919528e-02 5.8040602e-02 -6.3903053e-02 -7.4725297e-02 5.3231261e-02 9.9338362e-02 8.2962867e-02 -6.8476774e-03 -2.4709725e-02 -3.6002462e-02 -1.3686227e-01 -2.7753786e-02 9.7147594e-03 5.8818334e-02 -7.6863531e-02 2.3835972e-02 -1.6110371e-01 5.8738919e-02 -1.0784164e-03 9.1478391e-02 -1.1216514e-01 -7.0696353e-02 2.1987975e-02 2.4843871e-03 9.7295831e-02 8.9375143e-03 3.9518471e-03 -1.4862859e-02 -1.1435628e-02 -3.8649011e-02 3.8290313e-02 1.1252273e-02 3.3367248e-02 -7.6213847e-04 3.9568558e-02 + 4.9193234e-02 -2.8044431e-02 -6.7603401e-02 9.1119139e-02 -3.3257890e-02 -1.2535202e-01 1.0110322e-02 -1.8518754e-02 -1.7036747e-01 1.5666340e-02 7.8612417e-02 1.7781692e-02 1.1579019e-01 1.3422264e-01 4.5146890e-02 -8.5375544e-02 -3.1030387e-02 3.1459285e-03 1.7160246e-01 -1.1183090e-05 -1.1615155e-01 -1.7656767e-01 5.0536342e-02 -2.5092790e-04 1.1582250e-01 -3.9719580e-02 1.2976810e-02 -1.1786901e-02 -2.5494662e-01 3.8276193e-02 -5.7722344e-02 -9.2384123e-02 2.6979032e-02 -7.5471826e-02 -1.3938550e-01 -2.7701269e-02 5.3486549e-03 -9.1337767e-02 -9.5273424e-02 -1.1656055e-01 + -1.5396682e-01 1.7262335e-01 1.9244825e-03 3.8619397e-02 -7.1940911e-02 1.1841481e-01 6.5990884e-02 1.2901512e-01 2.1002903e-01 -7.3915612e-03 -7.9879067e-02 8.9352649e-02 -1.3490020e-01 -1.1358037e-01 3.1271904e-02 8.4668247e-02 -9.0609932e-02 -6.2381914e-02 -1.3834102e-02 8.8179754e-03 1.6795209e-01 2.1871333e-02 2.7817698e-02 2.2149855e-02 5.4697485e-02 5.1869520e-02 -1.1697099e-01 4.1076899e-02 1.5152258e-01 6.5916059e-02 7.7728298e-02 -2.2089703e-02 2.5321568e-02 4.8894226e-02 1.6524789e-01 5.6223647e-02 -2.1755313e-02 1.0125022e-01 -2.5242902e-02 2.9836224e-02 + 7.6748841e-03 2.0629126e-03 1.8552181e-01 -1.6908844e-01 -3.8809529e-01 -1.8593862e-01 -4.3903736e-01 -6.9668279e-02 -2.4141725e-01 3.1190786e-02 -2.1801405e-01 -2.6677535e-01 5.1930128e-01 7.5617462e-03 7.6369062e-02 -5.4301457e-02 -1.7348195e-01 2.5678295e-02 4.0859610e-01 5.7474349e-02 3.3363028e-01 -1.2401056e-01 4.0352929e-02 -1.7346869e-01 6.8335293e-02 -2.5748637e-02 1.0520631e-01 -1.3898462e-01 -5.3230196e-01 8.3149215e-02 1.5190695e-01 -1.9687639e-01 -9.6068823e-02 -1.5953083e-01 -1.1730587e-01 3.0819985e-01 -2.8479480e-01 2.1504161e-03 -1.8864984e-01 -1.1274653e-01 + -3.3926824e-02 -1.1069474e-01 -7.3979760e-02 1.6587328e-02 -1.8631017e-01 -5.7195585e-02 1.7156929e-01 1.0766582e-01 2.3167230e-01 -2.2039490e-01 -2.3709936e-02 1.2069871e-01 -2.4780455e-03 2.2592309e-02 6.0454116e-01 -1.0378692e-01 -9.1663115e-02 7.0257821e-04 3.1142219e-01 2.0075891e-01 2.0960865e-01 -7.1793741e-02 2.8336259e-01 5.6073047e-03 1.7744625e-01 8.4214281e-02 -1.4939270e-01 1.0263192e-01 -1.2873654e-01 -1.9154919e-01 -6.6456140e-02 5.2654556e-02 6.0142356e-02 -2.3167676e-02 -2.7004124e-01 1.6877395e-01 -1.3071836e-02 3.3852023e-03 -2.3530491e-01 -1.2518751e-01 + 2.7184337e-01 -6.8694146e-01 -1.3967398e-01 -1.0326677e-01 1.4966648e-01 3.0226578e-01 3.0020055e-01 4.4733692e-01 3.6334384e-01 2.2667561e-01 1.8694147e-01 3.1321474e-01 -9.4737864e-01 -1.6325946e-01 -1.2759832e-01 -1.7473251e-01 -1.0759987e-01 -1.4864485e-01 -3.1335315e-02 2.1334056e-01 1.9167780e-01 1.6037098e-01 -3.4328460e-01 -3.3497477e-01 -2.1479984e-01 1.2098380e-01 -1.4376419e-01 2.0353639e-01 3.0575866e-01 -1.0522130e+00 -8.6072479e-02 6.1028570e-01 -5.6501142e-03 9.2258072e-01 1.0382070e-01 -4.3793303e-01 -9.6909509e-02 -2.0001563e-01 3.6375774e-01 -1.7577500e-01 + 1.5956857e-01 -2.4463116e-01 1.7306202e-04 -9.4090233e-03 8.2621656e-02 -1.0774436e-01 1.9209645e-01 -1.7371779e-01 1.5446388e-01 -3.0183465e-01 7.9364314e-02 -1.1962887e-03 -1.3205875e-01 -1.2640793e-01 -3.8254235e-02 7.2335714e-02 6.7521065e-02 -1.4328221e-01 -7.9817645e-02 -5.5507212e-02 -1.8870882e-01 -3.7096692e-02 1.3896428e-01 3.1124334e-02 -2.1316153e-01 -2.7670939e-02 -1.4285641e-01 2.0516088e-01 -5.2420640e-02 -2.5898325e-01 -2.3843175e-01 2.5260381e-01 3.0693419e-01 6.4335143e-02 -3.1330519e-01 -1.5481439e-01 5.3024826e-02 -2.1060805e-01 9.2555957e-02 -3.4878914e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_LW1_G_5.txt new file mode 100644 index 00000000..78c724f8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW1_G_5.txt @@ -0,0 +1,16 @@ + -8.6342733e-02 -1.1323260e-01 3.6228377e-02 -1.0648084e-01 -8.0787356e-02 2.6402926e-02 -1.3420904e-01 -3.5264250e-02 -1.0962685e-01 6.0808520e-02 5.9769168e-02 -1.5987987e-01 -1.0074116e-01 -1.1346132e-01 8.2421835e-02 -6.0287034e-02 3.5587672e-02 2.0429287e-01 2.9758644e-02 2.5898842e-02 1.1837697e-01 1.8105257e-01 -8.6307804e-02 8.7986122e-02 5.8141192e-02 8.7152830e-03 -1.1533390e-01 -8.2907510e-02 -1.1355563e-03 1.4036094e-03 1.8987830e-01 6.6258905e-03 5.8444082e-01 -1.2218115e-01 -9.9130940e-02 1.1889643e-01 1.9781638e-02 1.7297861e-01 9.2807167e-02 1.8413142e-02 -1.7984992e-02 -2.9137233e-02 -3.6882523e-02 1.5810861e-02 -1.6870877e-02 1.2327439e-01 1.3129622e-02 7.7925908e-02 3.0674238e-02 + 5.4266056e-02 -2.5397601e-02 2.9175358e-02 2.2589115e-02 2.5005077e-02 1.5176017e-02 5.5934241e-02 -2.4443914e-03 9.9556391e-02 -4.7078904e-03 1.2551660e-02 4.9617130e-02 2.7871875e-02 2.8383968e-02 -9.0329097e-02 1.5812762e-02 4.9030998e-04 -7.4597331e-02 -9.2323035e-02 5.9454686e-02 -7.5735816e-02 -8.2212332e-02 -2.8030432e-02 -3.6342855e-02 -2.5079075e-03 -2.6691555e-02 6.6322205e-02 5.0204487e-02 -3.0674326e-02 -2.0422644e-02 -1.4549699e-02 -3.9826788e-02 -2.2026309e-01 9.1188148e-02 5.5680173e-02 -5.0958378e-02 1.5639771e-02 -8.1059862e-02 -2.8962749e-03 8.2677514e-03 -2.3016366e-03 -1.6477359e-02 1.0465872e-02 -6.9858509e-03 -5.5349438e-02 -4.8020112e-02 -3.4567393e-02 -9.2102917e-02 -5.6542513e-02 + -7.0813259e-02 -8.5001681e-03 -1.1807896e-02 -4.4396075e-02 -1.8783157e-01 -1.3162893e-01 7.3346698e-02 -9.6012398e-02 -3.7110276e-02 -8.7125950e-02 -1.9816986e-02 -3.0786485e-03 -1.0098863e-01 -1.0263310e-01 5.9430025e-02 1.2219759e-02 2.0887561e-02 3.7874527e-02 -1.6793328e-01 -9.8118643e-02 1.0785375e-01 -1.2028737e-02 8.3584555e-02 -4.7784371e-02 -3.2567240e-02 1.1677476e-01 1.7292847e-01 -3.8780109e-02 -3.0377424e-02 1.1884699e-01 -3.8618576e-02 2.2326727e-02 1.3914202e-01 1.1970922e-01 -1.6965606e-01 5.5921495e-02 -1.7165594e-01 -2.7627158e-02 -3.4571044e-02 1.0431953e-02 -3.2001518e-02 5.1139332e-02 9.3616724e-02 5.9261674e-02 -1.6587093e-01 1.0367023e-02 8.9950514e-02 1.9004388e-01 -8.7477515e-02 + -6.2247927e-02 6.5840148e-02 -5.8854132e-02 6.5991121e-02 -4.6101593e-02 2.2175815e-02 2.5908394e-03 6.4495289e-02 -2.3918541e-02 1.7963454e-02 -5.4544870e-02 1.7424688e-01 2.2286084e-02 2.3733594e-02 -2.0989702e-02 -4.2697114e-02 -1.8763793e-01 -9.0629688e-02 -1.4826905e-02 3.3460738e-04 -1.7884002e-02 3.3601281e-02 3.6413338e-02 2.1974883e-03 -3.2825810e-02 -7.0620208e-02 5.4779123e-02 -5.5950991e-02 4.0321706e-02 -3.5937913e-02 -5.5828551e-02 7.6511361e-02 4.0461855e-02 1.2045953e-01 1.5344637e-01 -9.6901502e-02 -2.4821958e-01 1.7507910e-02 -6.6598973e-02 -9.9163786e-03 -4.9163858e-02 -4.6903689e-02 -2.3577371e-02 -7.1627898e-02 -2.1335481e-02 2.6311915e-02 1.7700375e-02 2.9947230e-02 3.6044871e-02 + -1.4484471e-01 -1.4112461e-01 7.4881857e-02 -3.1399696e-02 -3.6002105e-01 -3.3306484e-01 -4.3300859e-02 -6.4305052e-02 -1.6992031e-01 -1.2809781e-02 -1.3832489e-01 -2.6986295e-02 1.4911552e-02 -9.6433966e-02 9.8032671e-03 -5.1126002e-02 -4.5293126e-02 6.9313453e-02 -1.4671333e-01 9.0456516e-02 5.2914499e-01 1.2549648e-01 7.1309265e-02 -2.3823386e-02 -1.5487749e-03 3.9459131e-02 -2.3651131e-01 4.7623917e-02 -1.3170501e-02 1.3653566e-01 -2.5976934e-02 1.9276218e-02 4.1727629e-02 4.1325072e-01 7.1024009e-02 -1.2075469e-01 -3.1397200e-01 -7.6723606e-03 -3.5343813e-03 2.7164894e-01 -9.5409081e-02 8.4348648e-02 -5.3529351e-02 9.1823495e-03 -4.8046172e-01 1.1621888e-01 1.4793411e-01 1.4086983e-01 -7.4887811e-02 + 1.6418094e-02 2.1284308e-02 1.5760519e-03 5.1702307e-02 1.1287322e-02 -2.2827193e-03 1.1959444e-01 6.3193805e-02 5.0223017e-02 -4.6708547e-02 3.2853294e-03 4.6231860e-02 8.2558624e-03 6.3417140e-02 -2.0454971e-03 1.5667942e-02 -3.6417225e-02 -5.4425824e-02 -1.9078674e-02 8.6602715e-03 1.7317727e-02 1.4142300e-02 -5.1878182e-02 5.0776944e-02 3.7998045e-03 -2.3103942e-02 2.1788345e-02 8.9940023e-03 -4.2417857e-02 2.2105218e-02 1.7181172e-02 3.7704606e-02 -5.0555959e-02 2.1848782e-02 -3.6764370e-02 -3.9114784e-03 -1.1848912e-01 5.0620530e-02 -1.2981821e-02 -4.5873307e-02 -2.3454192e-02 3.1252682e-02 1.8822708e-02 -6.6581576e-02 4.5856515e-02 -2.4005360e-02 -5.4764243e-02 -1.0567754e-03 2.0678142e-02 + -6.9479729e-02 3.4673291e-01 1.7482565e-02 3.1963108e-01 -2.0075566e-01 -3.4122045e-01 8.0612589e-03 1.0952855e-02 4.3433863e-01 4.9116119e-02 1.5476221e-01 2.4178837e-01 -1.5946241e-02 5.5448235e-02 -1.3884621e-01 -1.3276098e-01 -2.7126450e-02 -9.7637098e-02 5.0734860e-03 1.3564944e-02 5.4126534e-01 -1.3225316e-01 1.7214485e-02 -1.8252574e-01 3.9700018e-02 7.2803478e-02 -1.9433384e-01 2.1995410e-02 1.1270485e-02 1.5985763e-01 -6.4516843e-02 -1.3151819e-01 2.4970618e-01 4.1024663e-02 -6.5230912e-02 -3.2356312e-02 -8.9342029e-02 1.2070130e-01 5.8291576e-02 -2.1148413e-01 9.5905906e-02 8.5420315e-02 5.2821872e-02 -3.5826640e-03 -3.3027756e-01 1.3087166e-01 2.5959768e-03 1.5328222e-01 6.6357119e-02 + -1.9279499e-01 -3.2467450e-02 -2.6071391e-01 -1.9713472e-01 -9.2529605e-02 -2.7380463e-01 -1.0843151e-01 -5.0891683e-02 -1.9508783e-02 -1.6519449e-01 -1.9883665e-01 -6.4426919e-02 -2.9895411e-02 -7.5695606e-02 1.6139182e-01 -8.9952729e-02 7.6148616e-02 1.0785777e-01 3.6768163e-01 -2.1008551e-01 -8.6106500e-02 3.0200577e-01 1.0323555e-01 6.0626424e-02 -1.8243507e-03 -4.6155074e-02 4.0703894e-01 -1.9664521e-01 6.6238569e-02 1.0531777e-01 -2.7342639e-02 5.0592417e-02 -1.1116494e-01 -1.4867562e-01 -6.2152487e-02 7.7834434e-02 2.8933653e-01 9.5562983e-02 -1.8062883e-01 5.1358350e-02 -1.9015301e-01 9.0640903e-02 -5.7898762e-02 1.0113284e-02 6.0463431e-01 -4.4059590e-02 1.6551693e-01 -2.6713788e-01 -8.5251871e-02 + 1.5206855e-01 1.2275651e-01 -1.0133672e-01 2.9177482e-02 -2.2062586e-01 -7.5925983e-03 -4.1951572e-01 -9.8978594e-02 3.5078958e-02 -6.1690774e-03 1.7540475e-01 6.1722685e-02 -2.6354728e-01 -9.2758998e-02 -7.2792075e-02 1.9345204e-01 9.7866127e-02 -8.2367241e-02 -1.0447874e-01 -1.8400560e-01 7.6561130e-02 -1.2133796e-01 6.2639071e-02 -1.2662958e-01 8.7181412e-03 1.6680130e-01 3.9086161e-02 -1.6215505e-01 2.3592321e-01 5.2946881e-01 -3.1400760e-01 1.2816283e-02 2.9845016e-01 -1.4949308e-01 -3.8776786e-02 7.6226761e-02 -6.6466091e-02 9.7796048e-02 -2.3595537e-01 -3.3555170e-01 5.0991670e-02 3.6818847e-02 9.7071855e-02 2.5657670e-01 3.6354192e-02 -1.2582430e-01 2.6776686e-01 2.8553969e-01 -2.8327516e-02 + 2.5705330e-01 -1.7877608e-01 -3.9889665e-02 -5.1707626e-02 1.5789233e-01 1.0453643e-01 -4.5193080e-01 1.5057455e-01 -4.9615069e-03 6.1677858e-03 7.7512301e-02 9.1120175e-03 2.9987367e-02 -8.7508003e-02 -4.3108688e-02 2.1252088e-01 -1.8821542e-01 -7.7532470e-02 7.5607173e-02 -1.2041693e-01 5.1798161e-02 -8.1154216e-02 -8.7364479e-02 -8.4741566e-03 -5.0347626e-02 -8.0078982e-02 -5.7476799e-01 -9.6202842e-02 1.5365000e-01 9.0999417e-02 -1.4629864e-01 1.5315359e-01 -1.1362364e-01 -6.7337418e-02 2.7768725e-01 -1.4057250e-02 1.8854489e-01 5.5287806e-02 -5.5408164e-02 -8.3565194e-02 5.8604217e-02 -1.0042083e-01 3.6006381e-02 1.5862348e-01 -2.2758223e-01 -1.3881727e-01 6.4998032e-02 1.3810527e-01 2.2342908e-02 + 2.1537442e-01 2.5458958e-01 1.3276343e-02 2.1116671e-01 1.9062042e-01 3.5896475e-01 -4.5759009e-02 1.1651261e-01 2.3847113e-01 1.4325208e-01 1.8001806e-01 2.0210731e-01 1.5586584e-01 1.4146475e-01 -2.3034994e-01 -1.3018385e-01 -1.3722238e-01 -1.9343140e-01 -1.9306541e-01 8.1930830e-02 8.4299205e-02 -3.3445010e-01 -4.7758378e-02 -7.8515110e-02 -3.5696652e-02 -1.3233647e-01 1.7967808e-01 -2.7918936e-02 4.0646040e-02 -1.3404890e-01 4.9694760e-04 -7.2093363e-02 5.3854357e-01 -1.5136727e-01 1.7077501e-01 -2.3614397e-02 1.7252868e-02 -1.6248505e-01 3.6328267e-02 -3.2378115e-01 8.4396076e-02 -1.1316794e-01 3.9062750e-03 -7.4042694e-02 -8.8157676e-01 -1.0536436e-02 -1.3433191e-01 2.0972419e-01 1.0647888e-01 + 1.1839509e-01 -4.2853125e-02 1.0077316e-01 -1.6028730e-02 2.2774226e-02 2.8725456e-02 -1.6834097e-01 -1.4509482e-01 5.1956904e-02 5.5309363e-02 9.0721453e-02 -1.5485493e-01 -3.2779745e-02 -2.1239437e-02 6.3023800e-04 1.5513782e-01 1.8771253e-01 2.2707822e-01 -1.8965892e-01 4.2880156e-02 -2.2289894e-01 -1.6730669e-01 2.7393086e-03 9.6388993e-02 -1.1957414e-01 -7.1619105e-02 1.7021731e-01 -1.1784351e-01 -5.0300629e-03 -1.1659770e-01 1.2636487e-01 -2.8087790e-02 -1.7776118e-02 -1.4260043e-01 4.6181924e-03 -2.1625999e-03 4.3554687e-01 -1.9819680e-01 9.8608729e-03 -6.5098994e-02 -1.0192316e-01 -2.1511613e-02 -8.4698180e-02 1.7827609e-02 -2.0875621e-01 -5.7651658e-02 1.1075361e-02 -6.0693537e-02 -2.9461300e-02 + -2.9151624e-02 -2.2903674e-01 -1.8689988e-01 -2.1615377e-01 -6.9719831e-02 -1.7315813e-01 -1.0612920e-01 -1.4747416e-01 -8.7638047e-02 -1.4501085e-01 -1.0016629e-01 -1.4430664e-01 -1.1501875e-01 -9.7349461e-02 1.4114878e-01 1.1645486e-01 2.1937827e-01 1.3749100e-01 3.3607353e-01 -1.6503251e-01 -3.8448223e-01 2.1962781e-01 7.7919991e-02 9.2335215e-02 -2.9630269e-02 1.7090636e-02 -9.8617634e-02 -1.8206047e-01 4.2165361e-02 2.1324871e-01 -2.0445602e-03 4.9798237e-02 -7.4966966e-01 -2.0676590e-01 -7.8077238e-02 1.0840060e-01 5.4191753e-01 8.0736826e-02 -1.3837271e-01 2.2002584e-02 -1.3970080e-01 4.6544629e-03 1.4214840e-02 7.6650457e-02 1.8699931e-01 -6.5636593e-02 1.6520657e-01 -2.4411712e-01 -1.0180346e-01 + -1.6485061e-01 1.2125447e-01 7.6593254e-03 1.8597310e-01 -2.1906620e-02 -3.1413605e-01 -2.8409754e-02 -7.2071041e-02 3.0913182e-01 1.6655347e-01 -1.6809604e-01 -9.2343117e-02 1.5670572e-01 1.5699397e-01 -1.0368657e-01 -4.8508036e-02 2.8056982e-01 1.8074149e-01 -3.4629324e-01 2.8163503e-01 -2.1059752e-02 -6.9070020e-02 -1.7441422e-01 -1.1147297e-02 1.6988827e-01 -1.2663837e-01 2.9324237e-01 2.6247304e-01 -1.7510490e-01 -3.9045936e-01 2.5319638e-01 -2.6469743e-01 3.2749457e-01 4.1948939e-01 -2.1447172e-01 -3.9661268e-01 -1.7739253e-01 -3.1159738e-01 1.7756585e-01 5.1262862e-02 1.1356740e-01 1.7186122e-01 -2.4127504e-01 -1.6403576e-01 -1.7739908e-02 1.4979471e-01 -2.1735190e-01 -4.8066299e-01 -3.2830616e-03 + -5.0799521e-02 5.2579922e-02 -5.3882966e-02 2.9493284e-02 -8.5367051e-02 -1.0073558e-01 3.2698245e-02 -8.4726517e-02 1.9751953e-02 4.5158065e-03 -4.5758589e-03 -3.6863976e-02 -4.4562819e-02 -1.0718230e-02 1.0473975e-02 3.5198954e-02 1.0025250e-01 7.5610537e-03 -2.8054491e-02 -3.4889104e-03 -1.1445616e-02 -1.6938101e-02 1.9875612e-02 -4.9776551e-02 4.8846870e-02 6.7852335e-02 5.5611948e-02 5.5883600e-02 8.0836739e-03 6.0799458e-02 -2.3768541e-02 -5.1507365e-02 -3.8245718e-02 -1.1086312e-02 -5.9447835e-02 -7.1138996e-03 3.2132107e-02 1.9507822e-02 -3.9682734e-03 -3.6363117e-03 5.6709954e-02 1.0460158e-03 5.7489941e-02 1.8271840e-02 -8.7448181e-03 3.8493181e-02 3.8482892e-02 2.3755698e-02 -2.0664232e-02 + 3.8457606e-02 -1.1180665e-02 1.6554761e-02 4.3790581e-02 6.2470565e-02 7.5052558e-02 9.1109855e-02 1.2776918e-01 5.2751983e-02 -2.9350912e-02 -2.4950680e-02 7.9443611e-02 3.7947304e-02 7.7066061e-03 2.9333696e-03 -2.5364815e-02 -1.6603666e-01 -8.6580385e-02 -2.1560414e-03 -4.3585495e-02 4.2811013e-02 2.9167536e-02 -2.9875854e-02 -7.9519802e-03 -6.1406283e-03 -2.3435216e-02 -3.5535422e-02 2.1263297e-02 -2.0592176e-02 -2.2740040e-02 -1.1358688e-02 8.6534832e-02 2.4070549e-02 1.3042559e-01 1.1530472e-02 -9.3364744e-03 -1.3986766e-01 5.4415722e-02 -8.2976070e-03 7.6775370e-03 -5.1547778e-03 3.6141351e-02 8.9236663e-03 -3.3377157e-02 3.5151113e-03 -3.3361447e-02 -5.3754338e-02 6.5759893e-02 3.5731466e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_F_1.txt new file mode 100644 index 00000000..09ee82f9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_F_1.txt @@ -0,0 +1 @@ + 2.0448976e-01 8.9813017e-01 -4.0363533e-01 1.6491807e-01 -3.4652262e-02 7.4875044e-01 -7.2679801e-02 -3.4108860e-02 4.9075204e-01 2.8765770e-01 2.0555363e-02 5.5286015e-01 -1.1709416e-01 -2.3537341e-01 -1.0104139e-01 -7.5121573e-01 7.1640651e-02 1.0943973e-01 2.7388125e-01 1.6457101e-01 3.0512755e-01 2.1640436e-01 7.9178580e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_F_2.txt new file mode 100644 index 00000000..d8b8c5d6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_F_2.txt @@ -0,0 +1 @@ + 3.0590266e-02 -9.4232853e-04 -7.3297334e-01 3.4983448e-01 4.5028935e-02 2.6191162e-01 1.2064911e-01 1.1567306e-01 -4.7395887e-01 -3.7722678e-01 -5.2640883e-01 9.2366391e-02 -2.3310444e-01 7.1333016e-01 4.4853326e-01 2.8300546e-01 4.5558128e-01 -1.9667939e-01 -1.4503531e-02 -2.7420078e-01 -6.0872781e-02 1.4738481e-01 -1.0013995e+00 -1.1676496e-02 -3.5304302e-01 7.3871794e-02 -2.7408934e-01 5.4131705e-01 -1.4432440e-01 1.4414027e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_F_3.txt new file mode 100644 index 00000000..b5eb4ee1 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_F_3.txt @@ -0,0 +1 @@ + 1.6019286e-01 1.7944897e-01 -3.8309549e-01 -3.6429209e-01 5.9265048e-01 -6.5656861e-01 3.8257586e-01 -2.2934024e-02 -1.1405510e-01 -6.4217258e-01 4.2621921e-01 4.2018699e-01 -9.2147132e-01 2.0345702e-01 5.9195544e-01 -3.4993831e-01 6.9016621e-02 4.0635063e-01 5.8070803e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_F_4.txt new file mode 100644 index 00000000..36fc16b4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_F_4.txt @@ -0,0 +1 @@ + -4.2923322e-01 -2.9740806e-02 -2.0217369e-01 -9.2340659e-02 -3.2257002e-01 -2.8634431e-01 -1.8756908e-01 -3.0538517e-02 -5.1186852e-02 -4.5274325e-01 -2.3775747e-01 5.1633178e-01 -3.9999520e-01 2.5314720e-01 7.5831807e-01 5.3105114e-01 1.6986744e-01 -1.7206056e-01 -2.5656171e-01 -2.7207779e-01 6.6661798e-01 4.3397103e-02 -3.6092913e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_F_5.txt new file mode 100644 index 00000000..c77185ee --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_F_5.txt @@ -0,0 +1 @@ + -1.8456074e-01 -1.7191190e-01 -1.8188384e-01 -7.5660066e-01 -3.4325216e-01 3.3566668e-01 1.0560231e-02 -2.8833588e-01 2.4337114e-01 1.2405926e-01 -3.7781502e-01 2.5868749e-02 4.0465416e-01 6.9984704e-01 7.8518521e-02 4.4516017e-01 1.7539048e-01 -1.1454530e-01 1.7866390e-01 2.1577654e-01 -5.7929700e-01 -2.2642081e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_G_1.txt new file mode 100644 index 00000000..e0953bdb --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_G_1.txt @@ -0,0 +1 @@ + 4.1871128e-01 1.2280612e-01 4.2968226e-02 -2.9044318e-01 5.4223645e-02 -6.5433522e-02 -3.9113658e-02 -1.2553908e-01 5.7287235e-01 5.8019279e-01 4.3838809e-01 -1.5215842e-01 -4.6534390e-01 -6.5181899e-03 3.7190642e-01 -2.5114317e-01 -1.6673777e-01 1.6094476e-01 -6.3597908e-01 -3.7909939e-01 1.7699118e-01 -1.3406653e-01 -1.2109916e-01 -8.2839849e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_G_2.txt new file mode 100644 index 00000000..aef43cf0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_G_2.txt @@ -0,0 +1 @@ + -3.3158179e-01 -4.4739610e-01 -7.0557866e-01 -1.4081563e-01 3.8270299e-01 -4.5306438e-01 8.7171720e-01 -4.5711672e-01 6.9391361e-01 7.5031736e-01 -1.0454652e+00 3.0737546e-02 -5.6971848e-01 -2.2029047e-01 -1.9937005e-01 -5.5765283e-01 2.0195691e-01 -4.0140809e-01 -2.5270471e-01 -5.4660938e-01 -1.5605298e-01 5.3371029e-03 -3.7750163e-01 -2.6948078e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_G_3.txt new file mode 100644 index 00000000..3aef5d19 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_G_3.txt @@ -0,0 +1 @@ + -4.4944276e-01 4.2709049e-01 4.2023794e-01 8.2872381e-01 -6.0802065e-01 -4.8898850e-01 4.1186104e-01 -5.5206965e-01 8.4741907e-02 -2.6491737e-02 -2.5488467e-01 -4.5085927e-01 -4.0037812e-01 4.6779608e-01 -1.6867756e-01 -4.3416624e-01 -3.7704387e-01 -1.4884409e-01 7.3729116e-01 7.0459293e-01 1.0489012e-02 -3.4090791e-01 -4.4761886e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_G_4.txt new file mode 100644 index 00000000..fbee708f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_G_4.txt @@ -0,0 +1 @@ + -8.1911559e-01 -3.0681446e-01 -1.4924453e-01 -2.4963885e-02 -3.7344720e-01 1.0503171e-01 -6.3095590e-02 4.9750475e-01 -3.1737455e-01 -2.3065583e-01 6.0218470e-01 2.7065103e-01 6.0265631e-01 -3.0466760e-01 -6.0193374e-01 6.1470247e-01 8.8236000e-01 -3.9587263e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_LW2_G_5.txt new file mode 100644 index 00000000..cd38f05d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_LW2_G_5.txt @@ -0,0 +1 @@ + 1.3318126e-01 6.2770630e-02 4.0396059e-01 -3.5550212e-01 6.9066088e-01 -3.2410266e-02 -1.7270310e-01 5.3205686e-01 -2.3376718e-01 -1.1549982e+00 7.6002190e-01 5.0433989e-01 8.5825579e-01 -5.9775819e-01 2.5910266e-01 -2.6624666e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_b1_F_1.txt new file mode 100644 index 00000000..8fce8d14 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_F_1.txt @@ -0,0 +1,33 @@ + 3.9838936e-01 + 6.2752299e-02 + 1.2465581e-01 + 7.4102456e-02 + -4.8067928e-02 + 2.0753565e-01 + -4.2765721e-01 + -3.2179817e-01 + 2.2293002e-01 + -5.4090547e-01 + -4.0894129e-01 + -5.6475071e-01 + -2.4404208e-01 + -1.3170037e+00 + -1.8687400e-01 + -8.7472128e-02 + 4.8130122e-02 + -6.6647980e-02 + -4.5016709e-02 + -2.6102560e-01 + 8.9761690e-02 + 1.9377238e-01 + -5.7877118e-02 + 1.9258550e-02 + -4.4196028e-01 + 2.5704390e-02 + -5.1501605e-01 + 2.4790709e-02 + -2.2800472e-02 + -9.3361819e-02 + -6.6289666e-02 + 2.6858020e-01 + -3.4388531e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_b1_F_2.txt new file mode 100644 index 00000000..c5b0c10d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_F_2.txt @@ -0,0 +1,34 @@ + 1.3632674e-02 + 3.8073489e-01 + -2.3610294e-01 + -6.2521430e-03 + 4.0884320e-01 + 8.3508768e-02 + 3.7158352e-01 + -6.0674564e-01 + -7.2344036e-01 + -8.1980112e-02 + -9.9822977e-02 + 1.1509871e-01 + -5.1045446e-01 + -5.8723655e-01 + 6.1097203e-01 + -1.3803748e-01 + 1.0118630e-01 + 1.8788327e-01 + -1.4536402e-01 + -5.3379793e-02 + 1.3763141e-01 + 4.3030663e-01 + -1.6948354e-01 + 6.9974723e-02 + 5.0574275e-02 + 2.8068753e-01 + -2.0441792e-01 + 7.8447710e-02 + -8.5755156e-02 + 3.1433152e-01 + -6.2460883e-01 + -2.0539847e-01 + 2.3874020e-01 + -2.1872596e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_b1_F_3.txt new file mode 100644 index 00000000..221d800b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_F_3.txt @@ -0,0 +1,35 @@ + -5.7908974e-01 + -9.7606018e-02 + -1.3831958e-01 + 3.2421035e-01 + 3.5765567e-01 + -5.2336678e-01 + 1.5381567e-01 + -9.2755207e-02 + -1.7632060e-02 + 6.9348047e-01 + -1.9421540e-01 + 5.1125390e-02 + -1.0664053e-01 + -9.1243707e-02 + -3.8794342e-01 + -3.1994285e-02 + 2.2474894e-01 + -3.1916208e-01 + -1.3955225e-01 + -2.6735757e-01 + -6.9508240e-01 + -1.0474276e-01 + -1.0931115e-01 + 2.5226943e-01 + -6.5349458e-02 + -9.1086399e-02 + -3.6319009e-01 + -4.4276838e-02 + 1.8329635e-01 + 3.8797106e-01 + 2.8485552e-01 + -2.0058621e-01 + -4.3133046e-02 + 5.8577175e-02 + -1.0583668e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_b1_F_4.txt new file mode 100644 index 00000000..f3b73c7d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_F_4.txt @@ -0,0 +1,39 @@ + -2.8130554e-01 + 1.4928256e-01 + -1.3167991e-01 + -2.1997884e-01 + 4.8936300e-03 + 5.1000165e-02 + 1.1576106e-01 + -1.3236262e-01 + 1.4023157e-01 + -3.5990938e-01 + 2.4221315e-01 + 2.0034742e-01 + 1.1166649e-01 + -9.5021252e-02 + 1.2181259e-01 + -1.7780576e+00 + 3.4340168e-01 + -2.5276648e-01 + -2.9603609e-01 + -1.6456303e-01 + 1.8339810e-01 + 2.0146638e-01 + -3.1595297e-02 + 4.0788379e-02 + 2.4924277e-01 + 7.5471671e-03 + 1.9204720e-01 + -7.7333161e-02 + -6.6053136e-01 + 1.9933914e-01 + -3.4659952e-01 + -2.4414458e-02 + -1.0879005e-01 + -2.4344220e-01 + 1.0244915e-01 + -6.0185402e-01 + -1.9631849e-01 + -7.9649953e-01 + 3.0365282e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_b1_F_5.txt new file mode 100644 index 00000000..b29ac59f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_F_5.txt @@ -0,0 +1,41 @@ + -7.6692019e-02 + 1.2712211e-01 + 1.4870194e-01 + -1.7914663e-01 + -7.9594790e-02 + 4.6435190e-01 + -1.8461406e-01 + 2.9327247e-01 + 9.0797274e-02 + 1.7859743e-01 + -2.0854502e-01 + 1.4453279e-01 + 1.8251635e-01 + 3.2179422e-01 + -5.2831008e-01 + 6.4415834e-02 + -4.4436448e-01 + 3.9894329e-01 + -1.5290541e-01 + 1.6487185e-01 + 4.7886970e-01 + 1.8021531e-01 + -1.8762786e-01 + 2.9626819e-01 + 2.7239104e-01 + 1.9695762e-01 + 3.9600603e-01 + 1.8717732e-01 + 2.2435380e-01 + -4.3932999e-01 + 5.7273603e-01 + 3.5091760e-01 + -1.0832491e-01 + -1.0883246e-01 + 2.8301975e-01 + -2.2530476e-01 + -1.4412673e-01 + 1.4463033e-01 + 8.5767994e-03 + 7.9795981e-02 + -2.0249543e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_b1_G_1.txt new file mode 100644 index 00000000..241457d1 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_G_1.txt @@ -0,0 +1,32 @@ + -3.1292250e-01 + 4.2552561e-01 + 3.5134230e-01 + 3.0268091e-01 + -5.9790407e-01 + 3.1379216e-01 + -3.7464518e-01 + -1.4468351e-02 + -7.2434011e-03 + 2.8193502e-01 + -5.0074851e-01 + 2.4776584e-01 + -4.4885380e-01 + 7.1538837e-02 + 6.1367088e-02 + -4.5792045e-01 + -2.1989736e-01 + -6.4542084e-03 + 2.2804010e-01 + -3.1949738e-02 + -4.5689948e-01 + -4.7507410e-01 + -3.8494735e-02 + 3.1024477e-01 + 7.8314821e-01 + -1.8694321e-01 + 7.0312819e-01 + -5.3153111e-01 + -5.2866226e-01 + 7.2349139e-01 + -4.8790938e-01 + -3.0859576e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_b1_G_2.txt new file mode 100644 index 00000000..7650f7e6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_G_2.txt @@ -0,0 +1,35 @@ + 1.0096202e-02 + -7.9648585e-02 + 1.8028742e-01 + -7.3202006e-01 + 1.1747615e-01 + -1.8890765e-01 + 1.4807546e+00 + 7.3424788e-02 + 2.0588518e-01 + -1.4078019e-01 + 7.2784022e-01 + -1.1263618e-02 + -4.2532839e-01 + 2.9179220e-01 + -1.7891307e-01 + 8.8019876e-02 + 2.6600315e-02 + -8.4344653e-02 + -6.1067731e-02 + -1.5065413e-01 + -4.2277099e-01 + 1.1480529e-01 + -1.3282439e-01 + -1.4981586e-01 + 3.8475087e-01 + 4.5153991e-01 + -2.1601338e-01 + -4.4797172e-01 + 3.1604599e-01 + -2.0048550e-01 + 3.6151986e-02 + 2.7076877e-01 + 2.0161741e-01 + -1.6375816e-01 + 4.4930348e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_b1_G_3.txt new file mode 100644 index 00000000..e14c8cf3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_G_3.txt @@ -0,0 +1,37 @@ + -9.9566737e-02 + -5.1473113e-02 + -8.0312051e-03 + -1.2314009e-01 + 1.9763461e-01 + -3.1009497e-01 + -4.1484715e-01 + -2.8082570e-01 + -3.0444461e-01 + 2.6270118e-01 + -6.5812012e-01 + 1.7326065e-01 + 7.6318295e-02 + 3.2320280e-01 + -1.8646696e-01 + 4.9271152e-01 + 1.2939636e-01 + 1.9988520e-01 + 1.6824869e-01 + -1.0473041e+00 + -5.0047495e-01 + -1.4394244e+00 + -5.3504410e-01 + 5.8196237e-01 + -1.8969840e-01 + -3.5822233e-01 + -4.7152142e-01 + 2.3604644e-01 + -4.1214919e-01 + -4.6135901e-01 + -3.9565673e-02 + -1.3772783e-01 + 1.1165986e+00 + 3.9395200e-01 + 1.6720619e+00 + 5.2160860e-01 + -5.1722113e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_b1_G_4.txt new file mode 100644 index 00000000..26bd7392 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_G_4.txt @@ -0,0 +1,40 @@ + 2.3161291e-01 + -6.8052861e-01 + 1.3600493e-01 + -1.8489942e-01 + 2.1650505e-01 + 1.9395052e-01 + 1.1684878e-01 + 1.9284150e-01 + 1.6098083e-02 + 1.7463549e-01 + 7.5966991e-02 + 6.5131582e-02 + -3.1255248e-01 + -8.8879776e-02 + 1.3644280e-01 + -5.6439814e-02 + -3.5377608e-04 + -8.2751277e-02 + -1.9284071e-01 + 6.4048311e-02 + 9.8332217e-02 + 2.8865182e-01 + -4.6143618e-01 + -2.6666000e-01 + -2.9129229e-01 + 1.2584942e-01 + 1.0025139e-02 + 6.3122111e-02 + -1.0919408e-01 + -1.1558928e+00 + 1.4917462e-02 + 3.1632737e-01 + -9.3543411e-02 + 7.8667713e-01 + 2.1531001e-01 + 1.7575944e-01 + -9.3906834e-02 + -1.0935263e-01 + 4.6823572e-01 + -5.6610633e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_b1_G_5.txt new file mode 100644 index 00000000..43c03b7e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b1_G_5.txt @@ -0,0 +1,49 @@ + 1.5158751e-01 + 2.3379868e-01 + -2.5863437e-01 + -3.5152001e-03 + 4.8079152e-02 + -2.9843709e-01 + -2.7881799e-01 + 3.4777044e-02 + 2.1962364e-01 + -5.3334253e-02 + -1.2612385e-02 + -1.9649471e-02 + 7.2215787e-02 + 5.3803582e-02 + -4.1086378e-02 + 6.3264303e-02 + 7.4623166e-02 + -2.2385116e-02 + 2.6525454e-01 + -1.7171528e-01 + 1.8721600e-01 + 1.4195667e-02 + -2.2973603e-02 + -1.5028042e-02 + -2.1613575e-02 + -1.3674612e-01 + 9.7029179e-01 + -1.7259480e-01 + 1.6702486e-01 + 1.1919157e-01 + -1.4687864e-01 + 5.8464198e-03 + -8.0615839e-01 + -3.0128428e-01 + 1.1484958e-01 + -2.2482977e-02 + 5.9357595e-01 + -9.6222472e-02 + -1.2380432e-01 + -2.4188941e-01 + -1.6793503e-03 + -5.3076846e-02 + 2.1280564e-02 + 8.2663497e-02 + 1.0792120e+00 + -1.5660550e-01 + 6.1387465e-02 + -2.0913099e-01 + 9.4178851e-03 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_b2_F_1.txt new file mode 100644 index 00000000..7b188f02 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_F_1.txt @@ -0,0 +1,23 @@ + -1.4981466e-02 + -5.9083569e-01 + -2.9022951e-01 + -3.5667908e-02 + 5.6708276e-02 + -2.9586518e-01 + -1.5173034e-01 + -2.4639012e-03 + 1.8983060e-01 + 4.6847954e-02 + 7.6686093e-03 + 2.1465215e-01 + -3.5014495e-03 + 6.8517646e-02 + 2.9143041e-02 + -6.5369744e-01 + 7.2432082e-03 + 1.9578042e-02 + 4.9512608e-02 + 6.8853527e-02 + -1.8669425e-02 + 1.3662412e-01 + 1.3966896e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_b2_F_2.txt new file mode 100644 index 00000000..1f68ced6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_F_2.txt @@ -0,0 +1,30 @@ + -1.4245777e-02 + 1.1411078e-02 + 4.3595270e-01 + -3.2352712e-02 + 7.2411836e-03 + -7.5039131e-02 + -1.4323905e-02 + -1.3249766e-02 + 1.8864894e-01 + -6.1481820e-03 + 1.1061559e-01 + 4.3193185e-02 + -4.1402285e-02 + -6.1565404e-02 + -7.8562618e-02 + -6.2493041e-02 + -9.1574286e-02 + -1.2583811e-01 + -1.8527537e-01 + 2.2205711e-01 + 6.1782939e-02 + -1.8870514e-02 + -2.0199633e-01 + -8.7299861e-03 + 7.3259063e-02 + -4.0211573e-02 + -6.2009036e-02 + 5.7900118e-02 + 6.6387599e-02 + 9.8966949e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_b2_F_3.txt new file mode 100644 index 00000000..459a6cf4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_F_3.txt @@ -0,0 +1,19 @@ + 7.3754419e-02 + 3.0961098e-03 + -1.9150724e-02 + 6.5182873e-03 + 1.2746386e-01 + 3.7763187e-01 + -1.5205984e-01 + 4.4850110e-03 + -1.7404919e-02 + 2.5973769e-01 + 1.0144917e-01 + 1.3427714e-01 + -9.3348169e-01 + -2.2767026e-02 + -1.9437589e-01 + 3.8014275e-02 + 2.2517345e-02 + 2.6452097e-01 + 1.3008817e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_b2_F_4.txt new file mode 100644 index 00000000..24e1ec4f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_F_4.txt @@ -0,0 +1,23 @@ + -3.3242453e-02 + 2.4014704e-02 + 3.0756479e-02 + 1.7776320e-02 + 2.0772766e-01 + -1.0921688e-01 + -3.4205948e-02 + 5.6206958e-03 + 2.1428495e-02 + 7.4979238e-02 + 2.0042204e-01 + 5.0991196e-02 + 2.3409142e-01 + -5.4183569e-02 + 5.2487327e-01 + -2.3015942e-01 + -7.7119120e-04 + 3.1701093e-02 + -1.1377769e-01 + 5.6159649e-02 + -9.3397761e-01 + -3.0209512e-02 + 1.3288224e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_b2_F_5.txt new file mode 100644 index 00000000..f56d19b2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_F_5.txt @@ -0,0 +1,22 @@ + 6.0590423e-02 + 7.9510443e-02 + 9.5889700e-02 + 1.2655491e-01 + 1.1072913e-01 + -1.1684468e-02 + -3.9718471e-02 + -3.2590936e-01 + -3.4240228e-02 + -3.6013890e-02 + -1.8276724e-01 + -9.7932493e-02 + 2.8563133e-02 + -4.5092513e-01 + 3.7953029e-02 + 3.3237064e-02 + -6.8909158e-02 + -2.8831492e-02 + -3.8967998e-02 + 2.9321976e-01 + -4.8377185e-01 + 2.8033854e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_b2_G_1.txt new file mode 100644 index 00000000..d8a501ac --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_G_1.txt @@ -0,0 +1,24 @@ + 1.2708628e-01 + -1.4548892e-01 + 5.5203464e-02 + 2.2477812e-02 + -2.3920495e-02 + 2.1050257e-01 + 2.9796856e-02 + 4.2380898e-02 + -3.3870676e-01 + -5.4555578e-02 + -1.1096158e-01 + -2.3496637e-02 + 3.8610087e-02 + -8.5524713e-02 + 2.8705197e-01 + -1.2867236e-01 + -1.8624519e-01 + 1.7689871e-02 + 2.7841348e-01 + 5.3475849e-02 + 2.1074261e-01 + -2.7109762e-02 + 5.2635116e-02 + -7.4618735e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_b2_G_2.txt new file mode 100644 index 00000000..ed75d45b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_G_2.txt @@ -0,0 +1,24 @@ + -1.9920215e-03 + -3.5999273e-02 + 9.7980250e-02 + -2.4550402e-02 + -2.5766621e-02 + 6.6720626e-02 + -6.1339669e-01 + -6.5100234e-02 + 3.6724884e-01 + 2.8392258e-01 + -2.9502846e-01 + 1.7264798e-02 + 2.4514946e-01 + 6.6075515e-04 + 1.3653812e-02 + -1.6350375e-01 + -1.0949859e-02 + 1.6689781e-02 + -2.3848959e-02 + 4.2474168e-02 + 1.6136004e-02 + 4.2756303e-03 + -1.7599922e-03 + -5.5854956e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_b2_G_3.txt new file mode 100644 index 00000000..58a2b10d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_G_3.txt @@ -0,0 +1,23 @@ + 1.3820402e-01 + -8.9037735e-03 + -2.7026832e-01 + 1.1229022e+00 + -5.8003510e-02 + 2.6384111e-01 + 8.8363781e-02 + -6.7606362e-02 + -1.5725313e-02 + 1.6664523e-03 + -1.9233855e-01 + 2.0421378e-01 + -3.2524900e-02 + -3.1158063e-01 + 1.6771343e-01 + -1.5355148e-01 + 8.6855795e-03 + -2.5321146e-02 + -2.6524065e-01 + 3.3806714e-02 + 3.2805315e-02 + 2.3065903e-01 + -8.0825638e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_b2_G_4.txt new file mode 100644 index 00000000..12ebea43 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_G_4.txt @@ -0,0 +1,18 @@ + 5.2882390e-01 + -8.0636134e-02 + -2.7506320e-03 + 6.1862867e-02 + 5.5110709e-02 + -5.4349260e-03 + -4.4772138e-02 + -5.0080197e-02 + -9.2230426e-02 + 7.5691736e-02 + 2.8402399e-02 + -6.3191056e-02 + -2.8914602e-01 + -2.1368209e-02 + 7.9844556e-03 + -4.0640095e-01 + 8.2972941e-01 + -1.4283569e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_b2_G_5.txt new file mode 100644 index 00000000..b22247f4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b2_G_5.txt @@ -0,0 +1,16 @@ + -3.5183508e-01 + 3.0973078e-03 + -2.1930137e-01 + -2.0037195e-02 + -4.9305200e-01 + 1.5903799e-02 + 1.8801034e-01 + 4.5019689e-01 + 5.1900252e-01 + 5.4579381e-01 + 3.3829963e-01 + 8.6230619e-02 + 2.7739453e-01 + 1.1771404e-01 + -1.0589117e-02 + 3.0602287e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_ph_b3_F_1.txt new file mode 100644 index 00000000..8c6c1b74 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_F_1.txt @@ -0,0 +1 @@ + -6.2056973e-03 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_ph_b3_F_2.txt new file mode 100644 index 00000000..af40708a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_F_2.txt @@ -0,0 +1 @@ + -9.7457499e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_ph_b3_F_3.txt new file mode 100644 index 00000000..e122a72c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_F_3.txt @@ -0,0 +1 @@ + -1.6084002e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_ph_b3_F_4.txt new file mode 100644 index 00000000..db02337d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_F_4.txt @@ -0,0 +1 @@ + -1.1234273e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_ph_b3_F_5.txt new file mode 100644 index 00000000..1b00323b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_F_5.txt @@ -0,0 +1 @@ + 5.5303458e-02 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_ph_b3_G_1.txt new file mode 100644 index 00000000..2c738467 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_G_1.txt @@ -0,0 +1 @@ + -3.2652745e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_ph_b3_G_2.txt new file mode 100644 index 00000000..3ea5d052 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_G_2.txt @@ -0,0 +1 @@ + -2.4730087e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_ph_b3_G_3.txt new file mode 100644 index 00000000..2611cb64 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_G_3.txt @@ -0,0 +1 @@ + 2.2361357e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_ph_b3_G_4.txt new file mode 100644 index 00000000..32d42f8a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_G_4.txt @@ -0,0 +1 @@ + -3.5542637e-01 diff --git a/argopy/static/assets/canyon-med/poids_ph_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_ph_b3_G_5.txt new file mode 100644 index 00000000..821a0a2f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_ph_b3_G_5.txt @@ -0,0 +1 @@ + 1.9978083e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_IW_F_1.txt new file mode 100644 index 00000000..4e9a3e54 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_F_1.txt @@ -0,0 +1,28 @@ + -6.8827236e-01 -4.6754331e-01 -4.2659283e-01 1.6177796e-01 -3.8342087e-01 -3.7829052e-01 -5.4235301e-02 + 1.6476626e+00 -2.9825549e-01 -9.5280780e-02 -1.0713770e+00 8.1382250e-01 7.9887728e-01 8.4500971e-02 + 4.0871093e-01 -2.8511188e-01 -2.2125974e-01 -5.4198050e-01 -5.4650275e-01 -3.3493321e-01 6.3111819e-01 + -4.2679348e-02 8.0335826e-01 2.3530487e-01 3.9440992e-01 -1.0362847e-01 -7.3182717e-03 -2.4510434e-02 + -7.3990682e-01 3.2050090e-01 -1.2877421e+00 6.9617542e-01 1.1448252e+00 5.6776835e-01 1.8698635e-01 + 1.4782226e-02 -1.4073203e+00 1.3923086e+00 1.3960871e+00 -2.8759026e+00 -8.7306630e-01 2.5189350e-01 + 2.6435863e-01 8.4118550e-03 -6.5428523e-02 7.5260939e-02 1.6946197e-01 6.3888941e-02 -2.4631588e-01 + 3.4498356e-01 -7.1544964e-01 -7.8721565e-01 5.4825461e-01 2.5895050e-02 5.8474175e-01 -6.6832217e-02 + 2.5432861e-02 1.4952706e-02 -2.6204764e-02 1.7531793e-01 -2.0395970e-01 9.2755423e-02 -3.2401488e-01 + 1.8061898e-01 -1.6566692e-01 2.8363805e-02 -2.3673879e-01 1.1835225e-01 1.9212138e-01 1.9089851e-01 + 1.1265118e-02 -4.6530006e-01 -2.6457315e-02 1.2739370e-01 -1.1133978e-01 -3.9230875e-02 2.1256181e-01 + -6.1307004e-01 -6.0264209e-01 2.1369018e+00 9.8517433e-01 8.6878947e-01 3.4856610e-01 -7.8919128e-01 + 4.5250349e-01 1.2049940e-02 1.1076097e+00 -1.1487642e+00 -2.7267379e-01 2.4479799e-02 -4.6195347e-01 + -3.0808207e-02 3.5880694e-02 8.5399417e-03 3.3646375e-01 1.2631753e+00 -5.7619345e-01 4.9870970e-01 + 2.9881835e-01 -7.3792758e-01 -9.0833183e-01 -1.5355992e-02 -2.9560536e-01 8.8806133e-01 -6.7944393e-01 + -1.3461609e-01 -1.6786091e-01 -2.6673589e-01 1.7958789e-02 2.9735954e-02 7.9335362e-02 -4.0307835e-01 + 2.3703113e-02 -1.5661946e-01 1.4254436e-01 3.9219411e-01 1.3261213e-01 1.7260003e-01 -5.5232587e-01 + 1.9161757e-01 -8.7529144e-01 -9.8481627e-01 -1.1151586e+00 1.5609898e+00 -5.3630309e-01 -1.6854656e-01 + -3.4550153e-01 2.3394709e-01 6.3431395e-01 1.2068301e-01 7.6097524e-01 -1.0792889e-01 1.7112238e-02 + 2.3705001e-01 3.5446272e-02 -5.4093894e-01 -4.1696733e-02 1.9686260e-01 -1.2411163e-01 -4.5644845e-02 + 1.9074067e-01 -3.2357496e-01 -7.5795005e-02 9.2740374e-02 -2.4538252e-01 -8.8958123e-02 2.1324139e-01 + -8.8926083e-01 1.6250257e-01 1.0924631e+00 6.1984346e-01 4.2252358e-01 4.1464558e-01 -1.1421984e-01 + 1.1902947e-01 1.6084181e-01 6.9442230e-02 2.7581280e-03 -5.8757006e-01 9.4472999e-02 -3.3914540e-01 + 1.2769672e-01 -1.0415227e+00 -3.4941815e-01 -6.2730260e-01 2.3432294e-01 -1.4123480e-01 2.0626352e-01 + 2.0075723e-01 6.7848145e-02 1.1042808e-01 3.4129607e-03 -7.6736961e-02 4.5858148e-02 4.0522640e-02 + -2.7034037e-01 3.8477455e-02 -3.3722783e-01 -2.1410245e-01 6.2718005e-02 1.7336094e-01 4.4291093e-02 + -4.3674509e-01 -2.5528167e-01 6.0264039e-02 -1.4533207e+00 -2.0771194e-01 -9.5648601e-01 5.9447161e-02 + 1.5309022e-01 -3.4454219e-01 1.9216077e-03 9.6880567e-02 -4.2251482e-02 -3.1567953e-01 -2.8460221e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_IW_F_2.txt new file mode 100644 index 00000000..735adc00 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_F_2.txt @@ -0,0 +1,29 @@ + -8.7730191e-01 6.5457282e-01 -1.3066856e-01 1.1708099e+00 -2.2233485e+00 -5.4833546e-03 -2.0475288e-01 + -3.6533515e-01 -1.7431091e-01 4.7210353e-01 2.1061346e-01 -1.1347249e-01 1.2204137e-01 -1.2437038e-01 + -9.2570230e-02 9.0189806e-01 -1.5387306e+00 -6.7400549e-01 8.0107926e-01 1.3834398e+00 -4.6441667e-01 + 6.3183547e-01 -1.7687497e+00 1.5662483e-01 -1.1798379e+00 -4.9797114e-01 -9.2038802e-01 5.4267210e-01 + 3.1184463e-01 4.7023676e-02 3.0116455e-02 -6.1149272e-01 -7.7164951e-02 -3.4203475e-01 3.6082341e-01 + -4.1147358e-01 2.8613591e-01 -6.7247302e-02 -6.8093476e-02 2.0426937e-01 1.3391389e-02 -2.4558710e-01 + 4.6628622e-01 -2.4644041e-01 -6.4718000e-02 1.5378617e-01 -1.4808689e-01 2.3269303e-02 -1.7204605e-02 + 2.1669670e-01 3.1808524e-01 -3.6127843e-01 -3.7707077e-02 -3.7050961e-02 -4.1201599e-01 8.8251192e-01 + 6.7506340e-01 3.0486236e-01 3.9877608e-01 9.0589660e-01 1.0144318e-01 1.9559915e-01 -4.7519492e-01 + -3.6071797e-01 2.7913106e-02 -4.6513054e-02 -1.9216577e-01 2.1078930e-01 -1.1317654e-01 -1.7320978e-01 + 7.0414892e-01 1.7576351e-01 1.5896267e-01 -3.6946333e-01 3.9648322e-01 -6.5795189e-01 4.1316167e-02 + -2.6868515e-01 4.5414835e-01 5.6687767e-01 2.8792478e-01 -7.8115497e-01 1.2649817e-01 -6.1812130e-01 + 6.0507982e-01 -7.1684626e-01 -1.7663907e+00 2.6889875e-01 -1.6629163e+00 3.2655553e-01 9.1995127e-02 + 1.4583847e-01 -3.8848909e-01 1.7344593e+00 -7.5746589e-01 -2.2329405e-01 -6.0944733e-01 1.1675120e+00 + 1.4527142e-01 4.3096781e-02 -1.4690935e-01 -5.6632416e-02 1.9680055e-01 2.0965761e-01 1.7250793e-01 + 4.0654795e-01 1.6000952e-01 5.3270140e-01 -7.6474770e-01 4.1132604e-01 -3.2110820e-01 2.0749696e-01 + -1.8189726e-01 -6.5678399e-02 -4.1518372e-02 -1.3112606e+00 -3.9317308e-01 -3.8367188e-01 8.7701135e-02 + 6.8802719e-01 -1.0047537e+00 -4.1144779e-01 -6.1856217e-02 5.3571389e-01 -3.2080412e-01 -4.3204883e-01 + -1.8081269e-01 3.9417201e-01 6.5059355e-02 1.1126903e-01 -1.1366110e+00 1.0482315e-01 -5.7873402e-01 + 2.4657157e-02 1.3290366e-01 -3.8872822e-01 8.3776389e-01 -8.2346572e-01 5.1130400e-01 -3.7669880e-01 + 9.1921557e-01 7.9812117e-01 1.8895604e-01 -7.0411968e-01 -2.2657924e-01 5.4250248e-01 3.3398763e-02 + -1.1963320e-01 -1.5580500e-02 -1.1415092e-01 -2.9924936e-01 -1.2022295e-01 -3.7108790e-01 -3.1293895e-01 + 5.7911728e-01 -6.1413172e-03 8.6852521e-03 3.1460569e-01 -4.0912622e-01 -1.1031893e-01 -3.6982957e-02 + 2.3614799e-01 2.8458773e-01 1.6130834e+00 3.7962198e-01 -6.4724477e-02 2.9914692e-02 -1.4985224e-01 + -8.4135867e-01 -9.0464548e-01 2.4182308e+00 7.8764267e-01 2.2979385e-01 1.6512179e-01 -5.3058422e-01 + 1.7648350e-02 -4.0560433e-01 -8.7072729e-01 3.8012836e-01 -1.0358231e-01 7.6460956e-02 2.5166119e-01 + 4.1369147e-02 1.4445540e-01 -1.4731373e-01 -3.5291219e-01 -6.9772806e-02 -4.5465977e-01 7.7096710e-02 + 1.3257885e-01 -9.8256611e-02 1.3725017e+00 -3.8562304e-01 -1.9369043e-01 -2.7822173e-01 1.3004720e-01 + 9.2146600e-02 7.2429173e-02 -2.5156115e-01 3.3200077e-01 2.9976781e-02 -6.8821489e-01 -1.0505157e+00 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_IW_F_3.txt new file mode 100644 index 00000000..117ae7e8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_F_3.txt @@ -0,0 +1,32 @@ + 1.7505262e-01 8.5692956e-02 1.2455018e-01 2.6981988e-01 -1.9312038e-02 -3.6022026e-02 -1.3819248e-01 + 2.6864619e-01 -2.7151829e-01 2.7024329e-02 -5.2597862e-02 -2.1434995e-01 -5.8742879e-02 -1.4964045e-01 + 1.6914951e-02 9.2171464e-03 -1.8823869e-01 -7.1574543e-02 -1.6168473e-01 -4.4512994e-01 1.4837659e-01 + 2.0207949e-01 -2.1237975e-01 8.8934670e-02 -5.4892461e-01 9.4233314e-01 -4.8558620e-01 4.6106186e-01 + 1.2169907e-01 1.5112075e-01 2.8286965e-02 5.8120803e-02 8.2922502e-02 -2.1489951e-02 1.4534074e-01 + -1.6048455e-01 -3.6390081e-01 8.9638693e-03 -5.6178435e-02 9.2217161e-03 2.8100687e-02 2.5779326e-01 + 1.0180247e-01 1.3516535e-01 -2.3423895e-01 8.1340404e-02 2.6652717e-02 -3.9744002e-02 1.1669750e-01 + -2.4687774e-02 1.6083756e-01 -5.4202249e-02 3.7911549e-02 6.4645904e-02 -2.4565230e-02 5.1338838e-02 + -2.9041412e-01 -2.5417979e-01 4.2090369e-01 -5.4622388e-02 -1.0470519e-01 -1.7876085e-01 5.0350194e-02 + -4.3481333e-02 4.9577743e-02 -2.4261267e-02 -7.3421470e-02 1.9332004e-02 -6.9407194e-02 -5.8193200e-02 + -2.6792181e-01 1.0883482e-02 -1.3950841e-01 -4.0652534e-01 -8.5684488e-02 6.0043698e-03 2.4661469e-01 + 2.4472305e-02 2.3032979e-01 -7.0161623e-02 -1.3984820e-02 -3.2032736e-01 -2.4956147e-01 -4.7981363e-01 + -5.2936413e-02 8.6627042e-02 1.4612766e-01 -1.3745365e-01 -7.9399874e-02 -3.8716506e-02 -7.2853289e-02 + -3.1243684e-01 -2.1255821e-01 -6.7599630e-02 -1.9680382e-01 -2.6336883e-01 -2.9229778e-01 -8.0282119e-02 + -1.4963761e-01 -6.5944373e-02 1.4215761e-01 -3.1701977e-01 5.0953204e-02 2.8847210e-01 -2.9403380e-02 + 2.5455488e-01 7.9041334e-02 2.9141568e-02 3.8735338e-01 -2.9292244e-01 -5.0109276e-01 4.1076657e-01 + -1.3459942e+00 9.0569422e-01 3.3466598e-01 1.0808024e+00 -1.3316208e+00 6.5923080e-01 -8.0399188e-01 + -5.6976549e-02 -4.5580919e-02 5.6377980e-02 -7.9620130e-02 1.2054589e-01 4.3515987e-01 3.2366876e-02 + 5.2172354e-02 2.3119049e-01 -3.2825276e-01 4.2734366e-02 1.6704514e-01 -5.1541002e-02 1.3771893e-02 + 1.1885819e-03 -8.2806448e-02 3.0991316e-02 -1.5262137e-01 -1.6229814e-01 -1.0446747e-01 -1.5904780e-01 + -5.2666806e-01 -3.0062125e-01 1.0060003e+00 1.8849019e-01 2.5833939e-01 -6.3355499e-02 -2.0793807e-01 + -8.1010138e-01 4.9116137e-01 -3.2671397e-01 -2.9941952e-01 2.9273592e-01 -3.8738617e-01 4.2505103e-01 + 2.0636353e-01 4.9392246e-01 4.8096197e-01 7.5425307e-02 -2.7309268e-01 3.8120796e-01 -2.4947866e-01 + -2.0088749e-02 -1.8934560e-01 -3.0582386e-01 -7.1971488e-02 -8.9539292e-02 1.9830407e-01 -2.6480847e-01 + -8.9404374e-01 -1.4031882e-01 -1.4559666e-01 9.6002664e-01 -2.5947606e+00 1.0096223e-01 -4.3217422e-01 + -2.5589874e-01 -3.6483531e-02 3.1723003e-02 -6.6514476e-02 -1.3188964e-01 -1.7770632e-01 1.5802393e-01 + -8.2606466e-02 2.2471829e-01 1.4647535e-02 1.8982781e-01 -1.3392566e-01 -2.3837590e-01 -6.2326467e-02 + 4.9551543e-01 3.1828034e-01 3.1631521e-01 5.9728730e-01 -2.4927427e-01 2.1921220e-01 1.0343227e-01 + 1.3793931e-01 1.2814508e-01 -2.4336974e-01 -3.8756865e-01 -3.0924480e-01 2.3613680e-01 -2.5819970e-01 + 4.4625636e-01 1.1224962e-01 2.8005444e-01 3.0992461e-01 2.7801459e-02 5.1066650e-02 -1.5833458e-01 + -1.5536753e-01 5.5621188e-01 1.7197779e-01 1.3104523e-02 3.6403058e-01 1.5950243e-01 1.0488544e-01 + 2.1394995e-01 -1.1744465e-02 3.2817600e-01 -9.9455213e-02 -6.0596607e-02 -2.1266379e-01 2.0278727e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_IW_F_4.txt new file mode 100644 index 00000000..acc3c7e4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_F_4.txt @@ -0,0 +1,36 @@ + 2.0485652e-01 4.1618727e-02 4.5844495e-01 6.5058455e-02 -6.1242607e-01 9.2943764e-03 -1.3116306e-01 + -2.0180767e-01 1.6105546e-01 1.3696912e-01 1.8668153e-01 4.6166540e-01 2.9298733e-02 1.1693904e-01 + -2.0886443e-01 -1.5162658e-01 -4.1234921e-01 -3.2954304e-02 -5.6466116e-02 6.8740871e-02 1.2748707e-01 + 9.9683597e-02 -1.6458170e-02 -1.6330089e-01 -2.2470751e-01 1.8514179e-01 4.9554742e-01 1.2971509e-01 + -4.8989545e-02 -7.5408639e-02 1.3477476e-01 1.7412148e-01 -7.7820225e-01 1.5266068e-01 -1.7370606e-01 + -3.1215654e-01 2.9397745e-01 1.6325007e-01 3.8433126e-01 6.2988565e-01 -2.0617454e-01 2.0789082e-01 + 1.6641185e-01 -9.6486729e-02 1.5265926e-01 -1.2756400e-01 -6.6359017e-02 -4.2666357e-01 -2.2236900e-01 + -2.1664089e-02 2.1336409e-01 -3.1962370e-02 -2.5141322e-01 -1.0802437e-01 3.8028348e-02 1.4563789e-01 + -1.8481739e-01 -6.3514368e-02 -1.6818430e-02 1.3158746e-01 -9.2948791e-01 -2.5489252e-01 -1.2171071e-01 + -2.6934190e-01 4.9331784e-01 1.1862909e-01 3.8002521e-01 -4.9118104e-01 3.0665347e-01 -3.6156609e-01 + 8.8691964e-02 3.2818129e-01 -6.2771138e-01 2.4649827e-01 1.0187910e-01 2.6401292e-01 -1.1156231e-01 + 6.2585256e-02 -2.8463278e-01 -1.8487644e-01 -3.7608573e-03 5.6852914e-02 -1.2328088e-01 4.3386769e-01 + 8.6834447e-02 1.9456416e-01 2.2796023e-02 -9.6355831e-02 -6.6103905e-02 2.6700785e-01 9.4158052e-02 + -4.8053999e-02 4.1987176e-01 3.8748654e-01 6.0507788e-01 3.1981357e-02 3.6234089e-01 -3.1403258e-01 + 7.0791792e-01 6.7803321e-01 -4.1097545e-01 -4.1715144e-01 8.1310184e-01 -2.0580802e-01 -3.5493969e-01 + -3.4305059e-01 -2.6027548e-01 -2.8237059e-01 6.3541664e-02 2.9494457e-01 -2.9158226e-01 -2.3128367e-01 + -2.1493009e-01 3.3085841e-01 7.1748659e-02 -2.1533565e-01 7.5358533e-02 -1.9225567e-02 -7.9144219e-02 + 3.8988230e-02 -9.9512379e-02 2.6549225e-01 -1.0691914e-01 1.6817230e-01 1.1674177e-01 6.8461953e-02 + 7.9202860e-02 2.0149666e-01 1.4080499e-01 2.6034375e-01 4.9316967e-02 2.8766427e-01 -2.3136601e-01 + -3.2640612e-01 3.4734925e-01 -4.1664697e-01 1.5257886e-01 3.3288211e-01 -2.8075973e-01 1.2122394e-01 + 1.2116299e-01 -6.3816372e-02 1.7395631e-01 -4.7860044e-01 7.0243480e-01 -4.5127461e-01 2.2911901e-01 + -1.3314563e-01 -3.1069852e-01 -5.8404929e-02 -3.5054243e-01 1.5481260e-02 -2.6698571e-01 1.6735926e-01 + -1.5289663e-01 3.3845198e-03 -1.1846087e-01 -2.0443877e-01 -4.0516320e-01 -1.3109806e-01 -1.9705683e-01 + 1.7593674e-01 -3.8983218e-01 1.8351614e-02 -3.4027081e-01 3.9392809e-01 -1.0629059e-01 3.1122626e-01 + -1.4659292e-02 6.5675060e-02 -1.3472283e-01 -8.9020170e-02 2.0394491e-01 1.5867399e-01 1.4512937e-01 + 2.5651868e-01 -1.0628166e-01 -3.8598539e-01 1.7769161e-01 -9.8785556e-02 1.7837105e-01 -2.1095637e-01 + 2.0246762e-01 -3.6439958e-01 3.5598229e-02 -2.0675082e-01 1.0218136e-01 1.4485821e-01 8.2845663e-02 + 2.9241237e-01 -9.7323088e-02 4.3484734e-03 3.6558829e-01 2.8215741e-01 2.2456113e-01 -3.9161624e-02 + 1.0373077e-01 3.2596296e-01 2.0596125e-01 6.4643746e-02 -3.6345566e-02 2.1262735e-02 -1.4629350e-02 + -2.6473487e-01 2.5761931e-02 -5.0642841e-02 1.1133527e-01 -2.4015052e-01 -3.8302469e-01 -3.3854746e-01 + -1.9017986e-01 -1.4752333e-01 1.1804630e-02 -3.9596596e-01 -8.1788609e-02 -1.7315778e-01 1.3843648e-01 + -5.2438307e-01 6.7592664e-01 -3.1243792e-01 3.5500995e-01 3.0967600e-01 4.3552711e-01 -8.2086789e-02 + -7.2076498e-02 2.0374701e-01 -4.8162020e-02 -1.5164635e-01 1.4460835e-01 1.0759916e-01 2.7686943e-01 + -4.0666060e-02 -9.5006481e-02 -4.6045813e-02 2.2197225e-01 1.8961516e-02 2.4343063e-01 -3.7664077e-02 + 2.4323602e-01 -1.5838683e-01 -8.9352880e-02 4.9627307e-02 -8.0726467e-02 8.3695168e-02 -1.0296798e-01 + -6.8917976e-02 -1.3380642e-01 -1.5212997e-01 3.9236625e-02 -1.4324537e-01 2.1279919e-01 -1.9820429e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_IW_F_5.txt new file mode 100644 index 00000000..8d78eb07 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_F_5.txt @@ -0,0 +1,43 @@ + -3.8238013e-01 -4.5525516e-02 6.3373418e-01 -1.3771951e-01 -1.1788515e-01 -2.9192007e-01 -6.9669148e-02 + 4.3892483e-02 -1.7950533e-01 -6.2589485e-02 -4.5935550e-01 2.9096119e-01 4.4081451e-02 -5.6274821e-02 + -8.7109383e-02 4.2808010e-01 3.3900261e-01 3.0995735e-01 6.2754703e-02 4.0946800e-01 -1.3317963e-01 + -1.9788373e-01 -1.0571647e-01 -4.0271227e-01 -2.0681350e-01 -2.0663416e-01 -9.3165934e-02 1.0059825e-01 + 2.2550120e-02 1.4651726e-01 -8.6320895e-02 2.1452869e-01 -5.5933219e-02 2.3699896e-01 -9.0309580e-02 + 1.1996265e-01 3.9413572e-02 8.1596785e-02 -1.6755941e-01 2.1884271e-01 3.6383515e-02 -1.4163625e-01 + 1.0130226e-01 -8.0679304e-02 -2.8726562e-01 -5.2780136e-03 -1.0162006e-01 1.7363915e-01 -3.2047925e-02 + -1.3297827e-01 1.1082615e-01 2.1089124e-02 -7.4576761e-02 -8.5651741e-02 -1.0251544e-01 5.6715869e-02 + 3.8155299e-02 -1.1151965e-01 2.7282287e-02 5.6852858e-02 -5.5585120e-02 -1.6970886e-01 -7.5839973e-02 + -3.7574529e-01 8.3644175e-02 4.1297794e-01 1.2961923e-01 2.2251593e-01 2.9419193e-01 -1.8574528e-01 + 5.9750531e-01 -1.7239921e-01 1.9977830e-01 2.0525970e-01 -6.3169214e-02 -5.4903123e-01 -3.3236051e-01 + -2.1802266e-01 -7.7907005e-02 2.9461586e-01 3.7771605e-02 2.0115489e-01 3.8607792e-02 -1.2779314e-01 + -2.2782774e-01 2.4511011e-01 7.0326339e-02 -9.4016547e-02 -3.0553501e-01 7.0035067e-02 1.1501872e-01 + -1.0403285e+00 4.7444793e-01 -7.0334897e-01 1.9242291e-01 8.9200564e-01 -1.1304738e+00 3.0568049e-01 + 1.6820027e-01 -8.2407373e-02 3.7842768e-01 3.2580812e-02 1.3986630e-01 -9.6330634e-02 -3.8540307e-02 + -6.4882910e-01 -2.1476708e-01 4.3013621e-01 8.3842208e-02 3.0429302e-03 -1.4244345e-01 1.0549824e-01 + 1.7626708e-01 -2.3485904e-01 -4.5705802e-01 -1.6484490e-01 2.7355774e-01 2.2199165e-01 8.1155198e-03 + -5.6402542e-01 1.3867290e-01 3.0217885e-01 -1.1381090e-01 3.2760297e-01 1.6670011e-01 1.8157740e-01 + -3.5567967e-01 2.7833234e-01 2.0681028e-01 6.5385178e-02 -2.8848822e-01 -1.1123222e-01 -2.4387187e-02 + 7.3458797e-01 6.1639889e-01 -3.7891238e-02 -1.3726764e+00 1.2555198e+00 -3.8767936e-01 6.9259628e-01 + -1.4761829e-01 2.2828706e-02 1.1709406e-01 -6.8581240e-02 1.1637053e-01 1.4083304e-01 1.4505251e-01 + 2.6163485e-01 -1.1826571e-01 1.2096235e-01 -6.6468989e-01 2.7358787e-01 1.0822280e-01 3.1815460e-02 + 2.9584109e-01 -4.6606973e-01 7.3991074e-01 4.0147528e-01 -2.1741445e-01 -1.8178105e-01 -3.4062415e-01 + -3.3758379e-01 2.1529200e-01 3.0741383e-01 4.6062982e-01 1.1178359e-01 -1.5222300e-01 -6.8686589e-01 + -3.0721089e-01 -2.4571501e-01 2.1270752e-01 4.4815381e-02 5.9609968e-02 -2.1851464e-01 1.2368731e-01 + 6.6647276e-01 -1.1792478e+00 -7.6094992e-02 -3.4253409e-01 4.6813785e-02 -7.4876589e-01 3.7819857e-01 + 2.0048282e-01 4.2776769e-01 -1.0754650e-01 1.4211536e-02 -8.7222758e-02 6.3327939e-02 -3.8842534e-02 + -6.1363652e-02 3.4488813e-02 -5.8618770e-01 1.2075573e-01 -1.8626012e-01 -1.9306249e-01 -6.0251653e-02 + 1.0386448e-02 -2.0725642e-01 1.6651394e-01 1.7189151e-01 -8.5820119e-02 -8.7558176e-02 5.2550285e-03 + 1.3001669e-01 3.3609753e-01 9.0671790e-02 4.7841242e-02 -6.9750503e-02 1.5995807e-01 -6.5434113e-02 + -4.4229332e-01 5.0858402e-01 -3.3336803e-02 4.1862105e-01 -3.0867361e-01 2.0096631e-01 -1.6338786e-01 + -5.4386607e-02 -2.3574336e-01 3.1493681e-02 7.4346231e-02 -1.6035148e-01 1.7994334e-02 -3.3155890e-02 + 3.0508583e-01 2.2605483e-03 9.9775448e-01 2.0442771e-01 -2.6254334e-01 -1.9215606e-01 -6.7288935e-02 + -1.8147548e-01 -4.4319210e-01 -2.4436746e-01 3.9800495e-02 -1.6665128e-01 -2.4033979e-01 1.0455603e-01 + -4.1235158e-02 -1.9764814e-02 1.0827175e-01 -7.4318028e-02 2.0813291e-01 -2.1249993e-01 -1.2291386e-02 + -4.6567842e-02 -5.1275896e-02 4.6260225e-03 2.8356100e-01 -2.0147290e-01 -3.3172881e-01 -8.4347797e-02 + 1.3167367e-02 -3.4594701e-01 -2.1374020e-01 -2.1939559e-01 1.6141994e-01 1.3560125e-01 3.2938139e-02 + -1.6288874e-01 -2.7635447e-01 -1.9036519e-01 -1.2556421e-01 -4.8608653e-03 -6.0269701e-02 4.7120196e-02 + 2.7822702e-01 3.4328477e-02 7.6468453e-02 -1.1151189e-01 -2.1419662e-01 -1.8135474e-01 1.5720390e-01 + 3.6981697e-02 3.6517131e-01 2.3505629e-01 -6.6912287e-02 3.9409929e-03 5.8805230e-03 1.6603733e-02 + 3.6534683e-01 -1.7495343e-01 2.0220481e-01 -7.8202784e-02 -7.2857005e-02 5.1587473e-03 3.7656481e-01 + 6.2155671e-02 2.6453672e-01 8.4526156e-02 4.9361874e-01 6.6986413e-02 4.2701937e-01 -5.7841353e-03 + -3.3271982e-01 6.3971161e-01 -2.6384550e-01 -1.1764299e-01 1.7325587e-02 -7.0039528e-03 3.1568695e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_IW_G_1.txt new file mode 100644 index 00000000..046addca --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_G_1.txt @@ -0,0 +1,27 @@ + 2.1225993e-01 -1.8780742e-02 -4.2840914e-01 -8.9190208e-02 4.5457190e-02 -2.2555741e-01 -6.4767147e-02 + -7.2593371e-02 1.9762230e-01 3.5598605e-01 2.3330531e-02 -1.5636247e-01 -5.4025496e-01 5.6554424e-01 + 1.4740437e-02 4.0985500e-01 -3.5642907e-02 -7.7852507e-02 1.7558797e-01 5.8552302e-01 -8.2368493e-02 + 1.1083880e-01 1.4379465e-01 -1.9649371e-01 7.8250568e-02 -1.3904812e-01 1.4510726e-01 1.6702408e-01 + -3.5315062e-02 7.7045200e-01 6.9879747e-02 1.3998065e+00 -1.7411593e+00 6.8084472e-01 -1.1080947e+00 + -1.9570510e-03 -4.8128176e-01 6.0547778e-01 6.1934997e-01 -1.5383835e-01 1.3329523e-01 1.3395799e+00 + 1.2106718e-01 1.4600320e-01 5.7696153e-02 -2.2517606e-01 9.9012551e-02 7.8810970e-02 -1.2339102e-01 + -2.2951778e-01 6.6560548e-01 5.6366581e-02 7.3267851e-01 -1.5136255e-01 -3.7352370e-01 7.1442014e-02 + 2.9915669e-01 -2.7755720e-01 3.8021056e-03 -3.3759802e-01 -1.1727207e-01 1.9164128e-01 -3.1297037e-02 + 7.2172450e-02 -2.2283577e-01 7.2529678e-02 -1.0553873e-01 4.0329226e-02 -2.2789938e-01 -1.1544647e-01 + -1.1939005e+00 -1.2847443e+00 4.0849291e-01 9.2436520e-01 -7.5192132e-01 -6.2744462e-01 -7.8383633e-02 + 2.3994724e-01 -1.1088461e-01 -5.3492608e-02 1.4936743e-01 1.8312327e-02 -9.6242553e-02 -1.8610297e-01 + -3.4735653e-01 1.6029421e-01 5.8353480e-01 -6.3920709e-01 -9.7633409e-02 1.4889304e-01 -8.5389300e-02 + -8.5715858e-01 2.1244462e-01 -6.6918625e-01 1.1592065e+00 -1.3781771e+00 2.5712188e-01 1.6288886e-01 + 1.1881620e+00 -1.4571157e+00 -3.3508859e-01 -6.9689665e-02 -7.2694643e-02 -6.7786611e-01 5.9367767e-01 + -4.7801258e-01 -7.2074106e-01 7.0361879e-01 4.9746809e-01 2.3020862e-01 4.9368974e-01 3.8227190e-01 + -1.4290496e-01 5.1043406e-02 -2.4596828e-02 -7.3527045e-02 1.7718194e-02 -1.4731067e-01 2.3694698e-02 + -2.0801650e-01 1.1710976e+00 6.1671086e-01 -3.9591805e-01 6.1923208e-01 -3.0578053e-02 3.4509260e-01 + 9.9656283e-02 -3.1186449e-01 -3.1876112e-01 -2.5228351e-01 -3.4215282e-01 -1.1084993e-01 -2.1432904e-01 + 6.3640919e-01 -1.2074042e-01 -2.8877408e-01 -5.7654674e-01 -1.1477643e-01 -7.9862935e-01 4.6789234e-01 + -7.1993291e-01 8.3460975e-01 -3.4498554e-01 -6.3952712e-02 1.0497897e-01 -5.7588621e-01 1.0202653e-01 + 6.4097399e-01 7.8142372e-02 9.8973633e-01 -5.6932711e-01 2.7152915e-01 -1.7981104e-01 -1.2079504e-01 + -3.5974989e-01 -1.9738880e-02 -2.9974182e-02 -2.3289276e-01 -7.8734995e-02 -2.6274984e-01 2.7745949e-01 + 1.0189229e-01 6.9335110e-02 -1.6492461e-01 -5.6134765e-02 -1.5733026e-01 -4.2866480e-02 3.7132665e-02 + -1.2029349e-02 -1.0290179e-01 -7.0480847e-02 5.5079293e-02 -5.4417089e-01 7.8746859e-01 5.8780701e-01 + 3.3737386e-02 1.2160392e-01 -6.2473671e-01 1.5134284e-01 8.3292445e-02 3.9719520e-01 5.8129575e-01 + 1.7212080e-01 -5.7727257e-02 -1.1062913e-01 1.6787370e+00 6.5144563e-01 2.1957500e-01 -1.4272905e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_IW_G_2.txt new file mode 100644 index 00000000..9afdfad5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_G_2.txt @@ -0,0 +1,28 @@ + 7.6392317e-01 -4.0026282e-01 -1.1746428e-01 9.4751210e-04 -1.5917222e-01 -3.5819480e-01 -2.4557439e-02 + -3.8906756e-01 -4.6587297e-01 -4.9211719e-01 -1.8603678e-01 1.5166202e-01 5.2264323e-01 -7.5045727e-02 + -1.7975657e-01 1.8418279e-01 1.5026118e-01 3.6283572e-02 6.5358525e-02 1.7049783e-01 7.2359699e-02 + -4.4720336e-02 -2.8273021e-01 -1.9849128e-01 1.0293181e-01 2.7411765e-01 5.9116504e-02 -2.2502449e-01 + -1.0577384e+00 4.1643021e-01 -9.2032480e-02 1.4990484e-01 -1.8739019e-02 2.0259122e-01 -1.0152718e-01 + -1.2261460e-01 -8.3954614e-01 -3.2596148e-01 -4.3146375e-01 5.0751516e-01 -6.2367283e-01 3.1867340e-01 + 2.5071301e-01 -8.4077889e-01 7.4316263e-02 2.9888399e-01 -8.8030829e-01 -1.0012456e-01 1.5043283e-02 + -1.0493407e+00 1.7195573e+00 -2.2466870e-01 -3.6486445e-01 3.6772833e-01 -1.6814952e+00 7.2370663e-02 + -5.6124761e-02 2.3508867e-01 3.4719863e-02 1.7615058e-01 -4.0536315e-01 3.0448560e-01 -4.4169586e-01 + -1.3143736e-01 -2.5859546e-02 -1.2816779e-01 -3.7050052e-01 -8.5756332e-02 -3.0751320e-01 4.2118763e-02 + 4.4352756e-02 -2.3687534e-02 1.6473834e-01 2.2170201e-01 1.1071907e-01 2.7138895e-01 -7.3853235e-02 + 6.5692847e-02 1.8618514e-01 -1.4468331e-02 -1.4420992e-01 1.1321182e-01 1.1724201e-01 2.9892643e-02 + -1.7305122e-01 -5.3404448e-03 -1.1124425e-01 -3.7519586e-01 -3.7553572e-02 -1.5543769e-01 4.9247129e-02 + -5.9576271e-01 -2.4229866e-01 -1.6353592e-02 4.1755397e-01 -1.0499082e+00 -1.4018976e-01 5.5524194e-01 + 2.0722338e-01 6.2152009e-02 -9.8953506e-02 -2.2963697e-01 1.8890685e-01 -1.9639223e-01 3.8462430e-01 + 5.8259010e-02 3.4524610e-01 9.0700178e-02 5.8035252e-01 3.6745937e-02 6.0571737e-01 -6.1908815e-02 + -4.9908801e-01 3.2895805e-01 3.7070034e-01 1.1279604e-01 3.3771958e-01 -3.4028062e-01 2.5858487e-01 + -2.5682795e-01 1.6688702e-01 2.9771681e-01 3.0306282e-01 4.6129475e-02 5.9651546e-01 -1.0891390e-01 + -9.2370242e-02 1.8756508e-02 -8.6354945e-02 -2.0202128e-01 -1.1804527e-01 -2.3076015e-01 1.4152686e-01 + -1.7424690e-01 5.7706812e-02 1.8202250e-01 -2.0941567e-01 -7.3638593e-02 -2.3632268e-01 3.3171146e-01 + -8.8035303e-03 2.3550956e-01 9.1054220e-02 4.3816921e-01 -1.2571011e-02 4.4430618e-01 -4.8647136e-02 + 3.8912828e-01 2.5152371e-01 -1.2860152e-01 -2.8401237e-01 6.3795417e-01 -3.4682628e-01 6.9777177e-02 + 3.1465692e-01 4.7453290e-01 -4.5332474e-01 -1.6964005e+00 1.9082425e+00 -4.5877942e-01 6.1642652e-01 + 3.3195505e-01 3.0230259e-01 1.0160307e-02 5.2485750e-01 -1.1493983e-01 -5.2249799e-01 -5.9415670e-02 + 3.0639613e-01 -8.9949858e-01 6.3230749e-01 2.3103996e-01 -3.0602257e-01 -3.8930345e-01 9.6907377e-02 + 1.8443755e-01 -1.2281387e-01 -3.8031387e-01 -2.4615571e-01 8.7788317e-01 1.8916250e-01 -3.1940014e-01 + -2.9408351e-01 1.2249351e-02 -2.6957683e-02 -1.0876837e-01 -3.2082428e-01 -2.7624299e-01 1.8041360e-01 + -2.2099302e-01 4.0129481e-01 1.8498348e+00 5.0504003e-01 7.3211430e-01 -1.0190224e-01 -2.4359135e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_IW_G_3.txt new file mode 100644 index 00000000..f5b54931 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_G_3.txt @@ -0,0 +1,34 @@ + -1.2114626e-01 -4.4159196e-01 1.0009390e-01 -3.9512081e-01 -3.1711929e-01 6.1414223e-01 -2.7587576e-01 + 2.2127584e-01 -1.9431788e-01 -9.5582782e-02 5.8564770e-01 9.8640616e-02 3.5843070e-01 -4.5204782e-03 + 6.0901663e-01 6.8567715e-01 -2.1491020e+00 -1.5550082e-01 3.3016825e-01 2.9385565e-01 -7.1997540e-01 + 1.4419278e-01 1.0866647e-01 -6.8863725e-02 2.8594739e-01 -1.1415637e-02 -7.9498710e-02 -5.2656101e-02 + -5.9716719e-02 2.2891756e-01 2.8962885e-01 -1.2642232e-01 -2.6665615e-01 -2.7595187e-01 7.7200482e-02 + 3.0250923e-01 -2.1438528e-01 -6.1721739e-02 1.5661307e-01 -1.3111713e-02 2.8237388e-01 -1.5538846e-01 + -2.9068884e-01 -1.0459988e-01 6.2495308e-01 1.7370477e-01 -3.2432789e-01 5.4551633e-03 -1.6615386e-01 + -1.5712893e-01 -1.4473969e-01 -6.0595619e-02 4.6154083e-01 7.7659992e-01 -3.6582071e-01 4.1346142e-02 + -9.2939629e-01 8.9997081e-01 -1.2138863e-01 2.7698493e-01 9.5174355e-01 -6.7788659e-01 -3.0787676e-02 + 1.7500388e-01 -4.7322562e-02 2.0842246e-02 -2.5511648e-01 1.0888186e+00 -4.7052894e-01 -1.3150032e-01 + 1.6442062e-01 1.4593328e-01 2.3401528e-01 1.2775411e-01 1.3830381e-01 6.0102907e-02 -1.3693125e-01 + -6.9256683e-01 3.9388200e-01 1.4964098e-01 6.6322408e-01 -1.4432594e+00 6.0656069e-01 -2.0037368e-01 + 1.0660146e-01 8.8988015e-02 1.4449672e-01 -3.6238934e-01 -1.2921687e-01 -2.7526079e-01 -1.3360595e-01 + 1.0582335e-01 -2.0160682e-01 2.7111810e-01 8.0647636e-01 -4.7429921e-01 6.0871031e-01 -2.2482203e-01 + 1.3967692e-01 -1.1698508e-01 2.3055824e-01 5.4144894e-01 -9.8380581e-02 -2.3829770e-01 -1.4811812e-01 + -2.3720745e-01 -4.9544932e-02 -2.7653085e-01 2.6026745e-01 1.0705540e-01 1.7859234e-01 3.1883884e-02 + -2.6542951e-01 -3.3185383e-01 -4.4942080e-01 -6.1591081e-01 1.6712225e-02 7.9554829e-01 -5.4897696e-01 + 4.4396535e-01 -6.8477582e-02 -9.2773263e-01 -1.7214896e-01 -1.5574349e-01 6.7109399e-01 -3.3875754e-01 + -2.0967853e-01 2.0804220e-01 -1.3350715e-01 -1.6345288e-01 1.0237803e-01 -1.9299466e-01 2.1001123e-02 + 1.9006777e-02 5.7748198e-02 -1.7113500e-01 3.2100275e-01 6.3752331e-02 4.8908249e-03 -4.1398480e-01 + 8.8026764e-01 -9.2318359e-01 -1.5141186e-01 -1.3593038e+00 -6.6477147e-01 -5.1237415e-01 4.6791119e-01 + -5.6875526e-02 1.4294233e-01 1.8492744e-01 -2.1112086e-01 -2.2283461e-01 -3.6703807e-01 -4.9470989e-01 + 1.2843966e+00 -5.2481671e-01 -2.5663859e-01 -2.1322019e+00 1.8705346e+00 7.9126306e-01 6.0110457e-01 + 3.7763041e-01 -1.9563778e-02 -1.6506313e-01 9.0722273e-02 -1.2374076e-01 -4.9688994e-01 -1.6701264e-02 + 6.0126822e-02 -4.8284188e-02 -5.5617864e-02 4.1920083e-01 -2.6299037e-01 1.2041129e-01 9.7657076e-02 + -5.0268123e-01 4.8304535e-01 3.4323437e-01 1.0331532e+00 1.5554152e-01 -3.1663465e-01 -4.5762868e-02 + 2.7248212e-01 -3.4278070e-01 -6.5247800e-01 2.2392282e-01 3.5644912e-01 -5.9910404e-01 -1.6379640e-01 + 2.1779984e-01 -8.1027577e-02 -2.4988155e-02 -2.7037970e-01 -1.2701163e-01 -1.6513196e-01 2.8013363e-02 + 2.5880384e-01 1.6263661e-01 1.3492142e-01 3.5641845e-02 6.6139186e-02 9.8064179e-02 4.5027841e-02 + -4.6204557e-02 7.5022708e-03 9.2244281e-02 2.8450856e-01 -4.8163349e-02 -1.3838438e-02 -1.5293624e-01 + 5.1391382e-01 -7.7527393e-01 -1.7646303e-02 -1.4050224e-01 -4.9092121e-01 -2.8903262e-01 4.5159552e-01 + 6.3985033e-02 -8.7187798e-01 -1.0383622e+00 -3.8444836e-01 2.8450559e-01 -6.7729259e-01 -6.7247608e-02 + -5.0490426e-01 4.6780678e-01 1.1454549e+00 -2.3371994e-01 1.5641535e-01 3.7458426e-01 -4.6475963e-01 + 4.7368802e-02 -1.4351584e-01 -1.1642215e-01 1.0138317e+00 6.9484425e-02 2.0163513e-01 -2.0457437e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_IW_G_4.txt new file mode 100644 index 00000000..c904d828 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_G_4.txt @@ -0,0 +1,37 @@ + 8.5979795e-02 6.3840378e-02 2.0548224e-02 1.2678067e-01 1.1527484e-01 1.7286526e-01 -7.3169343e-02 + -2.3879791e-01 3.9859645e-01 1.1534042e-01 7.2642264e-02 -1.1633095e-02 1.9023990e-01 -7.3966809e-02 + 2.6778627e-01 2.0214696e-01 -7.8517607e-02 1.0333353e-01 4.9536688e-02 1.8276734e-01 2.1156442e-02 + 6.2396669e-01 -1.0937414e-01 3.5265320e-01 -4.1449530e-01 7.3448262e-01 -3.6410050e-01 4.1036912e-01 + 2.3829647e-02 -9.2894467e-02 5.2485537e-02 -1.1751149e-01 -9.7694195e-02 -1.5082956e-01 4.9570264e-02 + -1.4036498e-02 -8.6992233e-03 -4.1630690e-02 -2.4091705e-01 -1.2572640e-02 -9.4482017e-02 2.8087245e-02 + 1.5653183e-01 -1.9470254e-01 8.4566911e-02 -1.1354770e-01 1.6461107e-01 -1.4500015e-01 2.2852601e-01 + 2.7143368e-01 2.3086456e-01 -4.4813709e-02 -6.6084529e-02 3.5911007e-01 1.1920891e-01 -1.0750625e-04 + 6.7757419e-02 -8.8679503e-02 1.3214973e-01 2.1522215e-02 -7.4813165e-02 1.4587326e-01 -2.3260483e-01 + -2.1824422e-01 -2.8902840e-01 -3.9566585e-02 -7.8838235e-03 -2.3849367e-01 -1.7766586e-01 4.3423972e-02 + -2.1883281e-01 -1.0782056e-01 4.5145949e-01 -2.6920250e-01 -9.9498850e-01 -1.0594200e+00 5.7683700e-01 + -2.2684029e-02 1.6711909e-01 1.0794983e+00 1.1670895e-01 1.2327737e-01 -3.4464477e-01 6.2945030e-01 + -1.8534742e-01 1.4726085e-01 1.2042177e-01 2.1589702e-01 -5.8071346e-02 4.6564866e-01 1.7567016e-01 + 2.6194757e-01 -1.7345004e-01 -1.0572738e-01 1.1706265e-01 -4.5609856e-02 2.2379976e-01 1.1332574e-01 + 8.4228043e-01 -3.3532401e-01 8.1212094e-02 -5.0633569e-01 1.1675782e+00 -2.5907729e-01 4.1825660e-01 + 6.6612548e-01 5.0525877e-01 1.3296668e-01 -7.4939312e-01 2.3207696e+00 1.2000386e-01 7.7705722e-01 + -3.6790689e-02 -6.4391243e-02 7.1502441e-02 -1.4770962e-01 8.8435833e-02 -1.5409839e-01 1.1140275e-01 + -2.1053097e-01 -3.5222136e-01 -2.4483683e-02 -3.9226731e-01 1.8284205e-01 1.8081313e-01 -1.6226763e-01 + -9.7945744e-02 -4.8904864e-01 -9.2309161e-02 1.1748962e-01 -2.0105005e-01 -1.9325465e-01 -1.2903616e-01 + -2.9199491e-02 6.0752087e-01 2.9866818e-01 -1.7540337e-01 6.4455244e-01 3.0318420e-01 1.3986219e-01 + -1.5157732e-01 2.2277102e-01 -2.4607965e-01 1.5825007e-01 -4.6133861e-01 2.3527943e-01 -2.0145650e-01 + 5.6778056e-02 9.3811311e-02 -6.5058617e-02 -4.8450907e-02 6.3531840e-01 -5.7181382e-01 9.2126391e-02 + 2.1642087e-01 1.1405815e-01 1.0548679e-01 3.2469547e-02 -1.4797878e-01 -2.6504237e-02 -2.6038221e-01 + 3.9252640e-01 -4.8087345e-02 -1.0827007e-01 -1.1389981e-01 5.1021803e-02 -8.7623998e-02 -6.3073431e-02 + 7.3849293e-02 3.7534655e-01 -9.6429540e-01 -2.1709199e-01 2.3127206e-01 1.2412712e-01 1.4325256e-01 + -1.5811696e-01 2.9445801e-01 -3.8064909e-02 2.2896773e-01 -5.6527789e-02 3.1167610e-02 -2.4073856e-01 + -6.8552473e-02 5.3349982e-02 3.0079683e-01 8.0753376e-01 -1.0267117e-01 -2.5062888e-01 2.6421648e-01 + 1.6178780e-01 -3.7526896e-02 2.5036988e-02 -1.2417954e-01 8.7620133e-02 2.3653672e-01 3.2100614e-02 + 8.1354373e-02 7.3629410e-02 -5.2136803e-01 -6.0130773e-01 1.1216559e-01 9.0858881e-02 1.6694327e-01 + 2.8596951e-01 -7.0828225e-02 -1.1685090e-01 -3.9345726e-01 1.9752921e-02 -2.8639609e-02 6.1638384e-01 + -2.0204399e-01 2.9258780e-02 -7.9102611e-02 2.2877192e-02 3.2118754e-01 -2.0502109e-01 1.1636285e-01 + 9.2411903e-02 9.5695073e-02 7.7088650e-03 2.3204399e-01 -2.7935730e-02 1.2022682e-01 -7.7587613e-03 + -1.3333649e-01 -1.1879885e-01 4.3091183e-03 -2.3901891e-01 5.9261673e-02 -1.0362628e-01 2.1710085e-03 + -1.7964904e-01 -3.0788682e-01 -4.2628165e-01 -1.8816286e-01 -8.7345061e-01 8.3175638e-01 -2.4542097e-01 + -1.3191250e-01 7.5898651e-02 -9.0046912e-02 -1.1141834e-01 2.2127442e-01 -2.6734950e-02 -5.1104618e-02 + 4.6357690e-04 5.9249411e-01 1.2081612e-01 2.4057014e-01 -1.6811382e-01 4.8030201e-01 1.0645541e-01 + -5.9938837e-02 -2.5840696e-01 -1.0406230e-01 -2.5639120e-01 7.6224966e-02 -3.0927214e-01 -2.0200872e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_IW_G_5.txt new file mode 100644 index 00000000..e284faf9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_IW_G_5.txt @@ -0,0 +1,44 @@ + -2.0946476e-01 2.9837862e-01 -1.4703881e-01 -1.6887304e-02 -4.3124398e-01 1.8950066e-01 -2.0948662e-01 + -7.2785990e-02 5.4169114e-02 2.7731045e-01 7.3061104e-03 -1.4872439e-01 -3.5105325e-01 1.7555158e-01 + -3.1465508e-01 5.8831310e-02 -3.3406613e-01 -1.3677734e-01 -1.5713029e-01 2.5886161e-01 5.3223106e-02 + 2.0934023e-01 -4.5418010e-02 5.7225959e-02 -3.6787128e-02 -2.4695616e-01 -4.6447679e-02 -6.2083079e-02 + -1.5499915e-02 -1.9424324e-01 2.7512229e-01 2.7569131e-01 -9.4164614e-02 -2.9473566e-01 -4.6760997e-02 + 1.3666265e-01 -2.4330621e-01 -4.2088329e-02 -6.7451032e-01 1.1775127e-01 5.7790863e-01 4.8131531e-02 + 9.9086589e-02 -2.3950939e-01 1.0895722e-01 -4.1869980e-01 8.0885170e-02 8.8508600e-02 4.5068884e-02 + -1.4143920e-01 1.5042021e-01 4.2974808e-01 8.2787267e-01 -1.4634887e-03 1.1732270e-01 -1.0801070e-01 + -4.7687348e-02 -3.5263443e-01 4.3803936e-01 7.6174496e-02 2.7002424e-01 4.8380232e-02 4.1514912e-02 + 8.4330735e-01 1.0199221e-01 6.7859125e-02 -3.8469368e-01 5.7200541e-01 -9.3922734e-01 2.5255519e-01 + -1.2240627e-01 -5.7306542e-02 -2.0171229e-01 6.6903875e-02 -9.2673321e-02 6.4746981e-02 2.5703769e-01 + -1.2164464e-01 -2.8760116e-01 1.4511891e-01 -6.4057506e-02 -3.6548905e-02 2.3887060e-02 -2.0974681e-02 + -8.4380115e-02 4.7125058e-02 -7.5603795e-02 4.0172220e-01 1.0973771e-02 -1.1995072e-02 -1.7515546e-01 + -2.6780856e-01 2.2883859e-01 -3.3443864e-01 -1.2169793e-01 1.0040797e-01 1.0274411e-01 1.7651003e-01 + 9.7579591e-03 -9.4246994e-02 -5.2621911e-02 -1.2267918e-02 1.0380436e-02 1.9999167e-01 -1.7638748e-01 + -5.1596358e-02 2.7413927e-01 3.9631674e-01 3.4425044e-01 -4.5872733e-02 2.4313440e-01 6.7378635e-03 + -8.9674593e-01 -1.0949468e+00 -1.2293650e-01 8.0112735e-02 -3.8626297e-01 -4.9565398e-01 -2.6980467e-01 + 2.2822571e-01 -1.1732970e-01 8.9431978e-02 -1.0145334e-01 1.4806250e-01 4.7149333e-02 2.8541349e-01 + 8.1455691e-02 -1.2515586e-01 7.0482755e-02 1.9762905e-01 -1.8156009e-02 -2.7081709e-01 6.0347554e-02 + -1.2892641e-01 -1.4572534e-01 -7.0833365e-02 1.2713884e-01 1.2130622e-01 3.6531872e-01 -2.2705354e-01 + 3.5639213e-02 2.4121578e-01 -4.5643780e-02 -4.3802566e-02 -2.7393920e-02 -2.7370736e-01 -4.1301861e-01 + -3.2460064e-01 2.4394995e-01 -7.0292668e-03 3.5879753e-01 2.1784311e-01 1.7960077e-01 -6.8067861e-02 + -2.4800751e-01 1.2501316e-01 4.4104562e-01 -1.2415269e-02 -3.2927396e-02 3.2382880e-01 -2.6742889e-02 + 4.8296602e-01 5.3044611e-01 3.0331412e-01 4.2020201e-01 -1.6432892e-01 5.7561399e-01 5.4926108e-02 + 1.9677989e-02 2.1754458e-01 -1.5733648e-01 -1.8441485e-03 4.2243417e-01 -2.9041363e-01 2.8314313e-01 + -1.4745682e-01 6.6009624e-02 -6.3918142e-03 2.5008854e-01 -5.7912680e-02 -2.5469167e-01 1.4229812e-01 + 1.7088168e-01 -4.0980952e-01 7.1300629e-02 -2.9361423e-02 -4.0317719e-01 -1.5324103e-01 1.7604122e-01 + -3.1203352e-01 -2.2372308e-01 -3.2383870e-02 8.7885850e-03 -1.0830182e-01 -2.0850186e-01 2.3239506e-01 + -6.3870492e-02 6.2510838e-02 -7.6016165e-02 -5.7450117e-02 -1.4785696e-01 -8.3337763e-02 1.0154700e-01 + -3.6885980e-03 3.9526747e-02 1.7519788e-01 9.3698271e-02 -1.9480508e-01 -8.1480537e-02 2.7220691e-01 + -4.8943639e-01 -5.3109350e-01 -2.4362689e-01 2.1646263e+00 -3.1792114e+00 4.2295340e-01 -4.8447332e-01 + -3.7869170e-02 4.0542098e-02 -1.1092724e-01 -1.0688512e-01 -8.0129632e-02 4.6088468e-04 1.5445022e-01 + -6.8452312e-01 3.7628948e-01 2.2338309e-01 3.9096450e-01 4.4947855e-01 5.5482535e-01 -5.1853108e-02 + 6.0931196e-02 3.8625541e-02 -1.7874618e-01 -7.3261062e-02 1.8455500e-02 2.4908514e-01 8.8682398e-02 + 2.0213921e-01 5.1233811e-01 4.1952675e-01 -1.7925220e-01 9.1847606e-01 -4.0072903e-01 -4.3987998e-01 + -1.4236360e-01 -2.2632878e-01 -2.7371779e-02 -1.9779289e-01 8.9605098e-02 1.7910969e-01 2.3009352e-02 + 1.0648784e-01 -1.8254765e-01 1.2336409e-01 2.3723243e-02 8.4247874e-02 2.2295102e-01 -4.2493152e-02 + -3.8021124e-02 4.1741962e-01 3.2506063e-01 4.0996790e-01 -7.1700604e-02 1.7737511e-01 -1.0843469e-01 + 1.4914515e-02 8.8798861e-02 -5.9219529e-02 -6.5671965e-02 1.7220100e-01 2.9075524e-01 2.1999117e-02 + 1.4246060e-02 2.8890521e-01 -9.1649403e-02 3.6524499e-01 -1.9270868e-01 -3.8082723e-01 4.9887671e-02 + -1.9606601e-01 -1.0384829e-01 -1.4960974e-01 1.5857477e-02 3.8079547e-02 1.0235195e-01 -1.9765502e-01 + -1.4813698e-01 1.4410642e-01 4.9546034e-01 4.7496203e-01 -2.3816780e-02 2.1937045e-01 -1.8191086e-01 + 1.2674892e-01 -2.1446247e-02 -3.1321152e-01 1.1701835e-01 -6.6727509e-02 -1.5403990e-02 -3.0738518e-01 + -2.3607959e-02 -6.4905467e-02 -1.0338706e+00 1.4645450e-01 -7.5033022e-02 1.5918124e-01 -3.9403038e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_F_1.txt new file mode 100644 index 00000000..4e7c1b32 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_F_1.txt @@ -0,0 +1,28 @@ + 1.0180723e-01 -8.5121463e-02 -7.4774321e-02 4.3239918e-02 -2.1323025e-02 -3.3436674e-03 -4.8241694e-02 6.1112304e-02 2.5875217e-02 -4.6145355e-03 -3.5277267e-02 -3.5367334e-02 -3.0020194e-02 -9.9077950e-02 1.0446118e-01 3.2564422e-02 -2.8086991e-02 -1.0795073e-02 -1.6299101e-01 -2.5351423e-02 -5.5484551e-02 2.2951739e-02 1.1002173e-02 -3.8227927e-02 -1.3645976e-02 -9.3480655e-03 2.7232698e-02 -5.1716589e-02 + 1.5834560e-01 -9.1857924e-02 -1.4701892e-01 2.8576198e-01 1.6414595e-01 -1.2952598e-01 1.7718139e-02 -1.1640733e-02 2.8535019e-02 -1.0586367e-02 -1.3970948e-01 -1.4836710e-01 7.6082977e-03 2.2546606e-01 4.2925221e-02 -7.3380956e-02 -3.1515131e-02 1.6868560e-02 1.5258157e-02 7.4379922e-02 -9.5173565e-02 -7.9030540e-02 -4.0431002e-02 -2.3922168e-01 8.5506640e-03 4.1245287e-02 -2.8242175e-01 -1.8276158e-01 + 1.7680449e-01 -8.0019276e-01 -1.6191268e-01 -1.1439920e-01 -1.3770524e-01 4.2230958e-01 3.1248278e-01 1.5679048e-01 3.1302854e-01 -2.0712754e-02 -1.1916263e-01 -6.1482528e-01 4.1670257e-01 -4.5679385e-01 -1.8473578e-02 5.3354377e-01 6.9188595e-01 -9.3525010e-01 -8.8224905e-02 3.7981954e-01 -2.2670706e-01 -1.7349663e-01 3.4354355e-01 -3.7600368e-02 3.5890002e-02 -8.0273598e-02 -6.8742844e-01 1.4313048e-01 + -2.3174391e-01 -1.2436792e-01 1.6838088e-01 -2.6406095e-01 2.4157695e-01 2.3691583e-01 -7.5325196e-02 3.9039849e-01 -1.8602790e-02 -1.8091382e-01 1.8507937e-01 -6.3963483e-01 -3.3251994e-01 1.5259440e-01 1.3391635e-01 2.2127307e-01 8.5048075e-02 -8.9862234e-03 -5.0617051e-03 -8.6091019e-03 -1.5482781e-01 -1.7310972e-01 -2.5021405e-02 1.7140269e-01 -7.2568472e-02 4.2144378e-02 -1.2599053e-01 -3.3263661e-02 + -7.4564387e-02 1.1459828e-02 -1.0253354e-01 -1.6366507e-03 -9.8116430e-02 3.4071753e-02 5.6098062e-02 2.0316577e-02 1.6648877e-03 1.0930836e-02 -6.7406825e-03 -5.1454376e-02 -3.1687101e-02 -2.1300098e-02 -8.0674117e-02 4.0412313e-02 3.7161310e-02 -3.6268869e-02 2.3443337e-02 -4.4260653e-02 -6.5213978e-02 1.6325471e-02 -1.1313066e-01 4.8638518e-02 -4.2302332e-02 4.3034577e-02 -2.1184881e-02 -4.9256467e-02 + -5.8018977e-02 6.5507524e-03 9.6711927e-04 1.5009078e-01 2.0165841e-01 2.1758264e-02 -1.3873075e-01 2.7155481e-01 1.6547790e-01 -1.4915061e-01 3.4788623e-02 -1.3615308e-01 -2.0118123e-01 -2.3218606e-01 4.7029514e-02 1.4656878e-01 5.7289842e-02 -1.2676503e-01 -2.4489908e-01 -9.9107852e-02 6.5286958e-03 7.9933920e-02 3.0872477e-01 -1.4806044e-01 1.0310771e-01 -3.9865695e-02 3.3814642e-02 -1.3875852e-01 + 4.6672676e-02 3.8785850e-02 3.5033278e-02 5.6993267e-02 2.5445432e-02 -3.8157264e-02 -3.0027950e-02 -1.3764224e-02 1.1802681e-02 4.7662572e-03 1.2647800e-02 8.6820049e-02 -1.0616963e-02 3.1825802e-02 1.4492655e-04 -5.2295737e-02 -4.0171954e-02 2.0215332e-02 -6.0847141e-02 -6.8538964e-03 4.1811935e-02 3.1390932e-02 2.7152400e-03 -7.1789554e-02 2.7881211e-02 -4.0110137e-02 8.4875219e-03 -3.9140048e-02 + -9.8287114e-02 -2.2362671e-01 -1.0535809e-01 -3.2777009e-02 -3.7329535e-01 2.7956206e-01 2.5463475e-01 2.8402035e-01 2.8946698e-01 -1.7601023e-01 -4.5100415e-03 -3.5289751e-01 4.4760429e-01 -1.6716923e-01 1.5985346e-02 3.5461316e-01 2.7095275e-01 -3.5743233e-01 -1.9760979e-01 1.7501294e-01 -8.9207952e-02 -3.1832715e-01 9.8982689e-02 5.9021779e-02 1.3167030e-02 -7.9054658e-02 -3.1600337e-01 1.4278989e-01 + -3.4934674e-02 -1.8709728e-01 -1.6964121e-02 -1.6801150e-01 -1.3409694e-01 1.0338988e-01 4.9705255e-02 4.1650554e-04 3.6751393e-02 -6.0442064e-02 1.6402459e-02 -1.6630961e-01 2.0001612e-02 -4.0081235e-02 -1.3731339e-01 1.8947364e-01 1.1081154e-01 5.1669870e-02 5.9738585e-02 1.0644064e-01 6.8879790e-03 -1.2272440e-01 4.5059941e-02 1.6234323e-01 -7.7754711e-02 3.9749948e-02 2.7780667e-01 2.3974123e-01 + -6.3800370e-02 -7.8239126e-02 -6.0144273e-02 -9.1500210e-02 -6.0576536e-02 5.5489925e-02 3.1484124e-02 1.3849171e-02 -2.8929612e-03 -8.5439103e-03 -3.8219953e-02 -9.9238702e-02 5.9526277e-02 -7.1666203e-02 -7.8513649e-03 1.3353050e-01 8.8078515e-02 1.4350484e-03 9.3948939e-02 6.2075967e-02 -1.5278431e-02 -4.7225380e-02 3.3441897e-02 9.6447114e-02 -5.1039971e-02 4.9513921e-02 8.4234438e-02 1.0336342e-01 + 2.1798312e-02 -6.2765873e-02 -2.8772166e-02 -5.6623436e-02 3.6606021e-03 -4.2826350e-03 -3.1762543e-02 1.2000209e-01 -1.5549738e-02 5.2029823e-02 9.3577384e-03 3.4751927e-02 3.4885800e-02 -1.2470511e-01 5.9157015e-02 3.8055495e-02 4.9569800e-02 5.5812998e-02 -1.2400896e-01 8.4471081e-02 -9.7444033e-02 8.5715112e-02 -5.6387102e-02 2.7150048e-02 2.4600170e-03 -2.3837953e-02 1.1600843e-01 -8.3463634e-02 + -3.3620099e-03 -2.6910351e-01 -5.6675423e-01 4.2021250e-01 2.9704261e-01 4.9161605e-01 1.4679375e-01 -1.5954235e-01 -3.0034228e-03 -1.3186625e-01 -5.1726838e-01 -2.9357537e-01 1.5641542e-01 1.2426518e-01 -2.8234892e-01 -1.6607532e-01 1.1302587e-01 2.2220488e-02 2.4121518e-01 1.8172063e-01 -2.7019647e-01 -6.6442094e-01 -1.3263574e-01 -5.0121206e-01 -1.2724703e-01 1.4474188e-01 -7.5494534e-01 -1.6790291e-01 + 1.4224774e-01 -1.3674413e-03 3.0567326e-02 -1.1991813e-02 1.5055748e-02 3.3478333e-02 3.0123650e-02 6.8353702e-02 1.4151720e-02 5.1822662e-02 -1.6392657e-02 -6.6381457e-02 -2.6161856e-02 -1.2998956e-01 1.1563837e-01 8.5979349e-02 6.9436299e-02 9.4232464e-02 -3.2437534e-02 1.8785019e-01 8.9775789e-02 -1.3600778e-01 1.1160390e-02 -9.0650018e-03 1.6250664e-04 1.8573729e-02 -1.4965519e-01 -6.1241876e-02 + -2.7341820e-01 -1.0584023e-02 -2.6599626e-02 -1.4139699e-01 6.4499828e-01 4.5363920e-02 -1.2884529e-01 1.0181017e-01 -9.1008909e-03 -3.7165623e-02 -2.1215983e-02 -8.3537759e-01 -2.4305069e-01 -2.0676256e-02 2.3140193e-02 2.3111272e-01 -1.2283225e-01 -2.6701618e-01 4.4913924e-02 1.9219565e-01 -3.7845967e-01 -6.3033458e-01 2.8444654e-01 2.9345941e-01 4.5553254e-02 5.1793598e-01 1.3728853e-01 -2.0379788e-01 + -4.0304493e-03 -2.1600722e-02 -2.2384204e-02 -2.7751670e-02 -4.7157843e-03 1.8260477e-02 8.0563715e-03 4.8100721e-03 -3.7640953e-03 1.2606329e-03 -1.5102607e-02 -1.6578967e-02 1.1760531e-02 -2.0733496e-02 1.5792038e-02 3.2036508e-02 2.2801417e-02 2.4376836e-03 2.0766409e-02 9.7490070e-03 -1.0769979e-02 -1.5692423e-03 3.6474563e-03 2.1921472e-02 -1.1403982e-02 1.3444371e-02 5.5591312e-03 1.7142856e-02 + 7.5578972e-02 -2.5833133e-01 4.1522699e-01 -6.7555150e-01 -2.2760237e-01 7.2266812e-01 -6.3432065e-02 5.6234386e-01 1.1394880e-01 -9.5047607e-02 4.3965776e-01 -3.2136151e-01 3.7887635e-01 -3.8448750e-01 1.7872434e-01 3.0780779e-01 4.9080851e-02 -4.3143906e-02 -9.0458922e-02 1.8230640e-01 -7.4970697e-02 1.9028562e-01 -1.7486860e-01 7.7293755e-01 -1.4294115e-01 1.8460045e-01 5.8494625e-01 1.8025890e-01 + -2.2135697e-02 5.7884277e-03 -6.4239164e-03 -4.3230492e-02 -3.1601968e-02 9.1600845e-03 6.3149945e-02 -1.7569035e-02 2.6257142e-02 4.0284370e-02 -3.6131860e-02 -6.5286413e-02 4.2175685e-02 -2.7145042e-02 1.6672833e-02 4.3411151e-02 2.8677874e-02 7.1116979e-03 4.7571988e-02 4.3586844e-02 -1.3215585e-02 -4.4732693e-02 -4.2081340e-03 3.6276879e-02 -1.4025311e-02 3.3074600e-02 -2.8007249e-02 2.1651897e-03 + 2.6513010e-01 1.7807021e-02 -1.2906132e-01 2.7561598e-01 2.6679401e-01 1.8743094e-01 -3.6561097e-01 9.4052866e-02 -1.0850779e-01 -1.5979993e-01 -7.1014997e-02 2.6192992e-01 -3.0463266e-01 -4.5998693e-02 3.2423815e-01 -1.4727894e-01 -1.4648885e-01 -3.1202815e-01 -2.2982232e-01 -4.0619591e-01 1.4788124e-01 3.4699768e-01 2.6694739e-01 -2.3944232e-01 1.6688153e-01 -7.9648858e-02 -4.7908935e-01 -2.2941253e-01 + -2.2862034e-01 -4.4708422e-01 1.1411800e-01 3.6413305e-01 6.5595923e-02 5.4781581e-01 -9.0748615e-02 3.3191153e-01 1.7069720e-01 -4.1546788e-01 9.2295765e-02 1.3935706e-02 -4.1301572e-01 -1.3117804e-01 -4.1162289e-01 1.1714577e-01 1.2863318e-01 -4.2593466e-01 -2.5618154e-01 -2.5370056e-01 6.8357644e-02 -1.0517743e-01 1.7283464e-01 -6.2636464e-01 -6.9094209e-02 -1.3015579e-01 5.5032223e-02 -3.0948795e-02 + 4.1772082e-01 -4.1620344e-01 -1.2924667e-01 -2.4155222e-01 -5.9959784e-02 5.1368138e-01 -1.6331213e-01 2.4015897e-01 9.5325063e-02 6.7601813e-02 1.4417980e-01 2.1496130e-01 -1.8353265e-01 -4.4370368e-02 1.2210532e-01 2.3515393e-02 1.3401891e-01 -2.5666715e-01 -7.6958888e-03 -2.0931708e-01 -1.7308548e-03 2.8985599e-01 -1.1854547e-01 -5.2585142e-02 -1.2902651e-01 -2.7377518e-03 -4.9531454e-02 -1.0410921e-01 + 3.4023356e-02 -1.1244514e-01 -6.8666515e-02 -5.0809852e-02 -9.0378861e-02 3.8473975e-02 -2.8504802e-02 4.6393094e-02 -1.3839398e-03 -2.9374682e-02 -7.1507990e-03 4.6791647e-02 9.2840539e-02 -1.0928178e-01 1.9916967e-02 4.3891851e-02 6.2823010e-02 3.3118653e-03 -2.4608934e-02 6.4078999e-02 1.9997171e-02 -3.7922022e-02 -7.5397490e-04 -1.4639176e-02 -1.0575646e-01 3.0798469e-02 1.0057398e-01 6.3505532e-02 + -3.3533991e-02 9.3809987e-02 5.9184203e-02 -7.4704946e-02 -8.2162601e-02 -4.7800213e-02 1.1533343e-02 -6.5193671e-02 -8.7289694e-02 5.9291064e-02 5.5172685e-02 -8.6357993e-03 3.6418140e-03 1.0131240e-01 -4.1656215e-02 -1.2891717e-01 -9.5831283e-02 5.1838049e-02 2.4257266e-03 1.0553078e-02 -4.3142613e-02 -4.0759207e-03 -1.5541054e-01 1.1565019e-01 2.0815742e-03 5.9804082e-02 1.7352977e-02 -1.2052229e-01 + -2.8284361e-01 -3.4275482e-01 -4.5505709e-01 3.0130111e-01 2.2245984e-01 1.0461378e-01 2.7112567e-02 1.5946188e-01 -6.0572558e-02 -2.7734380e-01 -1.7697235e-01 -2.9955243e-01 -1.3444632e-01 2.3866974e-01 -3.9552954e-01 -8.4353137e-02 3.7188143e-02 -8.2303969e-02 6.6025581e-02 2.7864020e-02 -1.9072100e-01 -3.9828969e-01 -1.7902258e-01 -3.4118394e-01 -2.2464224e-01 2.1440939e-01 1.0826988e-01 9.9330999e-02 + 1.8065569e-02 2.1840444e-01 7.0291693e-02 -1.6331796e-02 -2.3311343e-02 -1.3503394e-01 -1.2816618e-03 -7.6198405e-02 -4.1807767e-03 1.8104150e-01 -3.4978299e-02 1.4957383e-01 7.7652161e-02 5.0901169e-02 1.6308404e-01 -5.4219803e-02 -9.5955766e-02 1.5200197e-01 -6.8941520e-02 8.9898147e-02 -5.2817187e-02 -5.0762915e-02 5.6594156e-02 3.8964109e-02 2.9394110e-02 -6.7753687e-02 -1.5519440e-02 -5.2368132e-02 + -4.2394963e-01 1.7527908e-01 5.0857297e-02 3.6711083e-01 -7.2125034e-02 -5.2598293e-01 2.2038457e-01 -2.5391798e-01 -1.0383968e-01 -3.0456132e-02 -1.2084641e-01 2.3379272e-01 2.1495073e-01 3.6979518e-02 -6.4848252e-02 -2.0851193e-01 -5.0871524e-02 -1.8769027e-01 -5.6119284e-02 1.9117436e-01 -1.5061269e-01 -1.4003744e-01 1.9073193e-01 -3.0445465e-01 1.4985144e-01 -8.9767964e-02 -2.2980227e-01 -2.7747035e-01 + 1.2214168e-01 2.2436656e-01 1.1683383e-01 1.2678342e-01 4.8477214e-02 -1.6543337e-01 -2.4404191e-02 3.1974244e-02 -1.5818587e-02 8.8391659e-03 5.8438974e-02 1.5548316e-01 -3.0616520e-02 9.9398737e-02 1.3664281e-01 -1.6429982e-01 -7.3479061e-02 1.0466095e-01 -1.2513383e-01 1.6907664e-02 7.4162612e-02 1.1256397e-02 -4.7934186e-02 -1.0138011e-01 9.5086622e-02 -1.0639436e-01 -1.7245227e-01 -1.1084228e-01 + 3.1175956e-02 -3.3309842e-02 6.2123711e-02 -4.4466069e-02 -2.8304818e-02 -3.6012576e-02 -7.1428092e-02 3.1834994e-02 -1.1424471e-02 1.0771902e-03 4.6774626e-02 5.4544377e-02 4.1728326e-02 -5.7416430e-02 1.1666499e-01 6.3531671e-02 8.3360094e-03 -6.2184874e-03 -7.8470581e-02 5.2923570e-02 2.9905936e-02 1.0274300e-02 1.0369415e-01 1.4347692e-02 3.8062815e-02 -7.3063762e-02 5.2347996e-02 5.2086296e-02 + -9.7092706e-02 4.9162939e-02 5.9657628e-02 -6.1009440e-02 -2.8937116e-02 -3.3295456e-02 5.0281131e-02 5.8161102e-02 -2.9658134e-02 -8.0171230e-02 8.2885825e-02 -1.2692443e-01 -3.5737019e-02 -6.4500679e-03 -3.2265111e-02 4.0327046e-02 2.4396369e-02 5.2323892e-02 1.0210810e-01 7.0978063e-02 8.3471821e-02 -6.4946793e-02 -5.0960748e-02 8.0348053e-02 5.0814540e-02 1.1694138e-01 2.3611708e-02 6.1970429e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_F_2.txt new file mode 100644 index 00000000..a6e83e40 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_F_2.txt @@ -0,0 +1,25 @@ + 4.4198583e-02 4.6101126e-02 -6.4407444e-01 -7.4319529e-02 7.5349705e-02 -3.8428747e-01 6.0398369e-01 2.1381567e-01 1.9106475e-01 -1.2849524e-01 -1.3488186e-01 -1.4199332e-01 6.6768040e-01 -3.9471582e-01 2.5894755e-01 1.3415482e-01 -7.3855971e-02 4.8033080e-01 -1.8412187e-01 6.9936271e-01 -7.1646551e-01 -3.4562928e-01 2.7278720e-01 1.8099478e-01 3.8581139e-01 2.3451777e-01 -3.4527510e-01 -5.0886670e-02 -5.1130211e-01 + 2.2376837e-02 1.7175457e-02 4.5170799e-02 -1.3451750e-01 -1.5864300e-01 -5.6502284e-02 9.1676564e-02 -7.8828446e-03 8.5070430e-02 -9.2710630e-02 -2.2225718e-02 3.7465898e-02 1.1955628e-01 -1.5239246e-01 1.4108580e-02 1.5186635e-02 -6.3092892e-02 8.7308535e-03 8.6202068e-02 9.1446384e-02 3.8394594e-02 4.6866835e-02 7.3024550e-02 2.9710892e-02 -1.6459955e-02 -3.3276912e-02 -3.1248057e-02 -5.1656413e-02 -7.1967563e-02 + -3.1823158e-02 -6.1687072e-02 2.3581119e-02 1.0511553e-01 2.2936067e-01 4.8983668e-02 -7.9419588e-02 6.6132296e-02 -7.2191876e-02 8.6922438e-02 3.4560367e-02 -4.3862247e-02 1.7410548e-02 2.0018529e-01 2.5841908e-02 -3.9512852e-02 2.5615198e-02 7.2371767e-02 -1.2079462e-01 -8.2214281e-02 -2.1794617e-02 -8.7335761e-02 -6.2311331e-02 -1.1083478e-01 -1.7495109e-01 1.0179551e-01 4.4662261e-02 1.5173486e-02 7.5463165e-02 + 9.7634271e-03 -2.5152674e-02 -7.3443334e-02 9.3323927e-02 8.0353523e-03 -8.4195312e-03 9.5331329e-03 -1.1098124e-01 -1.3155659e-03 -5.9447649e-02 -5.3911237e-02 -4.5039719e-02 -2.2257508e-02 5.4388887e-02 -2.0507122e-03 -2.7080871e-02 -2.8566039e-02 -3.4838743e-02 1.0222140e-02 -1.9165277e-02 1.0847607e-01 -8.3761846e-04 -3.5359802e-02 -1.1055064e-02 -5.4357571e-02 3.6309222e-03 -1.1007618e-03 3.8815775e-02 5.1394889e-02 + -8.5573850e-02 4.7941557e-02 1.3112816e-01 4.0755927e-02 9.3017531e-02 -6.6190879e-02 -1.5590093e-02 2.1631809e-02 -5.1893156e-02 4.0076035e-02 1.0360272e-01 -1.1042063e-01 -9.0430901e-02 2.6517652e-02 5.7056309e-02 9.0707623e-02 -1.8641422e-02 3.2744467e-01 -1.9776356e-01 -1.5187665e-01 -1.5533164e-02 3.4647713e-02 7.7077057e-03 9.2812316e-02 1.3100293e-01 9.3225988e-02 9.4775777e-02 -6.9315674e-02 -8.8974120e-02 + -5.9506853e-02 8.9680875e-02 -4.6629924e-03 -3.0883224e-02 -1.5091425e-01 -7.8633812e-02 5.4972421e-02 4.1030883e-03 -2.8611542e-02 -3.0694778e-02 -1.0796674e-02 1.4888542e-01 1.1667474e-01 -4.3348231e-02 -9.1067062e-02 -1.1367490e-01 -1.7668466e-02 -8.1534601e-02 1.4479842e-02 1.6360191e-02 -3.6061048e-02 -3.8683541e-02 -2.5396369e-02 7.4353094e-02 -9.8773655e-03 -1.0104122e-01 -1.9342159e-03 5.1338271e-02 -8.1032923e-02 + 4.0073670e-03 -1.3084704e-02 7.3547726e-02 -7.9815003e-02 -1.4449414e-03 1.8321207e-02 -6.6055236e-03 7.3186725e-02 7.8452097e-03 8.6196137e-03 4.6138602e-02 1.4203494e-02 -1.6131984e-03 -2.6772835e-02 1.4667142e-04 1.3297537e-06 -5.7820001e-03 -1.9812325e-03 2.4692751e-02 9.0326719e-03 -6.5590761e-02 6.7088105e-03 5.0431909e-03 -1.4552254e-03 6.9513736e-03 -2.5813183e-02 2.8395368e-02 -3.8298380e-02 -1.8487689e-02 + 2.0341025e-01 -1.8299018e-01 -9.9031333e-02 3.4075445e-01 1.6108076e-01 4.2166015e-02 -4.4829447e-02 -4.1635098e-02 1.9572425e-01 8.0414008e-02 4.2328311e-01 9.3493283e-02 9.6441695e-02 4.7042157e-02 1.8226169e-02 -9.7833995e-02 -7.5903416e-02 8.5831477e-02 1.1658872e-01 -1.8989126e-01 2.0739856e-01 9.1904039e-02 -2.4944501e-02 -5.8011788e-02 9.7720047e-02 -8.7116377e-02 3.1431329e-01 4.0459054e-02 3.0131041e-01 + -1.0219097e-02 6.3924767e-03 1.9122228e-02 -2.6903322e-02 -8.4239282e-04 -1.0212774e-02 9.2859060e-03 5.7436497e-02 1.6571395e-02 -7.8211156e-03 2.4255970e-02 6.1612191e-03 -1.9691025e-03 -2.0531502e-02 -3.5306048e-03 -7.9264193e-03 -1.2138495e-02 -3.2371041e-03 8.1389364e-03 8.8892794e-03 -4.7257061e-02 -6.5732616e-03 1.4526451e-02 -1.6959350e-04 7.0476427e-03 -9.6598138e-03 -8.4443891e-04 -1.4947081e-02 -2.3481238e-02 + 7.3370586e-02 -3.4579743e-02 2.0311242e-01 -2.3253134e-01 -1.2884525e-01 2.8285390e-03 4.9116725e-02 7.1335743e-02 6.3022531e-02 -3.5458177e-03 -9.5888486e-03 7.4691363e-02 2.1424517e-01 -1.3037920e-01 1.5400545e-02 -8.9457220e-02 -4.6791313e-02 1.1460138e-01 1.2576833e-01 1.0552819e-01 -4.4218162e-02 3.3044135e-02 -2.8984957e-02 2.6269145e-02 -1.9843712e-01 -8.6247488e-02 -3.0955110e-02 -4.5203305e-02 -6.2941997e-02 + -8.9260055e-01 -1.5482076e-01 7.7354800e-01 -5.6530626e-01 7.2597727e-01 1.4654577e-01 -2.5508640e-01 4.3640676e-01 -4.6461706e-01 2.2166223e-02 3.8473151e-02 -5.2267615e-01 -3.9777150e-01 9.0226733e-01 1.4511989e-02 7.8299005e-02 2.2743585e-01 4.0638726e-01 -3.0712531e-01 -3.9912929e-01 -1.8643490e-01 -1.6198584e-01 -2.6800089e-01 -2.0436804e-01 7.6252177e-02 2.9489267e-02 4.7001807e-01 4.7562876e-02 8.1874852e-02 + 1.3079954e-01 9.4538091e-02 3.0455833e-01 4.5365505e-01 3.0648450e-01 3.6525657e-01 -2.9874977e-01 -1.5149489e-01 -3.3487222e-01 2.6007465e-01 -1.1539991e-01 2.3917741e-01 9.4240167e-02 1.5272717e-01 -4.5539568e-01 -1.0549123e-01 6.4580243e-01 -7.3545003e-02 1.8458365e-01 -2.9785097e-03 1.0485733e-01 2.0122416e-01 -2.5263922e-01 3.1936895e-01 -2.4380722e-01 -3.2840208e-01 3.0568111e-01 2.5055858e-01 6.8806715e-01 + 4.7878231e-01 -7.5159759e-03 -1.0411724e-01 -1.9650481e-01 2.4571487e-01 1.1127285e-01 -1.0665232e-01 3.6879381e-01 4.1124691e-02 1.3251815e-01 1.8269602e-01 7.8453617e-02 -1.8179314e-01 5.2249128e-02 2.2875606e-02 -7.9951117e-03 3.2720365e-02 -9.5063908e-02 2.1938147e-02 -1.5492367e-01 1.6302630e-01 -3.3628070e-02 -7.6580189e-02 2.0672618e-03 6.7576939e-01 -1.7893486e-01 6.3403721e-02 1.2621407e-02 5.6589062e-02 + -1.1985505e-02 -1.2970382e-03 8.6434247e-02 -9.9137847e-02 2.9516556e-02 1.5877659e-02 9.3916883e-03 1.0441191e-01 3.0866779e-02 -3.4225391e-02 6.8038971e-02 -5.0096306e-02 -6.0287980e-02 -1.6966278e-02 8.4201666e-03 1.9194500e-02 -1.1427335e-02 5.0240265e-03 1.7400766e-02 -1.3617306e-02 -8.9197048e-02 1.9709733e-02 1.0141173e-02 -2.7542334e-02 3.4436476e-02 -1.2814314e-02 6.0846098e-02 -7.9154963e-02 -2.2639573e-02 + 4.6362730e-01 9.5789574e-02 -7.6428572e-01 1.2279108e+00 -1.5192297e-01 -2.2594183e-01 3.6491526e-01 -4.1343724e-01 3.3789469e-01 -2.4338896e-01 -3.4482327e-01 -3.6627234e-01 3.6980737e-01 -3.1228052e-01 -2.8923524e-01 -2.1473377e-01 -7.0366379e-02 2.3690273e-01 -5.4849701e-01 2.2219434e-01 3.8806890e-01 -1.0297888e-01 7.4541725e-05 -2.9920908e-01 7.7881219e-01 4.9923825e-01 -4.3930517e-01 -5.2363289e-01 6.9588313e-02 + 4.8886321e-02 1.1749194e-02 1.0089003e-01 -6.8839530e-03 -8.0271594e-02 2.7423330e-02 -7.3675587e-02 -1.1565912e-02 7.3052697e-02 3.1834786e-02 2.2115656e-02 1.6657831e-03 -1.0539845e-02 -6.3469226e-02 -7.1399260e-02 -3.2199493e-03 -3.1184930e-02 -4.1417101e-02 6.1123332e-02 -8.2968637e-02 4.3433004e-02 1.1480834e-01 -5.1271020e-02 8.2600708e-02 1.6476869e-02 -5.9726337e-02 3.0221052e-02 3.0036433e-03 2.2512911e-02 + 7.9469089e-01 -7.2906559e-01 -7.7800549e-02 -5.5359332e-01 -7.7312091e-02 2.0446787e-01 -3.1601037e-01 -2.1123947e-01 2.9206863e-01 3.4884843e-01 4.4547332e-01 -9.4111353e-02 6.7323970e-01 8.0056799e-01 3.5900102e-01 -4.1622769e-01 -4.6494578e-01 -8.2050159e-01 5.8903398e-01 -2.6645063e-01 -2.4137538e-01 -2.7489935e-01 -5.0078381e-01 2.6522523e-01 -6.2945451e-01 -8.5898305e-01 -7.9207283e-02 2.1838512e-01 3.5010851e-01 + -1.2564008e-01 -7.7588585e-02 1.5207088e-01 -2.9113972e-01 5.3154551e-02 2.8113550e-03 4.5818930e-02 2.3443414e-01 7.9407715e-02 -9.4145179e-02 2.1585627e-01 -5.1160706e-02 -2.2608860e-01 1.1612504e-01 -3.3362536e-02 1.2975490e-01 4.3982739e-02 3.5626872e-01 6.6763363e-02 -2.2484390e-02 1.3709173e-01 1.0284276e-01 8.5012380e-02 -8.1220849e-02 8.6061135e-02 -5.8821144e-02 1.1954204e-01 -2.6260189e-02 -2.6608046e-02 + -1.9659767e-02 1.5642661e-02 1.3680175e-01 -1.4115475e-01 1.5125580e-01 -5.0053174e-02 -9.0546262e-02 3.3633462e-01 -1.1823589e-01 -2.3436592e-02 2.1843467e-02 6.1088987e-02 -1.1144309e-01 3.9431117e-02 7.4124259e-02 -5.4045674e-02 -1.0227944e-01 -1.3231512e-01 9.4205293e-02 -4.3075949e-02 -5.7023224e-03 -1.9762373e-01 7.7786019e-02 -4.1829295e-02 1.0568045e-03 -9.5564420e-02 7.4175712e-02 -8.7439641e-02 -3.6757527e-02 + 2.1310569e-02 6.0574467e-03 2.1754110e-02 -1.3260289e-01 -1.0370196e-01 -3.9302722e-02 6.8990175e-02 5.3421028e-02 6.3401689e-02 -7.1102754e-02 1.7428106e-02 1.2702759e-02 7.9870971e-02 -1.0725101e-01 8.0521592e-03 1.5951270e-02 -4.7232874e-02 -3.4758018e-03 6.0062843e-02 5.2962973e-02 -4.4427377e-02 4.7315370e-02 5.9592881e-02 8.6965278e-03 -1.3718169e-02 -1.9324743e-02 -6.6947214e-04 -5.1826232e-02 -5.6127519e-02 + -5.1230668e-01 -1.5281149e-02 -1.3186164e-01 2.5459637e-02 1.4215238e-01 -1.8613552e-01 9.7011196e-02 -2.8534149e-01 1.9749469e-02 1.8341065e-01 -1.2584266e-01 -7.0085551e-01 -6.1438967e-01 -2.8498058e-01 1.2401034e-01 -5.0835680e-02 -2.8208149e-01 5.4282178e-01 -3.9756411e-01 -2.2287043e-01 -2.3143179e-02 -1.4010180e-02 -1.9420430e-01 -1.7075268e-01 1.4133647e-01 2.9858469e-01 -1.1381009e-01 2.3542337e-01 -2.1420549e-01 + -5.5780853e-02 -6.3261833e-02 -3.1215228e-01 -1.1604105e-03 1.3053876e-02 2.7713770e-02 5.3572424e-02 7.9216007e-02 1.3110319e-01 -2.2359163e-02 7.7331595e-02 8.1873445e-02 1.3541750e-01 4.1033372e-01 -4.9610678e-02 8.9215359e-02 2.1283368e-02 1.6572854e-01 2.2659015e-01 3.3560927e-02 -3.5251179e-01 6.4707328e-02 3.6602520e-02 5.2556968e-01 -2.3976823e-01 -2.5099751e-01 -2.4849735e-02 4.0738655e-01 1.1392877e-01 + -3.2855385e-03 -3.6348216e-03 3.1640871e-02 -3.5523604e-02 -4.4721993e-04 3.3627247e-03 3.3957192e-03 3.9783922e-02 6.3016196e-03 2.3087056e-03 2.0791893e-02 9.8693583e-03 -1.5975828e-03 -1.4964737e-02 -3.8097975e-04 -2.3292983e-03 -6.0112176e-03 2.7168098e-03 9.1307092e-03 8.9891258e-03 -3.7520695e-02 -3.2559615e-03 4.0654343e-03 -4.5538124e-04 6.4096808e-03 -9.7969287e-03 9.1909912e-03 -2.0046662e-02 -1.3076476e-02 + 2.5348714e-02 -2.8213483e-02 -1.7553158e-01 -7.8173234e-02 -2.1089959e-02 -6.3100194e-02 9.9914539e-02 -1.2499196e-02 1.5998324e-02 -2.0676591e-01 -1.5334101e-03 -1.3291121e-01 5.3167489e-02 -5.9202340e-02 1.5209157e-02 3.4269539e-02 7.5622474e-03 4.6154403e-02 -8.5016642e-02 4.8056515e-03 6.4540751e-02 3.1212146e-02 3.5423834e-02 -1.2843415e-01 2.9947961e-02 1.9148274e-01 4.6572571e-02 -9.8302334e-02 1.6352816e-03 + 2.0194843e-02 9.3915724e-03 3.7714170e-02 -1.2948282e-01 -8.4982551e-02 -2.3401386e-02 5.2014071e-02 6.7229822e-02 4.8784254e-02 -2.8744806e-02 3.7646861e-02 2.3315785e-02 7.6826927e-02 -8.9256180e-02 1.9160114e-02 2.0396333e-02 -2.8171148e-02 -2.1895552e-03 4.8680246e-02 4.3739109e-02 -7.0944915e-02 3.3501305e-02 5.2113988e-02 3.5683648e-03 -7.0055949e-03 -1.8371140e-02 -1.3024093e-03 -4.6082126e-02 -5.9792088e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_F_3.txt new file mode 100644 index 00000000..988a86c3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_F_3.txt @@ -0,0 +1,25 @@ + 1.3611428e-02 1.1483033e-03 -7.4515595e-02 3.9208634e-02 -3.4545418e-02 -3.9275178e-02 -1.9553789e-02 6.9365995e-03 -4.5590706e-03 1.1752909e-02 1.2743884e-02 -2.8759400e-02 4.7333836e-02 2.5196265e-02 6.3993568e-02 -1.0069276e-01 -9.5559492e-02 7.0942499e-02 2.1039915e-03 1.9512440e-02 9.1855478e-03 -1.5697142e-01 -6.4874915e-03 3.9276750e-02 -1.5984033e-02 -2.8328155e-02 3.4258384e-02 -8.4435239e-05 -5.5099505e-02 4.3041251e-02 1.7386998e-02 3.4881106e-02 + 2.9120081e-01 -1.2450195e-02 -1.3747224e-01 -2.6960755e-01 9.5622754e-02 -1.5397739e-01 -1.1548224e-02 2.8216474e-02 -2.6599985e-01 -8.3195924e-02 -6.7027737e-01 -1.7499257e-01 -1.0915926e-01 -6.1319782e-01 -8.1995850e-02 -1.6502099e-01 3.0671509e-01 1.3426405e-01 1.8948209e-01 -1.8252975e-01 -3.9055163e-01 2.5338972e-01 1.9276171e-01 1.7127808e-01 8.6189963e-01 -3.9098197e-01 -2.4209437e-02 8.1643124e-01 9.0663119e-02 5.2659756e-01 2.6791674e-01 -6.8300056e-02 + -4.1150301e-01 -6.0778766e-02 2.2890849e-04 4.1186776e-01 -1.4527436e-01 4.0920424e-02 -1.3753540e-01 -7.2640093e-02 1.7198638e-01 7.2844440e-02 3.3165284e-01 -1.5019025e-03 4.1490811e-02 1.0782993e-01 2.0509904e-01 -4.6699099e-01 -7.9662212e-01 6.1574531e-02 -2.1165725e-01 7.8460008e-02 3.3089422e-01 2.9024531e-01 -6.6830152e-02 -2.0085114e-01 -1.0972914e-01 1.2466054e-01 -1.8527326e-01 -1.6701481e-01 6.0023404e-02 -3.1223857e-01 -1.8934861e-01 -3.9837827e-02 + -7.2900135e-03 -1.3827851e-02 9.4780941e-02 -7.0491838e-03 -9.6567549e-03 4.2874201e-02 1.4692451e-02 -3.0096891e-02 6.4771371e-03 -1.8993627e-03 -1.4688999e-02 3.1914581e-02 -6.2997085e-02 -2.3860655e-02 -7.3932853e-02 1.1023361e-01 8.5196318e-02 -7.6479246e-02 3.5806182e-03 -9.5215029e-03 -4.7131380e-02 1.6971821e-01 -1.8353137e-02 -1.9084910e-02 -2.5641048e-02 3.1490846e-02 -1.5631124e-02 -4.7759080e-02 8.3723596e-02 -6.4096755e-02 5.8572685e-03 -2.5596966e-02 + 6.1942617e-03 1.8357137e-02 6.4671531e-02 -9.0991892e-03 -4.5438167e-02 -3.5167837e-03 3.2957963e-02 -4.6068824e-02 2.0672517e-02 -3.3107514e-02 -1.6477105e-02 4.2219841e-02 -4.0155653e-02 1.3878138e-02 -7.1537800e-02 1.6490564e-02 3.4902769e-02 -6.6972281e-02 -3.3941206e-03 -1.1350281e-02 1.5731242e-02 1.0767850e-01 -1.2711039e-02 1.5553452e-02 -2.2100747e-02 3.1398705e-02 -2.2290329e-02 -3.3344377e-02 4.4961300e-02 -6.0563030e-02 -2.7521161e-02 -9.6149484e-02 + -3.3041459e-02 2.1856408e-02 1.9260224e-02 -5.1346617e-02 1.8120124e-02 -1.3017880e-02 2.2297648e-02 -3.6318392e-03 3.5255089e-03 -4.0721181e-02 -4.4224505e-02 8.3304709e-02 -4.7100353e-02 -1.3073876e-02 -5.4229825e-02 6.9117580e-02 9.3531259e-02 -9.2581471e-02 -1.7014121e-02 -4.6561974e-03 8.2361609e-02 7.6768236e-02 1.8534424e-02 3.5202947e-02 -3.1313065e-02 -2.0122787e-02 6.2819167e-03 -3.6403423e-03 4.7149033e-03 -3.4138933e-02 -1.3205962e-02 -6.2932654e-02 + -2.8236716e-02 8.9205318e-03 3.1608421e-02 1.0397239e-01 2.7945142e-02 6.4897216e-02 6.1387402e-03 2.1741373e-02 -1.5794244e-02 4.5542816e-02 9.1491473e-02 -1.2484775e-01 5.0826673e-02 6.2659474e-02 7.2460099e-02 -1.1019539e-02 -1.8608380e-01 1.3610103e-01 2.2904153e-02 2.6772675e-02 -7.3767408e-02 -8.5452871e-02 -8.6874906e-02 1.2712530e-02 4.3685789e-02 -5.5380821e-02 -4.1166745e-02 2.8392230e-02 -5.4128446e-02 3.4701227e-02 -4.6019598e-02 2.6272241e-02 + -2.4453420e-03 7.8552645e-03 -1.4725843e-02 -1.3417590e-03 6.1014929e-04 -1.7828052e-02 6.9063541e-03 5.3109244e-03 -8.7750706e-03 -3.3284553e-03 -1.3307831e-02 5.1094843e-03 9.4737565e-03 6.9231837e-03 8.0248220e-03 -2.6682695e-02 -2.1652777e-02 1.5818831e-02 8.6040544e-03 4.7982619e-03 -5.9352218e-04 -3.0375116e-02 8.0229410e-03 6.0430106e-03 -9.4140700e-03 -7.7182600e-03 8.0156906e-03 -4.2143600e-03 -1.6999926e-02 -1.3292393e-03 -1.5309660e-03 -3.3079643e-03 + -1.5978737e-02 3.3152776e-01 1.3683200e-01 -8.8333306e-02 6.0330239e-02 -1.6449202e-01 -4.2001261e-03 4.8737208e-02 6.2212908e-03 4.9299486e-02 9.8067969e-02 3.6732213e-01 2.0740053e-01 2.0423828e-01 1.9152813e-01 2.1760460e-01 -4.0571045e-01 2.7122871e-02 -1.9401089e-02 1.9186395e-01 2.1398679e-02 -5.8063512e-01 7.8207688e-02 8.7846816e-02 6.5130066e-01 -3.5448956e-02 1.6089753e-01 -4.7466279e-02 2.4894558e-01 1.0831416e-01 -2.4469148e-01 5.1076699e-01 + -8.9706331e-02 -5.0972742e-02 -8.2834993e-04 4.0161011e-02 8.1106601e-02 -5.2130289e-02 2.6944822e-02 1.1660927e-02 -9.1269749e-02 5.6656675e-02 -5.6325330e-02 -6.9308630e-02 3.9206742e-02 -2.2830169e-02 -2.6943510e-02 -4.5235167e-02 3.9374389e-02 -6.0611295e-02 6.6589521e-02 -1.6015172e-02 -1.8170731e-01 -2.4298833e-02 -8.5323076e-02 -3.3908323e-02 5.0354509e-02 4.9928851e-02 2.8331266e-02 -5.4381459e-02 -1.0164767e-01 2.0427845e-02 2.5006765e-02 -4.7604643e-02 + -1.0468637e-02 2.0341967e-02 5.2774768e-02 -3.9580864e-03 -1.4525892e-02 4.8821582e-03 4.0912061e-02 -2.8696777e-02 -9.0994555e-04 -1.6462686e-02 1.1691046e-04 3.9622450e-02 -3.3280705e-02 -1.6739586e-04 -5.9666884e-02 4.0784159e-02 4.6640443e-02 -5.3730812e-02 -1.2750395e-02 7.6359515e-03 1.1682663e-02 5.2783252e-02 -1.3078109e-02 5.1265365e-03 -1.4397944e-02 1.6058536e-02 -5.6050037e-03 -4.7120996e-02 2.8253135e-02 -5.4215743e-02 -2.1554688e-02 -5.0369942e-02 + -3.1780905e-03 -1.8566525e-03 -2.7923204e-02 -9.6529676e-03 5.8268575e-02 -3.1485728e-02 1.8594656e-02 4.4267894e-02 3.6172311e-02 -5.9286351e-03 1.9833714e-02 -1.1336273e-02 6.2687260e-02 -7.2093057e-03 4.1279001e-02 -6.6210788e-02 -7.1128750e-02 3.5434866e-02 -6.4326993e-03 1.8239014e-02 1.0392680e-01 -6.3054710e-02 2.6193428e-02 -4.9983613e-02 -6.2809528e-02 -5.1214105e-02 7.4270180e-04 3.4637360e-02 -6.0608741e-02 4.2837830e-02 6.2696537e-04 8.5734105e-02 + -2.1508107e-02 -1.4745226e-02 -7.6343811e-02 8.5030623e-04 -2.3175483e-03 -2.2689773e-02 -4.3993360e-02 2.1616932e-02 6.0094513e-03 -1.6133725e-02 1.3117164e-03 -4.8058089e-02 2.6252998e-02 -1.9692207e-02 7.1338278e-02 -8.3485430e-02 -7.6856021e-02 3.3106389e-02 1.4499352e-02 1.5724092e-03 -7.6905405e-03 -1.1897070e-01 1.0404400e-02 2.3613211e-02 3.8005370e-02 -4.9052371e-02 1.3061700e-02 3.8193300e-02 -6.1641053e-02 6.2758946e-02 1.1776831e-02 3.0423421e-02 + 1.7458867e-02 2.6094105e-03 -6.5578854e-02 1.5447703e-02 8.1896407e-03 -3.1930791e-02 -2.0539859e-02 2.6416144e-02 -3.8016826e-03 1.8958588e-02 7.6384831e-03 -3.7579409e-02 4.5755192e-02 1.1985652e-02 6.4223665e-02 -7.5477291e-02 -7.2549283e-02 6.6538053e-02 2.7770983e-03 9.2221376e-03 1.7695945e-02 -1.1433577e-01 4.9307024e-03 4.3550340e-03 1.2566502e-02 -2.0101484e-02 1.4080716e-02 4.2644813e-02 -4.9919796e-02 6.1051102e-02 8.3856452e-03 5.0483289e-02 + -5.1191026e-02 -1.0817359e-03 2.0208537e-01 6.7382196e-02 -4.7212500e-02 -2.4779801e-01 2.7455167e-01 7.6861503e-02 -5.4132821e-01 4.1047943e-02 6.6435273e-02 2.4540520e-01 -7.7452345e-02 -3.9473864e-02 -2.2445267e-01 1.9501919e-01 6.2733412e-01 -9.9150043e-02 3.0165291e-01 -6.3469778e-02 -8.3117114e-01 6.8493513e-01 -3.4110902e-01 -1.1134047e-01 -4.5165268e-01 -5.9732942e-02 9.5462480e-02 -1.0402695e-02 1.6335902e-01 -3.1689062e-01 8.9338106e-02 -2.5115505e-01 + 4.9633984e-02 4.0334033e-03 -1.3147026e-01 2.7712071e-02 8.4576991e-03 -5.7355982e-02 -9.1909382e-03 4.1795755e-02 4.9678489e-04 3.4317327e-02 -3.1128923e-02 -4.6331673e-02 8.9603647e-02 -4.6577193e-02 1.0304896e-01 -1.3766336e-01 -6.9190761e-02 8.5332934e-02 -5.1618814e-02 6.0457546e-02 1.3149584e-01 -2.0857816e-01 -7.8218735e-03 -5.9814632e-03 2.6947552e-02 -3.1052355e-02 3.0644625e-02 6.4382846e-02 -6.7260035e-02 1.2771920e-01 1.5685276e-02 9.8038436e-02 + -1.7249250e-02 9.2673455e-02 2.4481992e-02 7.7305929e-04 4.6761101e-02 -8.0329452e-02 -1.2724173e-02 -1.9406929e-02 1.9573909e-02 5.1105802e-02 -6.6768489e-02 1.0058918e-01 9.3847414e-02 7.6651116e-02 2.0034300e-03 -8.4569668e-02 -8.7701785e-03 2.6279797e-02 -4.1334710e-02 1.1138303e-01 1.0021962e-01 4.0470298e-03 4.5999604e-02 7.6813631e-02 1.1862841e-01 -4.9185412e-02 -5.7533751e-03 -2.8108314e-02 2.9206458e-03 2.7649585e-02 -6.2532962e-02 -4.5107928e-02 + -1.5759599e-01 -1.5338577e-01 -4.1492667e-02 2.4928092e-01 2.2017507e-01 9.0914412e-02 1.9389122e-01 1.4554414e-01 -3.0255393e-01 1.2867412e-03 1.2691845e-01 -3.0663495e-01 5.6495977e-02 -7.1496764e-02 4.2276654e-02 6.1609166e-02 1.8315914e-02 1.9586911e-01 3.3721741e-01 -1.4795147e-01 -2.0857186e-01 3.8589503e-01 -9.9476780e-02 -1.4323869e-01 -9.9143996e-02 -9.1838739e-03 1.5373962e-02 7.7847932e-03 -2.0785949e-01 -8.0672283e-02 2.0318101e-01 -1.2799798e-01 + 1.2882310e-02 1.2938928e-02 7.2760604e-02 -1.7134624e-02 -4.7260130e-03 1.1971603e-02 2.6922564e-02 -2.9698630e-02 4.1550847e-03 -1.1862087e-02 -1.7231075e-02 2.2863365e-02 -5.6837370e-02 -4.2956349e-02 -5.8359467e-02 2.8882370e-02 6.0781650e-02 -5.8689382e-02 -2.8965834e-02 1.1385516e-02 2.6016943e-02 6.9617804e-02 -2.3827160e-02 1.5985346e-02 5.3172758e-03 -1.6318540e-02 -5.8727422e-03 -3.2661368e-02 4.4542068e-02 -2.9602866e-02 -1.1826854e-02 -6.1626057e-03 + 5.5819398e-02 -2.5940024e-02 -4.0683551e-02 6.6329268e-02 -4.2801027e-02 -2.5315146e-02 -3.5988775e-03 1.8902002e-02 1.8649194e-02 2.4999048e-02 1.3247068e-02 -2.7130677e-03 6.6385389e-02 3.1524873e-02 9.2976952e-02 -1.0813956e-01 -5.4288261e-02 1.0984598e-01 -5.1786056e-03 1.9319002e-02 5.5105727e-02 -2.2851721e-02 5.7633837e-03 -1.1711283e-02 -4.1043419e-02 1.2433354e-02 1.8215578e-02 1.3226763e-02 2.2497942e-02 -7.8812432e-03 3.0352143e-04 4.0234252e-02 + -2.2329933e-02 7.3982736e-02 2.0064348e-02 2.2794393e-01 3.7854593e-02 1.3139697e-02 3.3344695e-02 -2.8197686e-03 -3.8713993e-02 -3.1637572e-02 2.2347195e-01 -1.8735676e-01 3.4361316e-02 1.9570943e-02 5.6303191e-02 1.6653335e-01 -4.4607535e-01 6.8635470e-02 6.4546277e-03 3.4476349e-02 -1.9442500e-01 -6.8102968e-02 -2.3034572e-01 -2.3950456e-02 2.8220069e-02 -9.1441800e-02 -4.1332819e-02 4.9167386e-03 -1.2020165e-01 7.0971665e-02 -5.2813872e-02 1.9890210e-01 + 6.1667727e-02 -2.4261750e-03 -5.9432002e-02 -5.8197711e-02 4.4690916e-02 -1.0166440e-01 -2.4426673e-02 -4.8499889e-02 4.2604456e-02 -3.7878588e-02 -9.0082676e-02 9.5996012e-02 -9.4149579e-02 -2.0775292e-02 -1.4645470e-01 1.2949495e-01 1.6786620e-01 -1.8181522e-02 -5.1843575e-02 -5.2637172e-02 5.5320888e-02 1.1118966e-01 2.3182167e-01 -1.3225009e-02 -1.0972101e-01 3.4326245e-02 -4.7829391e-02 1.1557412e-01 1.3934811e-02 1.0035424e-01 -1.4630603e-02 -7.9920963e-02 + 8.5077073e-02 3.6441849e-01 -4.1557268e-03 1.3618192e-01 -2.5197560e-01 4.0617036e-01 -8.1807015e-02 -1.7318920e-01 2.6033701e-01 -1.3660565e-01 1.4695572e-01 -1.4174359e-01 -1.0212092e-01 1.2911194e-01 1.2715562e-01 -5.3148567e-03 -1.0196302e+00 7.6700345e-02 -3.3364173e-01 8.5727222e-02 2.1523795e-01 -4.7092707e-01 -1.8500361e-01 2.5954761e-01 -4.2183463e-02 -4.1296387e-02 -2.3995959e-01 -8.0131760e-02 1.5773913e-01 -1.7728279e-01 -4.4684204e-01 1.5256589e-01 + -3.2959704e-02 1.7681379e-02 8.8201543e-03 -6.3109173e-03 -3.7258527e-03 1.6638224e-02 1.4778640e-03 -7.9677761e-03 7.3753776e-03 -2.7134249e-03 -1.3862627e-02 2.8966184e-02 -3.6406925e-02 -1.4177974e-02 8.3111815e-03 -5.4781292e-03 4.4457431e-03 -6.3846247e-02 -1.7594809e-02 2.8494930e-02 5.6266172e-02 9.1008774e-03 1.7924973e-02 3.0093185e-02 2.7542138e-02 -1.1766334e-02 -2.1256944e-02 -5.8137843e-03 2.9389151e-02 -3.0351285e-02 -1.3581840e-02 -2.4626789e-02 + -6.7782994e-02 1.0308487e-01 -4.5634175e-01 1.7165203e-01 2.8588222e-02 -1.8481436e-01 -1.8751530e-02 -6.9034753e-03 -2.9776491e-01 3.3664878e-02 -2.1760726e-01 -2.7817881e-02 -8.1525128e-03 -3.0586818e-01 2.1249617e-01 -5.8834363e-01 -4.1806577e-01 3.8657881e-01 2.7587826e-02 9.2242389e-03 -9.8683490e-02 -1.7645365e-01 4.1737140e-01 1.6346122e-01 -3.9630722e-01 -2.9153411e-01 -2.8389300e-01 2.8027031e-01 1.3549092e-01 2.0329304e-01 -7.3091563e-02 -1.5901642e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_F_4.txt new file mode 100644 index 00000000..ea0c8a07 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_F_4.txt @@ -0,0 +1,26 @@ + -7.7872196e-04 3.3052543e-02 -1.2037371e-02 -4.3037558e-03 -3.6279266e-02 2.4049258e-03 3.1481748e-02 -2.2625658e-02 -3.2079167e-02 -5.7258041e-02 -4.0041911e-02 5.3309836e-03 1.2972731e-02 -3.3187365e-02 7.3671224e-02 -3.9596345e-02 -2.1409323e-02 9.7528905e-03 4.6357744e-02 2.7905401e-02 4.0612054e-02 1.9052582e-02 -9.7289740e-02 2.5936612e-03 4.1029647e-02 6.3847815e-02 -5.3830600e-03 -3.0879763e-02 2.9682043e-02 -7.8515903e-02 2.0328382e-02 -5.9543897e-02 1.0694451e-02 -2.5553962e-02 -9.5267889e-04 -3.0975180e-02 + 1.1325175e-02 7.1690987e-02 -1.1380277e-02 -3.6435621e-02 -8.2486065e-02 2.2308292e-02 1.9689450e-01 -8.4905647e-02 5.6260104e-03 -5.0803263e-02 -1.8569459e-01 -1.0511327e-01 2.7998779e-02 7.4539158e-03 2.9762456e-01 -8.7132271e-02 -5.8799860e-03 7.2643287e-02 8.5975188e-02 -1.0389015e-01 1.5684509e-01 -8.9007876e-03 -1.2483671e-01 1.0738496e-01 1.9926173e-02 2.4590807e-01 4.4738254e-04 6.9418168e-02 2.1247155e-02 -9.8194515e-03 3.9053707e-02 -1.1459281e-01 -7.0187586e-02 -5.6277130e-02 8.0608620e-02 -7.1446101e-02 + 1.4387826e-01 6.3953782e-02 -9.3491111e-02 -8.2791823e-02 -1.8300643e-03 1.1710133e-02 1.0217838e-01 -2.1462744e-01 2.4540776e-01 1.6368788e-01 2.0654503e-01 -6.7593279e-02 -2.9561823e-02 2.6929931e-01 1.3178500e-01 -1.2561872e-01 -1.9630905e-01 -7.1634170e-02 2.1699083e-01 1.4022224e-01 -1.7669503e-01 -3.6816202e-01 -2.3372315e-01 -1.0783606e-01 -5.6481634e-02 5.9971889e-01 -1.1966052e-01 4.3198962e-01 8.3588636e-02 -8.2913238e-02 -3.9752095e-01 5.7306161e-03 -1.1978815e-01 6.8744702e-02 2.1127572e-01 -7.8911028e-02 + 4.8069658e-02 -2.1443244e-02 1.3425996e-02 -5.2975852e-02 5.1713653e-02 -1.0141106e-01 4.5415914e-02 -6.9301346e-03 1.8704169e-02 3.3407911e-02 -1.1698579e-01 -4.7327730e-02 1.3739710e-02 2.0365355e-02 -1.2713584e-02 -6.3125136e-03 2.5833479e-02 4.1729059e-02 7.0183543e-03 -1.6614950e-01 -2.5590059e-02 5.9994683e-02 4.9233770e-02 3.2530905e-02 -1.7058792e-02 -3.9249365e-02 6.4135284e-02 -2.1007022e-02 -2.9295104e-02 9.0818677e-02 8.0218469e-02 -8.5553196e-02 -8.1035561e-02 -3.6275439e-02 5.2358757e-02 -1.2598846e-02 + -3.7763714e-01 1.5479119e-01 -7.1493110e-03 1.0370404e-01 -4.1524997e-01 2.2946588e-01 -1.2964747e-02 9.6527475e-02 -4.4523960e-01 -5.5524979e-01 -1.3840141e-01 2.0162630e-01 7.4450507e-03 -4.7998768e-01 4.8127624e-01 5.4715681e-02 1.1574626e-02 1.6057325e-01 -1.6417206e-01 1.1232366e-01 5.5203473e-01 2.6671836e-01 -1.8213861e-01 3.9966227e-01 1.7374423e-01 -3.9633281e-01 1.7017644e-01 -5.3541706e-02 -7.7392577e-02 -1.7383055e-01 1.7765312e-01 -1.1067922e-01 2.0084892e-01 -1.0721401e-01 -6.9569186e-02 -7.8346456e-02 + 1.1497650e-01 -7.9987595e-02 -9.9012372e-02 6.3335013e-02 5.9963796e-02 -1.1950208e-01 1.3240047e-01 8.9798093e-02 5.3808950e-02 -4.2104622e-02 1.3092865e-01 -1.7567538e-02 4.3906548e-02 -1.1822603e-01 6.1113395e-05 -2.0772310e-01 -7.9207637e-02 -2.6902796e-02 -3.7437842e-02 9.8924609e-02 -5.8481736e-02 -1.9307711e-01 6.0579505e-02 5.5897191e-02 -3.9222693e-02 1.5401590e-02 8.1202126e-02 1.7275385e-01 -9.9048843e-02 2.8805015e-02 -1.2758354e-01 -3.5025012e-02 -8.1838399e-02 8.6966149e-02 1.5164028e-01 6.4493916e-02 + -4.8190219e-03 2.1416587e-02 -1.0212873e-02 4.1434630e-02 -1.1095506e-02 3.6575120e-02 -3.4374695e-02 -9.7612874e-03 -8.3075194e-03 -6.7235567e-03 2.8346621e-02 -1.1372620e-03 1.2622241e-02 2.7083102e-02 -5.3287347e-02 -2.4656183e-02 -1.5134822e-02 2.7117475e-03 2.7397512e-02 3.9014261e-02 -1.1810631e-02 -3.0513802e-02 -5.2629917e-02 -1.0609337e-02 2.8366408e-02 6.4224353e-02 -2.3004684e-02 3.1170753e-02 1.4844587e-02 -6.6299919e-02 -3.5142371e-02 2.4021988e-02 7.5208466e-03 2.5436850e-02 -1.4196071e-03 8.1703944e-03 + 1.2939206e-01 1.6966530e-02 -3.1615269e-02 1.7786251e-01 1.1217092e-01 -3.2361160e-02 -4.6537748e-02 -4.0444589e-02 -3.9028985e-01 -1.4982642e-01 2.2791230e-01 6.8391853e-02 6.5011646e-02 1.1467704e-01 3.2973222e-01 -2.1635891e-01 -1.8290923e-01 3.9892141e-02 2.4345601e-01 -3.4460611e-02 -8.0474350e-02 -1.3103222e-01 -1.5906394e-01 1.0798218e-01 4.1964979e-02 1.8044391e-01 2.3656409e-02 3.0997017e-01 -6.6642376e-02 -4.4018130e-02 -2.5951765e-01 5.4298464e-02 -7.7523170e-02 2.8346441e-01 1.6918726e-01 1.7733850e-01 + -5.0821230e-03 2.3384319e-02 2.8192592e-02 4.1864106e-02 6.9298043e-03 3.3631911e-02 -7.0256122e-02 -8.5328678e-03 -5.9802190e-03 1.8185643e-02 1.6626673e-02 -1.3457123e-02 1.4340854e-02 4.5765030e-02 -6.3516603e-02 -4.4592638e-02 3.6446680e-03 -4.6566082e-04 1.9011503e-02 2.7912584e-02 -2.2227532e-02 -4.8923722e-02 -2.8786002e-02 -2.7994574e-02 3.4653410e-02 2.5738407e-02 -3.1454065e-02 2.0721850e-02 2.0646148e-02 -4.4210432e-02 -3.3049669e-02 2.3751152e-02 1.6991276e-02 2.9574289e-02 -1.5189884e-02 1.7856594e-02 + -9.6567184e-02 -3.7128551e-02 4.7965380e-02 1.0390939e-01 -2.6986694e-02 1.2912887e-03 -1.4859152e-01 -1.1851112e-02 2.0698015e-02 -1.2064167e-01 3.4465913e-01 2.0024494e-01 6.2380913e-03 -2.5335775e-01 9.7782615e-02 5.6133172e-02 -1.3297688e-01 -1.2059175e-01 -1.3044364e-01 2.9528620e-01 -7.4981870e-02 -1.0272739e-01 -6.1913587e-02 -5.3506276e-02 9.4913331e-03 7.9996568e-02 6.5863356e-02 8.0174717e-02 -1.1263600e-01 -1.1768425e-01 -1.2076416e-01 1.6226095e-01 6.8667314e-02 5.3732134e-02 1.0441943e-01 6.7814296e-02 + -4.9391927e-03 5.6663933e-02 -1.0917674e-01 -1.7399465e-01 -5.8157373e-02 1.1386136e-01 7.0807092e-02 1.7790194e-02 -2.3108173e-03 2.3064429e-01 -5.1424730e-02 -1.0905813e-01 -4.1991860e-02 1.5924590e-01 1.9279123e-01 1.3978189e-01 2.7252981e-01 -2.9431223e-02 1.2262743e-01 1.7593914e-01 5.5273738e-02 1.6778755e-01 -4.7558881e-02 -1.5281869e-01 6.2139421e-02 -9.6765435e-03 -3.5756454e-01 -2.3268429e-01 1.7204606e-01 -2.4378740e-02 1.0440391e-01 7.4394272e-02 1.0596167e-01 -1.4639536e-01 -2.1342427e-01 -1.3020255e-01 + -9.8239311e-03 1.4646217e-02 5.3510372e-02 -1.8887606e-02 -1.0855812e-02 4.7172662e-03 -2.8351243e-02 -7.5097205e-03 -8.4881034e-03 -5.7364303e-02 1.8808051e-02 3.8675565e-02 2.7062481e-02 -7.2445709e-02 -9.1004998e-04 -3.0150474e-02 -2.9500157e-02 -3.0733398e-02 -5.8098157e-02 4.2907197e-02 2.5313702e-02 -2.7659782e-02 -1.6468669e-02 -1.5058577e-02 1.8238696e-02 -8.7523089e-02 4.6883366e-02 -5.8028182e-02 2.9308588e-02 -4.2482359e-02 2.3548198e-03 -4.9147115e-02 6.4843663e-02 -1.9867657e-02 -2.7777959e-02 -1.5718302e-02 + -1.5229106e-02 -7.4047809e-02 2.2629187e-01 1.5737691e-02 9.9611532e-02 4.6617994e-02 -3.0250888e-01 8.0519663e-02 1.1232305e-01 -1.1913084e-01 2.7729954e-01 3.9165227e-01 9.3742937e-02 -1.9370160e-01 -4.3663706e-01 -9.5198085e-02 -2.6022422e-01 -1.4816347e-01 -1.9647327e-01 -5.2824079e-03 -2.2909260e-01 4.9986921e-02 1.2683288e-01 -8.5887094e-02 3.2839893e-02 -1.1488323e-01 7.1941704e-02 -4.7090189e-02 -1.1611107e-01 1.5257445e-01 5.0210873e-02 1.9224528e-01 1.4788938e-01 3.6280712e-02 -1.1158570e-02 9.0320739e-02 + -1.4641663e-01 -1.3903610e-02 -2.4207278e-02 8.3883439e-02 -2.3472254e-01 -2.1396337e-02 1.6887568e-01 4.4205104e-02 1.2241413e-01 -1.4955478e-01 -2.3682604e-01 -6.4793589e-02 2.0705241e-02 -2.8967221e-02 2.0945441e-01 -1.3635227e-01 1.5501397e-01 1.6290155e-02 -1.0730405e-01 2.3512077e-02 2.9236603e-01 1.1290104e-01 -8.1335983e-03 1.6248563e-01 5.1463116e-02 -1.0690873e-01 1.2908093e-01 -3.0224958e-02 1.2801353e-01 -3.1591868e-01 1.6643517e-01 -1.6641579e-01 2.0385420e-01 -1.6955950e-01 -1.3187417e-01 -1.2172323e-01 + 2.1499373e-02 -4.0042043e-02 -4.2033528e-02 2.6271714e-02 1.6983170e-02 -1.7006939e-02 2.7603638e-03 3.6672281e-02 -1.8916761e-02 -8.1076017e-02 4.8990283e-02 7.7434582e-02 2.9971301e-02 -6.2483602e-02 -1.5747472e-02 -4.6501069e-02 -7.4448286e-02 -1.6923152e-02 -2.3144837e-02 5.3962280e-02 -5.1169074e-03 5.9459404e-04 2.2608640e-03 1.5468446e-02 -2.8218423e-02 -4.2378255e-02 4.4788107e-02 3.2917008e-03 -1.5948305e-02 -3.7697224e-02 -1.9649743e-02 1.2042990e-02 2.2336813e-02 2.9974199e-02 1.1351333e-02 2.5074249e-02 + -4.3247534e-02 8.0633729e-02 -1.1914358e-02 6.2939456e-02 -1.7212094e-02 1.5320781e-01 -3.9322484e-01 -2.6266810e-02 -6.4470526e-02 -7.7994702e-02 -2.1966203e-02 1.6006932e-01 9.2955399e-02 -2.0650484e-02 -3.8587550e-01 -1.3013999e-01 -6.7650746e-02 1.4128573e-01 -8.1861259e-02 3.6366497e-02 -6.8143985e-02 9.2788300e-03 1.3661857e-02 3.1151359e-02 5.1349087e-02 -1.7189345e-01 3.1392485e-01 1.6336133e-01 -1.8384360e-02 -1.2628494e-01 -1.2655937e-02 7.9400791e-02 1.4035707e-01 6.8681042e-02 -8.0798850e-03 3.1777394e-02 + 4.1462081e-02 -4.8723773e-02 -4.8009174e-02 4.6668064e-02 7.8996160e-03 -5.7404132e-02 6.0223855e-02 5.9179395e-02 -3.7009199e-02 -1.6363259e-01 8.9603372e-02 1.2155584e-01 4.6870950e-02 -1.7844422e-01 6.1426069e-02 -6.4050195e-02 -9.5360546e-02 -2.6571663e-02 -3.3146742e-02 9.7537666e-02 2.6018181e-03 -2.3428097e-02 -5.3686972e-02 8.2017790e-02 -4.6307839e-02 -3.2820660e-02 1.3010240e-01 4.5049339e-02 -5.3124795e-02 -1.0187948e-01 -7.7293917e-02 -2.5752628e-02 4.3555136e-02 2.7969310e-02 9.3479583e-02 2.1035883e-02 + 1.0223368e-01 -1.1177480e-01 -1.0864668e-01 5.3718934e-02 7.2746307e-02 -2.2522485e-02 1.2608837e-01 1.5140209e-01 -1.5251359e-01 -9.4967944e-02 1.1310226e-01 8.9365801e-02 1.6889312e-01 -6.3454591e-02 1.6562867e-01 -1.4247513e-01 -8.5300282e-02 -3.2193962e-02 9.3666027e-02 9.9460690e-02 -4.0591690e-02 9.3306651e-02 3.9407604e-02 -1.5010752e-02 -4.7667274e-02 -5.3650392e-02 7.8991263e-03 -8.3014854e-02 -2.3303443e-03 -6.2731239e-03 4.3100629e-02 9.6190620e-02 5.1190937e-02 4.9335331e-02 -1.6724581e-02 5.9093152e-02 + -4.8019493e-03 -1.3543737e-01 6.1593122e-02 1.1439913e-01 1.4881583e-01 -3.9683579e-02 1.2776098e-01 1.3447902e-01 1.7549775e-02 1.1158820e-01 1.6213308e-01 -6.7537376e-02 -1.8651526e-02 1.3768160e-01 2.1344482e-02 1.8835282e-01 7.6399943e-02 -8.1524348e-02 -2.7691350e-02 -9.2613150e-02 -1.0616745e-01 5.9067404e-02 2.1926722e-01 -7.0670621e-02 -4.5865795e-02 -3.5030228e-02 -3.1556435e-02 -3.0292342e-02 4.3648228e-02 1.1939289e-01 -8.0921896e-03 1.8129331e-01 1.3141844e-01 1.2852684e-01 -6.1602681e-02 1.9575957e-01 + -2.9313114e-02 1.2932867e-01 -6.7759189e-02 -1.1018249e-02 9.3852598e-03 1.9085719e-01 -1.0143301e-01 2.9467465e-02 1.3142049e-01 5.2776632e-01 2.2937489e-01 -1.8974871e-01 5.0869705e-02 4.0897052e-01 -6.9642437e-02 -7.2684233e-02 2.5475298e-01 -1.1781634e-01 1.2457930e-01 2.6635434e-01 -2.0330946e-01 -3.2108336e-01 -6.0140063e-02 -4.1734610e-01 3.5082264e-02 7.2366173e-05 -3.3743350e-01 -2.3985640e-02 2.3181113e-01 -1.2655438e-01 -2.0078512e-01 4.3795650e-01 1.2925873e-01 -3.1429347e-02 -1.6918077e-01 -8.8677700e-02 + 1.7750771e-01 1.1405556e-02 -1.4457867e-02 3.5712422e-01 2.7844450e-02 -8.0230227e-03 -2.2383603e-01 1.5274367e-01 -1.8642651e-01 1.1481989e-02 2.6229493e-01 -8.1546397e-02 3.1902211e-01 4.5861651e-02 -2.4439375e-01 -2.1819416e-01 4.1086087e-02 1.5711384e-02 2.1694942e-01 2.7370750e-01 -2.7920363e-01 -3.7042609e-02 5.8874901e-02 -2.3488481e-02 1.2100647e-01 2.7540631e-02 2.6129436e-02 -3.1321185e-03 -7.1328485e-02 -1.3563766e-01 7.7721299e-02 3.1207767e-01 7.4391002e-02 1.2888129e-01 -8.2412643e-03 1.4276567e-01 + -4.1441854e-03 -6.2129798e-02 7.9480963e-03 3.9332852e-02 3.8463325e-04 -2.3994127e-01 2.5832738e-01 -1.2428562e-01 1.4432364e-02 -4.4017194e-01 -2.9972625e-01 1.4575462e-01 -1.2744793e-01 -2.4094445e-01 -3.7665472e-02 4.6265098e-02 -3.3081012e-01 1.2731073e-01 -4.8647774e-02 -3.8264242e-01 1.5522676e-01 1.5504486e-01 -1.2297656e-01 3.9015028e-01 -6.4330428e-02 2.7017883e-01 3.4810857e-01 2.3554258e-01 -1.2757761e-01 -6.3134306e-02 -9.9452185e-03 -4.2452795e-01 -1.9016921e-01 6.5072725e-02 2.4683597e-01 4.5208757e-02 + -1.3163921e-01 2.0591114e-01 2.6377286e-02 4.1341393e-02 -8.5464010e-02 1.6079412e-01 -1.0942649e-01 -6.5144135e-02 -1.3267585e-01 1.6146228e-01 8.0773956e-02 -1.5595024e-01 -2.7949181e-02 1.8664361e-01 5.8237583e-02 -5.1540715e-02 2.1009117e-01 7.7202503e-02 8.8747848e-02 -3.7939410e-03 -3.4807701e-02 -1.5374170e-01 -1.0419237e-01 -1.6512221e-03 8.7963988e-02 -5.7422327e-02 -7.2295108e-02 1.6519750e-01 9.1195057e-02 -1.1327592e-01 -1.2508002e-01 1.5688537e-01 5.5752171e-02 -2.3388743e-02 -4.1584888e-02 -8.9519519e-02 + -2.6697594e-02 -2.7383482e-02 5.5779270e-03 -1.1878777e-01 -1.4031528e-02 -3.5482136e-02 6.7282320e-02 -5.3249335e-03 2.2606888e-02 -1.4649482e-02 -6.3569613e-02 2.0422676e-02 -5.9922552e-02 -7.6852897e-02 1.2642599e-01 9.8279327e-02 2.3875947e-02 -5.2637634e-03 -6.6190261e-02 -5.8269754e-02 6.9450813e-02 8.7241264e-02 6.7949459e-02 2.5895657e-02 -4.1793436e-02 -1.0257932e-01 2.0611737e-02 -6.8392792e-02 -1.5754269e-02 1.1618793e-01 7.4428425e-02 -7.2890996e-02 -3.3536255e-04 -7.6896302e-02 -1.7329093e-02 -4.8994469e-02 + -4.8732320e-01 4.8410790e-01 -1.3039605e-01 1.8689278e-01 -4.8003568e-01 6.7965285e-01 -2.3273824e-01 -1.1740275e-01 -5.0540370e-01 -7.2219332e-02 -1.3609254e-01 7.2317764e-02 -8.9696084e-03 2.2602167e-01 1.7999398e-01 9.0936688e-02 2.0959679e-01 2.1078710e-01 6.2855577e-02 2.4231100e-01 3.6044934e-01 -1.7488081e-02 -5.0891309e-01 2.0360293e-01 1.9620701e-01 -2.1483279e-01 -3.7130308e-02 2.2750831e-01 1.4078139e-01 -5.2843652e-01 -6.5141076e-02 4.6798631e-01 3.1026116e-01 -6.6764158e-03 -1.7888762e-01 -1.4874669e-01 + -1.3794944e-01 -5.1990630e-03 2.2848538e-01 -2.6496897e-01 4.6295047e-03 7.6613517e-02 -1.1208682e-01 -2.0777679e-01 3.4983746e-01 4.9483650e-02 -1.0418918e-01 1.1477906e-01 -2.9346192e-01 1.8767401e-02 -5.3994489e-01 4.1180651e-01 -5.0919739e-02 -9.5552094e-02 -2.3067423e-01 2.0363814e-02 -4.3572619e-02 8.5039768e-02 1.5200792e-01 -3.1417716e-02 -4.3002462e-02 2.0645583e-02 -2.4039504e-02 -3.2156548e-02 -1.5612995e-01 3.1643677e-01 4.9851470e-02 -1.7562047e-01 -1.2815322e-01 -2.2739849e-03 -4.6742564e-02 -5.2649756e-03 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_F_5.txt new file mode 100644 index 00000000..8b2fbf79 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_F_5.txt @@ -0,0 +1,18 @@ + 2.7994573e-01 -2.7600386e-02 -4.4852318e-02 5.7408510e-02 -1.3236317e-01 2.1970296e-02 9.9964611e-02 1.8315544e-01 -1.6880258e-01 2.8293490e-01 4.3052481e-02 -2.5014599e-02 1.3653498e-01 -3.3312089e-01 1.5324057e-01 1.0769641e-01 1.2803591e-01 2.4970347e-01 -3.6965414e-02 -2.0709043e-02 2.9578402e-01 5.0901215e-02 2.5776263e-01 -1.5936462e-01 1.1107920e-01 4.1074693e-02 -5.8038280e-02 -3.6698446e-01 2.2307433e-01 1.2843949e-02 -1.5617681e-01 9.7463962e-02 1.9357281e-01 1.1198007e-01 -6.6605148e-02 3.2242674e-02 -2.0512016e-02 -4.6110258e-02 5.7510931e-02 4.0257199e-02 2.5481841e-03 5.2736473e-03 -8.4067117e-02 + 4.7835057e-03 2.2075905e-02 -6.6086737e-02 8.4831665e-02 -8.6858478e-03 1.6270911e-02 -1.1387397e-03 1.4224969e-02 1.8926421e-02 1.0697582e-03 6.8275683e-02 -1.2736322e-02 -3.6057036e-03 3.4000379e-02 -1.5550477e-02 3.3462378e-02 -6.0920663e-02 -1.0958583e-02 7.5705498e-02 3.6941335e-02 -1.9861152e-02 7.0134340e-03 -1.2539269e-02 3.1069767e-02 3.2429999e-03 1.5412923e-02 9.3860253e-03 4.3763926e-02 -1.3527271e-02 -2.7719171e-02 3.2240586e-03 1.2380589e-02 -3.1578241e-02 1.0929143e-02 -3.7795005e-03 2.5277140e-02 -6.5157943e-03 -2.9691913e-03 -5.3314944e-04 1.0745253e-02 -4.6187113e-02 1.7794563e-02 -1.2560244e-02 + 1.5825482e-01 4.1236740e-02 1.7660611e-01 -3.8670320e-01 -8.5568122e-02 1.6884149e-01 -2.6924160e-01 7.7968213e-02 3.0830771e-01 2.6589205e-01 3.1831892e-01 -9.4735507e-02 6.7253811e-02 -1.8414336e-01 4.2729200e-01 9.9891600e-02 -4.5985484e-01 2.4647515e-01 3.8522330e-01 2.2360363e-01 -8.0519076e-02 2.9614814e-01 4.1376779e-02 3.2776646e-01 2.0203199e-01 -9.2154337e-02 -1.5508131e-01 -5.1850724e-01 1.4890288e-01 -6.4103921e-03 -7.6136749e-02 -1.4056895e-01 4.9987771e-01 -3.8828761e-01 1.8960252e-01 1.6199387e-02 -2.1436964e-01 -1.1855549e-01 2.8189087e-01 3.2497675e-01 3.0346472e-01 -8.2787735e-02 4.1832238e-02 + -5.7656213e-01 7.4315218e-02 -2.1923006e-01 4.5476816e-01 8.8662320e-02 -8.3018706e-02 8.2522498e-02 3.4999737e-02 -1.9561993e-01 -2.6435071e-01 -1.3945250e-01 -2.5080174e-01 -1.8059325e-01 3.6903860e-01 -2.3796126e-01 -3.7977025e-01 9.8007081e-02 -4.2320732e-01 -6.5522787e-02 -2.5635499e-01 2.7604711e-02 5.6666919e-02 -4.2490455e-01 -1.6828640e-01 -1.9541642e-01 8.1282421e-02 2.1478884e-01 4.3687033e-01 -1.4518534e-01 -1.1761608e-01 -9.6984531e-04 5.3821784e-02 -5.0781209e-01 1.5838548e-01 -5.4183930e-02 -1.1560060e-02 6.0052565e-02 1.7129787e-02 -1.0055715e-01 -1.4377195e-01 -1.1505042e-01 1.2666789e-01 1.6712565e-01 + 1.4039716e-01 -7.3023803e-01 1.0154539e-01 -5.3431739e-02 1.5466222e-01 -2.3611122e-01 2.8797201e-01 8.1828911e-02 2.6821647e-01 -1.8310393e-01 3.8055631e-01 -3.7017234e-01 3.9853291e-01 6.3700766e-01 -7.6629728e-02 -6.0670620e-02 -2.6153676e-01 -3.5288345e-01 2.3610870e-01 -1.0888175e+00 -2.7003369e-01 -6.7621967e-01 1.6952465e-01 1.1714754e-01 -1.1899865e-01 -5.5172485e-01 1.3714284e-01 3.3122064e-01 1.9565747e-01 2.8365529e-01 7.1982576e-01 6.9901045e-02 3.6353341e-01 -1.1675178e-01 -3.5690146e-01 3.7831316e-01 -3.0508636e-01 -2.8533224e-03 4.1153359e-01 8.5297152e-02 1.9859536e-01 -7.7567483e-02 1.1522588e-01 + -1.7476741e-01 8.7088653e-02 8.7960400e-02 1.3276684e-01 6.4773399e-02 -8.1710809e-03 -2.5204920e-02 -6.8354944e-02 -2.0115520e-01 -1.1242601e-02 -3.1953986e-01 1.6332477e-01 -5.2878059e-02 1.2560700e-01 -1.3115383e-01 1.2960304e-01 7.6107683e-02 -4.6355361e-02 -5.5221013e-02 1.5247553e-01 1.7416214e-01 -4.6292429e-02 1.3404618e-01 -1.1576486e-02 1.0759089e-01 -1.8092277e-01 2.2968599e-02 -1.1392701e-01 -1.3853835e-01 2.0465920e-02 -6.2027418e-02 7.7460516e-02 1.0493686e-02 -6.7901449e-02 -1.6571480e-02 -6.5784705e-02 -4.2004362e-03 -8.5935551e-02 -1.5541050e-01 9.2263884e-03 -1.4681379e-01 4.0093695e-02 7.5974224e-03 + 1.7438647e-02 -8.7722518e-03 -1.5540236e-02 -8.1374498e-02 -7.5098901e-02 -4.6005858e-02 -5.2974630e-02 3.8524755e-03 1.4493734e-02 -1.1267011e-01 -1.4493417e-01 -6.1182064e-02 4.1951478e-02 -3.5730688e-02 2.4392801e-02 3.2567516e-02 8.0646359e-02 7.2218106e-02 -6.8961911e-02 3.4259866e-01 -1.4352517e-02 3.8911559e-02 -9.2115662e-02 -1.6727371e-01 5.2654182e-02 2.4346016e-01 -1.4571814e-02 -5.3413237e-02 -3.9404007e-02 -4.5403033e-03 -1.4182368e-01 -4.7679071e-02 -3.4493894e-02 -4.9199599e-02 5.6437034e-02 -1.8016789e-02 -1.7095665e-02 1.9771577e-02 1.2635754e-01 4.2190461e-02 1.5977513e-01 -1.0069363e-01 1.0809094e-01 + -4.5067493e-02 2.5373611e-01 2.7333626e-01 -1.0459510e-01 1.8122995e-02 1.6118284e-01 -6.1538446e-02 2.0972367e-02 -1.9166468e-01 2.5672796e-01 2.4219152e-02 2.3099096e-01 3.0350309e-03 -2.4295817e-01 3.7296814e-02 -9.4375786e-02 9.7029138e-02 3.4992297e-01 -5.0836867e-03 3.3865429e-01 1.1165401e-01 3.6247733e-01 -7.8162034e-02 2.4616042e-02 -2.1098929e-01 -3.5795647e-01 1.7361618e-01 -1.2116803e-01 -2.0756722e-01 3.1063548e-01 1.1454345e-02 -8.9865829e-02 2.6154479e-01 -3.6809778e-01 -3.6772107e-02 -1.4641070e-01 -5.3755856e-02 -1.6694639e-01 -3.6647981e-02 1.9749125e-01 3.3020450e-02 1.4967638e-01 2.4989396e-01 + -1.9938058e-02 -6.8452879e-03 -1.8949246e-01 1.3160522e-01 -5.1026148e-02 1.8625760e-02 -1.9130023e-02 -1.8079637e-02 -2.7903533e-02 -2.8090366e-02 2.6792989e-01 5.8278871e-03 -2.0069867e-01 1.3834279e-01 1.8771909e-02 -8.9626241e-02 -9.2410184e-02 6.4949483e-04 3.5985541e-02 1.6381248e-01 -2.9675442e-02 1.1016144e-02 -6.0135886e-02 1.9068540e-01 -3.1044878e-02 3.0549740e-01 3.6741137e-02 9.8997434e-02 -3.4715817e-03 -7.9647560e-02 1.2134836e-01 -8.7442633e-02 -1.4817725e-01 6.0917573e-02 3.5758584e-02 9.9677439e-02 -7.3809484e-02 3.6648997e-02 -5.7023288e-02 3.5179441e-02 -9.5193208e-02 1.0802059e-01 1.1702232e-02 + -1.4881161e-01 -2.1999760e-01 2.2196798e-01 -2.8676125e-01 1.8452639e-01 -2.3394179e-02 1.7660416e-01 -8.6314184e-02 1.4128379e-02 -3.3172394e-02 3.3041124e-03 -1.4707024e-01 8.6435809e-03 3.2417427e-02 1.4210683e-02 -2.9642857e-01 1.2865645e-01 -2.1934862e-01 -1.8326336e-01 -5.4769597e-01 3.1469437e-03 -7.5474566e-02 2.2965082e-01 -5.8165496e-02 -1.4946865e-01 -3.5566952e-01 8.0425030e-02 -1.0815627e-01 7.6082767e-02 1.5997550e-01 1.7327644e-01 2.1906996e-02 3.6642825e-01 -7.2483220e-02 -1.3238635e-01 -4.7762176e-02 -1.9507134e-02 -3.5999135e-02 5.7635045e-02 -2.2258723e-02 1.2796524e-01 8.9657095e-02 -4.8673379e-02 + -3.2040841e-03 -1.3984078e-01 9.0329146e-02 1.3635120e-02 1.3884371e-01 3.5771202e-03 4.3358984e-02 7.3628207e-02 1.3056851e-01 1.4337065e-01 4.3827316e-02 2.9691781e-02 1.3116644e-01 2.2720244e-01 -7.5004720e-02 2.4012184e-01 -5.5189650e-02 2.1866490e-01 1.3500395e-01 -1.1582665e-01 -4.4165313e-02 -2.9820345e-01 -2.6607602e-02 2.8862011e-01 5.2186900e-02 -5.4686153e-01 3.2269084e-02 6.3321531e-02 3.6199855e-02 3.2447181e-02 4.0406260e-01 -2.4682071e-02 -1.0661344e-01 -1.7594650e-02 -3.9376193e-02 4.7738179e-02 -5.1871536e-02 8.4920275e-02 -1.4268647e-01 1.8701083e-02 -2.8343572e-01 4.2032961e-02 8.3118950e-02 + 1.2688079e-01 -1.2381555e-01 -5.1951944e-02 1.3674267e-01 -1.8744487e-02 -2.4528437e-01 -4.8231488e-02 -5.8379441e-02 9.3745863e-02 -3.0568192e-02 -4.1597294e-01 1.9606386e-02 1.1248541e-01 5.4718687e-02 -1.7096570e-01 5.2960656e-01 -2.4761245e-02 5.6500043e-02 1.8447683e-01 -1.6786273e-01 -2.7616092e-01 -4.1475193e-01 1.8265279e-01 2.6801552e-01 2.9123421e-01 1.5081887e-01 -4.5475295e-01 1.6268143e-01 1.0284113e-01 -3.0615526e-01 -4.3716655e-02 2.3289882e-01 2.2083778e-01 9.3005861e-02 9.9463418e-02 2.4939716e-01 8.5793633e-02 2.1286826e-01 1.0460624e-01 -2.6887776e-01 2.1888824e-01 2.3254535e-01 -2.1159212e-01 + -1.4806252e-01 -5.9260979e-02 4.5368922e-01 4.8065332e-02 1.8594864e-01 -8.2402960e-02 -1.2076915e-01 9.8291482e-02 -3.8676155e-02 1.2416112e-01 -5.0720637e-02 -1.5859441e-01 1.6492975e-01 5.6420734e-01 -3.4664201e-02 -9.2584850e-02 8.0185281e-03 2.2783419e-01 1.7163018e-01 -3.3532216e-01 1.1809183e-01 -1.3436078e-01 -1.0462499e-01 4.3944429e-01 -6.2431962e-02 -6.7125391e-01 4.6013172e-01 -3.9434112e-02 -1.2861736e-01 2.0642052e-01 4.5833725e-01 -1.1066223e-01 -1.0160571e-01 -1.4584191e-01 8.6633290e-02 -1.4226595e-01 -2.6138952e-01 -1.1596898e-01 -7.1649781e-02 1.5704298e-01 -2.4994442e-01 2.3056288e-01 4.5537051e-01 + 6.9565357e-02 1.2079780e-01 -2.2392244e-01 2.2005753e-01 -1.2550615e-01 2.2347557e-02 -6.9481254e-02 5.9726548e-02 -5.0186605e-03 -5.2976740e-02 1.6192314e-01 3.1722561e-02 -5.2171312e-02 2.3547140e-02 7.0484652e-04 3.5671353e-02 -2.7494450e-02 6.1052988e-04 7.0883250e-02 3.5598873e-01 3.9951784e-02 6.5170270e-02 -4.4081467e-02 -5.7183362e-02 6.4136579e-02 2.6952005e-01 -4.5843683e-03 5.6503379e-02 1.4034359e-02 -4.2063882e-02 -1.0732387e-01 -4.4030648e-02 -2.1112360e-01 8.1433545e-02 7.1005522e-02 6.3163144e-02 4.0984061e-03 1.6489881e-02 -5.5774035e-02 1.0656423e-02 -1.1058842e-01 -4.3748066e-02 -5.8087824e-02 + 7.3863901e-03 1.4391104e-03 -3.7677193e-02 3.4396151e-02 -7.4992734e-04 1.1234762e-02 8.4073114e-03 1.1849413e-02 2.4551926e-02 -3.6039389e-04 6.1438514e-02 -3.0497123e-03 6.3060310e-03 1.9071478e-02 -7.9229482e-03 1.7925521e-02 -3.4457935e-02 -1.0290640e-02 3.8046845e-02 7.0989648e-03 5.3186253e-04 5.5243854e-03 1.4292997e-02 1.2865774e-02 3.2258496e-03 -1.9262900e-03 -8.7334702e-04 1.1676519e-02 9.2221031e-04 -9.3822320e-03 8.1323080e-03 6.9357147e-03 -3.3617635e-03 1.3271866e-03 -1.3763987e-02 1.8994608e-02 -5.7608004e-03 6.1074450e-03 -7.1842616e-03 6.9944633e-03 -2.6495916e-02 1.2996442e-02 -2.0095760e-02 + 4.9494960e-01 1.4535252e-01 -3.1482937e-01 3.1719141e-01 -2.6360759e-01 -2.3316978e-02 -7.7932672e-02 1.3915902e-01 5.5881927e-02 7.0575713e-03 -1.7637346e-01 2.2373646e-01 1.5312209e-01 -2.5647195e-01 -6.5726065e-02 4.0741724e-01 -2.5117149e-01 1.1370880e-01 2.2674014e-01 1.0140615e+00 1.4388842e-01 -3.0978177e-02 -7.3705620e-03 -1.2252835e-01 2.7408257e-01 2.5395681e-01 -1.4071490e-01 7.7185277e-02 -9.6389468e-03 -8.2308108e-02 -1.4843992e-01 6.6030245e-02 -4.3492346e-01 2.8557253e-01 6.4644473e-02 8.2473403e-02 2.5855375e-02 2.1145958e-01 -6.0137059e-02 4.3258886e-03 -2.1415354e-01 -4.2483354e-01 -6.7405736e-02 + -1.1010059e-02 6.3539272e-02 4.9235859e-03 -4.6243996e-02 -1.4013324e-02 -7.1589941e-02 -6.9433032e-02 1.4465892e-02 1.1638773e-01 -9.3911552e-02 1.3294933e-01 1.5412204e-02 2.7538116e-02 1.7492265e-01 5.6953300e-03 -8.3763703e-02 -1.8729175e-01 2.2253637e-02 1.8905775e-01 -5.5046150e-02 -1.3339579e-01 2.6763025e-02 1.0035191e-02 7.1516729e-02 4.6938283e-02 7.4090502e-04 -2.5148021e-02 4.6121028e-02 -3.8397813e-02 4.2889902e-03 1.1071305e-01 -1.0533701e-01 5.1983779e-02 1.0375694e-01 6.5938529e-02 4.6881207e-02 -1.2119046e-01 2.0478939e-02 7.4883083e-02 5.0082296e-02 9.7949416e-02 -3.9285890e-02 1.1267573e-01 + -4.4246168e-02 -2.3829754e-02 7.3442899e-02 4.5104146e-02 9.8394493e-02 -1.0840046e-02 2.8276177e-02 -3.5113850e-03 -9.1519143e-02 5.4474200e-02 -5.4022867e-02 2.4096432e-02 -1.4432989e-04 3.8205224e-02 -3.8281368e-02 -5.3512129e-02 7.4796531e-03 -6.9989136e-02 -3.3231130e-02 -3.6550953e-01 -5.9590121e-02 -6.3702143e-02 4.7576176e-02 1.2970134e-01 -8.5180293e-02 -1.7921218e-01 -5.9337827e-02 6.6445837e-02 3.0924498e-02 -1.7889906e-02 1.0474593e-01 9.4246071e-02 3.7898017e-02 4.5444020e-02 -2.6850667e-02 1.7180847e-02 4.3026572e-02 -2.5575412e-02 -2.3347323e-02 -7.0005192e-02 -3.8452339e-02 5.2102101e-02 -9.6389595e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_G_1.txt new file mode 100644 index 00000000..0f76e29c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_G_1.txt @@ -0,0 +1,19 @@ + 1.3630691e-01 8.6389236e-02 -8.0856955e-02 1.9147491e-03 2.1538126e-01 9.8931877e-02 1.1732550e-01 7.9054039e-02 -2.6256002e-02 1.9617726e-01 1.2972521e-01 4.7443352e-02 1.2186110e-01 -5.6580238e-03 1.7429497e-02 7.2346782e-02 -9.2644450e-03 -1.6778470e-01 -1.4498806e-02 1.8442741e-01 -1.4380626e-01 2.2135308e-01 9.4503522e-03 2.7884077e-02 5.5578988e-02 -3.4277195e-01 -7.9706046e-02 + -7.2523377e-02 -1.5968425e-01 2.2580297e-01 -1.9672497e-01 1.8768247e-01 -2.3963049e-01 -1.2549348e-01 -1.8691663e-01 1.4833723e-01 -3.0690735e-02 -7.3682971e-01 1.7724855e-01 -1.0756998e-01 -5.5356126e-01 -1.0795966e+00 -1.0471305e-01 3.8490115e-02 -6.5845852e-01 1.8924764e-01 -1.0539279e+00 4.2721586e-01 3.8497927e-01 -3.2347129e-01 -1.7953769e-01 -8.3536411e-01 1.0814656e-01 6.4329193e-01 + -1.1512891e-02 9.2076230e-02 -1.9772459e-02 -2.6447567e-02 2.2027538e-02 1.4832476e-01 -6.3049055e-02 5.8657965e-02 1.0634424e-02 6.3272993e-02 4.0414291e-02 -1.0440012e-01 1.7256421e-02 2.2725156e-02 3.4731655e-02 8.8043436e-02 4.8976381e-03 3.7435861e-02 1.2105271e-01 -1.5427093e-02 3.5855597e-02 -7.5518320e-03 7.3486884e-03 7.7691719e-02 -1.2340688e-01 -2.8081177e-02 1.6043213e-01 + -3.5597418e-01 -2.0533608e-01 1.2322410e-01 1.9311803e-01 -8.2087760e-01 -5.8256756e-01 -1.8065158e-01 -1.6579104e-01 -1.9207877e-02 -3.1555560e-01 2.1147284e-01 -5.3023976e-03 1.7688076e-01 3.4146080e-01 -1.5164417e-01 -4.3140646e-01 1.1753149e-02 2.9489574e-01 -8.7144340e-02 -6.1505546e-01 -1.7190052e-01 -4.2110068e-01 3.4635606e-01 -2.9088490e-02 1.2730218e-01 2.7543364e-01 -3.2579384e-01 + -5.6570895e-03 4.3779820e-03 -4.0775011e-02 -3.7570860e-02 -5.4803275e-03 -5.5239619e-02 7.1452224e-04 -9.2774287e-02 1.9200077e-02 -1.4958154e-02 -9.3498085e-02 7.5535591e-02 -4.2608067e-02 -1.5071018e-01 1.7207249e-02 -6.1426651e-02 1.7828917e-02 -3.4176349e-02 2.6293646e-04 -5.7672412e-02 3.5790842e-02 1.2839598e-01 -4.0067462e-04 -4.0356921e-02 -2.2183508e-02 5.2214149e-02 -3.5763355e-02 + -1.0170613e-02 -9.9926381e-02 6.5645216e-02 -5.0655136e-02 -3.7270557e-02 5.5922288e-02 -8.1386983e-03 -3.4928393e-02 4.9999153e-02 1.7179886e-02 -8.9803139e-02 5.8850805e-02 -1.7368688e-01 -5.1067387e-02 4.5385058e-02 1.6908902e-02 -3.7581179e-02 -1.4181981e-01 8.1275994e-03 -7.5094104e-02 4.4866868e-02 -1.0804087e-01 -3.5113065e-02 -2.1629708e-02 -8.6326254e-02 1.7764085e-01 3.3201856e-01 + 7.1172986e-02 -1.2796584e-01 -1.2678922e-01 3.0966024e-02 2.6133573e-01 2.9237331e-02 -9.2354034e-02 -1.6190162e-01 9.8140111e-02 4.9995207e-02 3.5159445e-01 -2.7607719e-02 -9.0940216e-02 7.0732961e-02 3.7925654e-01 1.0494831e-01 -5.0050045e-03 -2.4059348e-01 1.8215882e-01 5.7612695e-02 -1.7427678e-01 -9.8503015e-02 1.3776000e-01 4.5799798e-02 1.1688319e-01 -8.5962499e-03 7.5996297e-02 + -4.1395009e-01 -2.5798059e-01 5.5793722e-01 -1.5702791e-01 -1.1780076e+00 -2.2523618e-01 2.1454489e-01 -5.2165701e-01 1.9174602e-01 -2.9625618e-02 -4.2710752e-01 8.4175819e-02 1.0737143e-01 9.9765362e-02 -4.3369025e-02 -2.8466758e-01 -1.0234012e-01 1.6407087e-01 -1.4221581e-01 -7.4299331e-03 -2.5671322e-01 7.6343673e-03 1.0449639e-01 -1.9868235e-01 -5.2258046e-01 6.2688086e-02 2.9011797e-01 + 9.2828020e-02 1.7608013e-01 -2.9447392e-02 -1.4285666e-01 -4.3901431e-01 -2.0386786e-01 8.0174747e-02 1.5042226e-01 -2.9755438e-03 7.5092710e-02 -5.3384280e-02 7.1426610e-02 2.6718633e-02 2.9587800e-01 3.5305545e-01 -6.5503114e-01 1.7308836e-03 -1.9018726e-02 1.0703742e-01 4.2646585e-01 1.7081702e-01 1.0452227e-01 1.3296622e-01 3.2587761e-02 -1.3574790e-01 -3.0846679e-01 -3.1013849e-01 + -1.3344746e-01 -1.3835194e-01 2.3543685e-01 -1.6785736e-01 2.4947327e-01 1.7946211e-02 1.1988511e-01 -1.3360316e-01 1.0108136e-01 -1.2974167e-04 -2.8449033e-01 1.6874118e-01 2.7544393e-01 -1.4713686e-01 3.3878646e-01 -2.0871396e-01 -1.2923619e-01 -1.2515531e-01 -1.5014239e-01 -3.0891937e-02 -1.9842923e-01 2.9063874e-02 -3.3614250e-01 -7.9382662e-02 -2.3064802e-01 -4.3391320e-01 1.0885426e-01 + -1.6491155e-02 3.3915279e-01 5.4599324e-01 2.8207317e-02 6.3544666e-01 5.3420140e-01 -1.4030373e-01 -1.3488326e-02 3.2037997e-01 -1.3157895e-01 4.8459973e-01 1.2083813e-01 -1.7346515e-01 -3.2490539e-01 -7.0633814e-01 -3.6057145e-01 -3.5427197e-02 -2.8517204e-01 2.8920355e-01 3.1997553e-01 4.0315931e-01 4.1036890e-01 1.5565381e-01 7.1794714e-02 6.4721203e-02 -5.8494797e-02 2.4328069e-01 + 1.3502882e-01 1.1253169e-01 -9.5472904e-02 1.2552518e-01 -1.5259850e-01 -2.7518436e-02 3.2233466e-03 6.2389644e-02 -5.2237977e-02 -3.4654980e-02 -3.3296884e-01 -8.7555981e-02 -1.3622498e-01 9.3372264e-02 -6.3521875e-01 2.3366462e-03 9.2313942e-02 4.9899359e-01 -2.1548647e-02 1.2317711e-01 2.6408952e-01 1.3106010e-01 1.6681765e-01 5.1993006e-02 1.9004196e-01 2.5400234e-01 4.5834565e-02 + 3.0718751e-04 -3.4335645e-02 3.2658721e-02 -3.7220939e-02 4.3586924e-02 -1.7363811e-02 2.9284197e-02 -3.1844134e-02 2.9220266e-02 1.7911949e-02 -4.9479290e-02 4.1712437e-02 -2.6388809e-02 -7.0237985e-02 -4.4161267e-02 3.6911937e-03 8.7167700e-03 -4.0514877e-02 -1.0250489e-02 -8.9615311e-03 -9.6697972e-03 4.7153911e-02 -3.2579319e-02 -4.0588602e-02 -1.1660921e-02 3.3887282e-02 -7.0448732e-03 + -2.6160620e-02 -1.1437069e-02 2.8948491e-02 -4.8736912e-02 2.2143065e-02 2.5878983e-02 2.1174097e-02 -2.9940517e-02 4.7779995e-02 3.5312307e-02 -5.3009546e-02 1.1310643e-02 -4.8740886e-02 -1.2295039e-01 8.9367045e-03 3.5495755e-03 -6.8390928e-03 -7.7989443e-03 2.1359158e-02 3.2483704e-03 6.5393256e-03 7.8499164e-02 -2.9034205e-02 -2.5238840e-02 -8.8499984e-02 1.5850081e-02 1.0243107e-01 + 2.5918166e-02 -1.0488870e-03 3.8201252e-03 7.4211217e-02 -1.9128528e-02 1.5728404e-02 -3.0115456e-02 7.4227695e-02 -5.0655302e-02 -2.5188542e-02 4.2994072e-02 -5.8740935e-02 3.8177418e-02 1.8633956e-01 -2.3709825e-02 3.4031953e-02 -2.0709217e-03 3.5185367e-02 -7.6461118e-03 1.2790617e-02 -2.1376949e-02 -1.4366580e-01 1.2605197e-02 4.6517967e-02 8.8493654e-02 3.8422916e-04 -2.9040284e-02 + 5.4752231e-01 -2.9023312e-01 1.9066095e-01 2.6333956e-01 1.4807316e-01 -4.2975282e-01 4.7299325e-01 7.8833087e-02 -8.1789710e-02 1.1417648e-03 3.4876133e-01 1.6070461e-01 -3.1034378e-01 4.1927832e-02 -4.4701300e-01 -7.5206724e-02 2.2280505e-02 2.7135584e-01 -8.4082033e-02 4.1040178e-01 1.6922388e-01 2.7903328e-01 1.0091428e-01 7.1667706e-02 -4.5189741e-02 8.5349548e-01 -2.6589984e-02 + 1.0072799e-01 -4.6770986e-02 8.1452592e-02 1.5068296e-03 6.2921780e-01 4.7287145e-02 1.0621844e-01 1.2788236e-01 -2.4578508e-02 -5.7049072e-02 -1.0538797e-01 7.9860917e-02 6.7225142e-02 -1.8560308e-01 -6.0421203e-02 7.4604451e-02 -5.3789964e-02 -1.5221725e-01 -1.2671234e-01 -2.8224215e-02 2.3292208e-02 5.1562282e-02 -2.3585620e-01 1.5598404e-02 3.1956637e-02 1.2998790e-01 1.1060344e-01 + 5.9863688e-02 -4.9089417e-03 -2.1789667e-03 -6.8997935e-03 1.3676372e-01 1.1868623e-01 2.9693395e-02 1.3797875e-01 -3.6529339e-02 8.3438268e-02 8.2784883e-02 -1.2343521e-01 -8.5944269e-03 7.8407021e-02 -3.6109347e-02 2.0017871e-01 -3.8610321e-02 3.8879808e-02 -3.9462455e-02 5.7899249e-02 -3.3382152e-04 -5.0411257e-02 -7.6313928e-02 3.2001240e-02 -2.1702857e-02 2.9767649e-02 9.3320963e-02 + -3.2771194e-02 -1.9543222e-01 4.2849190e-01 2.3292083e-01 2.4872959e-01 3.4719558e-01 -1.1316953e-01 8.5381923e-02 2.2136689e-01 -3.4322392e-01 -1.6720431e-01 1.5523003e-01 -3.4597459e-01 -4.1791477e-01 9.1184354e-02 1.5109936e-01 -2.3346977e-01 -3.5138527e-01 1.3532780e-01 -5.1241059e-02 -1.4555558e-01 -3.1634894e-02 -4.3564827e-01 7.9613823e-02 -6.2206988e-02 4.1687342e-01 1.2100949e+00 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_G_2.txt new file mode 100644 index 00000000..f8ec8118 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_G_2.txt @@ -0,0 +1,28 @@ + 4.1443931e-01 6.5207758e-02 -1.4542364e-01 -1.9811822e-02 -3.0648106e-01 5.7879608e-01 9.1621714e-02 -8.6278955e-01 -2.5972165e-01 1.5777777e-01 -1.1412342e-01 2.2826829e-02 2.0014279e-01 3.7297660e-01 1.3224148e-01 -4.6261200e-01 -7.7702804e-02 -2.2270183e-01 2.2306647e-01 1.2600108e-01 -2.2791533e-01 1.0371181e-01 6.3240295e-01 -2.1345343e-01 1.7376991e-01 -2.1215051e-01 8.0579987e-02 2.3727997e-01 + -1.7205394e-02 3.0504640e-02 2.2334814e-03 2.1986184e-02 3.3207067e-02 8.4888631e-03 -1.9506064e-02 -6.8739442e-03 1.0788288e-05 -3.8952450e-03 1.2090361e-02 -1.2522723e-02 -9.8001750e-03 -3.8485653e-03 -2.0589197e-02 -2.4302420e-02 -2.4898585e-02 -1.2446751e-02 1.0107425e-03 -1.2380185e-02 -8.7656260e-03 3.8526461e-02 2.1840087e-02 3.1896894e-02 5.1997393e-02 4.6943871e-03 -1.4876590e-03 -1.1357065e-02 + 3.7204735e-02 -3.9971236e-03 -5.5356169e-02 2.1339752e-02 -1.1479732e-01 -3.9348129e-01 -8.1443277e-03 2.1334022e-01 1.2501387e-01 -2.9180754e-01 1.3138869e-01 -6.6281396e-02 -2.3685990e-01 -2.4798381e-01 3.0149045e-02 4.3788804e-01 -1.8459361e-02 1.7875146e-01 -1.7506219e-01 -2.8525814e-01 4.0054711e-01 -6.5451435e-02 -3.8157049e-01 1.1689545e-01 1.8860402e-02 6.3923286e-02 -1.3927994e-01 -3.1902583e-01 + -7.6036989e-03 1.8482360e-02 6.7957716e-03 -6.2195370e-03 2.4708073e-02 7.3147174e-03 -4.4793195e-03 2.9872446e-02 8.1766994e-03 -3.0995938e-03 1.6544801e-03 1.9413743e-02 1.0409460e-02 1.1024525e-02 -1.3715124e-02 3.5585154e-03 2.9725101e-02 2.5783030e-02 5.9976968e-03 1.1100558e-03 -2.5974294e-02 1.4367367e-04 1.1383677e-03 -3.7717248e-03 -8.6365343e-03 -4.5821389e-03 5.9519763e-03 -3.4578192e-03 + 1.1370417e-01 -2.5585024e-01 -1.3266014e-01 -5.8883436e-02 -1.2856467e-02 1.8262003e-01 1.8419878e-01 3.1481515e-03 -1.0498997e-01 -1.1317647e-02 -1.4810341e-01 -4.0532202e-02 -2.4110118e-02 3.2154654e-03 1.6169583e-01 1.1360297e-01 -2.9982686e-02 -1.3230894e-01 1.8028737e-01 -1.9825352e-03 7.2525034e-02 -1.5857627e-01 -3.3027185e-01 1.5810930e-01 -8.8324433e-02 7.2834116e-02 1.8000134e-01 1.2900499e-02 + -3.1437108e-02 6.4594195e-02 -9.8358159e-04 3.6193440e-02 5.5812923e-02 1.9702043e-02 -3.7018290e-02 -3.4368937e-03 -6.4829989e-03 -2.1687227e-02 4.7214447e-02 -3.0209858e-02 -1.4161529e-02 -1.0496853e-02 -4.7981146e-02 -4.8358215e-02 -2.3371720e-02 -6.0290823e-03 -1.7273153e-02 -1.9796081e-02 -3.2823860e-02 6.8246256e-02 4.5789054e-02 3.1231059e-02 1.2189779e-01 -4.3715287e-03 1.2359939e-03 -2.7493974e-03 + -4.7495306e-02 8.1144618e-02 1.2389833e-02 5.6376347e-03 1.1240831e-01 1.0194445e-01 -7.3112463e-02 -7.6988059e-02 -1.7071620e-02 1.9112191e-02 2.6088136e-02 -2.0497684e-02 1.8425699e-02 2.2732796e-02 -5.0530068e-02 -1.3326755e-01 -4.3680580e-02 -5.1839357e-02 2.4544738e-02 9.7675308e-03 -1.0437054e-01 9.2183465e-02 1.3359844e-01 4.1716494e-02 7.0096162e-02 -9.5280990e-03 5.4064326e-02 6.6129207e-02 + 7.3643370e-03 1.6430491e-01 9.3944751e-02 1.5664835e-01 -1.0301836e-01 -5.5682216e-02 -1.3545236e-01 -3.6725439e-01 -2.1273223e-01 -1.6635574e-01 -3.1884764e-02 3.5393772e-03 8.2112511e-02 -2.9084890e-01 1.8156284e-01 2.4160285e-01 -1.0492054e-01 1.6266570e-01 -2.3554066e-02 -7.1692107e-03 1.2401125e-01 2.0396667e-01 2.5820343e-01 -2.7306877e-01 -1.3949287e-01 4.8346190e-01 -1.8128450e-01 2.1192626e-01 + 1.3054943e-02 3.7248658e-02 -2.2098229e-02 -1.3372682e-01 4.8686106e-02 7.4987924e-02 5.8904636e-02 3.4487940e-02 1.1138125e-01 1.6917279e-02 5.2120003e-02 9.9851287e-02 -6.7088696e-02 9.7223225e-02 4.6578452e-02 2.3124062e-02 4.1359990e-02 8.3775432e-02 3.4164143e-02 -8.3837463e-02 -3.1188928e-02 -9.7364754e-02 -9.3559661e-03 -5.5585946e-02 -1.8263122e-01 -5.0863919e-02 7.2486950e-02 7.5325783e-02 + 7.5964815e-02 -7.7581538e-02 -1.0281256e-01 6.2798619e-03 -6.1102814e-02 -1.6061984e-01 1.0123740e-01 1.4243679e-01 5.3162953e-02 -1.8949566e-01 4.0102324e-02 -1.0915558e-01 -1.0255353e-01 -1.5130768e-01 7.6084768e-03 1.9324521e-01 3.4927727e-02 1.1462832e-01 -3.6453442e-02 -1.5578624e-01 1.9760423e-01 -1.4086558e-01 -2.7054284e-01 9.5201551e-02 1.4236869e-01 -2.2179021e-02 -7.8601135e-03 -9.3616901e-02 + -1.7822612e-02 4.2390505e-02 2.1351014e-02 3.6260361e-02 -1.0138754e-02 -2.5480819e-02 -2.9776953e-02 -2.0759839e-02 -1.0796635e-02 -3.8058309e-02 2.7285963e-02 -3.0111126e-02 -2.8580187e-02 -4.9357949e-02 -1.0610504e-02 -1.0934869e-02 -4.6121067e-02 -1.6097761e-02 -4.3318201e-02 3.1934234e-04 6.0469450e-02 3.0366139e-02 -2.2731051e-02 2.6300099e-02 3.2901371e-02 2.9365027e-02 -4.0281911e-02 -2.8009667e-02 + -1.1156134e-01 8.4607948e-02 9.7304343e-02 2.0438589e-02 1.9591677e-01 -1.7058504e-01 2.4262656e-02 4.3895006e-02 2.0194463e-01 -1.3749844e-02 5.3925694e-02 -3.3640178e-02 6.8778104e-03 9.8884807e-02 -2.0831318e-01 -1.5943682e-02 -1.1081147e-02 9.2926175e-02 -6.5287062e-02 9.8231281e-03 2.4244618e-02 -9.1887260e-02 -1.3896740e-01 7.6151360e-02 -7.8829153e-03 -1.1585319e-01 -4.7744220e-02 1.3715646e-01 + 1.4100293e-02 -1.2788696e-02 -8.7378687e-03 -2.5122699e-02 -9.3230689e-03 2.0499959e-02 1.9699849e-02 -7.3603964e-04 1.8493108e-02 1.3483510e-02 1.2379032e-02 6.5644903e-03 -1.4859566e-02 1.5603571e-02 9.1151193e-03 -4.0450135e-04 1.2185792e-02 1.1735451e-02 5.7431104e-03 -1.2611952e-02 -1.6473583e-02 -2.3834965e-02 7.3749809e-03 -3.2871354e-03 -4.9862895e-03 -1.8553478e-02 2.4532875e-02 1.0556619e-02 + 1.7551294e-01 -1.7759923e-01 -1.2527895e-01 -1.1767168e-01 -6.8745521e-02 1.2743893e-01 2.5522058e-01 -1.5845381e-01 6.9661377e-03 -7.3179715e-02 2.6823238e-02 -1.9683920e-02 -9.6347452e-02 4.8875961e-02 5.0033877e-02 7.5555487e-02 -1.0983402e-01 2.8954814e-02 2.2040751e-02 -1.1327127e-01 7.8750465e-02 -1.2178554e-01 -2.6276108e-01 5.6890347e-02 1.8607026e-01 -8.6827866e-02 1.2123975e-01 -4.2161151e-02 + 9.7585239e-02 -1.6836923e-01 -2.0279146e-02 -7.4520969e-02 -9.8671323e-02 3.9920798e-02 8.8113673e-02 -5.8903247e-02 9.8856919e-03 3.9827039e-02 -9.1088788e-02 4.6272799e-02 -1.2294879e-02 4.8366428e-02 1.1466655e-01 5.0593959e-02 5.0194157e-03 -1.0457644e-02 5.5198112e-02 5.7697421e-03 3.4847269e-02 -9.2802731e-02 -7.6937993e-02 -8.7182151e-04 -1.4272833e-01 3.3940574e-03 3.9133049e-02 1.2962174e-02 + -1.7378925e-01 3.9849656e-01 -3.0268492e-02 4.0504699e-02 2.2904034e-01 -2.3808392e-02 -9.5264029e-02 6.4307418e-02 1.4493572e-01 -1.2861920e-01 2.1646483e-01 1.5200141e-01 -3.8795576e-02 3.1563631e-01 -2.0812339e-01 2.1426408e-01 3.2500571e-01 4.1279285e-01 -4.0919520e-02 -9.8292981e-02 2.4907739e-02 -6.9180747e-02 8.8426014e-03 -4.0181166e-01 -1.8930021e-01 -1.3141406e-01 -1.9884865e-02 3.6663812e-01 + 4.6434747e-03 1.9086509e-02 1.2069893e-01 -7.1270391e-02 -3.8511436e-01 -5.2102988e-01 -2.7089935e-01 -4.0303634e-02 2.7375261e-01 -9.0865742e-02 8.6489175e-02 1.2581035e-01 1.6130364e-02 -1.6813538e-01 3.7497866e-02 2.4153663e-01 -4.9667237e-02 1.5929574e-01 -7.8362654e-02 -9.5103500e-02 6.8337018e-02 5.9594668e-02 7.1967986e-01 -6.1017805e-02 -3.5488908e-01 -8.0741188e-02 -3.2118231e-01 1.9435790e-02 + 5.5985096e-02 3.2972123e-03 7.0249282e-02 -8.7494993e-02 -6.6311418e-02 -5.2515673e-02 -1.3004459e-02 -5.6513111e-02 9.7347452e-02 6.2485295e-02 2.2720720e-02 3.6394015e-02 -1.0924662e-02 7.7424806e-02 9.2082727e-03 -5.2608445e-03 3.3643976e-03 -3.5873190e-02 7.6534466e-02 -3.8230404e-02 3.5361311e-03 -8.0572132e-02 3.9017331e-02 -2.6624854e-02 -1.2955386e-01 -4.0047493e-02 5.0308758e-02 7.0060347e-02 + 9.6056820e-02 -1.3786208e-01 -4.2324691e-02 -7.5501452e-02 -9.4506530e-02 1.0746619e-02 1.1098359e-01 -8.9093213e-03 4.5184929e-02 3.8745087e-02 -7.1055064e-02 4.2944139e-02 9.5148368e-03 2.1249861e-02 8.3035166e-02 7.1144777e-02 3.4967296e-02 1.8667064e-02 4.4315638e-02 -1.1180737e-02 9.2580326e-03 -1.1393847e-01 -6.5028601e-02 -5.3009198e-02 -1.7132677e-01 5.0785297e-03 3.2495371e-02 2.7901809e-02 + -7.5283523e-02 -2.6775839e-02 7.9138929e-02 -3.4059143e-02 1.1136446e-01 5.3215086e-01 -1.5968381e-01 -6.1369130e-01 -2.9672083e-01 3.4285972e-01 -1.9217014e-01 2.7502920e-02 3.5286346e-01 5.1258589e-01 1.0420987e-01 -3.9041249e-01 -6.8333074e-02 -1.9429948e-01 2.0865867e-01 4.0959564e-01 -4.6051837e-01 1.8012911e-01 9.2707815e-01 -3.5012184e-01 -3.1760849e-01 1.1381589e-01 2.3151886e-01 6.3289349e-01 + 5.5857277e-03 1.6569560e-02 -4.2917346e-02 -5.4022503e-03 -4.2057691e-02 8.8528343e-02 -1.8460523e-02 -2.0367328e-02 6.8480225e-03 3.1607840e-02 1.0519717e-01 -4.8055048e-02 -8.1404510e-02 -3.3114209e-02 -3.3539671e-02 -6.8952266e-02 -2.4192772e-02 -6.4522802e-02 -1.1343828e-01 2.4414358e-02 -6.8852827e-02 2.8750257e-02 -3.3499331e-04 2.1914814e-02 1.3260226e-01 -6.8029606e-02 3.6883485e-02 3.2868682e-02 + 1.1188661e-03 1.4805311e-02 5.4625653e-03 -8.8473446e-02 2.5220221e-02 1.9016816e-02 6.4928214e-03 4.9724912e-02 7.7649049e-02 1.0264555e-01 3.1044351e-02 1.3075571e-01 -7.4468353e-03 1.4153759e-01 -3.0728669e-02 4.4475193e-02 8.1569153e-02 4.8921965e-02 4.6903489e-02 -3.6270564e-02 -6.6111734e-02 -7.3571884e-02 9.4260261e-02 -7.2891079e-02 -1.7815065e-01 -5.6144783e-02 4.6405203e-02 2.4905989e-02 + -7.5345753e-02 8.4593456e-02 1.1498089e-01 -4.2104679e-02 -4.5180584e-02 -1.6275495e-01 -1.9131077e-01 3.9473296e-02 7.1017995e-02 -1.3104841e-01 6.2310573e-02 -9.3070499e-02 -9.1913043e-02 -2.3837180e-01 3.8967349e-02 -4.7146367e-02 -6.9898423e-02 8.8529583e-02 -1.6788874e-01 4.2990011e-02 1.5023618e-01 1.6047174e-02 -1.8016973e-01 1.3362250e-01 1.0756567e-02 4.8261144e-03 -1.0894636e-01 -9.8047147e-02 + 1.9066154e-01 -6.8111344e-02 -1.0459270e-01 -5.6038963e-02 -5.6097111e-02 2.8768317e-01 6.7335694e-01 -3.7933627e-01 -1.8172937e-02 9.8911652e-02 -3.0425350e-01 -3.4067858e-01 2.3676855e-01 -5.1165285e-02 7.9979222e-02 -3.6169958e-01 -3.9525268e-01 -3.0222479e-01 4.0380372e-02 1.1054624e-01 5.2139313e-03 -3.9913789e-01 -7.1240610e-01 -2.1268212e-02 1.1398819e-01 -1.3894969e-02 2.5077573e-01 3.8662241e-01 + -5.7919691e-02 5.4881614e-02 2.3069930e-02 -8.0334034e-02 -2.0751303e-01 3.1790169e-01 -2.4126820e-01 -1.8754965e-01 -3.0743224e-01 -1.2296113e-02 -7.0587619e-02 2.0905890e-02 1.9454588e-02 -3.2608256e-01 3.8424099e-01 -2.0708903e-01 1.3174265e-02 -7.3328149e-02 1.1537638e-02 8.3962278e-02 -1.2002451e-01 3.0095702e-01 2.5518405e-01 -1.5566783e-01 4.8622375e-02 2.1178501e-01 3.7683682e-02 -9.3619963e-02 + 1.3136209e-02 -9.1263491e-02 -1.8730247e-02 8.9769363e-03 -7.9247431e-02 -4.6406843e-02 4.0775958e-02 5.4434095e-02 -3.9130135e-02 1.9901901e-02 -4.7446004e-02 6.5237976e-02 3.7313074e-02 1.2983301e-02 5.7791565e-02 1.1554074e-01 4.7460927e-02 -5.5356149e-03 -2.8508939e-03 3.3962555e-02 4.6413613e-02 -5.2682455e-02 -8.3010455e-02 -5.3775125e-02 -1.6657394e-01 4.2141280e-02 -4.5675247e-02 -5.1498262e-02 + -2.4861918e-01 -5.7936591e-02 1.3005194e-01 2.4168050e-01 8.0988694e-02 -3.8841421e-01 -1.2769782e-01 2.8276748e-01 1.3581041e-02 -1.2650047e-01 3.0091729e-02 -9.8172277e-02 -4.4268460e-02 -3.3911532e-01 -3.6900060e-02 3.8875852e-01 -6.6099361e-04 9.5095442e-02 -2.0064302e-01 -7.4769691e-02 2.2196063e-01 4.0532010e-02 -4.2751526e-01 1.2179532e-01 -3.3133297e-03 3.9314827e-01 -2.4535249e-01 -5.5361015e-02 + 1.4921835e-01 -2.8460256e-01 -7.0867606e-02 -1.2028832e-01 -3.0799815e-01 1.5596507e-01 2.2112661e-02 -3.8449844e-02 -1.9497765e-01 -3.8374163e-02 3.5069110e-02 -2.0261476e-02 -1.3733582e-01 -1.1626686e-01 2.2687985e-01 -4.6410447e-02 1.6280840e-01 -4.7486949e-02 7.3390434e-02 7.6894252e-02 -6.4839663e-02 1.1776221e-01 -3.1120747e-02 1.1558257e-01 3.0494956e-01 -8.0211616e-02 6.8654803e-02 7.8660224e-03 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_G_3.txt new file mode 100644 index 00000000..7c6a20c4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_G_3.txt @@ -0,0 +1,26 @@ + -5.9811784e-03 2.4107547e-02 -9.9465313e-05 2.1074963e-02 1.6929826e-02 3.3965553e-02 -1.7927678e-02 -2.0576710e-02 3.5026005e-02 -1.2099362e-02 2.1325270e-02 6.4027355e-02 7.0991555e-03 4.5418644e-02 1.2247219e-02 -2.2098225e-02 -1.5359832e-02 -6.2083993e-02 -4.1017278e-02 3.9817716e-02 -5.0664509e-02 -2.5664050e-02 2.2804742e-02 -7.9591400e-02 -8.0134913e-03 2.1339975e-02 -6.0267601e-02 -8.6368182e-03 3.9665947e-02 3.4492845e-02 2.2555243e-03 -5.2338427e-02 8.0504687e-02 -2.8974871e-03 + 2.6513812e-02 -6.1950314e-02 1.4897989e-01 -6.7465145e-02 4.9101880e-02 2.7019202e-02 1.3511431e-01 -4.9111880e-02 -8.7806855e-02 1.3823127e-02 6.5427700e-02 1.2132538e-01 3.4313266e-02 6.9060961e-02 1.1550290e-02 -9.2832633e-02 -3.7451931e-02 -2.3654950e-01 -2.1812527e-02 -4.6905148e-02 -1.0662645e-01 1.0245465e-02 2.1854072e-02 -4.2308264e-03 -5.2379046e-02 5.1931741e-02 7.5431355e-02 -5.0189889e-02 -4.5616148e-02 -1.1900104e-02 -1.2704229e-01 7.3283681e-03 1.7409086e-01 3.1646506e-02 + -2.6803768e-01 -2.1489290e-01 -3.1117692e-01 1.8650103e-01 2.1941612e-01 -2.1645367e-01 3.9087837e-01 3.7274403e-02 2.1354211e-02 2.0961910e-01 1.5470032e-01 -4.5442869e-02 7.7961010e-02 -2.4450809e-02 5.5836640e-02 1.6491072e-02 -2.2243344e-01 1.4640352e-02 -9.9270484e-02 -1.5985119e-03 1.9006760e-01 7.9108779e-02 1.2444165e-01 2.9498392e-01 -3.9548082e-03 -5.7084896e-02 2.3500591e-01 1.4126447e-01 2.4497620e-01 6.2427844e-02 5.0480328e-02 5.1185351e-02 -2.0806214e-01 3.5158857e-01 + 2.6625009e-02 1.1386495e-01 -8.3605156e-02 -1.1339757e-02 -1.1055401e-01 -2.4627440e-02 2.0465965e-02 -4.4113014e-02 2.5991850e-02 4.1364636e-02 4.1626350e-02 -1.3273921e-01 -6.3860668e-02 -5.3778335e-02 -2.9464791e-02 7.2915963e-02 5.7175175e-02 1.8280627e-01 3.9508661e-02 -1.0901340e-03 1.7551903e-01 -3.3134813e-02 -7.9000813e-02 1.0882774e-01 -5.9856930e-02 -7.9855079e-03 7.5234084e-02 -4.9904082e-02 -5.6678666e-02 1.1931760e-02 6.2478359e-02 -8.3410866e-02 -5.6184643e-02 5.0645042e-02 + -7.7087715e-02 -1.4823628e-02 -2.1518857e-01 5.2710108e-02 9.5116733e-02 2.6470444e-02 1.4591641e-01 4.2256917e-03 1.8376454e-01 -9.1321804e-02 9.0110454e-03 1.7378175e-01 2.1482992e-02 7.7072692e-02 4.4577693e-02 -1.6295979e-02 -1.6084775e-01 -4.0703897e-01 -3.5000064e-02 1.1437312e-01 -2.4046968e-01 -8.1722896e-02 -1.4142188e-01 -1.3248707e-01 -8.4258571e-02 2.0773745e-01 -1.3568375e-01 -7.4489793e-02 2.8195174e-02 8.9029072e-02 2.5481566e-02 -8.9143310e-02 4.5953808e-01 3.6140572e-02 + 4.4396192e-01 6.2034986e-01 -1.4570267e-01 -3.0696701e-02 -3.5120683e-01 3.8218411e-01 5.0862408e-02 -1.1956479e-01 3.9989966e-01 3.5132732e-01 3.9370745e-01 -1.0452201e-01 -3.6927047e-01 4.3703305e-02 9.1996250e-02 3.2596313e-02 4.9686378e-02 3.1491514e-01 -2.2376135e-01 1.8990082e-01 -7.3367510e-02 -3.7125727e-01 -6.7582701e-02 -3.2418637e-01 7.7692827e-02 5.9314325e-01 -2.9612324e-02 -1.9564553e-01 2.3947201e-01 7.3647927e-02 -4.4894675e-01 -2.6574347e-01 -1.6337677e-01 2.5487648e-01 + -3.2976765e-02 1.0313508e-01 1.6198143e-02 -2.0889944e-02 2.0655414e-02 -1.2115666e-01 3.0718370e-01 -1.7807356e-01 2.5851424e-01 -5.3253200e-02 2.5379202e-01 1.1942200e-01 -3.0020899e-02 -1.5356039e-01 -6.2792256e-02 8.6132792e-03 -1.1521022e-01 -1.1317485e-01 6.8566734e-02 8.4057666e-02 -2.2796342e-01 9.9397195e-02 -4.7768423e-03 -6.0137155e-02 -2.1392408e-01 3.6232803e-01 -1.0653905e-01 -1.7620121e-01 7.2048596e-02 1.5263166e-01 2.7206855e-03 -3.2806890e-01 4.2128880e-01 -2.4938332e-01 + -4.0548607e-03 -6.1516524e-02 7.3999403e-02 -2.0925209e-02 4.3153293e-02 -2.8716261e-02 -1.7136672e-02 -5.1534566e-05 -4.4985208e-02 1.4081077e-02 -6.5550096e-03 5.1548577e-02 2.5043455e-02 -2.3412230e-02 -3.2255315e-02 -3.5884809e-02 -2.0526962e-02 -5.8014142e-02 2.5969440e-02 -2.3885642e-02 -7.1781780e-02 4.9195040e-02 4.9576112e-02 -1.0197714e-02 -8.2136130e-03 -1.0651897e-02 2.0884063e-02 3.2512749e-03 -4.6433783e-03 -6.2071782e-03 -5.5257619e-02 3.5790797e-02 1.0212639e-02 -5.2454267e-02 + -6.0249155e-02 1.2566203e-01 -1.7434788e-01 5.3616094e-02 -9.9136064e-02 2.7145757e-02 -2.9677591e-02 -6.4474603e-03 1.4661689e-01 -8.9013136e-02 1.4541300e-01 -8.3667563e-02 2.8071877e-02 -1.8906268e-01 5.7625459e-02 1.0679039e-01 1.6767460e-01 2.9251703e-01 2.2381966e-02 2.0462146e-01 3.3292648e-01 1.2173915e-01 -1.8234254e-01 1.4586314e-01 -1.0359691e-01 1.3470411e-01 1.1296038e-01 -3.6538253e-04 8.3407541e-02 3.4401571e-02 -1.5665263e-02 -8.5549090e-02 -9.2404033e-03 1.5203142e-01 + -1.5962656e-03 -8.7712396e-02 -1.0496781e-01 -4.6762705e-02 7.0308946e-02 3.0020251e-02 1.7738204e-01 2.5064982e-02 -7.3870515e-02 -9.1099595e-02 -1.1188923e-01 -1.6013176e-01 1.1047416e-01 2.1822161e-02 3.7916359e-02 3.3887614e-02 7.2210655e-02 -8.1975881e-02 -2.5754850e-02 -5.0667212e-02 1.6448742e-01 5.2876528e-02 1.0545349e-01 4.8417896e-02 -2.8206339e-02 -8.4153940e-02 -3.4121838e-02 3.7071391e-02 -1.3340061e-01 -9.6633425e-03 2.0185138e-01 2.2911428e-01 1.5271268e-01 -1.2113736e-01 + 2.0114934e-01 2.2871762e-01 4.9831254e-01 -7.5342905e-02 -1.3840681e-01 1.2718577e-01 -3.6273884e-02 -8.9946386e-02 7.7070242e-02 1.7368741e-01 -2.7050616e-02 -5.9199387e-01 1.2557868e-01 -1.8338872e-01 4.9474371e-02 -1.0435128e-01 -1.7386915e-01 3.7556726e-01 6.2656481e-03 -4.1594916e-02 4.2535918e-01 1.3781466e-01 -2.2211301e-01 1.6618340e-01 -9.7635781e-02 4.2150417e-02 1.7331142e-01 5.8084375e-02 -7.2864772e-02 3.2235667e-02 3.0701116e-01 2.4106536e-01 -1.4869954e-01 -6.7638959e-02 + 4.4927845e-02 -3.2041482e-01 -1.2688119e-01 -1.4739877e-01 -1.1568687e-01 -2.3247165e-01 -1.1041514e-01 4.9076270e-01 4.7040554e-02 -1.2500218e-01 -4.2195172e-01 -1.1633402e-01 -1.4353339e-01 -3.2905907e-01 -3.9255312e-01 5.0776243e-02 1.7757545e-01 -1.9616110e-01 -2.4410246e-02 -4.0688867e-01 -2.0085610e-01 -2.2406124e-01 1.8402107e-01 -2.6703461e-01 1.5662249e-01 -1.7049975e-01 8.6677514e-03 -7.5367108e-02 -1.0459065e-01 -1.8550638e-01 -2.4555913e-01 1.5337666e-01 3.2514869e-01 -9.6300612e-02 + -6.1982841e-02 -3.5813560e-01 -1.3342594e-01 -1.3067758e-01 1.3095585e-01 -1.7071001e-01 2.3948104e-01 7.7769132e-02 6.9012178e-02 -1.1908470e-01 -1.3276174e-01 -1.2261095e-01 3.0516343e-01 -3.6033343e-02 -1.7152921e-01 -1.8343889e-01 1.4872314e-01 -1.4756110e-01 8.3091361e-02 -4.6528469e-03 3.5601754e-01 4.4931555e-01 -5.9887661e-02 7.6580912e-02 -2.2221764e-01 -2.9479868e-01 2.1689045e-02 1.1787826e-01 -3.1330412e-01 5.4712236e-02 2.7024254e-01 2.9657393e-01 4.0573279e-01 -3.2041113e-01 + -6.8042488e-02 3.0858324e-01 -6.3850440e-02 2.1794102e-01 -1.2572749e-01 -3.9137707e-02 -2.3036705e-01 -1.8389508e-01 2.8308769e-01 2.6398856e-01 4.4133051e-01 4.1538116e-01 -2.5118648e-01 -4.8608475e-02 -7.9811548e-02 -3.5148465e-02 -2.3075896e-01 2.5219063e-01 5.4431343e-02 2.3174617e-01 -2.9549303e-01 -7.9736401e-02 -5.2724750e-01 -2.7375469e-01 9.4064496e-02 3.4585809e-01 -1.7023330e-01 -1.1482183e-01 5.1371038e-01 7.6214568e-02 -4.7913908e-01 -7.4051732e-01 -3.5748165e-01 1.8122314e-01 + 6.3844920e-02 1.9795490e-02 1.2671878e-01 -5.3018603e-02 -7.8713630e-03 5.4091623e-02 -9.0675586e-03 -2.1257773e-02 -6.1789276e-02 3.7556390e-03 2.8874634e-02 9.5028374e-02 -1.4251146e-02 4.4215724e-02 -2.5729647e-02 -8.9082875e-02 -1.0557642e-03 -6.6974675e-02 -5.4211851e-03 -4.2840041e-03 -7.7095435e-02 2.4682194e-02 2.0836243e-02 -7.2865106e-02 1.2855494e-02 4.2542167e-02 -3.7792860e-02 -4.1581202e-02 -2.0698713e-02 2.7505004e-02 -8.0183649e-02 -4.1756893e-02 6.0371278e-02 -4.9598392e-02 + -2.3175812e-01 -6.7603254e-02 -7.6290557e-02 1.4133651e-01 2.4207428e-01 -6.0336246e-02 8.4132084e-02 -1.6619946e-01 -1.2527924e-01 -4.3397574e-02 1.8167938e-01 1.3868069e-01 1.8491144e-01 -4.8321277e-03 7.4316516e-02 -2.1262662e-01 -2.7969567e-01 -2.9569656e-01 -2.3275401e-02 4.2194712e-02 1.0221378e-01 -5.9172956e-02 -1.3964226e-01 2.1253207e-01 4.0411458e-02 -6.9419422e-02 -1.7055308e-02 6.4030974e-02 2.1441394e-01 4.1777346e-02 2.1764248e-02 2.0352190e-02 1.6331251e-01 -1.8400942e-01 + 1.2357653e-01 -1.2025121e-01 6.7474244e-02 -1.6417354e-01 3.3571128e-02 1.2380810e-01 2.9903819e-01 2.2849698e-02 -9.5014468e-02 -1.1685648e-02 -1.2635406e-01 -3.2167719e-01 1.5467288e-01 1.2739638e-01 3.9623711e-02 -1.7216671e-01 5.3337892e-02 -1.1348947e-01 -1.0550959e-01 -9.5138530e-02 3.6473993e-01 3.7768587e-02 2.3898879e-01 -3.6755094e-02 2.4494143e-02 -1.6766386e-01 -7.9849792e-02 6.4164976e-02 -1.2402649e-01 -1.1230135e-01 1.3119756e-01 2.8662425e-01 2.7425318e-01 -2.5288583e-01 + 2.7846661e-02 4.7234958e-01 9.9093687e-02 1.3198807e-01 1.1690298e-02 4.4444084e-01 1.2454969e-01 -5.1674814e-01 -1.6030113e-01 7.7324951e-02 4.0423710e-01 4.9387435e-01 -1.5575692e-01 5.6042930e-01 6.3731614e-01 7.8856013e-02 -6.2564450e-02 8.4140561e-01 -2.8776946e-01 2.3815517e-01 9.2007392e-01 -3.8375301e-02 -1.5605564e+00 1.5277347e-01 3.3693838e-01 3.0515789e-01 -2.6691186e-01 1.3673608e-01 3.3780654e-01 1.7404384e-01 8.5724503e-02 -4.3778093e-01 -3.8495219e-01 4.6009698e-01 + -6.6411612e-02 -2.4537268e-02 -2.9446976e-01 1.1830582e-01 7.5762134e-02 3.6468612e-02 2.0863768e-01 9.8341150e-02 1.1839595e-01 8.9541639e-02 2.4159266e-01 8.1603826e-02 3.1079883e-02 -1.0051312e-01 -9.0476055e-03 2.0223340e-03 1.3288268e-02 1.8479273e-01 1.3809339e-01 3.8309634e-01 -6.3649488e-02 2.6956648e-01 -3.3788080e-01 1.1075846e-01 -9.8108708e-02 7.0989288e-02 1.4024380e-01 7.3117260e-02 2.7962068e-03 1.0969671e-01 -5.0379145e-02 4.5766597e-02 -4.3037260e-02 1.1487040e-01 + 6.2776218e-02 7.9402870e-02 -2.7349445e-02 -2.4279649e-02 -4.0154345e-02 5.2459470e-02 3.8527264e-02 -1.6384827e-02 4.5898956e-02 -4.3174390e-02 1.6975525e-02 -2.7783909e-02 -3.8054380e-02 6.0054104e-02 7.8599266e-02 3.4962069e-02 5.8605406e-02 1.6334593e-02 -8.3031516e-02 -3.6053564e-04 8.2506483e-02 -2.5553627e-02 -2.6144414e-02 -7.0053942e-02 5.3325114e-02 2.2280769e-02 -1.0887060e-01 2.0827190e-03 -7.7376764e-03 5.7832262e-03 1.0882564e-01 -9.7388672e-02 4.6214559e-02 -3.0253404e-03 + 2.7770383e-02 9.3931991e-02 5.7875231e-01 -3.6037286e-02 1.2298901e-01 1.7196591e-01 4.2502793e-02 -3.2478573e-01 -6.5305304e-02 8.2494099e-02 2.2788502e-01 -2.6734204e-01 9.9020438e-02 -1.1569647e-01 -7.8780550e-02 -2.6387591e-01 -6.0678439e-01 -7.9804186e-02 3.6370011e-02 -1.4603444e-01 -4.1018419e-01 2.2949128e-01 5.3099911e-01 -2.2781000e-02 3.3772523e-02 -7.3846876e-02 -1.7430625e-01 3.1104784e-02 2.3363040e-01 -2.8816008e-02 -6.9828392e-01 -3.9194321e-01 1.1871398e-01 -5.4961099e-01 + 3.0947382e-03 -3.1519745e-04 2.1461456e-02 -4.5338998e-02 -2.2556390e-02 4.4153869e-03 5.5701543e-02 -5.8105405e-02 -8.4166517e-02 -2.4013278e-02 2.6920015e-02 -1.1725656e-01 2.5020712e-02 -6.5872550e-02 -2.0173584e-03 -1.7656134e-02 -2.8329078e-02 -1.9914612e-02 7.1141308e-02 -9.5762017e-03 3.5392936e-02 -8.5132668e-03 7.3332689e-02 1.4221068e-01 -1.3195558e-01 1.1496902e-03 1.5939296e-01 -4.7964241e-02 -8.5738889e-02 -9.1216147e-02 -1.0101878e-01 5.0078183e-02 1.4636047e-02 -7.5477470e-03 + -1.0127825e-01 3.4412380e-01 -8.8268103e-02 4.3982506e-02 -3.7616053e-01 -2.3911508e-01 -4.0443791e-01 -1.5956530e-01 3.6455171e-01 -2.7785288e-01 3.3192010e-01 -3.9078787e-01 -1.9170169e-01 -6.4156811e-01 -1.0263991e-01 7.2364037e-02 -2.1199157e-01 1.7016085e-01 2.7855454e-01 2.3698977e-01 -7.2585943e-01 -1.3369257e-01 1.7697959e-01 1.0867604e-01 -2.0367759e-01 2.2108583e-01 7.7900690e-02 -3.4402349e-01 -2.3379751e-02 8.9897809e-02 -1.5717577e-01 -5.0962559e-01 4.9853884e-02 -6.1297533e-03 + -9.1448603e-02 -8.0815058e-02 1.5388435e-01 -4.7253463e-02 2.4935557e-02 -1.3883664e-01 4.6526104e-02 1.8347108e-02 -2.2195488e-01 -4.0872593e-01 -2.0779639e-01 2.6215271e-02 -2.3204266e-01 2.0486824e-01 1.1630230e-01 2.8636703e-01 -1.1825784e-02 -7.7119296e-02 -2.9520400e-02 9.5702424e-02 -5.6196036e-01 5.0855001e-02 -1.2176215e-01 -7.5788498e-03 2.0119109e-01 1.8738357e-01 -1.2265675e-01 -6.7632830e-02 -2.7955196e-01 1.8361036e-01 1.9248353e-01 -2.0117178e-01 -3.4176562e-01 3.4717922e-01 + 5.9599971e-02 -5.7156901e-02 1.0193176e-01 -4.4722041e-02 2.1540179e-03 -3.1104719e-02 -2.3866698e-02 9.3027785e-04 -1.4097746e-01 2.0054678e-02 -1.8280955e-02 -7.1777114e-02 2.4239828e-02 -1.0311939e-01 -4.3036705e-02 -2.5969207e-02 7.7799259e-03 -3.2901987e-03 2.6856293e-02 -5.4709354e-02 -5.5555288e-02 5.5045708e-02 3.4635458e-02 7.5529126e-02 -1.9144677e-02 -1.4605192e-02 1.2839110e-01 -1.8995297e-03 -5.3961917e-02 -2.9546930e-02 -4.9455348e-02 1.1318745e-01 -2.9243963e-02 -6.2046905e-02 + -1.1356728e-01 -3.9405583e-02 -7.8392696e-02 1.0808292e-02 -2.1939695e-02 -8.1806698e-02 1.6934661e-02 2.4598071e-03 -2.0829592e-02 -1.7105926e-01 7.6425694e-03 -2.8349747e-02 -4.8191653e-02 -1.2848970e-01 -1.1043770e-01 5.6190850e-02 3.3260121e-02 -6.8866522e-02 1.7131795e-01 1.4271683e-01 -9.0788469e-02 3.8415134e-02 1.5306218e-01 2.0215263e-01 -1.7369883e-01 3.0428544e-02 2.2681985e-01 -4.2516245e-02 6.6728935e-03 -3.8228181e-03 -2.2673192e-01 3.0234623e-03 1.3211618e-01 1.6206860e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_G_4.txt new file mode 100644 index 00000000..8e195779 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_G_4.txt @@ -0,0 +1,26 @@ + 3.7805074e-02 1.0816068e-01 -5.4394103e-02 -1.5127050e-01 3.8984548e-03 6.3229162e-03 7.9836511e-02 -1.5369132e-01 -4.8443829e-03 1.1534596e-01 -1.7578965e-01 1.3855586e-01 1.3028133e-01 -1.9948707e-01 -3.5283315e-02 -3.3382219e-01 -4.2937006e-02 -1.1931075e-01 1.4264755e-01 -1.3299911e-01 -5.2242281e-02 1.6801851e-01 1.0209302e-02 -2.1338050e-01 -2.3826085e-03 -6.7951608e-02 1.8768673e-01 -1.0324347e-01 -3.6483263e-02 1.6768658e-02 1.5945247e-01 4.3677480e-02 -9.6069790e-02 -4.1871102e-01 -1.6583485e-02 8.1395001e-03 -7.8310342e-02 + -1.6050448e-03 3.2767185e-03 -2.1503950e-02 -5.1040314e-04 -2.6275631e-02 -4.7070535e-03 -1.0276393e-02 -3.4787881e-03 -2.5146383e-02 -1.3584042e-02 -2.3867189e-02 4.6422468e-02 1.6371234e-02 -2.2232809e-02 1.9182324e-03 -3.7738628e-02 1.5218877e-02 -1.9232855e-02 -1.9285537e-02 6.8655503e-03 2.0865759e-02 -3.2463418e-02 -2.2255943e-02 -2.4340556e-02 4.8849766e-02 2.0124565e-02 -2.2954305e-02 -2.5915416e-02 -5.8397837e-03 1.2588448e-02 2.0863345e-02 -1.6770909e-03 1.3828204e-02 -1.4759730e-02 -1.4624972e-03 3.2948750e-02 -1.4653502e-02 + 3.3220434e-02 9.9947268e-03 7.5967754e-02 1.9033357e-02 -6.0851051e-02 -5.4166175e-02 -4.2688256e-02 5.7144255e-02 -2.5114843e-02 4.2617589e-02 7.2634270e-02 -7.5865384e-02 -4.2147059e-03 -2.5363287e-02 -1.5179912e-02 5.5014303e-02 4.7070171e-02 -3.4508128e-02 -3.3410045e-02 2.3403761e-02 -4.9712894e-02 1.3440023e-01 1.1896589e-02 5.5162316e-02 -7.9075128e-02 3.8220884e-02 -3.5410899e-02 -8.4149239e-03 -2.6932601e-02 2.5697768e-02 7.3469085e-02 8.1046819e-02 -5.9769294e-02 2.6979220e-02 5.1113228e-02 -7.2497680e-02 6.1893229e-02 + 1.5118953e-04 5.4703266e-03 -1.8052670e-02 -9.7557700e-03 1.1224879e-02 -1.2459228e-03 -5.6329117e-03 -7.0923995e-04 2.7736985e-02 1.3217507e-02 -4.2418063e-02 4.9560187e-02 -1.9642756e-04 -1.7500042e-02 -8.6280088e-04 5.5102368e-03 1.7034902e-02 3.2995986e-02 1.3695090e-02 -2.7369693e-02 -1.4406371e-02 -2.1462972e-02 -7.3204641e-03 -9.9252757e-03 1.7369971e-03 -3.2475127e-03 -2.8182820e-02 9.5700741e-03 5.8708190e-03 -1.6119828e-03 -3.0606225e-03 -1.4813283e-02 2.0329923e-02 3.3873999e-03 1.3666202e-02 -1.3880477e-02 2.5749419e-02 + -1.8924856e-02 -1.0778422e-02 1.5941291e-04 -1.5426697e-02 2.1884237e-02 -2.6571363e-02 -1.1545639e-03 2.5128183e-02 1.5099764e-02 3.6944933e-02 2.3233664e-03 -6.8241337e-02 -2.4594110e-02 -3.8926779e-02 -6.6774664e-02 1.1813043e-01 5.5275670e-03 4.9406626e-02 -2.4700695e-02 -3.6771572e-02 -1.9913011e-02 -1.5552943e-02 -1.6109494e-02 -4.2734337e-02 -7.9271769e-02 5.1292979e-02 -3.0326842e-03 2.1728983e-02 1.2923726e-02 -5.3127325e-02 -1.3764103e-02 -3.2557244e-02 2.9661050e-02 -1.5123944e-02 2.7200160e-02 -3.3433783e-02 6.4226378e-02 + 1.3989120e-02 1.0888729e-02 -4.7390565e-03 1.1184895e-02 -2.8674921e-02 -1.0905385e-02 -1.7979103e-02 7.0583857e-03 -9.9540182e-03 -1.4516880e-02 -1.9525254e-02 1.2404334e-02 8.5282562e-03 -9.0182975e-03 -3.0736942e-03 -2.3681794e-02 1.7918137e-02 -6.8067455e-03 2.1276651e-03 -2.1443833e-02 -9.2212981e-03 -8.6325641e-03 -2.1617369e-02 9.9761662e-03 -9.8922577e-04 2.0858627e-02 -2.0592386e-02 -9.5421127e-03 3.7558676e-03 -2.4419757e-03 8.8585774e-03 -1.7676076e-03 2.3619524e-03 2.2901639e-02 1.8254703e-02 -5.0333750e-03 1.3980808e-02 + 2.2355856e-01 -1.7957455e-01 2.6036253e-01 -6.6922596e-01 -3.3747980e-02 -2.4409701e-01 -1.4526761e-01 1.2404137e-01 2.2733295e-01 -2.8496255e-01 3.8901252e-01 -7.4772534e-01 7.8671570e-02 4.5344300e-01 -6.8729772e-01 -1.3908528e-01 -3.2482361e-01 -1.5069362e-01 -1.5229798e-02 1.5876251e-01 4.1382683e-01 -2.0409015e-01 3.1647286e-01 1.7439298e-01 -3.2275211e-01 1.0282990e-01 7.0167629e-01 5.9717522e-03 -7.1206795e-01 -3.6747056e-01 -4.5290160e-01 3.0755017e-01 -3.2274717e-01 2.2916803e-01 -2.9915627e-01 1.5162106e-01 -3.3638268e-01 + 1.2980800e-02 2.5977858e-02 -1.9644701e-02 -3.6088624e-03 6.5397186e-03 2.6729259e-02 1.4636793e-02 -3.0705998e-02 -4.1492696e-02 -3.0310387e-02 -1.2961307e-01 1.4480329e-01 6.8849790e-02 1.8091241e-02 1.1674839e-02 -9.6858527e-02 1.1401206e-02 -1.2256919e-02 -1.1861780e-02 -1.8557737e-02 1.1043143e-02 -6.4261087e-02 7.8781977e-03 1.3186593e-02 9.6201633e-02 4.1730477e-02 -4.3882430e-02 -6.0666353e-02 1.2896695e-02 -1.4894686e-02 -7.3182264e-03 -1.4531237e-02 3.6609651e-02 -3.6477988e-02 -6.5939609e-03 3.8135329e-02 -7.5165359e-03 + -1.7682065e-02 2.8192703e-03 -3.6710340e-02 -8.2140056e-02 -1.6635835e-01 1.6007604e-02 -5.9545614e-02 -5.7389380e-02 -1.1975095e-01 6.0063713e-02 -8.1476090e-02 2.7399861e-02 1.3750238e-02 -1.5201878e-02 9.4084317e-02 -2.8761450e-02 5.4502280e-02 2.2532048e-03 2.3938212e-02 1.5498069e-02 -3.2495005e-02 -6.6694980e-03 -7.0739640e-02 -7.8178958e-02 1.7142151e-02 5.9997095e-02 -7.7773922e-02 -6.8283491e-02 1.6760127e-02 3.3817549e-02 -1.2722778e-03 8.1109739e-03 5.8744873e-02 -4.2436025e-02 -1.2809280e-02 -2.1780684e-02 8.1085076e-02 + -1.9579603e-03 1.6543048e-02 -1.6962963e-03 -3.5737592e-02 -1.7117537e-02 -2.1393415e-02 -2.1198897e-02 2.8901544e-02 8.5250804e-03 -4.0138988e-03 -1.5519499e-02 3.3908071e-03 -2.0032920e-02 -5.3324971e-02 5.8774731e-03 1.7146291e-02 3.5877806e-02 1.4465283e-02 -1.0599984e-02 -4.2170195e-02 -2.7112056e-02 -1.2518175e-02 -1.5597347e-02 -3.9322110e-02 -9.8820060e-03 2.5780432e-02 -2.4813282e-02 1.6565658e-02 6.7065796e-03 -2.4246276e-02 3.5045842e-02 -1.5817475e-02 8.9145605e-03 -2.2697284e-02 3.2613152e-02 -2.0396896e-02 2.1212415e-02 + -2.0922248e-02 -1.0245031e-02 4.3859509e-02 -3.3772349e-03 8.6768389e-02 2.3766856e-02 1.6680826e-02 -2.6109653e-03 -7.5556977e-03 -4.8789425e-03 7.5791044e-02 -8.3572051e-02 -1.6413935e-02 9.1646027e-02 -1.8487409e-02 -1.9457158e-02 -1.2558056e-01 -6.0619342e-02 -3.7062795e-02 1.0712081e-01 3.0746420e-02 2.9470893e-02 7.5305178e-02 -4.7382205e-02 -7.2680127e-02 -5.6820253e-02 6.3019022e-02 -3.8264600e-02 -2.3199826e-02 -2.1258702e-02 -4.7078977e-02 4.5122328e-02 -2.5479179e-03 -8.3636432e-02 -5.1604884e-02 6.3215849e-03 -1.5804891e-02 + 3.3621634e-02 9.8009864e-03 -9.5514188e-02 1.8907691e-01 7.3296151e-02 -4.9727494e-02 8.9519550e-02 -2.0041148e-02 -2.3722659e-02 -3.9266039e-02 8.2141445e-02 1.7553130e-01 1.9006746e-01 8.1997035e-02 1.0135085e-01 -9.6990205e-03 7.8987575e-02 1.1565723e-01 -5.3442034e-02 -1.5843115e-01 -2.0492604e-02 -1.1640917e-01 -6.3904381e-02 -3.4245281e-02 1.9081015e-01 -9.8426375e-02 -1.9988520e-03 1.5596310e-02 1.4064134e-01 2.1306672e-01 -8.8623724e-02 -2.8411117e-02 9.0461124e-02 -1.1554002e-01 -1.0240969e-01 1.8472077e-02 1.3287845e-02 + -1.5322237e-02 -1.7494882e-02 -2.4730110e-02 2.4892856e-02 -1.6270528e-02 3.7387903e-02 2.9532573e-02 -5.9890189e-03 -5.2110076e-02 -5.0923931e-02 5.6656906e-02 -6.8539804e-02 1.5335583e-02 -2.7347872e-03 -1.7161179e-02 -5.7599180e-03 -4.0444427e-02 -1.6901324e-02 -5.8502687e-02 1.4153974e-02 2.5760228e-02 -1.7147263e-02 -8.8269241e-03 -4.8609846e-02 3.5474003e-02 8.7052004e-03 2.9821895e-02 4.9389206e-03 2.6500752e-02 2.3267876e-03 -4.4853540e-02 3.2332120e-03 1.5868907e-02 -2.5537694e-03 -2.8032740e-02 6.1892371e-02 -4.3118733e-02 + 2.9287887e-02 3.0281808e-02 -1.6611562e-02 -5.8665971e-02 -1.8315739e-02 4.1898933e-03 3.9665799e-02 -1.4986724e-02 1.3139463e-01 -9.0350825e-02 -3.4652939e-02 -9.6498152e-02 9.1451798e-02 3.1612572e-02 -9.4503076e-02 4.6402160e-02 2.7281590e-02 1.8379346e-01 1.0224894e-01 -4.5509100e-02 -4.2794046e-02 -9.5225808e-03 -1.0513921e-01 -9.6390785e-02 -6.8392692e-02 -8.2668875e-03 -7.1368365e-02 3.1045453e-02 -1.1259492e-01 -1.0428725e-01 -1.5370767e-01 -1.5532170e-02 4.0454091e-02 -6.2596213e-02 2.7600442e-02 -4.8536151e-02 -1.2852180e-03 + 3.9212092e-02 1.0546776e-02 6.9469550e-02 -1.5130731e-01 4.0722145e-02 -2.9335967e-02 -1.0948339e-03 2.1912818e-02 -4.8595592e-02 -2.2149967e-03 1.9270849e-01 -6.0184324e-02 -4.1605995e-02 1.9178057e-03 -1.0024323e-01 -3.7206284e-02 -8.3937192e-02 -7.1670099e-02 -1.2818490e-01 8.0916796e-02 7.1343671e-02 -1.1780965e-02 1.0862343e-01 4.6211452e-03 -8.2022371e-02 1.0528490e-02 1.4988998e-01 -2.0320245e-03 1.9688646e-03 -3.4943043e-02 -1.1757045e-02 6.1961920e-02 -8.9987438e-02 -3.1346298e-02 -2.4161669e-02 3.9638582e-02 -8.3703940e-02 + -3.2461919e-02 -2.5815319e-02 -6.1861048e-02 2.7375427e-02 3.1050070e-02 2.6155224e-02 2.5323944e-02 -2.4610535e-02 1.3793194e-03 -1.0288048e-02 -2.1413864e-02 7.6476228e-02 -1.8329860e-02 -1.1812256e-02 3.0171046e-02 -2.4555417e-02 2.7115559e-02 6.5508486e-02 -2.3237392e-03 -7.6517659e-02 -3.1166371e-02 -1.9298488e-02 -3.7272897e-03 -1.6182311e-02 6.2803885e-02 -5.9887924e-03 -4.2117632e-02 2.4412673e-02 1.6962091e-02 -1.1492043e-02 -2.3504731e-03 -1.9605702e-02 4.1242950e-02 -6.1670575e-03 -1.6997044e-02 -3.5183464e-03 4.4078441e-03 + 9.1381014e-02 1.4408609e-02 6.1735809e-03 1.7393027e-01 4.0900952e-02 1.3532897e-02 1.1790663e-01 4.5522155e-02 -9.8590473e-02 -1.2252894e-01 8.4134879e-02 -9.9986528e-02 1.9367258e-02 -1.3405022e-01 2.9569060e-02 1.1228513e-02 1.7605752e-01 8.6257756e-02 1.2978146e-01 -2.8379531e-01 -1.4759753e-01 6.8875690e-02 3.6080081e-02 2.9270017e-01 -1.8492260e-01 3.4392702e-02 -2.4608560e-02 -8.7466908e-02 4.2254178e-02 4.4825449e-02 4.1487049e-02 -8.1991982e-02 -5.9214713e-03 1.2521624e-01 9.9888397e-02 -1.8426022e-01 1.0642745e-01 + 2.4398070e-01 1.9192201e-01 2.0996196e-01 -4.4728526e-01 -1.0975690e-01 -9.1573048e-02 -1.5315433e-01 1.3049680e-01 -5.2034716e-02 -8.8283326e-02 -2.9837442e-02 6.5546120e-02 5.2834621e-02 -1.8812938e-01 -1.4208177e-01 1.4206352e-01 9.3499930e-03 -2.7994083e-01 -2.3000063e-01 2.6216994e-01 8.9651782e-02 -3.2284872e-02 2.2672662e-01 9.4842464e-02 -9.9677079e-02 1.6084337e-01 1.9680344e-01 -1.3197459e-02 -2.3870288e-03 -7.1836129e-04 -4.8232696e-04 2.1455989e-01 -2.5268240e-01 1.4598231e-01 1.0292199e-01 1.7678969e-01 -1.0991316e-01 + 3.6782186e-01 3.2109009e-01 4.0596955e-01 -1.2657814e-01 -3.1385327e-01 -1.8052008e-01 -4.1869813e-01 3.4692406e-01 -2.1382511e-01 -4.0871057e-01 -1.6942576e-01 -2.0888824e-01 1.6540336e-01 -1.7753308e-02 -4.9883609e-01 -1.1334520e+00 -1.7426426e-01 -8.7835052e-01 -4.7220556e-01 5.1915723e-01 1.6736084e-01 2.0771862e-01 3.5859415e-02 -3.3594997e-02 -5.3788490e-02 2.2244925e-01 3.0528644e-01 -1.0850900e-01 -1.0811119e-01 1.5875057e-01 1.7437297e-01 4.3845779e-01 -4.0130252e-01 -3.6028264e-01 1.7399077e-01 5.1715847e-01 -2.5488934e-01 + 2.6412776e-02 -1.2062380e-01 9.1420755e-02 2.6469729e-01 1.0234421e-01 7.4958045e-02 2.4596079e-01 6.1586459e-02 6.1218696e-02 6.4068864e-03 2.0997290e-02 -1.4734436e-01 -2.5696029e-02 1.5425683e-01 3.5218710e-01 4.7087628e-01 7.1833602e-03 2.5464180e-02 6.3742417e-02 4.6541987e-02 -1.4974177e-01 1.8224633e-01 3.1619163e-02 2.1742666e-01 4.0937248e-02 -3.2994823e-01 7.2016524e-02 1.7165492e-01 1.3042097e-01 3.5641192e-01 -1.4193391e-02 -2.9648848e-02 -2.2408901e-02 -2.1552855e-01 -2.7918328e-02 -1.4714547e-01 1.7027041e-02 + -1.1098171e-02 5.4447000e-03 2.2223621e-02 -2.9769578e-02 -4.3087403e-02 -4.5623805e-03 -3.3460091e-02 3.1029588e-02 3.4411727e-03 1.8183172e-02 -2.4458438e-02 -2.2411730e-03 -3.0455790e-02 -5.1499741e-02 1.8633951e-02 2.6608199e-02 4.0894259e-02 -4.5119029e-03 -2.7536880e-03 4.5800032e-03 -1.7469940e-02 1.3978296e-02 -5.0264204e-03 5.0130261e-03 -1.1773366e-02 2.3383253e-02 -3.7387132e-02 6.5876486e-03 -2.3909061e-02 -1.2071074e-02 4.7109678e-02 5.1709692e-03 -1.2401016e-02 6.2935822e-03 4.6878745e-02 4.9116256e-03 1.3196417e-02 + -3.0619552e-01 -1.9754093e-02 -2.3935154e-01 3.7486720e-01 7.5722571e-02 6.6013553e-02 7.7426000e-02 -2.1561817e-01 -1.5537551e-01 2.2934160e-01 2.9942874e-01 1.2123624e-01 -8.4853675e-02 -1.4267916e-01 -3.1797357e-02 1.9748740e-02 1.2670620e-01 -4.2567317e-02 -2.0724754e-01 1.5396901e-01 1.2394275e-01 -2.2314929e-01 -1.5663551e-01 -3.6632858e-02 1.4508695e-01 1.4988601e-01 -8.8236751e-02 -2.0876895e-01 -3.8841572e-02 6.4298907e-02 1.4296382e-01 -1.9981565e-01 1.6707868e-01 -8.9179118e-02 -1.0439536e-01 -5.6303519e-02 6.3894157e-02 + -1.3749016e-01 -1.3992507e-01 -4.5732981e-02 3.2975693e-01 1.2882116e-01 8.8644135e-02 9.1223109e-02 -6.4459473e-02 -7.5529362e-03 2.2628613e-01 -5.6100632e-02 1.4859376e-01 -3.3924012e-01 -1.3815448e-01 1.4199420e-01 1.3714979e-01 4.3546108e-02 -3.3644175e-02 1.2081737e-01 -9.0549750e-03 -5.3466529e-02 1.2545572e-01 1.3853456e-01 2.0687427e-01 -7.0462720e-02 2.2370112e-02 -1.9734077e-01 -1.2300395e-01 4.4712829e-02 -4.1113253e-02 1.3654284e-01 -7.7343421e-02 7.7366255e-02 1.4686820e-01 4.4954386e-02 -3.7333412e-01 3.0003862e-01 + -7.8605829e-03 -1.5658965e-02 5.3192611e-02 -2.5394633e-02 2.3157053e-02 6.7461416e-02 -1.0835221e-02 -1.3006132e-02 8.1026219e-02 5.7294858e-02 4.0253969e-02 -8.6139858e-02 -7.3215810e-02 5.9821502e-02 2.0520980e-02 1.0259057e-01 -7.4957398e-02 2.4843230e-02 5.6954673e-02 4.4807253e-02 -4.0325375e-02 6.4106606e-02 4.0005663e-02 6.2193014e-02 -1.6499512e-01 -4.9000099e-02 8.9541395e-02 9.0324952e-02 -8.3965674e-03 -2.0085400e-02 -8.1583811e-02 -3.1687466e-02 -1.3474312e-02 5.4023231e-02 1.6568177e-02 -6.8761077e-02 2.7813943e-02 + -9.3094781e-02 -2.7867629e-01 -1.8138372e-01 3.0275123e-01 -4.5387969e-02 -4.8327995e-02 2.2476500e-01 -1.0028528e-01 -5.7871662e-02 1.7991972e-01 -2.9626131e-01 -8.4016631e-02 -2.9405713e-02 3.3153205e-02 2.7856395e-01 3.1390703e-02 1.7486167e-01 1.7806319e-01 3.2427679e-01 -3.5364278e-01 -3.0074109e-01 4.0140369e-01 -3.5333186e-01 -2.9856512e-02 6.1043970e-02 -7.9429301e-02 1.8610953e-03 -6.8970725e-03 -1.9074951e-01 -7.3437375e-02 3.2476080e-01 -5.4495961e-02 8.8923456e-02 -4.2221718e-01 -2.8017390e-02 -2.7174363e-01 1.5133452e-01 + -1.8453912e-03 4.5649177e-03 -4.7724011e-02 1.5347233e-02 6.1021384e-03 -5.5018816e-02 2.8509728e-02 3.9094047e-02 -4.4088080e-02 -1.1316470e-01 1.8315565e-02 -1.3959787e-01 3.0708903e-03 -6.7168879e-02 3.5986229e-02 -2.8963814e-02 8.3008981e-02 -4.8272535e-02 3.5202055e-02 -8.3149453e-03 -4.6909579e-02 5.0479468e-03 -2.4782275e-02 -5.6317715e-02 -3.5013718e-02 -2.7373664e-02 -1.3129339e-02 -7.4192819e-02 -3.1145855e-02 1.1172151e-02 4.2852210e-03 1.8788950e-02 1.5696513e-02 -7.3121905e-02 -4.3139244e-02 3.2207211e-02 -3.5258616e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_LW1_G_5.txt new file mode 100644 index 00000000..ebe105c2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW1_G_5.txt @@ -0,0 +1,19 @@ + -2.2444026e-03 -3.5451218e-02 4.1640356e-02 -2.9902309e-02 -4.1567947e-02 5.8269199e-02 -5.2150978e-02 4.4545413e-02 -3.5874432e-01 -1.9809692e-02 5.0239886e-02 -1.2793482e-01 -1.1192313e-01 1.9478844e-01 8.7946974e-02 -2.2034933e-01 -2.5269941e-01 6.0354086e-02 -4.7569160e-02 1.4994039e-01 -3.4933367e-02 1.6327523e-01 9.1963657e-02 -1.6519007e-01 1.1675452e-01 1.2846016e-01 -6.8553353e-02 1.8900466e-01 -1.0595615e-02 -9.0811833e-02 -4.8601628e-03 4.3083693e-02 1.4807310e-01 7.2969970e-05 2.1250771e-01 -4.3970780e-03 -5.1468674e-02 -1.3369020e-01 1.0098599e-01 2.5289671e-02 -8.9525399e-02 -1.1051472e-01 -1.4375911e-01 -1.2632987e-01 + 3.0550457e-02 1.1933616e-01 -5.2631661e-02 2.2236958e-02 -6.6249503e-03 -2.1454679e-02 8.3004005e-02 -9.4371511e-02 1.1608604e-01 2.5810941e-01 -7.1579216e-02 -1.3688357e-02 -1.0661032e-01 -1.7238519e-01 -1.0024378e-01 1.0433844e-01 4.9217977e-02 1.2299051e-01 2.5658407e-02 -1.3132550e-01 -3.8464029e-02 -1.4703213e-01 -1.3683117e-03 1.2445080e-01 1.3819794e-04 -1.3856290e-02 6.4371844e-02 -2.0993221e-01 -5.9348674e-04 1.5173319e-01 -1.2907256e-01 2.8675676e-02 -1.2262200e-01 6.6740057e-02 5.4780529e-02 -1.1057260e-01 7.8126313e-02 1.6528476e-01 -1.7250164e-02 6.1857382e-02 -1.4380563e-01 3.9797204e-03 -2.9310810e-02 -1.3889667e-01 + -1.9151735e-01 -2.3428515e-01 -4.7128126e-02 -4.4760407e-02 -3.8383947e-01 6.2438820e-01 2.0612809e-01 -2.2252757e-01 6.3782898e-02 4.0303696e-01 5.2245787e-02 -2.6944975e-02 -2.5302433e-01 7.0782965e-02 4.1831626e-02 2.6278891e-02 -7.4087212e-02 3.8086307e-01 -2.1073937e-01 -5.0804366e-02 -1.6429234e-01 4.5400204e-02 8.7167817e-02 -8.3454349e-02 4.5994208e-02 -2.7177963e-01 -2.8654050e-01 -2.2419738e-01 -6.5698431e-02 -6.2745544e-02 -8.5472974e-01 1.7338229e-02 2.7996232e-01 1.0589925e-01 1.2128427e-01 1.4481107e-01 9.2695912e-02 4.3231140e-03 3.1186497e-01 -3.5814592e-01 -7.8904794e-02 -2.7778489e-01 -3.8572250e-01 -4.8033789e-01 + 1.5068042e-02 -4.6306159e-02 -4.7852297e-02 1.9874818e-02 -6.5557302e-02 8.8715251e-02 3.6460329e-02 -2.2617306e-02 9.3128947e-02 1.4295820e-02 -7.7236377e-02 8.5939903e-04 3.0099736e-02 -4.5694552e-02 7.3712779e-03 4.3734903e-02 1.1898489e-01 4.6335805e-02 -2.4897056e-02 1.8673834e-02 -3.2713417e-02 -7.6080506e-03 -3.2713839e-02 8.5893159e-02 -6.3405533e-02 -9.4182983e-02 -2.3976985e-02 -1.3674459e-01 -5.3731845e-03 2.3260172e-03 2.4577095e-02 -4.2766709e-02 5.1749265e-02 3.9505791e-02 -2.7858266e-02 -8.9116000e-03 5.5089874e-02 3.5070339e-02 4.4785644e-02 -7.9122770e-02 8.5666974e-03 -1.0678855e-02 1.2551639e-02 7.8419243e-03 + -1.3785000e-02 2.3065167e-01 -2.2748995e-01 3.8039112e-02 3.1834779e-01 -1.6184745e-01 -8.8527087e-02 1.6511771e-01 -3.3316457e-02 4.5977388e-01 2.8130947e-01 -8.3735431e-02 2.3565409e-02 -2.4670213e-01 -2.0573779e-01 3.9809073e-02 5.2769758e-03 2.8363675e-01 2.5256123e-01 -2.2601183e-01 -4.1028538e-01 -1.9286597e-02 7.7880957e-02 -8.8266269e-02 2.8002116e-01 1.0877701e-01 -4.5986361e-02 1.6126611e-01 6.5793895e-02 1.5190076e-01 8.2348888e-02 4.4349848e-03 7.2338063e-02 -1.7207295e-01 2.7692597e-01 -8.8573289e-02 2.0598580e-02 3.3995371e-03 -4.0927770e-02 1.5635234e-01 -2.0674562e-01 -4.8133257e-02 -2.3161829e-01 -1.1084498e-01 + -8.2916780e-02 -1.2075327e-01 -2.4830442e-02 2.7883279e-02 -1.4392439e-01 1.1985132e-01 2.0413980e-01 -2.1130359e-02 -2.5940330e-01 1.9314602e-01 -8.6441941e-03 -6.6998897e-02 -1.2002925e-01 2.6365552e-02 6.3264732e-02 -9.8822800e-02 1.0654984e-01 1.5093187e-01 -1.4203599e-01 9.6558858e-02 -1.4248294e-01 -1.1767900e-01 -1.1064638e-01 -2.3890918e-01 -9.9805007e-02 -8.0206035e-02 6.3641119e-02 -9.0192770e-02 2.6181846e-02 -5.2116588e-03 -2.2755478e-01 5.9704854e-02 -6.3642470e-02 1.4545930e-01 3.6044729e-02 3.2112244e-02 4.1186421e-03 -3.1358163e-02 8.0965068e-02 -5.1704859e-02 5.3762073e-02 -5.5382408e-02 -2.2861303e-02 -2.3765770e-02 + 2.6608163e-01 3.7334345e-02 1.9384119e-01 -1.0364445e-01 -2.0982712e-01 -1.7733065e-01 -3.6317241e-01 4.3142766e-01 -1.9310665e-01 -8.8139704e-02 -1.8931130e-01 -2.0268899e-01 2.0293052e-01 3.1219046e-01 -2.3217619e-01 4.6371791e-01 -6.9601488e-01 -7.9857025e-02 -1.6035954e-02 -1.2152707e-01 2.6340497e-01 6.0372095e-01 -1.6824465e-01 2.3991358e-01 2.1477058e-01 3.8899446e-02 -6.9549502e-01 -3.1471393e-01 8.8205247e-03 3.8424886e-02 1.6016996e+00 -8.9676957e-02 7.6852914e-01 1.0870134e-02 8.2182006e-01 -2.4913247e-01 -2.7889499e-01 6.6182181e-01 1.4139003e-01 1.9788779e-01 1.2631134e-02 1.1777447e-01 7.4686500e-02 2.7471252e-01 + 2.1435434e-02 6.0345448e-04 -1.8126118e-02 3.4438272e-04 -2.3639826e-02 2.9722042e-02 2.6681418e-02 8.7912012e-03 -3.3772009e-02 -1.3283667e-03 -5.2226307e-02 -1.9345018e-03 -1.7499392e-02 -1.0748022e-02 8.4637114e-03 2.2175471e-02 1.0123430e-02 1.7014874e-03 -4.5048849e-03 2.8132495e-02 1.8260200e-03 -1.2337188e-02 6.8835019e-03 6.4352964e-02 -2.9820730e-02 -2.5029269e-02 1.2600751e-02 -6.0204251e-02 -2.8048330e-02 -2.2775312e-02 5.6753091e-02 5.1482119e-03 1.6166528e-02 3.5370607e-03 2.7656279e-02 -2.7186604e-02 2.5995625e-02 7.6429514e-05 8.5581435e-03 -8.5936403e-03 -3.3760487e-02 1.8919929e-03 1.8365212e-02 -1.4375193e-02 + -4.6231031e-01 -8.7042784e-02 -1.1872391e-01 -1.6366227e-01 1.1004356e-01 -1.2209421e-01 7.8760689e-02 2.2753568e-01 -1.0270613e-01 4.0071514e-01 9.4124124e-02 5.0036853e-02 5.2407420e-03 -5.5630117e-02 3.2264463e-02 -1.0797871e-01 2.3768102e-01 2.1240925e-01 1.1589075e-01 1.4547181e-01 -2.8281743e-01 5.9335982e-02 -1.7906417e-02 -2.8148328e-01 3.2274664e-01 1.4567033e-01 6.8484923e-02 1.2144283e-01 -1.9756891e-01 -1.8079173e-01 -2.3982819e-01 5.7994243e-02 -1.4543251e-02 2.9392703e-02 1.7067447e-01 9.6652489e-02 8.1482425e-02 -2.0788034e-01 6.3697941e-02 3.2926798e-02 1.3890349e-02 8.8768303e-04 2.9289462e-02 1.7680949e-01 + -9.3212403e-02 -3.2740234e-01 1.8672064e-02 7.7090893e-02 -3.5845155e-02 2.0475326e-01 1.0192322e-01 1.1667090e-02 3.2074682e-02 -2.2854829e-02 8.0986849e-03 3.1236976e-03 7.0378161e-02 -1.3957844e-01 2.6300291e-01 -5.0003948e-02 -1.8199614e-01 5.3360352e-02 -1.3351110e-01 2.7556773e-01 -1.7485481e-01 -1.8482750e-01 2.4967402e-02 2.5932748e-01 -1.7373767e-01 -1.6543038e-01 2.0405362e-01 -1.5128736e-01 -9.3707979e-02 -1.3258235e-01 -5.7377198e-01 -1.1049139e-01 -1.8808196e-01 9.7936546e-03 -3.3992513e-01 1.9484276e-01 1.8685407e-01 -2.9218605e-02 1.3594132e-01 -1.7043235e-01 1.5843248e-01 1.1642075e-01 1.4209631e-01 2.9100430e-01 + 5.3990318e-02 -5.7113534e-02 -4.9322003e-02 5.0859322e-02 -3.4410684e-02 2.3746936e-02 9.5336244e-04 -2.7527182e-02 1.7430035e-01 -5.4119108e-02 6.4881960e-03 5.8194151e-02 -5.8689507e-03 -2.9551644e-02 3.5512700e-02 1.0039248e-01 1.3364840e-01 -8.0769282e-02 -5.4455153e-02 -2.2779007e-02 1.6656260e-01 1.5901443e-02 1.4334865e-01 1.1412016e-01 -8.0155886e-02 -1.3693551e-01 -8.9518255e-03 -9.5240185e-02 6.8911315e-02 3.5889537e-02 5.2238337e-02 -6.0674842e-02 8.5065207e-03 8.1454238e-02 -1.2285012e-01 1.3461368e-01 -9.9800465e-02 3.9363857e-02 4.1875970e-02 -8.4855140e-02 7.7156704e-02 -2.8050915e-02 -2.9518437e-02 8.3741776e-03 + 2.4758865e-01 -4.7662833e-02 2.3799986e-02 3.2264099e-02 9.1288605e-02 -8.7064614e-02 -1.0349143e-01 2.7026300e-01 8.6725805e-02 -3.0239027e-01 -9.9923649e-02 3.0181012e-02 1.9242809e-01 -1.3244538e-01 8.8242686e-02 2.0573566e-01 -1.4362804e-01 -1.8786260e-01 2.7033005e-03 2.0247592e-01 2.5187328e-03 5.4757784e-02 2.0504385e-01 3.9648631e-01 -1.8324036e-01 -3.4289135e-02 3.7640329e-02 -2.6683294e-01 -1.1252820e-01 -4.8121254e-02 6.3837817e-01 -6.8923062e-02 1.0645390e-01 -4.0776410e-02 3.1083233e-02 -1.8313340e-02 1.3726176e-01 2.0808819e-01 -7.1021223e-03 -4.6577971e-02 4.9775181e-02 3.6450820e-01 2.1073150e-01 3.6725996e-01 + -3.5546245e-02 -2.3347959e-02 -1.6030734e-02 4.6851455e-02 -2.0792375e-02 4.2723396e-02 -3.4658993e-03 2.9892838e-02 -3.3971761e-02 1.2922908e-03 2.3507725e-02 -1.4896920e-02 2.3286598e-02 -1.8658030e-02 1.4960834e-02 -2.9784331e-02 2.8612958e-02 1.3025027e-02 -1.4893382e-02 3.3108717e-02 -1.6257618e-02 8.2339348e-03 2.7586189e-02 -5.9641707e-03 -2.1532843e-03 1.3245654e-02 3.4211688e-02 -2.6344366e-03 -8.6376665e-03 1.1654920e-03 -1.8849268e-02 -3.8260244e-02 4.7468544e-03 -2.7246303e-02 -1.5573415e-02 3.3252581e-02 3.2458828e-02 -1.8960347e-02 5.5931857e-02 -4.4333513e-02 1.3593206e-02 1.2733310e-02 -6.1287315e-02 -8.8289801e-03 + -4.2785930e-03 9.1999588e-02 5.5939564e-02 1.9152216e-02 1.0028782e-01 -1.2265840e-01 -2.7890625e-02 -6.3485346e-02 -6.4780345e-02 4.5863918e-02 1.6982278e-01 2.0960278e-02 -5.2047579e-02 1.9179976e-02 -2.6652133e-02 -6.7776663e-03 -3.2269565e-02 -7.8570557e-02 2.3155738e-02 -1.5330971e-01 1.2981533e-02 -8.8270921e-02 4.4459803e-02 -1.7216780e-01 6.1829355e-02 1.3066498e-01 1.5742334e-01 2.1670873e-01 4.7764163e-02 1.0332057e-01 -2.7935066e-01 6.6624356e-02 -1.7077033e-01 -1.0815434e-01 -1.4272812e-01 6.8550245e-02 -1.0045568e-01 -6.1453534e-02 -1.0106172e-01 1.0144887e-01 2.2771309e-02 -9.2481672e-03 -4.5920491e-02 -5.8565711e-02 + 4.5465799e-01 -1.9045074e-01 1.1549400e-01 -6.0359558e-02 7.1053058e-02 -1.9917341e-01 -2.4564200e-01 2.7479493e-01 5.4655525e-02 -1.9917669e-01 2.3958307e-01 -1.3643702e-01 1.8372643e-01 3.8655975e-02 1.2947741e-01 2.1598879e-01 -5.1516697e-01 -3.9538185e-02 -9.9188614e-02 1.4079792e-02 6.3067330e-03 -3.0471169e-02 -2.8890577e-02 6.5503179e-01 1.0489398e-01 5.3801066e-02 -3.1371335e-01 -2.8712226e-01 5.2522203e-02 5.3667762e-02 7.0896909e-01 -5.0208615e-02 8.8936991e-02 -3.9688902e-03 -2.1142239e-01 4.7158129e-02 1.4737462e-01 4.1189947e-01 2.5219956e-02 4.9418264e-02 7.9879885e-02 3.0727273e-01 1.7836529e-01 5.7814655e-01 + -3.8036931e-02 -1.5583444e-02 3.2684705e-03 9.2556170e-03 2.0699860e-02 -3.7758903e-02 -4.0321153e-02 1.2808768e-02 1.3614573e-02 -1.5837279e-02 7.3971355e-02 -2.7662346e-02 3.3852553e-02 2.0350666e-02 -2.3343715e-03 -4.3847260e-02 -6.5659241e-02 -2.7102480e-02 -7.6424131e-03 -4.4765787e-02 2.9919084e-02 3.1716776e-02 -9.8438703e-03 -7.4616155e-02 4.1277550e-02 4.2130812e-02 -3.1095819e-02 1.0900675e-01 3.4259418e-02 1.4806822e-02 -4.1651896e-02 -1.0327313e-02 -2.5410656e-02 -2.7238156e-02 -3.7030114e-03 1.8019746e-02 -5.8578650e-02 -2.2982478e-02 -8.7310024e-03 1.9703295e-02 4.5825065e-02 -1.0528091e-02 -3.1796818e-02 6.5281817e-03 + -3.8647815e-02 1.6191391e-02 4.3384575e-02 -2.7647343e-02 3.0378789e-02 -4.6911736e-02 2.5482044e-02 3.5647942e-02 -6.2945627e-02 2.8125739e-02 5.0946843e-02 3.8842416e-02 -5.2950855e-02 -4.6501652e-03 -4.5119032e-03 2.2807518e-02 1.5672628e-02 6.9317850e-03 3.3258947e-02 7.2359610e-02 -4.4920178e-02 -1.3624237e-02 5.4001895e-02 -1.2873884e-01 6.8965279e-02 6.4540300e-02 5.9772223e-02 5.6355227e-02 -8.5422193e-02 -2.3040232e-02 -7.0608255e-02 3.9532474e-02 5.5127168e-03 -2.5497813e-02 7.3875861e-02 3.9655680e-02 -3.7718019e-03 -1.1566158e-02 -3.0386016e-03 1.0164475e-02 -3.0490306e-02 1.5812821e-02 -3.1599383e-02 -5.5941386e-02 + 1.2319829e-01 -4.2274405e-02 2.6953477e-01 -1.5552692e-01 2.1809307e-02 8.5370961e-02 -8.0293524e-02 7.3228773e-02 -2.8879707e-01 -2.9229443e-01 3.1377693e-01 8.3757962e-02 -1.5556254e-01 1.0806235e-01 1.1373478e-01 -8.9375138e-02 -2.3932182e-02 3.9491322e-02 -8.7990398e-02 4.0366236e-01 -4.7500295e-01 1.7896298e-01 4.9232590e-01 -1.0937162e-01 -1.9591350e-02 1.0666052e-01 1.6188024e-01 9.0899437e-02 -2.0912312e-02 -7.1085938e-02 -4.5314591e-02 1.2278897e-01 2.9850039e-01 1.4151183e-01 -2.1457600e-01 1.4458194e-01 7.2598602e-02 7.6540795e-02 1.3809623e-01 2.9941230e-02 -1.0919367e-01 1.8092444e-01 -1.6612583e-01 1.9240819e-02 + -4.6790029e-02 -1.4887605e-01 -1.7700915e-02 8.0582457e-02 -2.1627269e-01 1.2553736e-01 -2.0772900e-01 8.0061689e-02 -8.7744517e-01 -6.5236977e-02 2.6221618e-01 -1.4875377e-01 -5.6823930e-02 3.6908982e-01 1.3475186e-01 -2.1434687e-01 -2.4932573e-01 -6.9873269e-02 -1.1925365e-01 -4.2460202e-02 4.1418554e-02 2.6234169e-01 -1.4200910e-01 3.4330461e-02 -1.3674470e-01 -2.7641034e-03 -5.1102112e-01 2.5020152e-01 3.4539320e-01 -8.9343820e-02 -2.6975567e-01 9.9008323e-02 1.9080352e-01 1.9470606e-01 4.7171246e-02 -1.1968303e-01 -3.2281064e-01 -1.3314853e-01 1.2156272e-01 2.0233904e-01 8.7506959e-02 -6.1651049e-02 4.8734985e-02 5.2896676e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_F_1.txt new file mode 100644 index 00000000..4dd68ba6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_F_1.txt @@ -0,0 +1 @@ + 3.9949676e-02 -3.7001949e-01 -3.7919962e-01 6.4937522e-01 1.7355878e-01 2.2541728e-01 -1.9589026e-01 -3.4993037e-01 4.0738262e-01 3.4625057e-01 1.1057440e-01 -4.3968983e-01 -6.3625244e-03 -3.9882798e-01 8.4122199e-02 -4.1175392e-01 1.2602693e-01 2.0024908e-01 3.6287669e-01 -3.2452707e-01 2.4085415e-01 -1.7984216e-01 -1.6515482e-01 -2.0291161e-01 2.5565454e-01 -4.6264482e-01 1.1940884e-02 1.5640255e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_F_2.txt new file mode 100644 index 00000000..f9daf0dc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_F_2.txt @@ -0,0 +1 @@ + 4.2400018e-01 -1.9048700e-01 2.0921440e-01 2.3409892e-01 -1.9610645e-01 1.2700505e-03 -1.6845641e-01 6.0961188e-01 -9.7703093e-02 -3.0425774e-01 2.2232337e-01 -3.6671667e-01 2.7157813e-01 -2.7373633e-01 -6.7226759e-01 -7.2481710e-03 -7.2179260e-01 -5.4910342e-01 -3.8925454e-01 -2.2845677e-01 -7.4156742e-01 -4.1376851e-01 -8.5658475e-02 5.2846146e-03 -2.3765962e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_F_3.txt new file mode 100644 index 00000000..1c21baff --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_F_3.txt @@ -0,0 +1 @@ + -2.8039886e-01 -3.7996031e-01 1.9132837e-01 2.9971118e-01 1.5219799e-01 1.5146273e-01 -2.3479680e-01 -5.3294794e-02 3.9145911e-01 -2.9403149e-02 1.1516955e-01 -1.4811225e-01 -2.0141996e-01 -2.0295496e-01 -2.9984865e-01 -3.5108784e-01 -7.8919574e-02 4.5149681e-01 1.5816016e-01 -2.2606337e-01 -3.6480205e-01 3.1880270e-01 2.4116595e-01 3.8690835e-02 3.5735180e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_F_4.txt new file mode 100644 index 00000000..2ce4a333 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_F_4.txt @@ -0,0 +1 @@ + -1.2467059e-01 -1.9320466e-01 -5.0548712e-01 1.6196937e-01 3.2712049e-01 -1.5205019e-01 -8.7336960e-02 2.9337754e-01 -1.5269137e-02 -3.8258912e-01 -8.4409323e-02 -4.5436076e-02 3.6959856e-01 -4.9668044e-01 -9.7311005e-02 -3.2229090e-01 -2.5867697e-01 3.6087798e-02 4.0818141e-01 -2.6789720e-01 -3.0689742e-01 1.5924131e-01 1.5568947e-01 1.3910673e-01 1.8570204e-01 -3.5737462e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_F_5.txt new file mode 100644 index 00000000..148c67ce --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_F_5.txt @@ -0,0 +1 @@ + 1.4235357e-01 6.1405734e-02 -4.4073726e-01 -3.8468110e-01 -3.0505325e-01 -2.2833326e-01 -3.2614038e-01 1.8014685e-01 3.0682917e-01 -1.6327902e-01 4.1969301e-01 -2.4345128e-01 -3.4417350e-01 1.0632895e-01 5.4107901e-02 4.1258055e-01 1.8809795e-01 3.2130669e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_G_1.txt new file mode 100644 index 00000000..d8da6b58 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_G_1.txt @@ -0,0 +1 @@ + -4.3409822e-01 -2.1395078e-01 8.9458178e-03 3.5654876e-01 2.6195027e-01 5.8460850e-01 -6.8297649e-01 -4.9422099e-01 2.3822897e-01 -2.5917384e-02 -5.9929366e-01 -4.4846417e-01 1.3571760e-01 2.9988068e-01 -3.6728131e-01 -5.1516037e-01 3.6313262e-02 -7.8098047e-02 -3.3129685e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_G_2.txt new file mode 100644 index 00000000..6a07b203 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_G_2.txt @@ -0,0 +1 @@ + 2.7091104e-01 7.2460320e-02 -1.7421711e-01 7.3580307e-03 -4.4347405e-01 1.7375256e-01 1.1361694e-01 -4.6607411e-01 -2.0936728e-01 4.6559104e-02 8.6473889e-02 1.8715138e-01 -2.4275632e-02 -2.6261876e-01 -3.0971086e-01 -3.4308358e-01 4.7187911e-01 -1.9772176e-01 -3.0867301e-01 3.4384712e-01 1.3630943e-01 -1.8895702e-01 2.2097296e-01 3.3201667e-01 -4.7092502e-01 -1.9347004e-01 -1.7928720e-01 -1.8336313e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_G_3.txt new file mode 100644 index 00000000..d67b9872 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_G_3.txt @@ -0,0 +1 @@ + -4.8407946e-03 -3.4619770e-01 5.3728304e-01 3.2931141e-01 -2.1652449e-01 -3.8076922e-01 2.1093499e-01 -2.2345069e-01 6.3522631e-01 3.4405800e-02 -3.6010666e-01 3.7609982e-01 2.5563780e-01 -4.3187604e-02 -1.7592854e-01 -5.9433720e-01 6.8469345e-02 -3.4626839e-01 4.0765100e-01 2.1542558e-01 5.6879788e-01 -1.2550171e-01 -5.3476072e-01 7.4161139e-01 -2.5670539e-01 -1.1938907e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_G_4.txt new file mode 100644 index 00000000..d59907b0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_G_4.txt @@ -0,0 +1 @@ + -2.1594504e-01 -6.0297047e-02 2.7926766e-01 -8.6016254e-02 7.5280232e-02 -2.2251789e-02 -3.9489051e-01 -2.3237899e-01 -3.6742113e-02 -1.6780122e-03 1.4462410e-01 -4.3760045e-01 2.6509996e-02 -5.0856097e-02 1.9961413e-01 -1.4724520e-01 1.6966143e-01 1.9430356e-01 -6.0160847e-01 -3.6911513e-01 4.7197349e-02 1.9556349e-01 2.9215160e-01 1.5542974e-01 -4.1890540e-01 9.0386411e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_LW2_G_5.txt new file mode 100644 index 00000000..573690be --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_LW2_G_5.txt @@ -0,0 +1 @@ + 2.2097766e-01 -5.0101410e-01 1.4220351e-01 -2.5010196e-01 -2.5585667e-01 -5.7598341e-01 -3.1243488e-01 -3.5520282e-02 -4.6484066e-01 2.3152366e-01 -1.8147657e-01 -2.3718976e-01 -5.9629319e-02 2.4880279e-01 -2.7159942e-01 1.2361079e-01 3.6628839e-02 -3.6576474e-01 -3.1010372e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_b1_F_1.txt new file mode 100644 index 00000000..79cc91a9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_F_1.txt @@ -0,0 +1,28 @@ + 4.9350425e-01 + -4.2076215e-01 + -3.8974085e-01 + 7.1226897e-01 + 8.6563662e-01 + -3.6912675e-02 + 7.1044471e-02 + -2.9944854e-01 + 3.4329970e-02 + 1.5499155e-01 + -3.5271721e-01 + 6.4704528e-01 + -2.3872901e-01 + -6.0617838e-01 + 3.5250424e-01 + -3.5617271e-01 + 2.7762716e-01 + -4.5300821e-01 + -1.9558895e-02 + -4.5889311e-01 + 3.6835636e-01 + 1.0866452e+00 + 2.1421719e-02 + -7.3449676e-01 + -4.8906106e-02 + -2.2196699e-01 + -7.2466773e-01 + 8.0381422e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_b1_F_2.txt new file mode 100644 index 00000000..030ea4ef --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_F_2.txt @@ -0,0 +1,29 @@ + 1.7802571e+00 + 5.1855078e-01 + 4.5091691e-01 + -1.3080367e+00 + 5.2902990e-01 + 3.2261795e-01 + -2.1954023e-01 + 7.7154154e-01 + 3.8405104e-01 + -8.7548382e-02 + -3.4121323e-01 + 6.8851397e-01 + -4.2334860e-01 + 6.0679379e-02 + -1.5954441e-01 + -3.3510831e-01 + -3.9411463e-03 + -2.0196873e-01 + 7.0332327e-01 + 1.6982077e-01 + 2.9778871e-01 + 1.1658992e-01 + -4.5633148e-02 + 4.5878901e-01 + 1.1373903e+00 + -7.1681946e-01 + 2.5213344e-01 + -2.4048086e-01 + 3.2489655e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_b1_F_3.txt new file mode 100644 index 00000000..ee7fcaea --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_F_3.txt @@ -0,0 +1,32 @@ + 1.9493270e-01 + 5.2851283e-02 + -6.5291775e-02 + -6.2621788e-01 + 1.6606909e-01 + 2.2902189e-02 + 8.6566086e-02 + 1.1756630e-01 + -2.0551177e-02 + -5.2201276e-02 + 2.3948611e-01 + -5.3044698e-02 + 1.4608423e-01 + 1.6048933e-01 + 6.4566458e-02 + 2.9564455e-01 + 8.7548994e-01 + 3.8566940e-02 + 5.8473139e-02 + -2.1346465e-02 + 5.2305339e-01 + 1.5184901e-01 + 1.7248465e-01 + 2.7063975e-01 + 7.0657166e-01 + -5.5758781e-02 + 2.1841927e-01 + -2.4321538e-01 + 1.3824231e-01 + 2.3796607e-02 + -6.0875866e-02 + -4.3253158e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_b1_F_4.txt new file mode 100644 index 00000000..b32765e2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_F_4.txt @@ -0,0 +1,36 @@ + -3.6457628e-01 + 2.1064808e-01 + -7.0415207e-02 + -1.2596489e-01 + -5.6224046e-02 + 1.2758118e-01 + 2.0269952e-01 + -2.0738905e-01 + 6.7882864e-02 + 2.9754797e-01 + -2.2798182e-01 + -8.1454161e-02 + -2.2071303e-01 + 1.9131277e-01 + -6.4524150e-02 + 3.0896923e-01 + 9.2491964e-02 + 1.9517557e-02 + -6.3404560e-02 + -2.4601175e-01 + -5.5850100e-02 + -3.5423510e-02 + -2.1744425e-01 + -2.1156038e-01 + -7.6704209e-02 + -2.1659082e-01 + 3.5846845e-02 + 6.4514339e-02 + 2.1441680e-01 + -3.3731751e-01 + 1.4179964e-02 + 2.5353147e-01 + 1.3037868e-01 + -1.4043261e-01 + -1.2490958e-01 + -1.9610156e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_b1_F_5.txt new file mode 100644 index 00000000..f627c6e8 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_F_5.txt @@ -0,0 +1,43 @@ + 2.5029788e-01 + -3.2726590e-01 + 2.3103434e-01 + -5.6295502e-01 + 4.6232567e-02 + 9.4532446e-03 + 1.2285263e-01 + -3.1479602e-02 + 5.6386119e-01 + 3.7719438e-02 + 6.4420347e-01 + -2.0843242e-01 + 2.2330141e-01 + -1.7004600e-01 + 2.5811120e-01 + 4.0097582e-01 + 9.8803130e-02 + 4.0592144e-01 + -3.5334733e-02 + -5.4827543e-02 + -2.6342549e-01 + -2.5191470e-01 + -1.3658340e-02 + 1.6390864e-01 + 2.3350580e-01 + -3.0173630e-01 + -1.1189359e-01 + -3.9900510e-01 + 1.8374666e-01 + 7.6021257e-02 + 3.1615563e-01 + -4.9423869e-02 + 1.7868126e-01 + -3.6191484e-01 + -5.2995067e-02 + 9.7030458e-02 + -7.2308002e-02 + 3.7229561e-02 + 2.5784128e-01 + 1.2327039e-01 + 2.2265199e-01 + -1.8374033e-01 + 1.7734506e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_b1_G_1.txt new file mode 100644 index 00000000..1cf8ca0f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_G_1.txt @@ -0,0 +1,27 @@ + -2.1058629e-01 + 1.5020361e-01 + 5.1141799e-01 + -8.7989675e-02 + 1.0238696e-01 + 1.3130481e-01 + -1.3782642e-01 + 9.4667631e-02 + 2.7752768e-01 + -2.7351939e-01 + -2.3084575e-01 + 2.8880648e-01 + -1.2501938e-01 + -6.9659220e-01 + -3.8124289e-01 + -5.5232496e-01 + -9.1329430e-02 + -1.8511960e-01 + 1.0255385e-01 + -3.4140027e-01 + 1.2227749e-01 + 3.2292722e-01 + 8.7752286e-02 + -5.9351916e-02 + -1.4808141e-01 + 2.5730760e-01 + 2.1643030e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_b1_G_2.txt new file mode 100644 index 00000000..4074175e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_G_2.txt @@ -0,0 +1,28 @@ + -3.4420027e-01 + -6.6720284e-02 + 1.8723996e-01 + 1.1605192e-01 + 3.9149383e-01 + -6.3253383e-01 + -1.6143871e-01 + 9.6897199e-03 + 1.5541334e-01 + 1.2028017e-02 + -1.9228912e-01 + -2.6442480e-01 + 1.3348475e-01 + -7.4925559e-01 + 7.6637356e-02 + 9.1981063e-02 + -4.7601839e-01 + -1.1215468e-01 + -1.9927403e-01 + 1.4512116e-01 + 1.2894316e-01 + -2.5332331e-01 + -4.1112196e-01 + -1.4068143e-02 + -1.9502493e-01 + 3.9890964e-01 + -9.8300501e-02 + 4.5508581e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_b1_G_3.txt new file mode 100644 index 00000000..6f63b8cd --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_G_3.txt @@ -0,0 +1,34 @@ + -1.2203178e-01 + -2.4672226e-01 + -5.0667495e-01 + 1.3190575e-01 + 9.4127430e-02 + 3.6501170e-02 + 1.9356558e-01 + 1.1019343e-01 + -1.9159078e-01 + 1.6726397e-01 + 1.1507080e-01 + 8.6661731e-01 + -4.5515907e-02 + 6.1295714e-01 + 2.2290706e-01 + 6.4539023e-02 + -2.3841286e-01 + -4.9326912e-01 + -2.4101887e-01 + -1.5721440e-01 + -1.5687228e+00 + -3.2348281e-01 + -1.1531328e+00 + -3.1294342e-02 + 2.1185896e-01 + -1.4891224e-01 + 2.6816955e-01 + 1.1018543e-01 + 3.1752573e-01 + -2.4374047e-02 + -1.0325059e+00 + 2.7276337e-01 + -3.4976639e-02 + 5.8459173e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_b1_G_4.txt new file mode 100644 index 00000000..c00d9c73 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_G_4.txt @@ -0,0 +1,37 @@ + 2.5891476e-01 + 1.9411804e-01 + 7.4128512e-02 + -4.3309404e-01 + -1.3756951e-01 + -8.9025815e-02 + -2.3006432e-01 + 9.6332682e-02 + 1.0625023e-01 + -1.4271357e-01 + -7.9739613e-01 + 6.8999930e-01 + -6.9562875e-02 + -1.3002045e-01 + -7.4955332e-01 + -4.0653890e-01 + -4.8164685e-02 + 9.5829775e-02 + 6.4202007e-02 + 9.9215368e-02 + 2.3118901e-01 + -2.3758196e-01 + 2.9655737e-01 + 6.6571583e-02 + -2.3821269e-01 + 2.0045743e-02 + -7.2210084e-02 + -1.0410850e-01 + -1.7138038e-01 + 2.0618036e-01 + -5.7362172e-02 + 1.7095965e-01 + -1.4343466e-01 + 1.8971479e-02 + 8.4305348e-02 + -1.4655058e-01 + 4.9189689e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_b1_G_5.txt new file mode 100644 index 00000000..4f5dfd92 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b1_G_5.txt @@ -0,0 +1,44 @@ + 3.9202013e-01 + 1.6096751e-01 + 1.5963966e-01 + 1.2161018e-02 + 9.7163003e-03 + -1.5407528e-01 + -1.5688310e-01 + 3.7056788e-02 + 3.5805453e-01 + -2.9607613e-01 + -3.2917646e-01 + 6.5606653e-02 + 9.8085076e-02 + 2.2503643e-01 + -1.9587700e-01 + 1.8180157e-01 + 2.0061478e-01 + 5.4875807e-02 + 9.4775852e-02 + 3.1841013e-02 + 9.0946221e-02 + 1.9698888e-01 + -2.0826531e-01 + -4.9105619e-01 + -2.7028250e-02 + 3.5024635e-02 + -3.8059245e-01 + 6.0587350e-03 + 1.5420170e-01 + 1.2983842e-01 + 8.5892516e-01 + -1.2239839e-01 + 2.6913156e-01 + -3.6955822e-02 + 6.0577825e-01 + -2.1835419e-01 + 5.9583600e-02 + 3.4840934e-01 + 3.7153649e-02 + 1.7650530e-02 + -3.2786884e-02 + -4.8483280e-02 + -1.3006003e-01 + -2.7644015e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_b2_F_1.txt new file mode 100644 index 00000000..2d18cf0d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_F_1.txt @@ -0,0 +1,28 @@ + 1.7511490e-02 + 1.6071880e-01 + 1.3667930e-01 + -3.1616991e-01 + 5.1312816e-02 + -3.2083256e-02 + -3.1362121e-02 + -3.5395133e-01 + -3.0450376e-02 + 4.5586293e-02 + -3.8940444e-02 + 5.1358585e-01 + 3.9640301e-03 + -4.2606462e-01 + 1.3889841e-02 + -6.5786135e-01 + 1.6006103e-02 + 3.9145788e-01 + -1.9601992e-01 + 2.7841060e-03 + 3.0411963e-02 + -1.1404271e-01 + -3.4319858e-02 + -1.2288193e-02 + -2.4897961e-01 + 2.3111527e-03 + 8.2750826e-03 + 5.8365189e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_b2_F_2.txt new file mode 100644 index 00000000..70e37d7c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_F_2.txt @@ -0,0 +1,25 @@ + -3.2181120e-01 + 1.0191533e-02 + -2.4947370e-02 + -2.5019268e-03 + -1.1807272e-01 + 6.9638224e-02 + 9.7348409e-03 + 2.2865446e-01 + -1.2190041e-03 + 3.8900065e-03 + -2.0533022e-01 + 5.1345160e-01 + 2.0865223e-01 + 1.5444133e-02 + 1.1553452e-01 + 1.9146879e-02 + 4.3915325e-01 + 1.0418023e-01 + 6.8438338e-02 + 2.9998042e-04 + -4.0737914e-01 + -4.0542412e-02 + 4.0123831e-03 + 3.8058255e-02 + -6.2473423e-03 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_b2_F_3.txt new file mode 100644 index 00000000..bfc89478 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_F_3.txt @@ -0,0 +1,25 @@ + 6.7037266e-02 + -1.2359856e-01 + -5.2204100e-01 + -6.7189382e-02 + -8.1084487e-02 + 8.9738103e-03 + 4.0371593e-02 + 5.7996060e-03 + 5.4475640e-01 + -7.5621320e-02 + -2.4820724e-02 + 7.6234371e-02 + 2.3958123e-02 + 4.1250893e-02 + -1.6118254e-01 + 9.5644668e-02 + 8.9617782e-02 + 1.9783600e-01 + -4.6304399e-02 + 5.4923422e-02 + 1.3855871e-02 + -1.3017961e-01 + -2.1222192e-01 + -1.8107190e-02 + -2.7122602e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_b2_F_4.txt new file mode 100644 index 00000000..e6cb0f50 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_F_4.txt @@ -0,0 +1,26 @@ + 2.8825276e-02 + 5.0711157e-02 + 2.2534688e-01 + -7.2081919e-03 + -1.7873875e-01 + -1.1160454e-01 + 1.0182246e-02 + -1.5781900e-01 + 3.0818980e-03 + -2.2210132e-02 + -1.4774342e-02 + 1.7249184e-02 + -1.3616702e-01 + 1.5512282e-01 + -1.8621493e-02 + 2.5088297e-02 + -2.7339412e-03 + -1.1287270e-01 + -7.2444099e-02 + 3.0943314e-01 + -2.3123800e-01 + 1.7428438e-02 + 1.4026653e-01 + -2.0655083e-02 + 4.2710153e-01 + 4.5356266e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_b2_F_5.txt new file mode 100644 index 00000000..02998bb3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_F_5.txt @@ -0,0 +1,18 @@ + -1.0201919e-02 + 4.1377587e-03 + 1.5373952e-01 + -2.7122357e-01 + 4.2071666e-01 + -3.3290372e-02 + 1.1204790e-01 + -1.4045733e-01 + -8.7051756e-02 + 1.4693431e-01 + 2.2924032e-01 + 1.2975636e-01 + 1.5116952e-01 + -1.5610940e-01 + 1.4366541e-02 + -1.5881421e-01 + -9.0438721e-02 + -1.2127976e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_b2_G_1.txt new file mode 100644 index 00000000..1c441436 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_G_1.txt @@ -0,0 +1,19 @@ + -1.6871275e-01 + 6.5653948e-01 + 1.0223674e-01 + 4.3790228e-01 + 2.4817565e-03 + 4.3586733e-02 + 1.3469312e-02 + 5.5900455e-01 + 1.9735582e-01 + 1.7060008e-01 + 6.3598203e-01 + -2.0483884e-01 + -4.8574297e-03 + 4.4500414e-02 + -4.2359793e-02 + -1.0394762e-01 + -1.1210925e-01 + -6.8905064e-02 + 4.0022476e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_b2_G_2.txt new file mode 100644 index 00000000..082f76ab --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_G_2.txt @@ -0,0 +1,28 @@ + -2.8319082e-01 + -1.5872623e-02 + -1.4963978e-01 + -6.4879761e-03 + -1.2597175e-02 + -3.2928407e-02 + -5.1063442e-02 + 1.8396494e-01 + -5.4089819e-02 + -1.4075592e-01 + -2.2902753e-03 + 1.4243734e-01 + -9.7117225e-03 + -6.8210330e-02 + 1.1810535e-02 + -2.8760580e-01 + -3.2676866e-02 + -2.5464862e-02 + 3.3158883e-02 + 1.9772579e-01 + 8.9786157e-03 + -4.0734053e-02 + -7.7670117e-02 + 4.8365546e-01 + 1.3811177e-03 + 9.1486579e-02 + 3.7881599e-01 + -2.4261916e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_b2_G_3.txt new file mode 100644 index 00000000..3cc2dfbe --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_G_3.txt @@ -0,0 +1,26 @@ + -2.9951639e-03 + 7.8177373e-02 + 3.6002332e-01 + 4.0756973e-03 + -5.3914051e-03 + 3.3454396e-01 + -2.4817709e-01 + -6.3078544e-03 + 4.1851910e-02 + -1.0034969e-01 + -2.2050980e-01 + 3.1814739e-01 + -1.8915789e-01 + 3.4399996e-01 + -1.7410967e-02 + 7.3826481e-02 + -2.3361641e-01 + 1.6293513e-01 + 7.2824020e-02 + -1.5961887e-02 + -3.8559584e-02 + -1.6130132e-02 + -4.1726681e-01 + -1.5900953e-01 + -4.3000519e-03 + 4.2359395e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_b2_G_4.txt new file mode 100644 index 00000000..06545e15 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_G_4.txt @@ -0,0 +1,26 @@ + -1.7473779e-02 + 2.1196758e-03 + -1.8708625e-02 + 1.5376778e-02 + -9.2012562e-03 + 1.0997150e-02 + 6.8111456e-02 + 1.8034608e-02 + -9.4741117e-03 + 2.4412920e-02 + 7.5707569e-02 + 1.4221168e-01 + -3.1525008e-02 + 5.2085171e-02 + 4.1782756e-02 + -2.9076182e-02 + 2.1171644e-01 + 2.9302460e-01 + 5.5080981e-01 + 2.3718732e-02 + 9.2664820e-03 + -2.8385084e-01 + -1.0162631e-02 + 2.0386647e-02 + -5.6688317e-01 + 2.2489798e-05 diff --git a/argopy/static/assets/canyon-med/poids_phos_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_b2_G_5.txt new file mode 100644 index 00000000..ae4285fc --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b2_G_5.txt @@ -0,0 +1,19 @@ + 1.9061268e-01 + 1.2046854e-01 + -3.5798166e-02 + 4.4679432e-02 + 7.6520495e-02 + -4.4518634e-02 + 6.0553769e-01 + 3.3564792e-03 + -3.1595918e-01 + -2.8824977e-01 + -5.1616465e-02 + -5.4753143e-02 + -1.7791374e-02 + -1.7166362e-01 + 3.6392399e-03 + -1.6782450e-02 + 1.6516635e-02 + 3.2004775e-02 + -1.2036193e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_phos_b3_F_1.txt new file mode 100644 index 00000000..242a58a5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_F_1.txt @@ -0,0 +1 @@ + 2.6259931e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_phos_b3_F_2.txt new file mode 100644 index 00000000..5f9179c4 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_F_2.txt @@ -0,0 +1 @@ + 2.1942963e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_phos_b3_F_3.txt new file mode 100644 index 00000000..d01225a7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_F_3.txt @@ -0,0 +1 @@ + -1.6489803e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_phos_b3_F_4.txt new file mode 100644 index 00000000..772fe953 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_F_4.txt @@ -0,0 +1 @@ + 9.0599621e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_phos_b3_F_5.txt new file mode 100644 index 00000000..7581c4a0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_F_5.txt @@ -0,0 +1 @@ + 2.7437172e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_phos_b3_G_1.txt new file mode 100644 index 00000000..fe19fbd6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_G_1.txt @@ -0,0 +1 @@ + 4.4240000e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_phos_b3_G_2.txt new file mode 100644 index 00000000..aeef8a46 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_G_2.txt @@ -0,0 +1 @@ + -3.0990684e-01 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_phos_b3_G_3.txt new file mode 100644 index 00000000..bd1d4f4e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_G_3.txt @@ -0,0 +1 @@ + -8.9088980e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_phos_b3_G_4.txt new file mode 100644 index 00000000..69236043 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_G_4.txt @@ -0,0 +1 @@ + -4.1412098e-02 diff --git a/argopy/static/assets/canyon-med/poids_phos_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_phos_b3_G_5.txt new file mode 100644 index 00000000..4a4d0a36 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_phos_b3_G_5.txt @@ -0,0 +1 @@ + -1.1148946e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_IW_F_1.txt new file mode 100644 index 00000000..db4accc5 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_F_1.txt @@ -0,0 +1,26 @@ + -5.8607176e-03 -6.5165956e-02 -1.8978490e-03 2.6289784e-01 -2.0516520e-01 -8.7580513e-02 -1.0757909e-01 + -4.8945735e-01 -5.8025353e-01 -1.9356459e-01 -2.3731361e-01 -1.6658141e-01 -4.1032591e-01 -2.3396593e-01 + 8.3366303e-01 1.0803053e-01 2.9830322e-01 -8.0969786e-01 6.3912687e-01 -3.1931466e-01 2.5834799e-01 + -4.5604215e-01 -6.3137417e-01 -1.3759273e-01 1.6168687e+00 -1.0625831e+00 2.5068566e-01 -3.8242049e-01 + 1.3219575e-01 2.3395096e-01 -4.5545861e-02 -7.7942130e-01 6.0108951e-01 -4.6740188e-02 4.5388604e-01 + 9.8591945e-02 -1.1632339e-01 2.1389753e-02 5.4500790e-01 -6.9638161e-01 -3.9532851e-01 -4.3527844e-02 + 2.9718911e-02 1.1551338e-01 2.4153715e-01 -1.0241009e-01 -1.9047767e-01 -1.1544574e-02 1.2945036e-02 + 1.4651607e-02 2.1408777e-03 -3.2971984e-01 1.6234662e-01 6.1740881e-03 -1.4706390e-01 2.5011971e-01 + -5.0504388e-02 3.4206479e-01 3.8675695e-01 -6.0491888e-01 5.5430307e-01 -6.9370160e-02 -1.5563305e-01 + 6.2020421e-02 -2.6912914e-01 9.0319165e-02 -1.3552591e-01 -6.4074065e-02 2.0782605e-01 9.1983298e-02 + -8.8453602e-02 3.3973367e-01 5.5539627e-01 -2.7576264e-03 6.3811308e-02 7.9008508e-01 2.4302106e-01 + 1.6030829e-02 -5.2606474e-01 7.7711506e-01 3.5040075e-01 -6.9542757e-01 -3.6081923e-01 -4.7652001e-01 + -3.8210008e-01 -6.6245872e-01 1.1947567e+00 1.1936770e-01 1.6350252e-01 -3.0073759e-02 1.3953715e-01 + 2.0897977e-01 2.3641324e-01 -9.8369127e-02 1.6857503e-01 1.9723561e-01 3.0540664e-01 -1.0835039e-01 + -3.8596938e-01 9.6021216e-01 -2.0901916e-01 1.4301930e-01 -3.9563250e-01 -1.8748958e-01 9.7310388e-01 + 4.6404004e-02 -7.9728609e-01 3.9632910e-01 -7.5698346e-03 -1.4113514e-01 3.7360879e-01 3.9136629e-02 + -5.2265560e-01 1.0054373e-01 5.2412090e-01 -6.6743936e-02 -7.6133953e-02 -6.5924794e-01 1.4436258e-01 + -8.3595302e-01 6.9388033e-01 -1.5658732e-01 6.3959780e-01 -4.1178269e-01 2.8482018e-01 5.0539743e-01 + 1.2304710e-02 -2.5048628e-01 -9.1111331e-01 1.0317452e-01 1.5481671e-01 -1.1625919e-01 -4.8986898e-03 + -1.4093743e-01 1.0576381e-01 3.0985507e-01 -3.2930672e-01 -4.7955485e-05 3.1972593e-01 7.2898061e-02 + 1.0663725e-01 3.0921378e-01 1.1317146e-01 -8.5414026e-01 5.8700446e-01 -5.3201588e-02 3.1071571e-01 + 3.6966733e-01 -5.5372090e-01 -1.4638008e-01 -9.3308126e-02 -4.7299341e-01 4.4793763e-01 1.6249872e-01 + 2.9254188e-01 1.3236363e-01 -3.6872817e-01 -1.7171191e-01 2.1468988e-01 -9.5989336e-02 6.1224332e-01 + 3.3383879e-01 3.4264898e-01 -7.1815261e-02 1.3064108e-01 6.1227410e-02 1.5268791e-01 -1.6544583e-01 + 5.3075257e-02 3.7536443e-01 2.7139260e-01 1.2639779e-01 -7.2342613e-02 3.6261707e-01 -8.3259075e-02 + -5.4807070e-04 6.6321079e-02 -4.8035615e-01 7.6018286e-01 -6.4313935e-01 -2.3921820e-02 7.6168928e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_IW_F_2.txt new file mode 100644 index 00000000..a58addb0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_F_2.txt @@ -0,0 +1,31 @@ + -9.9906200e-02 -1.7603588e-01 -1.8202990e-01 2.8070887e-01 -4.8534842e-01 9.0248656e-02 -5.4993035e-02 + -5.0997641e-02 1.7944598e-01 -2.0743762e-01 -1.5034146e-01 -1.6457194e-01 -1.4191719e-01 1.2308704e-01 + 3.8275711e-02 -2.7733674e-01 8.6256174e-02 -1.4855276e-01 2.5474006e-01 3.5362208e-02 2.2003962e-01 + 1.8703370e-02 2.4768223e-01 -1.4200907e-01 2.3671929e-01 -3.2757650e-01 8.8719329e-02 -9.5731151e-02 + -2.8619094e-01 -1.7744108e-01 -5.4495902e-03 -5.1468648e-01 -5.8864680e-01 -1.1515221e-02 1.2546737e-01 + -8.8273276e-02 4.7826560e-01 -2.8368352e-01 1.2846555e-01 -1.9217382e-01 5.8379549e-01 -7.2677757e-02 + -2.2094146e-01 -7.9257330e-02 3.6184341e-01 -1.8340655e-01 1.4218765e-01 4.2087322e-02 2.4495948e-01 + 3.4908262e-01 1.6786228e-01 -1.1070593e-01 1.4276198e-01 1.1565458e-01 2.8614981e-01 -1.0704465e-01 + 3.3413943e-03 -7.3580077e-02 -7.5595319e-02 4.2471334e-01 -3.5245731e-01 4.6865488e-01 -4.6792029e-01 + -1.2443172e-01 4.1247643e-01 -1.0529536e-01 -1.8987393e-01 -3.8441472e-01 2.3539482e-01 1.3627644e-01 + -1.1827770e-01 4.5438330e-02 3.9952898e-02 -6.5368658e-03 -6.6351087e-02 -3.1626272e-01 2.9505598e-03 + -2.2110507e-01 4.5904727e-01 2.7179229e-01 3.0445730e-01 -1.0223325e-01 -5.4334122e-01 1.6633319e-01 + -5.7200659e-01 7.9102612e-01 -2.3821963e-01 -8.0937109e-02 3.7799741e-01 -2.1286493e-01 -2.2042550e-01 + -1.0388557e-01 1.2749531e-01 -2.9979779e-01 -8.8411209e-02 -1.8742199e-01 3.0763637e-01 7.9802289e-03 + 5.1174982e-03 -2.3089858e-01 -9.6589381e-01 -3.3186582e-01 -2.9497792e-02 -9.0303437e-01 4.1000033e-01 + -8.1496317e-02 -4.3983709e-01 3.5783883e-01 -1.0377288e-01 -3.1638025e-01 -2.8906986e-01 -6.5476714e-02 + -8.8318960e-02 -1.0510144e-02 -5.7617784e-01 -1.3614505e-02 2.4155019e-01 -5.1803725e-02 -3.5117124e-01 + 2.9135924e-01 1.2899749e-03 -4.5716626e-01 2.3883374e-02 1.2698298e-01 7.8015233e-02 -2.3208376e-01 + 9.5525434e-03 1.8665773e-01 6.2692824e-01 2.4574114e-01 -3.9366329e-01 -2.6957916e-02 1.9154914e-01 + 6.1159227e-02 -1.8882324e-02 2.9576750e-01 5.6780957e-02 1.2020513e-01 -3.1240039e-01 8.3897450e-02 + 3.0184852e-02 -3.2909215e-02 -8.1003435e-03 9.5494566e-02 -2.2224415e-01 6.5310605e-02 -1.6590872e-01 + -2.1409648e-01 -1.8640948e-01 -2.2392254e-01 -9.3612385e-02 1.7001177e-03 2.3888068e-02 -5.9299453e-02 + 5.4224478e-02 7.7808203e-02 -1.7791769e-01 1.3150666e-01 1.0678640e-01 -2.2669972e-01 -2.3355566e-02 + 5.5098547e-02 2.0342772e-02 -2.1813652e-01 5.8588025e-02 1.2387898e-01 -4.0605890e-02 6.4137393e-02 + 6.9163251e-02 7.5370134e-02 1.2449614e-01 5.4769572e-02 1.0457356e-01 8.9163548e-02 1.4644761e-01 + 7.1517918e-02 3.4348164e-02 8.2323588e-02 -6.3486941e-02 2.2828549e-01 1.5295749e-01 1.0873777e-01 + -3.7450522e-01 -2.6502078e-01 -2.0821387e-02 1.2831072e+00 -1.1919613e+00 1.0619984e+00 -2.1189801e-01 + -3.7030722e-01 -4.5486418e-01 8.8042793e-01 -9.3688910e-03 -4.3593896e-01 -3.1335387e-01 -8.2926845e-02 + -7.5582229e-02 6.2595803e-01 -3.2192732e-02 -6.3092391e-01 4.9268218e-01 -1.3321248e-01 5.8696565e-01 + -9.4034221e-02 -2.7825277e-01 -8.0072728e-02 1.0165524e+00 -1.5321741e+00 -1.9942833e-01 3.8331081e-01 + 1.1456851e-01 1.1852709e-01 -7.5674734e-02 1.4367279e-01 -1.3624605e-02 -5.6722202e-02 -9.3268745e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_IW_F_3.txt new file mode 100644 index 00000000..9f3a8bc3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_F_3.txt @@ -0,0 +1,34 @@ + -1.0727155e-01 -7.5935659e-01 6.8853037e-01 1.2586444e-01 -8.8307089e-01 -1.1166895e+00 8.4853914e-01 + -5.5966319e-01 -7.2942546e-02 1.1369662e-01 -6.9652477e-01 -3.7920044e-01 -4.3494202e-01 6.8900693e-01 + 8.1044823e-02 2.6557849e-01 7.7058527e-02 -4.6948473e-01 9.1451566e-01 1.5953200e-01 -2.2969990e-02 + 2.0874173e-01 -2.2633398e-01 2.7663085e-01 -7.4914832e-01 6.6930656e-01 -6.3417298e-02 1.6291771e-01 + 3.6110545e-01 -3.6444864e-01 -2.8372440e-01 -5.1013669e-02 -8.7017418e-01 -2.7070846e-01 3.0330855e-01 + -1.1667029e+00 8.3851626e-01 -1.1285278e+00 2.8133603e-01 -1.7262296e-02 -7.9606750e-02 3.6442726e-01 + -7.0723612e-02 4.7924969e-01 5.8981445e-03 -1.8165861e+00 1.2060863e+00 -7.5786040e-01 3.3587213e-01 + -1.2159815e+00 1.0251814e-01 -7.2285694e-01 1.9052332e+00 -1.2581155e+00 5.1215156e-01 -8.6867437e-01 + 1.2770443e-01 -8.4826731e-01 3.9742049e-01 3.5590270e-01 7.4929505e-01 1.9380606e-02 -6.3924973e-02 + -2.0230581e-01 5.7864213e-02 -1.1066358e-01 9.0240428e-01 -3.8218224e-01 6.4132347e-01 -1.5357708e-01 + -2.8173470e-02 -4.8078428e-02 2.0466872e-02 -4.9865863e-03 4.3360775e-01 4.0908500e-01 6.6338946e-03 + 5.2091315e-01 -2.7683451e-01 2.1519709e-01 1.3292974e-01 -1.2930036e-01 1.6049335e-01 -1.4476449e-02 + -2.0527775e-02 2.1972759e-01 -4.2572273e-01 -2.9746923e-01 1.1157451e-01 -3.8130953e-01 2.7826217e-01 + -2.0349934e-01 3.1343727e-01 8.8014546e-01 6.8795938e-01 9.5508475e-02 1.2558352e-01 -4.9869624e-01 + 2.0260921e-01 5.2599030e-01 -8.0217884e-02 5.3078032e-02 1.4564775e-01 3.9014426e-01 -2.7506612e-02 + -1.1997003e-01 -2.4823416e-01 1.6509116e-01 -6.3422700e-01 -1.5731328e-01 3.9066295e-02 2.1759726e-01 + 4.4378815e-02 3.0180644e-01 -8.4407124e-02 -9.5576398e-02 -3.0322229e-01 -2.3960037e-01 2.4169312e-01 + 1.7114797e-02 -2.6569427e-01 -4.0943725e-03 1.6232596e-01 2.5948707e-02 -1.2666092e-02 -1.1251295e-01 + -1.0799473e-01 1.6131045e-01 3.0769520e-01 1.6465320e-01 -2.6010811e-01 1.6065360e-01 3.5095911e-01 + -1.1160743e-01 3.2607833e-01 -2.3297487e-01 -1.0302561e+00 1.3326496e-01 -7.1574703e-01 5.9180389e-01 + -2.2134526e-01 -3.2826982e-01 -7.9438065e-01 -6.3227293e-01 -1.3322899e-01 -3.6081972e-01 2.3596930e-01 + -1.4902699e-01 -5.3654023e-02 -3.7639441e-02 -3.0804198e-01 1.1349135e-01 -8.8526728e-02 9.7304274e-02 + -1.6608001e-01 -2.2565977e-01 9.8970163e-02 -6.6184605e-02 3.0532381e-01 2.5174339e-01 -2.7703316e-01 + -4.2960465e-01 5.1443681e-02 1.7105364e-01 -6.3775965e-02 1.0282242e-01 -1.4198682e-01 -6.3739285e-01 + -4.5715431e-01 -2.7343777e-01 -3.2942852e-01 -1.2819830e-02 5.3191156e-02 -1.8995710e-01 -1.0524187e+00 + 4.2769176e-01 2.1477382e-01 -2.7900717e-02 -2.7086617e-01 2.0519489e-01 -5.0007069e-02 -1.5977564e-01 + 2.8890933e-02 1.8576951e-01 1.1807777e-01 -1.0492959e-01 -3.4000124e-01 -3.3979098e-01 7.5403807e-02 + 8.9694213e-02 3.7943670e-01 -1.1172746e-01 3.7531651e-01 -8.9697668e-02 3.3331801e-01 -7.2849124e-02 + -1.9837580e-01 -5.0495050e-01 -2.2277449e-01 -3.1639207e-01 -1.3075418e-03 -1.3449547e-01 -3.0954858e-01 + 8.6155638e-02 -1.3255034e-01 -2.0492170e+00 -5.9122964e-01 8.0500948e-02 2.5722729e-01 1.0980270e-02 + -9.7756896e-03 -1.9705676e-01 -3.3540890e-03 1.5639781e+00 -1.1611579e+00 3.9929603e-01 -6.0863211e-01 + -1.9313000e-01 -5.5763482e-01 1.7117823e-01 -4.0774310e-01 -1.2226322e-01 1.3879753e-01 -1.1143956e-02 + -9.3607334e-02 -2.9381432e-01 1.9644016e-01 -2.0001815e-01 -1.3212202e-02 2.3449260e-01 -1.1647114e-01 + -1.3900386e-01 -5.0875766e-01 7.1417689e-02 -9.5692549e-02 1.6722282e-01 4.4220996e-02 -3.3882395e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_IW_F_4.txt new file mode 100644 index 00000000..b2fcfb8a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_F_4.txt @@ -0,0 +1,41 @@ + 3.7222845e-02 2.5345188e-02 -6.4878567e-02 2.9664001e-02 -7.9467999e-02 -9.0790902e-02 4.7671454e-03 + -2.3251715e-01 -2.8988589e-01 3.3698233e-01 -1.9304203e-01 2.9217510e-01 4.8945274e-02 4.9434503e-02 + -6.1770774e-01 2.1894324e-01 -7.2697649e-01 2.1706036e-02 2.6858721e-01 -4.9213257e-03 -1.7341176e-01 + -1.0304923e-01 -1.0024386e-01 9.9272396e-02 -2.0658082e-02 1.5190055e-01 1.2070939e-01 9.6120605e-03 + -3.1802396e-02 -1.5652254e-01 -2.4415323e-01 -3.8411507e-01 -4.3913884e-01 5.9510430e-02 5.5343795e-02 + 8.7656793e-02 7.8892223e-02 2.6226122e-02 -4.1565507e-02 -5.9012026e-02 -3.7110983e-02 5.4007340e-03 + 1.4611981e+00 -6.3345578e-01 -3.7612827e-02 -1.2389362e-01 1.9030590e-01 2.4913716e-01 -7.6671282e-02 + 1.3451895e-01 5.0303888e-02 -1.6466018e-01 1.0825146e-01 -8.4493100e-02 9.5020636e-02 -1.1408111e-01 + -1.8101138e-01 -8.3686644e-02 -1.5977637e-01 -4.7273295e-01 1.1489504e-01 -2.6421978e-01 2.1654549e-01 + 7.0344159e-03 8.9672382e-02 1.0699501e-01 -1.1136684e-01 8.3537982e-02 7.6357573e-02 -3.6972898e-02 + -1.9643143e-01 1.3153288e-01 2.1866262e-01 -2.1357642e-02 -6.8644772e-02 -9.7078620e-02 -9.2195280e-02 + -4.2904561e-02 -1.6454492e-01 -1.1987545e-01 1.5955597e-01 -1.5894241e-01 -5.2424167e-02 3.7384715e-02 + 4.3643376e-02 -1.3708516e-01 -6.1227473e-02 -1.4844832e-02 -4.0707087e-02 -1.4605773e-03 -2.8130038e-02 + 3.4148564e-02 -8.7597593e-02 1.4393030e-01 1.3015508e-01 -6.7504368e-02 -6.8616649e-02 1.8873189e-01 + -1.0001303e-01 -5.2067971e-02 -3.8134314e-01 -3.9928315e-02 1.2819581e-03 1.4971914e-01 -4.9911345e-02 + -1.8960686e-01 7.0581324e-01 8.9774952e-01 2.7012291e-02 -9.1303417e-02 -3.0738149e-01 -1.4034940e-01 + -9.5984333e-02 3.9942572e-02 4.7809164e-01 2.6826290e-01 -1.0769557e-01 5.4687611e-01 -3.9698165e-01 + 1.0576289e-01 -2.6205362e-01 -1.0682154e-01 2.8107819e-01 -2.2134560e-01 -1.2587241e-02 -1.1346660e-01 + 1.7359598e-01 3.7698260e-01 -3.2243663e-02 1.1481867e-01 3.2560460e-02 2.5251164e-01 -2.8460862e-01 + -1.5655856e-01 -5.7358635e-01 8.0824053e-01 -1.1097222e-01 2.3466174e-01 -2.2422832e-01 5.1172702e-02 + 4.8269363e-01 5.0269508e-01 -8.5761801e-01 -9.3353837e-02 9.0201748e-02 2.1359429e-05 2.5346011e-01 + -3.7777212e-01 1.0126198e+00 3.3242964e-02 1.9433087e+00 -8.9223263e-01 7.4941850e-01 -7.6564056e-01 + -1.5066382e-01 1.4037078e-01 -1.0320736e-01 7.8759206e-02 2.0367524e-01 8.3536003e-02 -3.0048512e-01 + 9.9105599e-02 1.8356856e-01 5.7666219e-03 1.4776837e-01 -1.2415479e-01 9.7718360e-02 -1.4749481e-01 + -1.8208733e-01 -2.6225536e-02 -1.3287382e-01 9.3013397e-02 -7.6629523e-02 -7.5167968e-02 1.2908032e-01 + 1.0656978e-01 1.4887806e-01 -7.9487508e-01 -1.1390079e+00 2.4988595e-01 1.5544014e-03 -4.8131934e-03 + 9.4115695e-02 -3.2265399e-02 2.0333971e-01 1.9811579e-02 1.3642673e-01 1.6548915e-02 1.3775713e-01 + 4.1535443e-01 -3.2376940e-01 -3.6717012e-01 -1.3886084e-01 -9.3152495e-02 1.7571600e-01 4.0886569e-01 + -8.3441671e-02 -7.0376954e-02 -7.7094244e-02 -1.2164173e-01 5.1657849e-02 2.1328655e-02 8.4619713e-04 + -2.6734225e-01 -2.5738034e-01 -1.7793188e-01 -4.7946024e-01 9.3903889e-02 -3.1471125e-01 2.7238795e-01 + 1.7890233e-01 6.6992862e-01 7.8208263e-02 -3.8996106e-01 2.3123153e-01 1.2950690e-01 1.7087103e-01 + 1.5093725e-01 8.6210989e-02 -2.3695135e-01 3.1025886e-02 3.9360412e-02 9.8672620e-02 -1.2397931e-01 + 4.0556853e-02 2.3353440e-01 -2.9386952e-05 7.6203253e-03 -5.3105220e-02 -1.0314135e-01 2.6782562e-02 + 4.5807440e-06 -3.4792278e-01 -7.4613155e-02 -3.3919722e-02 -3.3373040e-01 -4.5658471e-01 1.9747177e-02 + -4.6240766e-02 -1.8169223e-01 3.9287512e-01 8.5205237e-01 -1.0818376e-01 1.7161717e-01 -3.0614281e-01 + -9.0169969e-03 -2.2433786e-01 -2.3375569e-02 -6.1463629e-02 1.9359706e-01 -3.0879278e-02 1.8771290e-01 + -1.4754718e-01 -5.5675566e-01 -2.5982060e-02 -2.2923722e-01 6.5628611e-02 -3.4230173e-01 2.1380803e-01 + -1.7076033e-01 5.4057567e-02 -7.4070848e-01 6.0337758e-02 -2.3275067e-01 -9.6321397e-02 5.9993768e-02 + 3.4586084e-02 1.0094679e-01 5.0660677e-01 7.4864186e-02 3.2222443e-02 3.4126092e-02 4.8654264e-02 + 1.6284349e-02 1.0226169e-01 2.4605725e-01 -4.0233467e-02 1.6250310e-02 -8.3000619e-02 8.9892064e-02 + 8.8641524e-02 -1.9058665e-01 -3.2444437e-02 1.4593240e-01 -9.2076491e-02 1.1045777e-02 -1.6952652e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_IW_F_5.txt new file mode 100644 index 00000000..40977bc6 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_F_5.txt @@ -0,0 +1,42 @@ + -2.6416320e-02 -3.5963179e-02 -5.5258698e-02 6.6326302e-02 -1.6435242e-01 -1.6645155e-01 1.1888890e-01 + 4.5376251e-01 2.0325628e-01 -1.4238075e-01 3.6950526e-01 8.5235911e-02 5.2444286e-01 -2.9020631e-01 + 8.4366884e-03 8.7866093e-03 2.8708628e-01 6.7447463e-02 -2.1582559e-02 7.5562493e-02 2.0319771e-01 + 1.0464095e-01 7.3092363e-02 4.9038185e-02 7.7926066e-02 3.8580763e-02 -1.8553583e-01 1.4070885e-01 + 1.6818788e-02 -3.2372415e-01 2.9374522e-02 -7.8666624e-03 1.3043543e-01 2.1135245e-01 -8.4094691e-02 + 1.8505259e-01 -3.9532749e-01 4.8452244e-02 -2.0128431e-01 -7.2994699e-02 -1.3689038e-01 2.5928243e-01 + -7.6097630e-02 -1.3495779e-01 3.4507175e-01 -1.9916908e-01 3.6165988e-01 -3.6296926e-01 1.9018996e-01 + 1.4341547e+00 -7.0670194e-01 6.8939402e-02 3.4264782e-02 7.5430582e-01 -6.4335448e-01 -3.8510675e-01 + -3.2640636e-01 -3.2325460e-01 1.5103635e-01 4.9691229e-01 -6.7780687e-01 9.2608394e-02 2.8281631e-02 + 1.8319234e-01 -1.7679789e-01 7.2983280e-02 5.0092580e-02 1.4938044e-01 -1.7236869e-02 -1.0847056e-01 + -2.2196854e-02 -9.2729227e-02 1.5887107e-01 1.0307008e-01 -2.2338362e-01 -2.5059513e-02 7.3858776e-02 + 9.5987815e-03 1.3172976e-01 -8.8184434e-02 1.9219553e-01 2.8214968e-01 -1.5346835e-01 -4.3788832e-01 + 3.6279565e-02 5.5292219e-01 5.1004105e-02 2.7255203e-02 -1.7775662e-01 -2.3060131e-01 -5.0236883e-02 + 1.0542460e-01 2.3867881e-01 4.7644686e-02 3.0942536e-01 2.9698101e-01 -5.4119285e-04 -2.8168909e-01 + -6.0617924e-01 -2.5789787e-01 1.0882957e-01 -3.7697306e-01 -1.1139110e-01 -4.3973154e-01 1.5560021e-01 + 2.0312585e-01 2.6317392e-01 -1.5157872e-01 -3.7452485e-01 6.4944672e-01 -3.0335760e-02 8.0364575e-02 + -1.2725742e-01 -4.0493395e-01 2.1936890e-01 -8.4800109e-02 3.8643645e-02 -1.3802155e-01 2.9466157e-01 + -8.5296233e-01 -1.0272228e+00 5.0856602e-02 7.5226116e-01 -5.9941257e-01 6.4722286e-01 -6.2939311e-01 + 1.9227454e-01 -1.6461609e-01 1.3946247e-01 8.4399893e-03 -2.4643077e-02 1.3072260e-02 -7.5395642e-02 + 1.0766612e-01 -4.2631859e-02 8.4371215e-02 -1.9776817e-03 -1.4917317e-01 7.3214918e-02 -6.0670589e-02 + -1.0401384e-01 -2.0135615e-01 9.2327203e-02 -9.4917988e-02 -1.0026309e-01 3.2009598e-01 -9.9844187e-02 + -1.8858467e-02 -2.1009893e-01 3.6388729e-01 -1.4514928e-02 -2.1117812e-01 -4.8367837e-02 -5.3784601e-02 + -7.1230427e-02 -6.3102640e-01 -7.2038235e-03 4.6471070e-01 -4.6085380e-01 1.6882553e-01 -4.2193572e-01 + -2.7760150e-01 -2.5079656e-01 -2.3565655e-01 -1.0037989e-01 3.0284981e-02 2.0599353e-02 1.1586267e-01 + -3.1711819e-01 1.7922029e-02 -7.9238490e-02 -2.0089749e-01 -1.5290691e-02 -8.6111432e-02 1.5802930e-01 + -1.9027036e-01 -9.7609616e-02 -4.8037509e-01 5.2053341e-01 -7.7060421e-01 5.4657638e-01 1.3496144e-01 + 3.7512036e-01 1.6713690e-01 -2.1339189e-01 -4.2627163e-01 5.7707726e-01 -4.2883111e-01 2.0570763e-01 + -6.8460310e-05 -2.7651340e-01 1.2779389e-02 -3.1304754e-02 9.8009388e-02 4.9711448e-02 -4.7353297e-02 + 1.5210027e-02 -3.7151500e-02 -2.2870304e-02 -1.3492856e-01 2.2309009e-01 -6.8166188e-02 5.5025073e-02 + 3.2707149e-01 2.0814531e-01 1.1674797e-01 1.3756668e-01 2.0555788e-02 -3.1721468e-02 -6.1782843e-02 + 1.2378557e-01 -2.3877239e-01 7.2598924e-02 1.4509437e-01 -2.7488019e-01 3.1030114e-02 1.2216372e-03 + -1.7509708e-01 2.2472365e-01 -1.0930025e-01 -3.5274185e-03 4.7343847e-03 -8.0479466e-02 -1.8689392e-01 + 3.2873666e-01 -8.6297791e-02 -6.5851179e-02 1.5659160e-01 7.2667383e-03 1.3941635e-02 -2.4630579e-01 + -1.4153820e-02 6.4277462e-02 -1.2422950e-01 7.7817627e-03 2.8051829e-01 -1.6923730e-01 -1.3011417e-01 + 1.0222049e-01 -7.9005089e-03 4.4081783e-02 1.6815162e-01 -6.5357252e-02 1.8458901e-01 -5.1098016e-02 + 8.1132401e-02 5.6032808e-02 1.7560483e-01 1.4552814e-01 -1.6625386e-01 2.5268608e-01 -4.7794001e-01 + -3.5434830e-02 3.6057138e-01 -7.5357609e-02 3.5177384e-02 -9.5569299e-02 -1.1073455e-01 1.1284819e-02 + -1.2874153e-01 1.2183542e-01 9.8846860e-02 4.2021372e-01 -5.0291472e-01 3.5799547e-01 1.6045574e-01 + -6.2642539e-02 1.0304970e-01 -1.9261252e-01 -1.4335225e-01 2.4768662e-01 -9.7461407e-03 -4.3948882e-02 + 2.3257298e-01 9.1022666e-02 1.7872995e-01 1.9207395e-01 -1.1233254e-01 -4.8647500e-02 -8.4410918e-02 + -7.6864729e-04 1.5729127e-01 -5.1990000e-02 7.3811790e-02 9.1706090e-02 -3.0284718e-01 8.3613881e-02 + 1.0988641e-01 -1.4410048e-01 -6.8946279e-02 1.4996610e-01 -2.1369370e-01 7.6441180e-02 -3.0409323e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_IW_G_1.txt new file mode 100644 index 00000000..0eb95189 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_G_1.txt @@ -0,0 +1,28 @@ + 1.0400465e-01 1.2221759e-01 -6.1924302e-01 -6.5859788e-01 3.9985711e-01 -2.5028277e-01 5.3945608e-01 + 1.0733021e+00 -5.3660555e-01 -1.0823497e-01 -3.9173593e-01 1.1142395e-01 -3.0674544e-01 -3.0120419e-02 + 8.2061224e-01 -9.6430572e-01 5.5962692e-01 -9.3707276e-01 -1.8704581e+00 -6.7835585e-02 2.0577154e-01 + -4.9897684e-01 1.6033621e-01 -1.3383634e-01 5.2708671e-02 -2.0003253e-01 4.3827839e-01 -5.9569433e-01 + -5.9176246e-01 1.3742100e-01 8.5304583e-02 1.4537652e+00 -1.1099858e+00 1.0572208e+00 2.5031973e-01 + 4.3868670e-02 4.6197087e-02 -6.3083567e-02 6.4063949e-02 -1.7121388e-01 -5.6261768e-02 8.5748027e-02 + -2.9714674e-03 1.3953663e-01 -1.5194759e-01 -7.7597459e-01 2.7123587e-01 5.0626352e-01 3.5196247e-01 + 3.7003406e-02 7.4831780e-02 -7.4286848e-02 9.0421535e-03 -1.7714253e-01 9.3323800e-03 6.6439796e-02 + -2.2646529e-02 4.2364325e-02 1.3616423e-01 5.6118543e-01 9.6678776e-02 -4.3711979e-01 3.8584978e-02 + -1.7652636e-02 4.8703931e-02 -1.6273684e-01 6.3035161e-02 4.4633892e-03 8.8867958e-02 6.1858471e-02 + -3.8461209e-02 5.1279797e-03 2.4646250e-02 3.1960491e-01 -3.4258009e-01 -8.9046734e-02 -1.8347072e-01 + -7.1626329e-02 6.0318175e-01 -5.5547848e-01 -8.0517316e-01 7.7892126e-01 1.2864959e+00 -7.0352621e-01 + 8.8100710e-02 -4.7441798e-01 -4.2648352e-01 2.9762027e-01 5.9381321e-02 3.4896249e-01 -3.3145404e-01 + -2.2475682e-02 3.8427166e-02 1.8801040e-02 1.0675562e-02 4.2571438e-03 3.3166094e-02 -1.9594096e-02 + 2.7247744e-02 4.3371361e-02 -3.7707597e-02 3.7822417e-02 2.5533741e-02 1.8129296e-02 7.7620852e-02 + 4.5844166e-03 7.3303720e-02 9.3583228e-03 8.8616556e-02 -3.2892919e-02 -4.2481506e-02 6.7940614e-02 + 1.7422697e-01 -2.4265871e-01 5.2222335e-01 -8.7920060e-01 1.1742012e+00 -8.8854337e-02 -3.2217429e-02 + 1.0959268e-01 1.1762694e-02 3.8830933e-02 -1.5891074e-01 8.4113893e-02 1.9189781e-01 6.0065327e-02 + -4.7328613e-02 -4.3469822e-02 -7.9894134e-03 6.0564925e-02 -3.2604659e-02 -1.4777544e-02 -7.5345217e-02 + -1.8522466e-01 -1.2027669e+00 -1.5294803e-01 7.5543058e-01 -7.6808521e-01 1.8044476e-01 4.9749792e-01 + 2.2328618e-01 6.8991472e-01 3.7874267e-01 7.1753080e-02 -4.0177231e-01 3.7083461e-02 2.1832806e-01 + -6.5548909e-02 1.5138363e-04 -5.1722105e-02 -6.4180428e-02 -4.0732366e-01 1.3652310e-01 2.7583227e-01 + -2.1219940e-01 9.1231260e-02 -2.8410144e-01 5.9848876e-01 -6.9208608e-01 3.4786700e-01 -2.3980954e-01 + 1.7502946e-01 2.7944355e-01 1.9691967e+00 7.3008398e-04 6.2655852e-02 5.2639202e-01 -2.8448735e-01 + -1.2049334e-01 1.3310724e-02 -4.7169380e-03 7.8326304e-01 -6.5096560e-01 1.8470600e-01 -2.6571169e-01 + -1.4886483e+00 -1.4739448e+00 4.3913441e-01 -1.1766563e-02 -7.4715542e-01 -1.5109251e+00 5.5114808e-01 + 1.0915633e-02 -2.3341118e-02 -1.1586093e-01 8.5236483e-02 -1.2602640e-01 7.6012735e-02 1.1259159e-02 + 1.8281603e-01 2.5391263e-03 1.0594061e-01 -2.2662199e-01 4.0415825e-01 -1.5082585e-01 1.9257164e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_IW_G_2.txt new file mode 100644 index 00000000..7757aa27 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_G_2.txt @@ -0,0 +1,34 @@ + 2.3657846e-01 6.2446685e-02 2.6443455e-01 -3.0335481e-01 6.0573047e-01 -7.5261895e-02 9.4691485e-02 + -3.1696540e-01 -8.7456482e-02 1.7797266e-01 -2.9545912e-01 -5.1800759e-02 -2.8039091e-03 4.0705064e-02 + 3.3328977e-02 -9.9369291e-02 -8.7023800e-02 -9.5751435e-02 -1.1013312e-01 4.8182164e-02 -1.4419972e-02 + -4.2348527e-01 3.5227629e-01 -1.5602221e-01 2.8353873e-02 -4.5496260e-01 -2.8139579e-01 1.1584350e-01 + -2.7856918e-01 -1.9499448e-01 2.0775414e-02 -5.4324471e-02 -9.2954445e-02 -7.3567183e-02 -3.6274955e-02 + -2.1596817e-02 -2.0117873e-02 -4.7286877e-02 4.2557937e-02 -9.5504123e-02 -2.9249277e-02 4.2527583e-02 + -4.4383612e-02 3.3432301e-01 7.4847128e-02 1.2480058e-01 1.5115280e-01 1.5740352e-02 -1.4389866e-01 + 4.4247304e-01 1.1041172e-01 1.0788619e-01 1.2159764e-01 1.6780290e-01 2.2894650e-01 -9.1133666e-02 + 1.3700868e-01 9.1869049e-02 -1.3389380e-01 3.6469329e-02 4.1728552e-03 6.8596053e-03 5.6672689e-02 + -3.1569671e-01 3.5234800e-01 -1.0668052e-03 -4.2810248e-01 -1.1539288e-01 -2.0453286e-01 5.3356414e-01 + 8.1643567e-02 1.1770703e-01 -1.4744728e-02 1.5339351e-02 -2.5879097e-01 3.7655037e-01 1.5038120e-01 + 7.4078371e-02 4.6560241e-01 1.3364873e+00 -7.7214060e-02 -9.9387127e-01 6.9592972e-03 3.5659819e-01 + -1.1014026e+00 -5.7795268e-01 -2.5026214e-01 7.8393966e-01 -2.9653349e-01 -2.5852191e-01 -2.4857006e-01 + -1.5535249e-02 -3.1531806e-01 4.8998245e-01 -4.8738741e-01 1.0005114e-01 1.7883152e-01 8.6447893e-02 + 1.5622538e-02 2.2803041e-01 -2.5294200e-01 3.7033066e-01 -2.1009698e-01 9.7789953e-01 -6.5473041e-02 + 9.1157837e-01 8.1282585e-01 2.5887750e-01 -1.3843043e+00 1.3433185e+00 1.0801531e+00 6.3444994e-01 + 3.6144783e-01 4.8940485e-02 -2.4400400e-02 1.5469090e-02 7.5994788e-02 1.8296813e-01 7.7038983e-02 + 5.3545750e-01 -7.2670027e-02 4.7121858e-01 -9.2751529e-01 1.2750300e+00 -6.5750889e-02 6.9802878e-02 + 2.2091018e-01 -1.6370618e-01 1.9920098e-02 -1.4452914e-04 -2.6292763e-02 9.2220679e-02 3.3794931e-02 + -3.0105578e-01 3.7938712e-02 1.4598314e-01 1.3488022e-01 6.3114666e-02 7.3364773e-02 7.8542800e-02 + 2.9161281e-02 -3.5367930e-01 -3.7475851e-02 -4.1019817e-02 -1.8231918e-01 3.0717225e-02 -7.6378568e-03 + -2.5799714e-02 2.4600096e-02 4.9384656e-02 -7.4701135e-03 2.8106167e-02 5.6579457e-02 -1.1671254e-02 + -2.4800187e-01 -1.6662572e-01 -5.8874948e-02 -5.6278690e-02 -5.0525685e-02 -2.2191400e-01 -1.1066294e-01 + 2.8458276e-02 -2.1667591e-01 1.4675515e-02 -4.5054012e-02 2.4998075e-03 -8.5015913e-02 -3.2329242e-02 + 8.7688952e-02 -3.5112061e-01 2.4922371e-01 7.7621882e-03 -1.4447230e-01 1.8290581e-01 -1.7482148e-01 + -4.9522696e-01 -3.9374370e-01 -1.1289115e-01 -5.3742955e-02 1.1547625e-01 -2.3711547e-01 -3.9990544e-01 + -2.1986711e-01 -1.2291445e-01 4.9944287e-01 -3.0454762e-01 -6.6837071e-02 1.1218702e-01 -4.9759250e-02 + 1.4941403e-01 -7.5832704e-01 1.7160651e-01 -1.9113633e-01 -3.3809702e-01 -4.5830699e-01 4.2432789e-01 + 1.3701082e-01 2.1561012e-01 1.3959534e-01 6.3448768e-02 1.3891788e-01 1.5224295e-01 -8.2133909e-02 + 3.2966570e-01 -2.8086173e-02 -8.7833878e-02 5.1099099e-03 7.7971992e-02 5.0997647e-02 -2.0252410e-02 + 2.8832080e-01 -1.4298046e-01 2.4098168e+00 4.7065734e-01 -1.3474760e-01 -6.1373441e-01 -1.3648303e-01 + 7.4997679e-01 -2.7347986e-01 9.8276105e-01 -9.8075485e-01 5.0576712e-01 4.7414644e-01 1.9103880e-01 + 4.8674782e-01 1.1367778e-02 -4.5344306e-01 -1.5469976e+00 9.7095166e-01 -6.4677197e-01 1.1143589e+00 + -1.0579943e-02 -1.5432971e-01 -1.3560521e-01 -8.1040518e-02 -9.1583084e-02 -1.0832977e-01 -2.3562980e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_IW_G_3.txt new file mode 100644 index 00000000..4367cc3e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_G_3.txt @@ -0,0 +1,35 @@ + -4.6031693e-02 2.1565473e-01 2.1378404e-02 3.8068597e-02 -4.1591805e-02 -3.5096322e-01 -2.4425743e-01 + 1.5884295e-02 -1.1011779e-01 2.5304082e-01 -7.1907761e-02 1.4066413e-01 2.8518625e-01 -3.5846038e-02 + 8.0440774e-02 1.1283120e-01 2.7981367e-02 -2.6051102e-01 3.0142097e-01 1.1495775e-01 -2.3139299e-02 + 5.6745896e-02 1.3000361e-01 2.5541421e-01 -2.1083247e-01 1.9612577e-01 1.9676900e-01 -1.2992145e-04 + -5.1274627e-04 -4.3179997e-02 9.5812924e-02 -7.3579091e-02 1.0222518e-01 -3.2633146e-01 6.0651018e-02 + 1.8496961e-01 -1.1618990e-01 3.5919443e-01 -2.1285471e-03 2.3095773e-01 9.3580738e-02 7.6614789e-02 + 5.6531890e-01 -8.1242747e-01 4.8482203e-01 -1.9278992e-02 -1.7883154e-01 -1.4639109e-02 -1.4719177e-02 + -5.5920598e-02 -2.4946838e-01 2.4849124e-01 6.5874185e-01 -3.5554730e-01 5.3343327e-01 -3.4360601e-01 + 3.2905020e-02 -9.2632317e-02 5.0720734e-01 -2.0557494e-01 -2.3896590e-02 1.0035563e-02 -1.1147919e-01 + -2.2766322e-01 3.4361222e-01 -1.5505202e-02 1.1159587e-01 1.2906847e-01 -4.8636610e-02 -1.6240742e-01 + -8.1433018e-01 2.8983233e-01 -2.2896528e-01 6.0910698e-02 -3.1515859e-01 6.2695613e-01 -2.7942427e-01 + 3.1723462e-02 3.7525627e-03 -8.4128848e-02 -1.1850127e-01 4.2960453e-02 2.4548762e-01 6.5419124e-03 + -3.3987824e-01 4.0543714e-01 3.8609980e-01 -1.6316314e-01 -7.2082297e-02 -1.2318291e-01 -1.9545433e-02 + 2.2365767e-01 -2.2507837e-01 -1.2061075e+00 -5.5395379e-01 2.4522502e-01 -2.1837564e-01 1.9376535e-01 + 1.5803404e-01 6.0870928e-01 2.2008857e-01 4.7466132e-01 8.2393898e-01 2.4592642e-01 4.0060006e-01 + -1.3061994e-01 -3.3760001e-01 -4.5779677e-02 -4.3382433e-02 -7.2486171e-02 2.3647687e-01 -9.5933640e-02 + 6.4551262e-02 -4.9817511e-02 -1.8721981e-01 2.8323151e-01 -1.8310057e-01 -8.2752794e-02 -1.1920251e-01 + 1.0245008e-01 7.4687367e-02 5.8942576e-02 -4.6494795e-01 4.6821815e-01 -6.5448188e-01 1.4148152e-01 + 4.5032793e-02 -1.1102302e-01 3.3192059e-01 4.1595537e-01 1.0453693e-01 -3.0217151e-01 -4.5971832e-02 + -1.1805127e-01 -4.4488162e-01 3.3557029e-01 -1.4922404e-01 2.9043628e-01 -2.1531480e-01 3.0274709e-01 + -1.4147899e-01 -4.6164125e-01 4.8497780e-01 -1.9607982e-01 7.9139417e-02 -1.3626218e-01 -2.2799726e-02 + -2.8997967e-01 -7.2130204e-01 -1.6210099e-01 -4.4925639e-02 3.2648361e-01 -3.8746529e-02 1.2695196e-01 + 4.7337249e-01 -3.4758630e-01 -5.1721776e-01 1.1475005e-01 2.7880433e-01 1.5440056e-02 -1.3506058e-01 + -7.7153535e-03 -1.2389413e-01 1.3906797e-01 -2.4905985e-01 1.0201352e-01 -6.1353421e-02 1.2787420e-01 + -7.5400266e-02 4.4733754e-02 9.4570266e-02 -5.1547386e-01 3.5095653e-01 -1.2309470e-01 3.0470772e-01 + -2.4029354e-01 1.0537351e-01 -1.1060575e-01 1.7126879e-01 4.4641037e-01 -2.2970067e-01 -1.9248710e-01 + -2.5748722e-01 2.0614705e-01 1.7608803e-02 -3.2042147e-01 1.1413713e-01 6.9162560e-02 2.4950301e-01 + -3.3340470e-01 1.3857154e-01 -1.8067260e-01 -7.0697213e-02 -1.2820226e-01 1.0445674e-02 -1.2637686e-01 + -1.1692469e-01 1.1439317e-01 6.4276304e-02 -1.6761768e-01 1.7073514e-01 -6.9501787e-03 -4.0657583e-03 + 2.7330723e-01 4.6345520e-01 1.8574324e-01 -2.1330381e-01 -1.4153789e-01 -8.3488742e-02 2.0279787e-01 + 1.8037437e-01 1.1722138e-01 -1.3640708e-01 3.5638601e-01 -3.9713779e-01 1.7935143e-01 -6.5032619e-02 + 1.1487454e-01 8.4287512e-03 4.2524520e-02 4.6718380e-01 -3.0430126e-01 -8.8796350e-02 9.5406955e-02 + 4.3153355e-01 -1.8764255e-01 2.5291659e-01 -3.8613967e-01 5.7532627e-02 -1.3109980e-01 -1.1116875e-01 + -8.9728555e-02 -2.7885358e-02 -8.4907026e-02 -2.4022298e-01 -1.8232678e-03 8.1697409e-02 2.4865769e-01 + -1.1575311e-01 1.7528707e-01 1.8078116e-02 -4.4794906e-03 -1.4970604e-01 1.0658148e-01 -2.4487858e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_IW_G_4.txt new file mode 100644 index 00000000..33b3ef28 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_G_4.txt @@ -0,0 +1,40 @@ + 2.6415928e-02 -3.3454428e-02 4.3731515e-02 1.3799258e-01 -3.4249509e-01 -2.1060664e-01 -7.5477185e-02 + 3.3886336e-01 5.7957267e-01 4.5096103e-01 3.1889713e-01 -2.6365888e-02 2.9008889e-01 -8.4588873e-02 + -2.9078432e-01 7.1953088e-01 -3.8396698e-01 4.3456101e-02 1.8386560e-01 -3.8597619e-01 -4.0840471e-02 + -5.4808619e-02 2.5161781e-01 -4.6453107e-01 3.0607774e-01 -3.8953198e-01 2.2346830e-01 -1.7397239e-02 + -1.5258731e-01 3.1452310e-01 6.7874158e-01 1.2047323e-03 2.6317132e-01 1.8736866e-01 -3.2977568e-01 + -1.2574938e-01 2.2795183e-01 1.0060930e-01 -7.5127092e-01 4.3297025e-01 -2.4782137e-01 2.0420919e-01 + -1.5491473e-01 -4.7611278e-01 2.1580769e-01 -1.6479413e-01 3.3788723e-01 -2.3432204e-01 4.5729083e-02 + -4.4515157e-03 7.9679526e-01 3.4401519e-01 4.4372161e-01 2.3506799e-01 -4.3079433e-02 -2.1848002e-01 + -6.6825802e-01 1.5890938e-02 3.3756113e-01 2.7162160e-01 -7.0140154e-01 -1.1370652e-01 -3.5570945e-02 + 2.5851435e-01 -2.1014648e-01 3.3022723e-01 -2.7874391e-01 1.5508886e-01 -5.6212064e-03 2.9555690e-02 + -4.3469258e-01 2.6665131e-01 -9.7508060e-02 -6.8938540e-01 1.6694423e-01 -1.5047734e-01 4.8554399e-01 + -9.7920088e-02 2.5376987e-01 1.1070907e-01 -4.0732457e-01 3.9062982e-01 -6.1095824e-02 1.7504858e-01 + -1.8883139e-01 2.0869090e-01 -1.3917730e-01 -3.3494449e-02 1.2316600e-01 2.9026601e-01 -9.9220404e-02 + -3.0358942e-01 1.6342904e-01 -2.8178620e-01 2.2368730e-01 -3.2469485e-01 2.7096285e-01 -4.8964208e-02 + 2.8827911e-01 1.0814554e-01 -3.0169867e-01 -9.6643572e-03 -1.7632152e-02 1.2587513e-02 -2.0397819e-01 + -2.6279899e-01 1.0655583e-01 9.7663625e-02 6.7511014e-02 -2.3593348e-02 1.5370906e-01 -3.4037748e-02 + 3.0728447e-01 -5.2859042e-01 -4.4684599e-02 -1.0896702e-01 1.0377013e-01 3.4047806e-01 -2.4456770e-02 + 3.0993198e-01 1.2244418e-01 2.3266539e-01 -7.3742273e-01 6.0910356e-01 -5.6132307e-02 7.8847605e-02 + -2.8808783e-01 -9.2803376e-02 1.3787020e-01 1.9831517e-01 -3.3209833e-03 -8.8654287e-03 -3.4764801e-02 + 3.6625536e-01 4.4428037e-02 2.5063762e-01 -1.0883356e-01 6.1266008e-01 -3.3424488e-01 2.1289863e-02 + 1.5982434e-01 -3.8319033e-01 -1.3928618e-01 3.2788554e-01 -4.9086121e-01 3.1675492e-01 5.6741275e-02 + 2.1641592e-01 2.6927782e-01 -5.4616018e-02 6.0736831e-01 -5.5005035e-01 5.2380729e-01 -1.7731386e-02 + 4.1591095e-02 2.8406235e-02 -3.5610990e-02 -2.7217947e-02 -5.3804928e-02 7.4351090e-02 -1.6252865e-02 + -1.3022321e-01 5.2702156e-02 -2.5304902e-01 7.4415058e-02 1.5353450e-01 5.9953144e-02 -1.6225622e-01 + -2.8049005e-02 -3.9903557e-01 7.5236744e-02 -2.5882565e-01 -3.2168456e-02 -1.6564338e-01 3.0446443e-01 + 1.4123512e-01 2.0797487e-01 5.0743742e-03 -2.5132913e-01 6.1730969e-01 2.0100719e-01 7.9598283e-02 + -8.9278488e-02 -6.8104370e-02 3.5506885e-01 2.8458336e-01 2.4726470e-01 1.0617981e-01 6.7441859e-02 + -2.6683419e-01 -2.5040931e-01 3.5430198e-01 -2.8682302e-02 2.7476286e-01 8.2160789e-02 6.1747776e-03 + 3.4310582e-01 4.4962716e-01 1.1290199e+00 -1.0462079e-01 1.0091682e-01 3.8660235e-01 -2.0306121e-01 + -7.2204793e-01 -2.8566569e-01 1.9247895e-01 3.5827507e-01 -6.6383202e-01 -2.7456656e-01 -2.9380806e-01 + -7.3493559e-01 3.2274087e-01 -3.3231835e-01 8.3129666e-01 6.1004601e-01 -7.5758437e-01 -4.7201952e-02 + 2.2784519e-01 -2.7901025e-01 -4.6272785e-01 -5.1140624e-01 -2.5047153e-01 3.1724207e-01 -8.4793114e-02 + -8.6654983e-02 -3.6436312e-01 6.0328065e-02 9.3799392e-01 -6.4933679e-01 3.5662117e-01 -1.7570063e-01 + -5.4033608e-01 1.3935723e-01 -8.5508815e-02 -2.8260881e-01 -1.2256505e-01 -9.4845342e-02 3.1289873e-01 + 3.7920603e-01 3.3664052e-01 -1.8926589e-01 2.7934517e-01 -1.8440413e-01 2.0546660e-01 -5.0180141e-02 + -1.7818876e-02 -2.2048779e-01 9.7951828e-02 -2.7271673e-01 5.8322869e-02 -8.0426958e-01 2.7862490e-02 + -4.3444057e-02 -3.2874170e-01 8.2616379e-02 1.1218713e-01 2.1500165e-01 1.8014948e-02 -6.4556095e-02 + -5.0326202e-01 -3.2424688e-01 -2.6074716e-02 3.6355109e-01 -8.8406251e-01 3.3375124e-01 -2.1643183e-01 + -2.9403443e-01 -1.8838874e-01 2.1789720e-01 -3.7904650e-01 1.8458460e-01 -2.4550992e-01 1.8254116e-02 + 3.4623279e-01 2.9662457e-01 -1.7305897e-01 -1.3455996e-01 2.2929794e-01 1.1220566e-02 1.9924308e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_IW_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_IW_G_5.txt new file mode 100644 index 00000000..ff872c4a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_IW_G_5.txt @@ -0,0 +1,46 @@ + 1.0795163e+00 -9.8712117e-01 -4.3126476e-01 -1.3329669e+00 1.7150263e+00 -9.3977052e-01 1.0647874e+00 + 7.3377218e-02 1.4348162e-02 1.7315208e-02 1.1052847e-02 -6.4819729e-03 2.6087533e-01 -2.5876886e-02 + 1.2451009e-01 -9.0695466e-03 -3.8492004e-02 -2.5371071e-01 -2.7073396e-01 -4.8301926e-02 1.4316604e-01 + 2.1460424e-01 -9.2648702e-02 1.1458419e+00 2.4345594e-01 -2.7656002e-01 -2.9797381e-01 3.5037781e-01 + -4.9810656e-01 1.8986957e-01 2.2439536e-02 5.9796593e-02 -1.2914066e-01 -7.7368981e-02 4.1948577e-02 + 3.1673959e-02 -1.2048458e-01 -7.6016825e-02 -1.8639698e-01 5.7461182e-02 4.0819651e-02 -1.2386145e-02 + 6.5791124e-01 -2.5010926e-01 -1.1185425e+00 -1.1793935e+00 1.7674553e+00 3.6133712e-02 -2.2284627e-02 + -3.4085959e-01 1.6804558e-01 -4.3870213e-02 -1.7426714e-01 6.6609336e-03 3.1099676e-02 -1.6464433e-02 + 5.3986328e-02 3.5040338e-01 3.0422730e-01 -7.7105998e-01 6.4976998e-01 -2.7310965e-01 3.9567054e-01 + 2.1235134e-01 7.9447270e-02 2.0368336e-01 2.7859243e-01 -3.3117292e-02 6.1585575e-02 -4.8477675e-03 + 3.5767639e-02 -1.3863603e-02 1.3305725e-01 1.1724777e-01 -5.2344232e-02 -1.1746589e-01 -1.3663633e-02 + -2.1438365e-01 -1.7886564e-02 -7.3917392e-01 -2.1089740e-01 -3.5500517e-02 -4.1147589e-03 3.2229762e-01 + -7.7714772e-02 1.6150280e-02 -5.9874055e-02 -1.8659296e-01 -1.3801753e-01 -2.5620679e-01 1.0978396e-01 + 3.3452419e-01 -2.0516101e-01 8.3473721e-04 7.7553982e-02 2.7413467e-02 4.3498587e-02 -4.2168600e-02 + -6.7836697e-02 -3.8178708e-02 3.2006583e-02 4.8551937e-02 -8.1398955e-02 -6.9109966e-02 2.9847417e-02 + -4.8534623e-02 -4.7649612e-02 1.7607069e-01 1.1517480e-01 6.8096577e-02 7.6790613e-02 -1.2683144e-01 + 6.6216837e-02 -5.8881257e-02 1.5185263e-02 6.4690325e-02 -9.8189019e-02 -1.7133866e-01 -2.5766682e-02 + 1.0202495e-01 2.0172857e-01 2.3193613e-02 -5.1321823e-01 -3.1443496e-01 -2.3862014e-01 1.7990020e-01 + 5.4298819e-01 -2.1293407e-01 1.1371846e+00 -1.1982817e+00 1.5535165e+00 -1.8791786e-01 -2.3864217e-01 + -1.6324653e-01 3.0933115e-01 3.6998254e-02 2.1789817e-01 1.7702463e-02 7.8031579e-02 2.8480591e-02 + 2.0523885e-01 -2.5933706e-01 -3.7759766e-02 3.2957308e-01 -3.2339817e-02 2.9147651e-02 -2.6503392e-01 + -1.3082098e-01 2.1967884e-01 2.6843058e-01 -4.9741875e-01 5.1839115e-01 -1.0276379e-02 3.7800135e-01 + -2.5713370e-01 -2.8595259e-02 1.8895236e-01 8.0593618e-02 1.7280098e-01 1.5624946e-02 -2.2204509e-02 + 2.5168307e-01 7.6819367e-03 1.8482219e-04 3.6770206e-02 -1.1022801e-01 -9.6470207e-02 -1.0474226e-03 + 3.2719529e-02 3.5801663e-02 4.3299629e-02 1.0885390e-01 6.4753364e-02 1.5867962e-01 -2.4890768e-02 + -1.1039714e+00 1.6789401e+00 -1.2790730e+00 8.9568436e-01 1.0108596e+00 -1.0187403e+00 6.7782785e-01 + -8.7331640e-01 6.3925237e-01 -2.8995129e-01 2.6299255e-01 -5.0183795e-01 -1.2411022e-01 2.6593714e-01 + 3.0015836e-02 1.9420653e-01 7.4628106e-01 2.4079189e-01 -7.8831241e-01 1.4876932e-01 5.0483117e-01 + 1.9427477e-01 -1.6752033e-01 6.4465683e-01 2.2780003e-01 -3.8484331e-01 -4.7332233e-01 1.6930685e-01 + -2.9544813e-01 8.5948219e-02 -4.9483577e-02 1.7080301e-01 -6.1463168e-03 -1.6477635e-01 -1.6786038e-01 + -2.4098265e-01 -6.9573295e-03 2.5570854e-01 1.7302887e-01 8.5603560e-02 -2.4420530e-01 7.3932332e-02 + -2.5318687e-01 -2.4154367e-01 -2.4607493e-01 -5.0645362e-01 -1.3719759e-01 7.2400083e-02 -4.1159671e-02 + 1.9304648e-01 -4.9008615e-02 2.8598933e-02 6.1347095e-02 -3.2864333e-01 -1.9750989e-01 1.2087419e-01 + -5.9442008e-03 3.8139412e-01 -6.1696020e-01 -1.2868529e-01 -7.3321861e-01 6.4461551e-02 5.7651191e-01 + 1.7078884e-01 1.6097835e-02 -1.5170447e-02 4.9215177e-02 -1.2852547e-01 -2.0138031e-01 5.0556958e-02 + 8.9926812e-02 5.0000780e-03 6.3253018e-02 -2.6095267e-02 -1.4265044e-02 1.5715515e-01 9.3461186e-02 + 7.5298405e-02 1.8289768e-01 4.4053075e-02 1.6176302e-01 1.1617493e-02 -7.6415562e-02 2.3021120e-02 + 6.5272755e-02 1.1884825e-01 1.2643815e-01 2.1932173e-01 6.7253725e-02 -6.4366911e-02 2.6458052e-02 + 2.8638233e-01 -1.6554751e-02 3.5595669e-01 -2.0391365e-01 -2.1136136e-01 -1.8110659e-01 3.3043704e-01 + -1.3887870e-01 -1.1974163e-01 -4.4432659e-02 -1.5542130e-01 -1.5534782e-03 -1.5657703e-01 -6.6110894e-02 + -1.7312504e-01 9.3352816e-02 -3.7732548e-02 -5.0117613e-02 6.9934730e-02 6.1166750e-02 2.7606074e-03 + 2.6240042e-01 -1.0628667e-01 8.0220645e-02 2.3805732e-01 -7.4914511e-02 -1.2148657e-01 -7.6146553e-03 + -1.6723553e-01 -9.4743598e-02 -3.7782801e-02 -6.8595024e-02 5.9030341e-02 -1.2974408e-02 1.9733956e-02 + -9.6091040e-02 -8.6439441e-02 -1.5562805e-02 1.4589137e-01 2.8203297e-02 -5.3114310e-02 -2.9909184e-02 + -3.4550793e-02 1.5386879e-01 -1.0981294e-02 1.2767732e-01 1.7621497e-02 4.8049394e-02 1.6233818e-02 + 1.6401641e-01 6.2029460e-02 2.3164069e-02 2.4960641e-02 1.8198929e-02 1.4211181e-01 -7.9508618e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_F_1.txt new file mode 100644 index 00000000..59b78802 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_F_1.txt @@ -0,0 +1,26 @@ + -3.8673496e-02 -4.3036221e-02 -3.2522513e-02 -8.7088706e-02 -1.2449652e-02 1.1898400e-01 -1.1532755e-01 1.3375997e-01 1.5511388e-01 -2.7964240e-02 -1.3291686e-01 1.1654742e-01 1.0311977e-01 -1.1531172e-01 -5.9671730e-03 -2.9290355e-02 1.3353701e-01 -6.4528179e-02 8.9465274e-02 -3.2822657e-02 -6.0366781e-02 -2.2825305e-01 3.6338310e-02 1.0251585e-01 -1.9491881e-01 4.7785763e-02 + 8.6320385e-02 3.4633727e-02 -2.9811766e-01 1.5054817e-01 -8.6485141e-02 -1.1587068e-02 2.3617533e-02 1.6549414e-01 -2.6762121e-01 2.1948283e-02 -4.8840967e-01 -1.5808069e-01 -1.8963526e-01 1.2291741e-01 -7.5804360e-02 1.9701480e-01 -2.1923538e-01 4.7220748e-01 4.9923807e-01 -2.6270502e-01 2.9565719e-02 2.6834981e-03 -3.3250916e-01 1.3523352e-01 8.5003580e-02 3.7906069e-01 + -7.2597375e-02 -9.6298001e-02 -1.0955611e-01 1.4644081e-01 1.0865253e-01 -1.6367909e-02 -1.2156072e-01 5.5439495e-02 9.1813558e-02 1.4885003e-01 9.2032635e-03 4.1149237e-02 8.2484788e-02 7.5739529e-02 -1.3313525e-01 -1.2117618e-01 -1.0625369e-01 4.8905777e-02 5.8475251e-02 -1.2590806e-01 -8.3627736e-02 2.9594911e-02 3.5576249e-01 8.5162901e-02 2.1860173e-02 -8.5606325e-03 + -6.6302750e-02 -1.7662238e-01 7.1385448e-02 -1.8157909e-01 -4.4245605e-02 -1.3745252e-01 1.6163436e-03 9.3815167e-02 1.7437654e-01 -1.3885102e-01 1.0894584e-01 -2.4879353e-01 -1.0954982e-01 1.0447217e-01 2.0472536e-01 2.0024202e-02 -3.3622331e-02 1.6524108e-01 8.4802136e-02 -9.6759750e-02 1.5827981e-02 -2.0364628e-01 3.4375585e-02 6.5712284e-02 -2.4370910e-02 3.7108055e-02 + -7.5718509e-02 -3.4350550e-02 1.0677466e-01 -1.5458014e-01 9.6893296e-02 -1.4633679e-01 1.3912431e-02 8.5693416e-04 1.0111682e-01 3.6260656e-02 2.4495758e-01 -5.7964592e-02 3.8573555e-02 1.1419437e-01 1.0087568e-01 -6.9998703e-02 6.3388470e-02 -2.3691866e-02 -4.1195020e-02 1.5334301e-01 3.7040517e-02 -8.8030697e-02 2.3764143e-01 -7.9805954e-03 -7.0178960e-02 -1.0240160e-01 + 8.0269171e-02 -3.8577600e-04 6.0828337e-02 -1.1695155e-02 -1.3832262e-01 1.8364997e-02 6.9223178e-02 -1.6178115e-02 -7.5401254e-02 -1.4660519e-01 -8.8844946e-03 2.0382914e-01 1.1286544e-01 3.7759475e-02 -2.5006606e-01 2.3423562e-02 3.8385271e-02 -7.8154043e-02 2.2716418e-02 -1.0250640e-01 -1.2262080e-01 -2.2474654e-02 2.8440854e-02 1.0668940e-03 3.2526248e-02 2.9387717e-02 + 6.7153649e-02 4.1708913e-02 2.8025680e-02 -1.0854950e-01 1.1183342e-02 -3.3493139e-02 1.2449767e-01 -5.5730557e-02 1.7919546e-01 -8.0215967e-02 -7.8651344e-02 5.4346309e-02 -1.4836494e-01 -1.0470008e-01 2.4091258e-01 6.9929159e-02 2.6232068e-01 2.1868571e-01 -2.0111191e-01 1.3285576e-01 2.7747407e-01 -1.0654008e-01 -3.9230752e-01 -7.9685285e-02 2.0520360e-01 -1.6126312e-01 + 4.9526521e-02 -2.5610077e-02 4.1344602e-02 -9.7943435e-03 8.3391980e-02 -8.6107776e-02 2.4540558e-02 1.3053483e-01 -5.8684161e-02 2.5838390e-01 -2.7057386e-02 -2.1829684e-02 1.1799611e-01 1.3604525e-01 -2.2410769e-02 1.0699586e-01 -2.9749044e-02 9.0550086e-02 1.8224768e-01 -8.4227765e-02 1.0523978e-01 7.5079022e-02 -1.9898995e-02 -4.3051225e-02 7.7476022e-04 1.1363824e-01 + -6.2425707e-02 5.2754466e-01 2.4450685e-01 -6.9636117e-01 3.9217041e-01 -3.1035115e-01 1.2859909e-03 -2.3020636e-02 3.5202254e-01 2.1715910e-02 5.3441853e-03 -2.9001376e-02 3.0656615e-01 -9.8245209e-02 1.9537511e-01 2.6386874e-01 1.0482748e-01 4.5011919e-01 -4.6221820e-02 1.4136864e-01 5.3543211e-01 -3.8409968e-02 -4.2597063e-02 -3.1933953e-01 -2.4129362e-01 -4.6376594e-01 + -3.7585380e-03 -4.0630305e-02 6.0354475e-02 -1.3231781e-02 -2.3520537e-02 1.1411088e-02 -1.3358459e-02 1.3216910e-02 -5.3390246e-02 1.8836431e-01 1.4090978e-02 3.1816427e-02 -9.0937134e-02 -2.1419181e-02 1.2635743e-01 5.1852185e-02 1.0874868e-01 -3.0490802e-02 -3.9578025e-02 1.4967872e-02 4.5984088e-02 -1.7952078e-02 -1.3722310e-01 2.1264045e-03 -6.4166436e-03 3.2658066e-02 + 1.0443849e-01 1.0462147e-01 1.6523225e-01 -1.3191331e-01 -3.3026870e-02 5.2578941e-02 7.4802212e-02 6.8197790e-03 -3.3457665e-02 4.6920457e-02 -6.3961372e-04 1.1332130e-01 1.0870217e-01 -1.3721994e-01 -8.4214549e-02 7.0945731e-02 2.0681050e-01 6.4598526e-02 -5.7571857e-02 -8.9662169e-03 -5.6341563e-02 4.9515236e-02 -8.8898578e-02 -1.3414940e-01 7.9947780e-02 -1.1157781e-01 + -1.1157163e-01 -1.0678345e-01 7.0577898e-02 -3.3852938e-02 -1.8401635e-01 9.4523536e-02 -2.9240694e-02 -2.0012308e-01 1.4832269e-01 -9.1523423e-02 -8.6606221e-03 -3.9651804e-02 1.1365197e-01 -1.9583483e-01 1.1455496e-01 1.2490607e-01 5.6180031e-02 9.1043052e-02 -9.1752055e-02 8.5499974e-02 1.1020124e-01 -1.6329526e-01 -1.0905772e-01 3.9879065e-02 8.9641939e-02 5.5699200e-02 + 1.2669351e-02 6.6649559e-01 6.7935119e-01 -7.7474019e-01 4.6955816e-01 -1.0096675e-01 -2.4125151e-01 2.0537599e-01 5.5786211e-02 1.2931176e-01 -5.1042152e-01 6.1860720e-02 3.4103717e-01 -3.7337593e-01 2.5244815e-01 5.7380985e-01 -4.9364766e-03 6.9966191e-01 2.6144884e-01 -1.8353077e-01 4.4395602e-01 3.9457334e-01 2.4092980e-01 -4.5420955e-01 -5.3521169e-01 -3.1114577e-01 + -2.1504230e-02 -3.0016239e-01 -3.1671687e-02 1.4340369e-01 -2.6787877e-01 6.1134422e-02 -8.9512895e-02 -1.3793984e-01 2.6881301e-02 -2.5204656e-01 -2.9618207e-02 1.9438160e-02 4.7336351e-03 1.2675843e-01 -1.7613822e-01 -1.2431827e-01 -1.3946351e-01 -1.3068741e-01 4.8477974e-02 -1.2763112e-01 -3.0718477e-01 -1.4362498e-01 2.0355634e-01 1.7816116e-01 1.2698549e-01 4.4825597e-02 + 3.0213439e-03 -6.4449042e-02 -1.1622489e-01 6.5881246e-02 3.7145556e-02 -1.4928664e-01 6.9051345e-03 -1.6798317e-02 1.4749891e-01 -2.7703061e-01 1.1775362e-01 -6.9290843e-02 -1.8192156e-01 2.2852336e-01 -3.5900679e-02 -2.6686602e-01 -1.7064709e-01 -6.5066658e-02 -4.7959938e-02 -1.2609895e-02 -4.7181656e-02 -7.1806259e-04 1.9645754e-01 1.0364898e-01 -2.8864295e-02 -9.1154501e-02 + -3.9165207e-02 1.9117825e-01 -3.7088944e-01 2.1904238e-01 -1.2066622e-01 -1.1720854e-01 1.0402609e-01 -2.7143534e-01 -7.1993595e-02 -1.9501110e-01 4.1055529e-01 -6.5746323e-01 -2.0890313e-01 8.6756979e-02 9.3646975e-02 -4.6877456e-02 -2.1354369e-01 3.2640434e-01 -8.6898418e-02 2.7192502e-01 -3.8429922e-02 2.1685550e-01 -4.4065598e-04 8.6966831e-02 1.2027125e-01 1.3904248e-01 + 2.7470439e-02 1.1220640e-01 7.6124690e-02 -8.1802358e-02 9.0244667e-02 -6.9497504e-02 1.5842695e-02 1.1216704e-01 -5.3567164e-02 5.5189759e-02 -8.5817429e-02 4.2600520e-02 -9.9671112e-02 8.4922092e-02 5.7871731e-02 5.7792467e-03 -2.7069782e-02 7.6946642e-02 1.0548793e-01 -1.0567339e-01 8.1094765e-02 8.2876286e-03 -3.8411927e-02 -4.1527399e-03 -1.2826124e-01 7.6283797e-02 + 4.9306616e-02 3.6769283e-02 8.3211794e-03 -2.6373361e-03 -6.1205762e-02 1.2873164e-02 5.7172215e-02 -2.6414365e-02 -4.0914677e-02 -6.9028250e-02 1.9534905e-02 -4.8326708e-02 -4.3125234e-02 -3.9654374e-02 -1.9346376e-02 -3.9894336e-03 1.8548865e-02 -4.4647054e-02 -1.4918829e-02 4.4314927e-03 4.3319552e-02 4.9646833e-02 -1.7002211e-01 -6.1532107e-02 2.8738124e-02 1.7567928e-02 + -2.4559551e-02 4.8004750e-01 1.4418375e-01 -2.8782791e-01 2.5121794e-01 -1.5511980e-01 1.4156536e-01 -5.6710167e-02 1.4587228e-02 1.1752455e-01 4.9303448e-02 1.4042124e-02 2.0512097e-02 -1.4492972e-01 2.0484952e-01 3.4054359e-01 -9.0211017e-03 1.9933965e-01 -1.4372578e-01 2.5354710e-01 3.7542652e-01 3.0566754e-01 -1.9197982e-01 -2.5102275e-01 -1.1903388e-01 -2.0288989e-01 + -2.0618168e-01 -3.0323793e-01 6.8429450e-02 -4.3290654e-01 1.4435602e-01 -2.9479649e-01 -2.8505540e-01 1.7459241e-01 2.7462739e-01 6.8438557e-02 4.9576626e-01 -3.9203920e-01 4.1908431e-02 5.7084555e-01 8.5254079e-02 1.1529127e-02 -5.2827606e-01 2.3840835e-01 2.6790375e-01 2.1128126e-02 4.0386561e-02 -3.1246673e-01 2.2035226e-01 2.1054223e-01 -1.0838339e-01 -1.9278056e-01 + -1.0162599e-03 -1.5236816e-01 -2.0089561e-01 1.4173398e-01 -1.4233184e-01 1.0445068e-01 -1.5423149e-01 -1.2899056e-01 1.1922278e-01 -6.0321369e-02 2.5172505e-01 1.0348607e-01 4.6828940e-01 -4.6312829e-02 -1.2337777e-01 -7.0490610e-02 1.9844708e-01 -1.3479809e-01 -2.5986962e-01 1.0913547e-01 -2.0969872e-01 -7.3903791e-02 1.6629776e-01 1.2126543e-01 1.3549145e-01 -1.3106113e-01 + -8.8731817e-02 -1.2706035e-01 -5.6277459e-02 -4.7499836e-02 8.6569897e-02 -4.2881594e-02 -1.4510438e-01 8.5504116e-02 1.1616349e-01 1.5244588e-01 5.6574168e-02 -9.9605778e-02 -4.2463957e-02 1.1837798e-01 1.1044947e-01 -5.6903729e-02 -1.0460277e-01 2.0232701e-01 4.1743655e-02 -7.1191848e-02 5.6873946e-02 -9.8740348e-02 7.5946848e-02 1.3333858e-01 4.8382777e-02 -9.0266471e-02 + -1.0535433e-01 -2.5121885e-01 -1.3874824e-01 2.7655553e-02 8.2816056e-02 -5.6470063e-02 -1.7894037e-01 3.3314307e-02 1.5062569e-01 6.4592150e-02 1.0486136e-01 -2.2751859e-01 1.4559000e-01 1.1666990e-01 2.4992312e-01 -5.2587828e-02 -3.0618891e-02 1.6819601e-01 -4.4286841e-04 6.6877872e-02 1.3083758e-01 -7.5979364e-02 3.2724556e-01 1.4173242e-01 5.2380759e-03 -2.5472424e-03 + -1.9904296e-02 -7.1429644e-02 3.0211989e-01 -4.3748439e-01 3.8318523e-02 -2.5167697e-01 1.5993891e-01 -2.2998003e-01 6.6075431e-02 1.0953959e-01 4.1784614e-01 1.3328299e-01 3.1972251e-01 3.1611369e-02 1.8266311e-02 4.3188002e-01 -3.7541740e-01 -2.1630149e-02 -3.8478988e-01 2.6496465e-01 8.7370381e-03 7.0230445e-02 -2.2488090e-01 5.9273791e-02 3.7971311e-01 -4.7790956e-01 + 5.4047908e-02 3.3509597e-02 -3.8994578e-03 -9.9440579e-02 -5.8513677e-02 4.7974428e-02 -7.7177382e-02 1.9402760e-02 2.2187227e-02 -7.6610166e-02 7.5299374e-02 -5.5009195e-02 9.5495492e-02 -6.1807223e-02 -4.0093162e-02 4.8517771e-02 2.2353785e-02 1.7218059e-02 -3.2237894e-02 7.9210368e-02 4.6431018e-03 -3.8026861e-02 -1.7966059e-01 -2.8518075e-02 3.6559871e-02 -1.1513756e-01 + 2.5581472e-01 1.8224009e-01 -1.0659270e-01 1.1268730e-01 -1.1551042e-01 -9.6394364e-03 -2.8187225e-02 -2.9809950e-02 -2.0045790e-01 -1.0144641e-01 -5.2381015e-02 -6.8381338e-02 1.7308589e-01 2.5469047e-02 -4.9300142e-01 -1.3700678e-02 -1.5683950e-01 -6.6845116e-02 2.4614682e-02 -1.2653200e-01 -1.7619392e-01 3.6098162e-01 -6.7906110e-02 4.2099198e-02 1.1706678e-01 -1.3202423e-03 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_F_2.txt new file mode 100644 index 00000000..c4f678c7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_F_2.txt @@ -0,0 +1,23 @@ + 8.6217248e-02 1.7635209e-02 4.5775388e-02 -6.4564123e-03 2.0981008e-02 5.4996046e-02 2.4993019e-02 2.0735706e-02 -3.7219412e-02 8.7072876e-02 -7.4345485e-03 -1.7131867e-01 -1.6298185e-01 4.6903790e-02 2.1645311e-01 6.4462979e-02 4.6735904e-03 -4.8649416e-02 -8.6914371e-02 -7.4247155e-02 1.2648037e-01 3.5915057e-02 -7.3642698e-02 -3.0712122e-02 -8.5308936e-02 -5.7914112e-02 -7.3775699e-02 3.2851881e-02 -7.4398640e-02 1.3417066e-02 -4.5807369e-02 + -1.0684528e-01 -3.4290875e-01 4.3012421e-01 -4.7110341e-01 -1.4381253e-01 -3.2743721e-01 -2.0383385e-02 1.6757727e-02 8.0526050e-02 -5.6782295e-01 -1.5748144e-01 -4.5495188e-01 -9.3000406e-02 -2.9325190e-01 -1.1854919e-01 4.1201943e-01 1.2004542e-01 9.5543190e-02 -3.8932894e-01 3.5322450e-02 3.1532547e-02 9.6933394e-02 -9.2298342e-02 7.9946376e-02 2.2664474e-02 1.9668142e-01 -2.4860430e-01 -3.5168140e-01 -4.1706747e-01 -5.1185473e-01 -2.3109248e-01 + -2.1755700e-01 1.0347356e-02 3.6792859e-02 -4.2888067e-03 -3.8362792e-01 5.6012848e-02 -1.2628755e-01 1.2503143e-01 1.5246859e-01 5.7935152e-04 1.2530322e-01 1.1338002e-01 -1.4147635e-02 2.6776968e-02 -1.1959959e-01 -2.7594543e-01 2.4126815e-01 4.0047074e-02 -2.8663945e-01 -1.7443749e-02 -2.3878250e-02 4.3149435e-03 1.5196450e-01 1.1209747e-01 1.8389076e-03 9.0946499e-02 -1.3223193e-01 -4.3309989e-01 -1.1283492e-01 -3.5014108e-01 8.0648761e-02 + 7.5996234e-02 -5.3976693e-02 -4.6667876e-03 3.3159968e-02 1.0206410e-02 1.3036084e-01 -6.2139462e-02 5.1819401e-02 4.1048614e-02 4.2449528e-02 -7.8827496e-02 -1.6390041e-02 1.3648003e-02 4.7654686e-02 -4.9056941e-02 -1.9434760e-02 -1.6979103e-02 6.8659746e-02 4.6823667e-03 -4.6199111e-02 6.7435177e-02 -1.3651966e-02 -4.7864208e-03 -2.5808762e-06 2.1430608e-02 -2.1905666e-03 1.0747612e-01 1.8208339e-02 -6.4133796e-02 3.7267285e-02 6.3254496e-02 + -5.6117990e-02 6.5827378e-02 -9.6279007e-03 -3.5733234e-02 -2.1642330e-02 -2.5626829e-01 9.4527773e-02 -8.0573253e-02 -1.1712669e-01 -9.4189207e-02 9.3355146e-02 1.7895683e-02 -7.1611654e-02 -7.7692815e-02 4.9908829e-02 -4.2744498e-03 4.8020706e-02 -1.0060778e-01 -2.3025787e-02 1.0220912e-01 -1.3554866e-01 6.7594429e-03 7.0380343e-02 1.4388280e-03 -1.3410341e-02 -3.0295691e-02 -1.3773184e-01 -2.0824070e-02 1.0340059e-01 -9.3540396e-03 -8.5535947e-02 + 5.0400296e-02 -5.3726597e-04 -2.9744401e-02 5.5544422e-02 3.2706547e-02 1.0264337e-01 -7.3682678e-03 3.5154706e-02 4.5171555e-02 5.7786007e-02 -3.6095456e-02 6.4214884e-02 3.6073826e-02 5.7863638e-02 -9.1918055e-02 -1.0026532e-01 3.8219235e-02 -1.7087351e-02 3.5258789e-02 -4.8504337e-02 1.6902855e-02 -2.1605506e-02 -2.6804072e-02 -3.4302467e-02 9.4332016e-03 -5.7346125e-03 7.9498464e-02 5.1517286e-04 -6.8697891e-02 -5.6757045e-03 5.7657532e-02 + -1.5911906e-01 -7.6539809e-03 2.6292616e-02 -8.7031747e-02 -3.1597664e-02 -1.9597333e-01 2.1100552e-01 -9.2921736e-02 -2.4646389e-01 -6.9147213e-02 7.0464663e-02 2.4012881e-01 -3.6515847e-02 -1.9207414e-01 -4.7967203e-01 5.5268215e-02 -3.2681772e-01 -3.1566124e-01 4.2822788e-01 2.3933559e-01 -6.5938908e-02 -2.2700981e-01 -6.2982941e-02 -7.9550982e-02 1.2233519e-01 6.4340150e-02 -3.8859742e-02 3.1114600e-01 9.6056904e-02 -6.8464875e-02 -3.0495919e-02 + -1.8844582e-01 -8.2010821e-03 8.2265435e-02 -2.1423540e-01 -5.9149528e-02 -3.4891415e-01 2.3024143e-01 -1.3696494e-01 -2.3095416e-01 -2.3476939e-01 4.1555295e-02 -1.3958743e-01 -7.4265752e-02 -2.0022838e-01 3.3635357e-01 1.9764538e-01 7.6547045e-02 -7.9146028e-02 -2.3277227e-01 6.4071497e-02 -9.1591207e-02 -6.6122947e-04 2.2446299e-02 -3.0134658e-02 -1.3959792e-02 7.3543860e-02 -3.5227034e-01 -3.5056846e-02 1.4765192e-01 -2.5339783e-01 -1.2357151e-01 + 2.4135236e-03 -1.8957899e-02 -3.3340364e-02 -4.4591595e-02 -2.8327555e-02 -1.0379960e-01 -6.9897242e-02 -3.4922530e-02 1.4332252e-02 -1.1935721e-01 7.2630384e-03 7.0187817e-02 7.3049010e-02 -3.4681837e-02 -1.5727628e-01 -8.1888653e-02 1.2110495e-01 5.4239318e-02 -1.5018696e-02 1.0376619e-01 -1.3301952e-01 -3.0261667e-02 7.4659029e-02 2.8486703e-02 6.3309624e-02 5.6552902e-02 4.3279374e-02 -7.1692652e-02 3.8569141e-02 -7.4825986e-02 3.3806520e-02 + -6.8062995e-04 2.1033561e-02 4.1885082e-02 4.1006291e-03 -1.0367412e-01 -9.4290526e-02 9.8322198e-03 6.6221379e-02 2.9280523e-03 -1.0688547e-01 -6.7348653e-02 -5.6076886e-02 -1.1337349e-01 -1.1470538e-01 -5.1114023e-02 1.8499787e-01 4.4265187e-02 -1.0040039e-02 -4.7986810e-02 1.1158162e-01 -9.6500857e-02 2.0261793e-02 -3.2511181e-03 -3.3113339e-02 -7.7206550e-02 -3.4077408e-02 -1.3496426e-02 -3.1230733e-02 -9.3091713e-02 1.0024626e-01 1.0228860e-01 + -1.3407590e-02 -2.2007262e-02 1.0751572e-01 -8.0919332e-02 1.0931688e-01 -1.5869172e-01 4.9829710e-02 -5.3664865e-02 -4.2623976e-02 -6.6769295e-02 -1.6965209e-02 4.4415655e-02 -3.9409092e-03 -1.6246025e-01 -8.5942642e-02 1.1394098e-01 -2.2253490e-01 -5.3382242e-02 1.2530372e-01 1.5466719e-01 -5.5039364e-02 -1.3941940e-01 8.4535100e-02 3.3774328e-02 1.0343771e-01 7.8936417e-02 4.9512568e-03 6.9327712e-02 1.3700452e-01 1.7382942e-01 -1.3895936e-01 + -2.9108537e-02 2.6783452e-02 1.8419003e-02 -2.7515185e-02 1.9170415e-02 -7.9311850e-02 5.2231798e-03 -5.0160532e-02 3.8374135e-02 -1.8984589e-02 5.4498949e-02 -2.4152802e-02 -3.8375582e-02 -6.5542198e-02 6.3200766e-02 7.2845423e-02 3.1797588e-02 -2.7012573e-02 -3.7033763e-02 3.3047813e-02 -2.1585614e-02 1.3308069e-02 -1.2951812e-02 -2.5380487e-02 -4.3809540e-02 -6.3382529e-03 -5.2426627e-02 -1.9648956e-02 -4.7098348e-03 -4.0291930e-02 -3.5589876e-02 + 8.9138763e-02 -2.8110313e-03 6.7050104e-02 -7.9498011e-02 -2.2759185e-02 1.7929563e-02 5.1371006e-02 -2.5385551e-02 -1.3164067e-01 3.2009992e-02 -4.8108433e-02 -3.3085290e-01 -2.8900741e-01 4.5482188e-02 2.6690086e-01 1.2427272e-01 3.4324434e-02 -4.8211960e-02 -1.6606952e-01 -1.0816742e-01 1.3802369e-01 5.8455710e-02 -1.4512137e-01 -1.6469148e-02 -5.0778439e-02 -8.0406402e-03 -1.4387679e-02 2.5105132e-02 -1.1530543e-01 -1.8112876e-01 -6.8790525e-02 + 1.4521880e-01 9.6307705e-02 2.8724196e-02 4.3619052e-02 2.0787151e-01 2.0747300e-01 -1.8924123e-01 -2.0886916e-01 -4.8711718e-02 1.3877149e-01 3.5858864e-01 1.7171482e-01 1.2664883e-01 7.0358048e-02 1.9500345e-01 -2.4649640e-01 4.3744444e-01 9.7111133e-02 -2.7721214e-01 -6.3751711e-02 7.3950736e-02 1.2817021e-01 1.3104381e-01 4.3779080e-02 -1.5326547e-01 -1.4731301e-01 -2.0451920e-01 -3.8804926e-01 -6.2850209e-02 3.1028883e-01 -6.5464270e-02 + 3.2961807e-02 -1.7134202e-02 -7.2940273e-02 6.8226670e-02 -5.9917807e-02 1.1594450e-01 1.2630974e-02 6.6051036e-02 -3.1423262e-02 9.6601348e-02 1.1138492e-01 7.8410331e-02 5.7922841e-02 1.0308753e-01 5.1873557e-03 -1.6746755e-01 2.3198923e-01 -1.4942719e-01 -3.6270591e-02 -6.8712764e-02 5.2277685e-02 -4.6325758e-02 3.3802523e-02 2.3721636e-03 5.8602249e-02 -2.7469133e-02 4.1743816e-02 -1.3922450e-01 9.3939031e-02 -2.1381429e-01 8.0164251e-02 + 1.0407658e-01 4.4230512e-02 -1.0543641e-01 1.2774652e-01 -2.0222238e-01 1.3665354e-01 -1.0448279e-01 9.9519154e-02 8.0320813e-02 1.6582933e-01 -5.5087905e-02 -1.2139372e-01 9.3535837e-03 8.0067893e-02 4.8610767e-01 -3.1636220e-01 2.2223777e-01 2.8028432e-01 -2.4471635e-01 -1.1420216e-01 -3.0662852e-02 1.5718554e-01 5.0360439e-02 4.8923745e-02 -1.0666683e-01 -3.3647232e-02 -1.0577549e-01 -2.3302560e-01 -2.3302939e-01 1.4158496e-01 1.4132671e-01 + -1.1182433e-01 2.6501723e-02 3.9233160e-02 1.1096266e-02 8.2670533e-02 6.7696560e-02 6.5576198e-02 -2.8140528e-02 2.0995950e-01 5.7452056e-02 -1.0908186e-01 -5.7509413e-02 1.7572577e-02 -9.4133577e-02 1.9346597e-01 -5.2397860e-03 -9.8361234e-02 7.5100417e-02 9.3553045e-02 2.7600426e-02 3.3972461e-02 -2.2394620e-02 2.9371113e-02 -4.3127754e-02 7.2493144e-02 2.3930411e-02 6.0810377e-02 -1.0502566e-03 4.6297925e-02 2.0801490e-01 -2.4351080e-02 + -2.5481755e-03 -1.2018063e-02 6.2903086e-03 4.7899121e-04 8.1389521e-03 2.6488662e-02 -3.3529148e-03 -1.3981266e-03 5.8172794e-03 5.4767904e-03 8.0853179e-03 1.7088180e-02 1.7429165e-02 1.2688312e-02 -1.7908373e-02 -2.4599434e-03 8.4773992e-04 -3.7752356e-03 9.6449293e-03 -9.6275147e-03 1.1392988e-02 5.4321801e-03 -1.5349107e-03 -4.5359500e-03 -5.1925137e-03 -2.8430087e-03 1.4254113e-03 -4.0539575e-04 -1.3627373e-03 -1.5303084e-02 1.4912774e-02 + -1.8807246e-02 -1.7623591e-02 3.9776303e-02 -9.3634760e-02 2.5011815e-01 -4.1232978e-01 -7.2849108e-02 -3.1991024e-01 -1.0055843e-01 -2.3910452e-01 2.2137778e-01 7.2768216e-02 3.0914375e-02 -3.3232792e-01 2.9437557e-01 3.2101912e-01 2.7933412e-01 -9.7827481e-02 -8.4849186e-02 3.5808644e-01 -4.4049311e-02 6.0988717e-02 1.2798673e-01 -3.4224958e-02 -1.1172552e-01 -1.5216117e-01 -4.2707490e-01 1.1447385e-01 -2.8610951e-02 -2.6968481e-01 -7.1509616e-02 + 5.0916324e-02 -2.0555594e-03 -1.7276122e-02 -2.8904627e-02 1.3071398e-02 4.1077770e-02 -1.4344732e-02 -9.3385496e-02 -1.9705919e-01 -5.1716924e-03 6.3243647e-02 3.0914771e-02 5.7876659e-02 6.7690347e-02 -1.8988680e-02 -4.2795482e-02 8.7131253e-02 -7.8051902e-02 -7.5069605e-02 -2.5129019e-02 -5.3663095e-02 4.8064668e-02 1.7157696e-02 4.7316808e-02 8.8951264e-03 8.4090622e-03 -5.4561130e-02 -1.1916162e-02 2.3748304e-02 -1.8396966e-01 2.0471506e-02 + -4.7066299e-02 1.0450471e-01 1.3206714e-01 -1.0387047e-01 4.9470841e-01 -1.2776209e-01 5.4705286e-01 -2.5844624e-01 -4.8857588e-01 2.1990974e-01 -4.4561549e-02 -3.7768632e-01 -5.9770663e-01 3.1433110e-01 5.7779591e-01 7.6406346e-02 -2.4555263e-01 -4.9197085e-01 -3.5876244e-02 -2.2849151e-01 -3.6482014e-02 2.8908505e-01 -2.5721760e-01 -3.1452239e-02 6.4375782e-03 9.9408280e-03 -8.9882770e-01 2.6278480e-01 3.9897875e-01 -6.6252448e-01 -2.7003713e-01 + 2.2171014e-02 5.0512306e-02 1.5560713e-02 6.2482036e-02 -3.5756690e-02 1.3283512e-01 -8.8775393e-02 8.9332920e-02 4.5160032e-02 1.6189557e-01 4.0891071e-02 -1.5060628e-02 -1.0802022e-01 8.7064741e-02 -4.1078451e-03 -1.7532238e-01 1.0295144e-02 2.7823014e-02 2.0229755e-02 -2.0757136e-01 1.8397811e-02 1.7934136e-01 -6.3946988e-02 -1.2992773e-01 -1.2927910e-01 -1.2393043e-01 -1.1715806e-01 4.9936170e-02 -6.8135325e-02 -3.2722084e-02 2.0683450e-02 + 5.9049356e-02 -6.0772714e-02 7.6840672e-04 -1.6834708e-02 5.6695702e-02 7.2601920e-02 -3.7501197e-03 -9.2489969e-02 6.8206958e-03 -2.7653563e-02 4.8356229e-02 1.7008177e-02 3.7716597e-02 3.2278405e-04 -1.9459785e-01 2.7318983e-02 5.0749714e-02 -7.6037141e-02 3.1472799e-02 -1.9553467e-02 1.1750639e-02 -2.5158166e-02 -6.3478684e-02 9.3627576e-03 2.4078632e-02 7.3149150e-03 1.2442873e-01 3.9044106e-02 -6.5460659e-02 -4.0145585e-02 1.9184185e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_F_3.txt new file mode 100644 index 00000000..077c4c73 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_F_3.txt @@ -0,0 +1,29 @@ + 9.9042813e-03 -4.8541709e-02 -6.2448948e-03 -4.3220815e-02 3.6229853e-03 -4.7392894e-02 2.1382183e-02 -5.0646014e-03 3.0015347e-02 3.0563265e-02 -1.4403520e-02 5.9468032e-03 3.3283875e-02 -3.0660732e-02 -7.2725285e-03 -3.6826654e-02 -2.1252247e-02 1.7863609e-02 -2.7438705e-02 -1.2976662e-02 1.8972663e-02 -1.0172058e-02 6.5624273e-03 -5.2890757e-03 -5.1761209e-02 3.5294137e-03 -4.1210648e-02 3.8760755e-02 6.8649042e-05 3.1643235e-02 1.8966950e-02 1.8455850e-02 2.7429757e-02 2.7620977e-02 + -4.7381177e-02 8.8486445e-02 -7.8572605e-03 3.0404503e-02 -5.9527199e-02 1.8091871e-01 -2.6046422e-03 -5.2668201e-02 1.3143930e-01 -1.5614302e-01 -5.8283558e-02 2.7902481e-02 4.8585730e-03 7.2960441e-02 -6.1658809e-02 -6.7503589e-02 1.6060910e-03 -1.4019926e-02 -7.1679167e-02 -2.6599246e-02 4.1236846e-03 6.9614574e-02 8.2270306e-03 1.4977453e-01 -4.0235090e-02 5.1962641e-02 7.9779700e-02 1.6207882e-02 -2.2935312e-02 -1.0496285e-01 2.1573634e-02 -4.2769612e-03 5.7811031e-02 1.4285888e-02 + -5.0906886e-02 -4.3083562e-02 -3.1791025e-02 -9.5998563e-02 -4.2582199e-02 -2.1493321e-02 7.7939954e-03 7.7315839e-02 -1.1818342e-01 1.5027837e-01 -2.2575716e-02 -5.3442184e-03 -1.2443231e-01 6.5993627e-02 4.1900997e-03 -4.3255384e-02 -2.3450477e-02 5.1426407e-02 -4.3026879e-02 -2.2274128e-02 -2.8303192e-02 -6.2546503e-02 -1.3067955e-02 -5.1448865e-02 8.6065555e-02 4.6825974e-02 -4.9574090e-03 -3.5157801e-02 1.8527083e-02 -1.3198088e-02 2.3786428e-02 2.1499646e-03 -1.7756735e-02 4.0047490e-02 + -1.3879738e-02 3.8365303e-02 -4.0209281e-02 2.7413389e-02 -1.1236669e-01 5.1610284e-02 -8.6993774e-02 -2.7853921e-02 2.4690191e-01 -8.7606319e-02 4.7222560e-02 2.2888487e-02 -3.7883766e-01 -8.5681598e-02 -3.8933407e-01 4.9657417e-02 -2.3428063e-01 -3.2241255e-02 2.8719020e-02 2.6998335e-01 3.0807501e-01 2.4923073e-03 1.7018271e-01 1.9547105e-01 -2.2961075e-01 -1.2820060e-01 1.0337504e-01 -2.4946023e-01 1.2696795e-01 2.1441394e-01 1.9632151e-02 2.2488394e-01 2.1969446e-01 6.7680097e-02 + 1.9253815e-01 -5.3567265e-01 3.2340138e-01 -1.6670479e-01 2.4445268e-01 3.4575339e-01 -3.5459554e-01 5.7834313e-01 -3.3988282e-01 3.9671479e-01 -5.1661688e-02 1.8340678e-02 -1.4674624e-01 5.5658590e-02 -6.8437442e-02 -5.1647141e-01 -2.0282133e-01 3.3711764e-02 -2.9204658e-01 -4.1864645e-01 -1.2977729e-01 -2.4923523e-01 -6.5717598e-02 1.0156447e-01 -1.5745853e-01 7.4058930e-01 -1.7315782e-02 6.1405332e-02 -4.9983013e-02 -3.2847540e-01 3.2870975e-01 -4.5114169e-01 -1.2576527e-01 6.4295293e-03 + -6.3078004e-01 4.0982043e-01 -3.8348511e-02 9.1958213e-03 -2.9472475e-01 5.4461680e-01 1.6453631e-01 3.1471468e-01 -3.3503116e-01 -3.2378265e-01 -2.1851306e-01 -2.1570397e-01 -6.9831236e-02 9.1365926e-02 -5.0402765e-02 6.8432559e-02 3.2395589e-01 -2.9197781e-01 -2.6041970e-01 2.2719139e-01 -5.4678862e-02 9.1897523e-02 -1.7640790e-01 6.6940716e-02 -4.0615751e-02 -1.0284026e-01 3.9066450e-01 -1.4663607e-01 7.0200720e-02 3.7709193e-01 6.3881600e-02 -1.4675148e-01 -2.1928850e-01 -1.3231091e-01 + -5.2146168e-02 -2.7800067e-01 7.4683480e-02 5.8894262e-02 -2.6132837e-02 -1.3842919e-01 1.2831191e-01 -1.7050842e-01 7.2798457e-01 1.4045977e-01 2.0496427e-01 -1.4972611e-01 1.7709403e-01 -1.2877249e-01 -8.0439565e-02 1.6338818e-01 -1.6888463e-01 1.8685266e-01 1.0381023e-01 9.7158508e-02 3.7873595e-01 -4.7159985e-02 3.2341329e-01 9.3143878e-02 5.0132192e-01 -2.6869535e-01 -2.4625633e-01 -3.2293907e-01 5.2600780e-01 1.2992609e-01 -2.9713550e-02 4.7472678e-01 4.4308522e-01 5.0893511e-01 + -4.2059404e-03 2.4811862e-01 -2.8956554e-01 -6.7504655e-02 -6.0705057e-02 -4.0878854e-01 7.4807234e-02 -1.8991941e-01 1.2722564e-01 -3.2422220e-01 -2.0524493e-01 1.0400280e-01 -4.1184294e-02 -8.2608755e-02 -5.5761109e-01 2.9953632e-02 -2.0397084e-02 6.4091008e-02 -3.7137194e-01 2.4415557e-01 1.8171428e-01 1.6288326e-02 -1.2394405e-01 7.3071227e-02 8.5675339e-02 1.8887181e-02 2.2047920e-01 -3.9449323e-01 1.2658889e-01 9.8947925e-02 8.0666149e-02 -3.4619899e-02 -1.2643826e-01 6.4972379e-02 + 6.0044142e-02 3.7651549e-02 4.2947846e-02 -1.9422057e-01 9.3784995e-02 3.6605788e-01 -1.0560921e-02 2.2673813e-01 -4.3405252e-02 1.6072794e-01 -5.2025705e-02 8.9666081e-02 -1.8071659e-01 1.4423555e-02 1.3388429e-01 -3.7800639e-03 -9.1619785e-03 2.4465083e-02 2.9375407e-02 -7.3395810e-02 -1.6252324e-01 6.8065047e-02 -2.8885990e-02 -1.3150130e-01 -7.9106577e-02 2.3873176e-01 6.7834600e-02 -7.7518040e-02 -6.1566812e-02 -6.2387301e-02 1.2172204e-02 4.9586128e-02 1.5144833e-01 7.0113396e-02 + 1.2819168e-01 -1.6315411e-01 1.3588899e-01 -1.0641770e-01 6.5706916e-02 -8.9442413e-02 -5.2225162e-02 1.1105094e-01 6.8174195e-02 1.2512936e-01 -5.5268016e-02 1.4973872e-01 4.6331485e-02 3.6708520e-02 2.7236980e-02 -6.9844684e-02 2.0428233e-02 1.0145587e-01 -2.6670363e-02 5.5651558e-02 8.6638038e-02 -7.1375693e-02 1.7126175e-02 3.1943183e-02 -8.7572279e-02 1.6267888e-01 -4.3208841e-02 6.3897131e-02 -1.0854612e-01 -4.0451033e-02 7.1405548e-02 -2.4745036e-02 7.4476621e-02 4.5803383e-03 + -1.6852267e-01 -3.2856119e-01 1.5920231e-01 -1.5458057e-02 8.5703968e-03 1.2854724e-02 -1.0794107e-01 6.7634234e-02 -6.2905434e-02 1.7016977e-01 1.0265719e-01 -7.3246368e-02 9.3539067e-02 -2.0142538e-01 1.7897424e-01 -1.2648406e-01 -1.2043699e-01 -2.0217546e-02 -1.1214488e-01 -2.5353950e-01 2.1990569e-02 -4.3042062e-03 5.6051717e-02 -6.4263711e-02 -9.0185053e-02 5.8534699e-02 -2.2298794e-01 2.7357873e-01 4.2380091e-03 1.5604340e-01 7.4121030e-02 -1.1161373e-02 2.1944130e-02 2.6156435e-02 + -9.5860914e-03 -6.2315169e-02 -7.8723916e-03 -4.6375669e-02 -1.4620946e-02 -9.0117264e-02 4.9868214e-02 3.2941574e-03 5.3684946e-02 5.0841228e-02 -1.1817452e-02 3.1920150e-02 9.3583861e-03 -2.6741944e-03 -1.2812576e-02 -3.0770252e-02 -1.8151563e-02 3.6326469e-02 -4.0486288e-02 -7.1462057e-04 3.5716413e-02 -1.5140967e-02 2.1356663e-02 -4.1535447e-03 -2.4946808e-02 -1.8121321e-02 -3.7964291e-02 7.3250677e-03 2.1018125e-02 3.3301998e-02 1.6399025e-03 4.6183007e-02 3.2696680e-02 4.1640789e-02 + 1.6244120e-01 2.2744947e-01 -5.3145784e-02 1.8768765e-01 4.1565833e-01 3.6031453e-02 -4.8341399e-01 1.6249289e-01 1.2270576e-01 -2.7512737e-01 3.9278284e-03 -1.6373616e-01 2.2018589e-01 -1.3532404e-01 -2.4860854e-01 -1.0756021e-01 5.7983861e-02 2.2505860e-01 7.7553704e-02 1.9712183e-01 2.0025012e-01 2.3525679e-02 7.4986084e-02 4.2173943e-01 7.9652789e-01 1.4799814e-01 -1.4853812e-01 -3.5412591e-01 4.7505689e-01 -5.2243835e-01 3.0523088e-01 1.5183776e-01 1.4346699e-01 3.7074949e-01 + -1.0553708e-02 5.8644190e-02 1.8886943e-02 4.7513669e-02 -5.9793974e-04 6.2013336e-02 -1.9507362e-02 5.7877930e-03 -3.1192659e-02 -3.3423147e-02 9.1573280e-03 5.8731757e-03 -3.8533978e-02 4.2956745e-02 1.5077544e-02 3.2993133e-02 3.4356641e-02 -9.9336383e-03 3.2725342e-02 2.3656870e-02 -2.7784917e-02 -4.4920962e-04 -9.1914891e-04 8.1978817e-03 6.4007167e-02 1.2971778e-03 4.3342886e-02 -5.9308123e-02 -3.3918558e-04 -4.7636606e-02 -2.8680718e-02 -1.2289579e-02 -2.9475297e-02 -2.5680882e-02 + -1.6351915e-03 1.0053510e-03 -1.0023880e-02 9.4952263e-03 -2.7166168e-03 -7.3745236e-04 -4.4219073e-03 2.3208298e-03 -6.5949981e-03 5.2092887e-03 1.1482218e-02 -1.3555665e-02 -1.6055789e-02 5.0985879e-03 -7.2926590e-03 1.1892048e-02 -1.0250062e-02 6.6361652e-03 2.4745617e-03 -9.8257194e-04 -8.9446942e-03 1.5977411e-02 4.2860756e-03 -4.8629396e-03 1.8876574e-02 -2.2144952e-02 9.8663199e-04 -6.9561994e-03 1.1701442e-02 -5.4497448e-04 -5.8467934e-03 2.7071549e-03 7.0801462e-03 3.9535255e-03 + 8.0890026e-02 1.0147797e-02 1.9228264e-01 3.2473749e-01 6.2644382e-03 -6.3620972e-02 1.9838068e-01 -4.0309234e-01 1.5946846e-01 -4.1208537e-01 1.2780559e-01 -1.1384586e-01 3.0820614e-01 -6.0082348e-02 1.7293741e-01 1.4182428e-01 1.5879562e-01 -2.0604470e-01 6.8550067e-02 2.1210089e-01 5.0284130e-02 8.7571487e-02 -2.4826485e-01 -1.1574630e-01 -9.1617976e-02 3.9299281e-02 -8.3223158e-02 -2.8789364e-02 -1.9022396e-01 -1.0712170e-01 -1.5264306e-01 -1.5077211e-01 4.2476238e-02 -9.1085888e-02 + 2.8730594e-01 7.1301012e-02 1.7537237e-01 3.0871956e-01 1.0118314e-01 1.4610724e-01 1.1009674e-01 9.8645099e-04 -1.9581456e-01 -2.8705839e-02 2.8645523e-01 -1.2775733e-01 -2.7297659e-01 -4.5638674e-02 5.2380491e-02 2.3822639e-01 -2.4035608e-01 -2.4352983e-01 7.4965125e-02 -4.3789846e-02 -3.3881693e-01 1.6306317e-01 1.2192045e-01 -3.1933691e-01 -4.3490373e-01 7.9799680e-02 5.0077852e-02 -6.0018643e-02 -3.2270843e-01 -4.7157872e-01 -1.0438067e-01 2.7514160e-02 6.4605790e-02 -2.1232023e-01 + -4.7803301e-02 3.9748575e-02 1.0885230e-01 7.5034495e-03 -3.3949059e-02 -1.2656446e-01 8.2666544e-02 -3.1252933e-02 7.1674127e-02 -1.7316153e-02 -2.7727381e-02 1.1481820e-01 -4.9349529e-03 1.8771425e-02 7.9342957e-02 2.9323569e-02 9.9149033e-02 -1.2641185e-02 3.5342230e-02 5.8978434e-02 -1.5235128e-02 -5.0494536e-02 -6.5474735e-03 -8.1821625e-02 -6.2641648e-02 -9.0925619e-02 1.4767216e-02 -5.4982718e-02 -1.4936161e-02 6.4750308e-02 -1.1958754e-01 7.6254969e-02 1.2677893e-03 -1.1133195e-02 + 1.5139280e-02 -2.3943316e-01 3.9324600e-02 -1.2818324e-01 7.1847315e-02 2.5411155e-01 -1.2941897e-02 1.8471538e-01 -8.3872881e-02 1.4021842e-01 1.3649193e-02 -3.9776941e-02 -7.0576332e-02 -9.2486533e-02 9.7638213e-02 -4.6819235e-02 -5.7384204e-02 -2.9707961e-02 -3.9408001e-02 -2.6307834e-01 -1.4350214e-01 2.9263611e-02 9.8492060e-02 1.3707942e-01 -1.2677761e-01 3.5618470e-01 -1.2152616e-01 1.8037297e-01 -4.3820624e-03 -1.9347082e-02 1.4176057e-01 -6.5946911e-02 5.5755166e-02 8.0259880e-02 + -5.9495076e-01 -2.0956025e-01 1.6217647e-01 3.1669173e-01 -1.7244124e-01 1.9085682e-01 3.9828776e-01 -6.1830676e-01 1.8378941e-01 -2.1257064e-01 1.6804807e-01 3.2476904e-01 6.6550853e-03 -2.4923232e-01 2.8125991e-01 2.6823375e-01 -6.3003529e-02 2.9802805e-02 -1.0979721e-02 1.1787786e-01 2.3654093e-01 1.8786510e-02 3.9511774e-01 -1.0184793e-01 -1.2982044e-01 -1.0457340e-01 -3.9918325e-02 6.2963515e-02 7.6455258e-02 2.0198969e-01 -4.7016555e-01 2.1309159e-01 2.4862204e-01 -7.0818989e-02 + -7.2866157e-02 2.1758231e-01 -8.7816635e-02 -5.2815389e-04 7.9889971e-02 2.0184360e-01 -1.5608195e-01 1.4602380e-01 -1.6167683e-01 3.8403992e-02 -1.5061104e-02 8.4922573e-04 -1.5691963e-01 -2.9669185e-03 6.5678008e-02 1.5925776e-01 1.3893596e-01 -6.9641876e-02 1.3344302e-01 -5.0258444e-02 2.9823776e-02 2.1656386e-03 -7.8964628e-02 -7.3432653e-02 1.7459913e-01 -6.2052091e-02 1.7346674e-01 -4.3945675e-02 1.2258513e-02 -6.0101753e-03 3.7463140e-02 -3.4616073e-02 -1.0370831e-01 -1.4764373e-01 + 2.4111906e-02 -1.8636883e-02 1.1527130e-02 3.0925358e-02 2.1649576e-02 -1.3297071e-01 3.8101864e-02 2.4386298e-02 9.8677900e-02 -5.3598779e-02 8.1560939e-03 -3.5264287e-02 3.1770275e-02 -3.6100761e-02 -5.5397460e-02 3.8611035e-02 6.3600722e-03 -5.3924086e-02 -3.5787931e-03 3.7372670e-02 7.6689831e-02 5.7461964e-02 -3.8302841e-02 6.2326570e-02 2.8899286e-02 -7.5411192e-03 2.9119725e-03 -5.2813363e-02 7.0893584e-02 2.3278097e-02 1.1879350e-02 4.6713863e-02 6.1470639e-02 4.5369594e-02 + -1.4967624e-01 3.4762020e-02 1.8615309e-01 2.1054964e-01 -2.6807558e-01 -4.3900747e-02 1.7560330e-01 -2.3336471e-01 1.7882112e-01 -1.0303921e-01 -7.3485901e-04 6.2012081e-02 -2.7630784e-01 4.2893249e-01 -6.0854134e-02 -1.9648086e-04 3.8400742e-02 1.2032713e-01 -1.3847644e-01 -1.7319412e-01 -3.1039466e-01 -6.4728318e-02 1.7152458e-01 3.3580331e-02 -3.1570447e-02 -1.5424749e-01 -1.7604129e-02 -8.8613637e-02 3.8388606e-02 -5.8970500e-01 -8.5081995e-02 2.3634142e-01 2.5946463e-01 1.9276436e-01 + -9.4028997e-03 1.1816880e-01 -5.7056547e-02 1.2306609e-01 -3.9191955e-03 -3.4943194e-02 -4.1824859e-02 -6.5217929e-02 -1.0126952e-02 -1.3287375e-01 6.8262663e-02 -1.3821270e-02 -2.8626461e-02 1.9120850e-02 -1.0314351e-02 1.0881698e-01 2.9163781e-02 -5.2242888e-02 8.0624582e-02 7.7107694e-02 1.6453104e-02 2.3523805e-02 -4.0410292e-02 -5.6684159e-02 1.0796402e-01 -1.3644722e-01 5.7586683e-02 -1.0632071e-01 2.3413073e-02 -2.0829957e-02 -5.3772269e-02 2.5154447e-03 -6.6392303e-02 -1.7321958e-02 + -1.0991031e-01 1.3284851e-01 -9.0270735e-02 -4.4266322e-02 2.5653084e-02 1.2530590e-01 -2.2809869e-01 1.4988407e-01 -1.1500173e-01 8.3223195e-02 -3.3541100e-02 6.4422917e-02 -2.1999006e-01 4.8203171e-02 1.1202507e-02 1.0612595e-01 5.5336494e-02 -3.2519025e-02 5.7155245e-02 -1.2758357e-01 -2.2965044e-02 -2.4309398e-02 -2.9670255e-02 2.5657728e-03 1.3647515e-01 2.4114087e-02 1.5843888e-01 -2.8735952e-02 1.7288644e-02 -3.2816345e-02 1.3744336e-01 -3.5650475e-02 -4.5141060e-02 -9.7153203e-02 + -1.4403633e-01 2.2954527e-01 -3.6168180e-01 -5.6399130e-01 1.5819893e-01 1.1728723e-01 -1.1080940e-01 3.9948288e-01 1.4002409e-01 3.5883195e-01 -2.7169942e-01 5.1939324e-02 -5.7771944e-02 4.3268072e-01 2.1957014e-01 -1.7156299e-01 2.8517514e-01 -1.2953423e-02 2.7236467e-01 5.6215980e-02 2.5028933e-02 -2.5827005e-01 -3.0513982e-01 -1.1150007e-01 1.2465053e-01 -1.1291643e-01 1.9686139e-01 4.1336446e-01 -2.4165947e-01 -2.4758169e-01 2.5685819e-01 -2.6461836e-01 -2.6246334e-01 -4.4279272e-01 + 3.6590278e-03 -9.0799863e-03 3.8850571e-03 -1.0882791e-02 2.1310996e-03 -4.1159398e-03 3.5877469e-03 7.7948358e-04 3.3178936e-03 8.3224264e-03 -5.6788683e-03 6.7152845e-03 5.5883875e-03 -2.3549819e-03 2.2877988e-03 -7.6476290e-03 -8.6962966e-04 5.4104930e-03 -5.7276393e-03 -5.5969922e-04 1.9174421e-03 -7.0481658e-03 2.4058049e-03 -5.4071023e-03 -1.0683427e-02 4.6405255e-03 -6.0205598e-03 6.1448301e-03 -3.6021569e-03 6.7897032e-03 2.0921043e-03 1.5444406e-03 2.8733081e-03 3.2920305e-03 + 2.4386804e-01 1.4398228e-01 6.7243441e-03 1.5164327e-01 1.6793760e-02 3.7437450e-01 3.6477640e-02 -6.8776952e-02 2.1401254e-01 -9.3276543e-02 6.3084432e-03 4.8328889e-02 -2.0510130e-01 3.0059572e-01 -3.5798027e-01 1.2718494e-01 -9.5558265e-03 1.4623617e-01 2.2147122e-01 -1.6235052e-01 -3.9313451e-01 1.3972238e-01 2.5074990e-01 3.8881061e-01 -1.8260084e-01 1.8551862e-01 1.3708518e-01 -2.0802724e-01 -9.9983210e-02 -1.0593213e+00 5.1885770e-02 1.0491267e-01 1.0165761e-01 -8.0899323e-02 + 4.9143866e-03 -3.1006640e-02 -2.2893784e-02 2.8334745e-02 7.1810773e-04 -7.5960634e-02 2.4849552e-02 -3.5971282e-02 8.2397634e-02 -3.5112177e-02 3.3265431e-02 6.3131456e-03 3.4951645e-02 -2.9574207e-02 -1.7866680e-02 4.5039692e-03 -1.6243483e-02 -1.9229228e-03 1.1442095e-02 2.2404096e-02 3.5114871e-02 2.2261744e-02 -2.4672834e-04 1.3915182e-02 -1.1779112e-02 -6.0032136e-02 -2.4381035e-02 8.3045073e-03 2.4577466e-02 7.8250058e-03 -5.9557282e-03 4.0576361e-02 2.3554679e-02 2.5870727e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_F_4.txt new file mode 100644 index 00000000..080e8d35 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_F_4.txt @@ -0,0 +1,24 @@ + 1.3878637e-01 -4.3353142e-01 -2.6408755e-01 -2.5456208e-01 2.8446972e-02 1.3162824e-01 -6.9835424e-01 5.2247170e-02 -9.9696950e-02 -4.0302255e-02 3.7939145e-02 1.3546884e-02 -5.7876333e-03 2.6368759e-02 -1.9052708e-01 -3.4723266e-02 1.2668150e-01 -9.7492648e-03 5.2531246e-02 -1.8272950e-01 2.2772322e-01 9.3911711e-01 -1.2808583e-01 1.3056124e-01 5.7879954e-02 1.3199273e-02 -5.6343164e-02 -1.1497431e-01 -1.1238791e-01 -1.9354468e-01 1.8147655e-01 -5.3695199e-02 2.6566994e-01 4.3235079e-01 -1.4469138e-02 -2.5947669e-01 -1.0070954e-01 -3.7464299e-03 1.5300398e-01 1.5647516e-01 -3.9791521e-02 + -1.7332505e-02 8.2273941e-02 -2.5888070e-02 -1.8757229e-02 5.3706195e-03 4.4911760e-02 -7.6744708e-02 -1.1582042e-02 2.1804892e-02 3.5048562e-02 -1.0258627e-01 -1.8000250e-02 -7.4548745e-02 6.7330305e-02 1.2881944e-01 -4.5230587e-02 7.3945549e-02 -3.4880234e-02 1.2233592e-01 -1.2048463e-01 -2.8535692e-02 -2.0188800e-01 -7.2343083e-02 -3.2023837e-02 1.3793062e-03 -1.2367642e-01 8.2950207e-02 1.3499099e-01 3.7268190e-02 -3.3915154e-02 -1.0539176e-03 -6.3448494e-02 1.7882764e-02 1.3370541e-01 -4.3635351e-02 4.3511764e-02 -4.2621086e-02 3.8594578e-02 1.5934777e-02 7.1073227e-02 -3.8618493e-02 + 7.0939712e-03 -9.9244706e-03 2.6575072e-02 -8.1211826e-03 1.5925179e-02 -3.6451878e-04 5.9252681e-02 4.9574287e-03 7.0738579e-03 -2.0944597e-02 2.5313428e-03 1.9918620e-02 2.9963588e-02 8.1415256e-03 -1.5016147e-02 1.9530604e-02 7.3245673e-04 4.9269325e-02 -4.0893714e-02 6.6056344e-03 -2.3242095e-02 5.2402333e-02 -2.9642737e-02 -8.0191917e-03 1.5444262e-02 -3.3871680e-02 -3.3060192e-03 -3.8646510e-03 4.2522432e-03 -1.1090533e-02 4.3516374e-02 -1.8431027e-03 5.3665793e-03 6.4334046e-02 -4.5926718e-02 7.5092842e-03 1.7038565e-02 1.1771897e-02 -8.9224478e-03 -9.7011089e-03 2.2597765e-02 + -7.3604925e-05 6.5697376e-03 -1.3715206e-02 -1.7068971e-03 1.2058529e-02 -1.9877726e-04 1.8561390e-02 1.6259256e-03 -2.4886174e-04 -1.4895346e-03 1.4801693e-03 1.1391692e-02 4.5392213e-03 2.2086659e-04 3.7506916e-03 -4.4048780e-03 6.4449278e-03 1.1803598e-02 -1.3347439e-03 2.6568101e-03 1.3619474e-03 2.5578583e-02 -1.1371429e-02 -3.4705872e-04 1.9588213e-03 -4.8673351e-03 -4.8034293e-03 -5.4554959e-03 1.1480686e-03 1.5660497e-03 -2.6860509e-02 -1.2543321e-03 -5.2022603e-03 2.1221488e-02 5.9412799e-03 -4.2239331e-04 1.6378950e-02 1.9525330e-03 -3.9318886e-03 -1.6723329e-03 3.2042287e-03 + -2.2464721e-02 1.5415578e-01 -6.9053742e-02 5.5678429e-02 1.9076425e-01 1.5685453e-02 -7.3970436e-01 -1.9140322e-01 2.5024439e-01 8.6111233e-02 1.3788486e-01 -1.2375669e-01 -7.3733020e-02 -7.3702000e-02 -8.8472418e-02 1.4141370e-01 -7.9770893e-02 -2.5958120e-01 -6.1972342e-02 5.5605654e-02 -4.2798924e-02 -8.1622652e-01 -6.5555279e-03 -1.1395769e-01 5.4465363e-02 3.6970808e-01 1.8887761e-02 -1.6511441e-01 5.8787446e-02 2.7385846e-01 1.2178785e-01 -1.7121330e-01 7.9013285e-02 -3.7228867e-01 -3.4966500e-01 9.1622237e-03 3.5449080e-02 -2.5032067e-01 1.8758248e-01 1.6620699e-01 -1.7276850e-01 + -9.2306534e-03 3.7538287e-02 -1.7040162e-02 7.6476813e-03 3.3678329e-02 3.5198327e-03 -8.7712371e-02 -7.1284687e-03 6.5392179e-03 1.9151109e-02 -3.2570193e-03 -1.9514141e-02 -3.1253751e-02 -2.4147765e-02 2.5652444e-02 -6.2739757e-02 2.2443286e-02 -2.6241728e-02 5.2604134e-02 1.6908916e-02 -1.1929618e-04 -4.8846526e-02 -1.9359800e-03 -1.1687685e-02 -1.9287621e-02 6.2265661e-02 3.9375413e-03 7.3148878e-04 1.0292890e-02 1.5063821e-02 -5.9546852e-02 -4.3511779e-04 -3.3946029e-02 -8.2123679e-02 3.5811771e-02 2.8364952e-02 2.2107222e-02 3.4113639e-03 -1.7349405e-02 -2.1492684e-03 -1.5664558e-02 + 4.7422922e-03 -2.7252636e-02 1.4313921e-02 -6.7206976e-03 -3.1357953e-02 2.5799524e-03 2.0661821e-02 8.9806845e-03 -1.4791346e-02 -3.6668270e-03 8.3835020e-04 5.1153612e-03 1.7096127e-03 2.8453675e-03 -1.2899534e-02 1.5178253e-02 -5.9476575e-03 -8.7254206e-04 -7.8350628e-03 -1.8584330e-02 1.8106386e-02 2.6755449e-02 -1.6469732e-03 1.4900782e-02 1.0806036e-02 -2.1295048e-03 1.8417890e-03 -1.7246777e-02 -1.0911074e-02 -1.5524199e-02 5.0388471e-02 4.1524524e-03 1.2634743e-02 2.1732287e-02 -1.4405836e-03 -1.4638524e-02 -2.4733690e-02 -3.1154767e-03 1.3494835e-02 1.0776266e-03 3.4781283e-04 + -1.5984435e-02 2.9268577e-02 2.2959743e-02 2.7420309e-02 -2.2700532e-02 -1.8335113e-03 -1.5113139e-01 -2.4830852e-02 8.9869726e-03 4.2563194e-02 6.8707503e-03 -7.9585161e-02 -5.4098914e-02 -3.3967028e-02 3.8694559e-03 -2.9026288e-02 -1.6403393e-02 -9.3855118e-02 4.6391495e-02 3.4070746e-02 -1.4016965e-02 -1.5905037e-01 7.0766547e-02 -5.6789238e-03 -5.0508796e-02 1.0295576e-01 1.7911365e-02 2.8906761e-02 3.1046957e-03 2.0767391e-02 7.7289422e-02 4.8902584e-03 -2.5394733e-02 -2.3915745e-01 2.6555097e-02 1.7096437e-02 -4.0323182e-02 -2.4569754e-02 8.4786026e-03 5.7660297e-03 -2.8649246e-02 + 1.0056595e-02 1.5237748e-01 1.9521072e-01 -2.5050831e-02 -2.0902156e-02 8.3319629e-03 7.9221736e-02 -1.0497517e-01 1.7710288e-01 -7.0259323e-03 1.2913614e-01 -1.0261394e-01 7.7571396e-02 -2.9147486e-03 -2.1787303e-01 3.9983089e-01 -2.6176293e-01 1.6725678e-01 1.0540591e-02 2.0377555e-03 6.8529509e-02 -5.2504672e-01 7.7828612e-02 -1.2660160e-01 -1.4577631e-01 -3.6010073e-03 7.5361694e-03 -2.7612150e-01 2.5708760e-02 1.4998031e-01 -5.2663279e-01 -7.7108621e-03 8.0843772e-02 2.2114236e-01 -4.8734432e-02 1.0391052e-01 2.9439832e-01 -5.2706032e-03 -9.2728465e-02 3.8117139e-02 1.0269987e-01 + -1.1440998e-02 1.2617090e-02 9.6976433e-02 2.4360789e-02 3.4024744e-02 -2.5495730e-02 -1.6951941e-01 -2.1493849e-02 7.1614208e-02 -2.0248943e-03 2.8802419e-02 -2.9434365e-02 -6.0310257e-03 -7.0847453e-03 -1.4119712e-02 2.6752878e-03 -6.6875585e-02 -2.4403379e-02 -3.6824483e-02 2.4180695e-02 -3.9130481e-02 -1.6677716e-01 4.4491484e-02 -4.5114197e-02 -2.8466414e-03 2.2073243e-02 3.1077454e-02 5.9564236e-02 2.7806646e-02 5.7362005e-02 7.2371668e-02 -6.5420242e-03 6.4316183e-02 -1.0230932e-01 -5.2913856e-02 4.6823872e-02 2.0349314e-03 6.8651094e-03 -1.8440993e-02 -5.1144769e-03 -6.7124086e-03 + -9.2942961e-02 2.7024380e-01 4.7392717e-02 1.2363622e-01 -7.1505490e-02 -9.3660153e-02 3.8601113e-01 -9.5390568e-02 -1.9830047e-02 9.1872240e-02 6.7476860e-02 7.3328882e-02 2.3758654e-04 9.2935178e-02 7.6719511e-02 3.1876164e-01 6.9688080e-02 7.3589673e-02 -8.8907322e-02 -2.4576359e-02 -4.0210049e-02 -3.9281440e-02 1.3117808e-01 -4.5944463e-03 -3.1926858e-02 -2.7237897e-01 -1.2935552e-02 -1.4051685e-01 1.8755406e-02 1.7187780e-02 -9.6008325e-02 -1.0610898e-01 1.1796133e-01 -2.2057061e-02 -2.4609389e-02 -1.1589465e-01 7.5834696e-02 -1.1599847e-01 1.2682338e-01 7.3379726e-02 1.4139802e-01 + -7.7701940e-03 4.3611990e-02 -3.5413843e-02 7.4366642e-03 4.1713835e-02 -2.1575251e-03 -4.3998204e-05 -7.5763775e-03 1.2366647e-02 2.4710660e-03 1.1833440e-03 1.1136836e-02 -8.6123954e-04 -3.4308029e-03 1.9797239e-02 -1.8406954e-02 1.0843949e-02 1.3866104e-02 1.4648335e-02 2.3960458e-02 -9.9785466e-03 -7.1403437e-03 -1.1563298e-02 -1.7716038e-02 -1.0934650e-02 -5.2827537e-03 -7.0313209e-03 6.7598236e-03 8.1694096e-03 2.0017641e-02 -9.1499453e-02 -3.9888643e-03 -1.8258136e-02 -4.8076786e-03 1.5516760e-02 1.7265968e-02 4.6574355e-02 4.3027352e-03 -1.8615750e-02 -2.6654504e-03 3.3983796e-03 + 7.6161332e-03 -3.2935732e-02 1.5251772e-02 -8.2900125e-03 -3.1191786e-02 -9.5953205e-04 5.5656247e-02 9.6439781e-03 -1.2050336e-02 -1.2530016e-02 2.2061765e-03 1.5801116e-02 1.8157943e-02 1.2247786e-02 -1.8125627e-02 3.4933802e-02 -1.2211179e-02 1.5920228e-02 -3.0836865e-02 -1.7980719e-02 1.1288172e-02 4.0798937e-02 -2.7872031e-03 1.4789797e-02 1.7412048e-02 -3.1102512e-02 -2.0957695e-03 -1.3109894e-02 -1.0712489e-02 -1.5054424e-02 5.0538187e-02 2.7630890e-03 2.2270305e-02 5.6925479e-02 -1.6573307e-02 -2.1522836e-02 -1.9805864e-02 -2.8983880e-03 1.3778412e-02 3.4734638e-04 8.0905332e-03 + 1.7804124e-02 2.2983844e-01 3.5770474e-01 5.9911934e-02 2.1243317e-01 -1.0156845e-01 -3.1346367e-01 -1.6555166e-01 1.6272842e-01 -1.5053792e-01 1.0857591e-01 2.3500925e-01 1.3430006e-01 1.3084957e-01 -5.5144320e-02 -2.6846393e-01 4.2015417e-02 2.1726318e-01 -5.4531620e-01 4.5084297e-01 -4.7716006e-01 7.5981615e-01 -8.4795630e-02 -2.0955681e-01 2.2695232e-01 -3.4322788e-01 -4.4069266e-02 -9.4830645e-02 6.4264729e-02 2.9773143e-01 -4.3085519e-01 -2.6758573e-01 1.7207324e-02 3.9498321e-01 1.5716358e-01 1.1944296e-01 6.7303022e-01 9.9429725e-03 2.7239623e-02 1.3238602e-02 9.9283123e-02 + 6.3167782e-02 -1.1740836e-01 3.5166944e-01 -7.4463612e-02 6.7340345e-02 8.3187157e-02 9.4349378e-02 1.5035896e-02 -1.0285495e-01 1.7884704e-02 -7.5120213e-02 -1.1666846e-01 -2.3907261e-02 -1.7309544e-01 1.4683055e-01 -3.6019871e-01 8.9881833e-02 -1.5401372e-01 2.0972782e-01 -2.8150983e-01 2.1764668e-01 -2.5943815e-02 1.6686770e-01 6.3098876e-02 3.5324241e-02 2.2637329e-01 -2.0074926e-01 -1.3201440e-01 2.5801369e-02 -8.1351535e-02 -5.0420327e-01 4.9848194e-02 -2.3449039e-01 1.1107982e-01 1.1492783e-01 -8.5522162e-02 1.8182258e-01 3.0114684e-01 -1.5853376e-01 -4.7170433e-02 1.4739404e-02 + -4.6906047e-03 2.4291828e-02 -1.7049953e-01 -1.6569492e-02 -1.1243214e-02 3.6724430e-02 1.5590593e-01 2.2730669e-02 -5.1164468e-02 1.6112686e-02 -4.9225873e-02 -1.4302584e-03 -1.3796934e-02 1.6889287e-02 7.5307680e-03 -2.7206464e-02 8.1600373e-02 4.2657028e-02 7.4471201e-02 2.3584227e-02 -1.1740879e-02 1.2897416e-01 -1.2150955e-01 2.0898657e-02 -4.5226263e-02 3.0022480e-02 3.6293242e-02 1.2143230e-02 -1.5228849e-02 -6.9594446e-02 -4.0033624e-02 -3.6587752e-05 -7.3523273e-02 6.6672924e-02 5.1454765e-02 1.8721845e-02 -3.6401759e-02 -2.8422139e-02 7.0271566e-03 1.0086552e-02 -9.3662050e-03 + -4.3707399e-02 1.5898529e-01 -1.4298106e-01 4.4454950e-02 -2.1525952e-01 9.1633542e-02 -1.4837981e-02 -5.7448677e-02 -5.9702385e-02 1.1214413e-01 -1.1332901e-01 -2.1850695e-01 -1.1455700e-01 9.0024431e-02 -1.1739173e-01 -3.0777919e-01 2.3752155e-01 -3.0366220e-01 1.0274947e-01 4.1042724e-01 -4.6182023e-01 -9.2496554e-02 -2.3837820e-01 3.1418952e-03 -9.6301465e-02 1.5542972e-01 2.1205525e-01 3.4530309e-02 -1.5293380e-02 -7.1739617e-02 8.1429183e-02 -8.2694350e-02 -1.3145096e-01 -7.3649601e-02 7.0801104e-02 1.1371415e-01 -2.2498736e-01 -2.3775650e-01 1.7584737e-01 1.4165391e-01 -1.7740174e-01 + 2.1036500e-02 -5.4673033e-02 -9.3709337e-03 -3.8786972e-02 -3.3300206e-02 1.5333121e-02 1.5842953e-01 4.1843780e-02 -7.3736908e-02 -2.0028498e-02 -1.5021750e-02 6.8717949e-02 1.5657888e-02 -8.0096668e-03 2.4858918e-02 -4.1091850e-02 3.8661231e-02 6.4273211e-02 8.6615755e-03 -6.3067595e-02 8.3881588e-02 2.6255367e-01 -3.8042639e-02 5.2232440e-02 3.0368311e-02 -2.5003597e-02 -4.5367200e-02 -8.2901485e-02 -2.6206950e-02 -5.6697838e-02 -4.7713172e-02 2.2300088e-02 -5.5327067e-02 1.5556069e-01 7.2071415e-02 -3.8721870e-02 3.5250877e-02 4.9179556e-02 -2.1361771e-02 -2.4868564e-02 3.1902647e-02 + 1.3119471e-02 -5.5465752e-02 3.0209680e-03 -1.4920038e-02 -1.2559106e-02 4.5921683e-03 4.6259112e-02 1.4012428e-02 -1.3854052e-02 -1.8385860e-02 -8.4048560e-04 1.1428176e-02 3.1378586e-02 5.7292749e-03 -2.7885501e-02 1.6904863e-02 -9.6462411e-04 2.3959573e-02 -4.2973127e-02 -1.1492264e-02 -6.3205759e-03 8.1504953e-02 -1.9717407e-02 1.7113287e-02 1.8585126e-02 -1.8653163e-02 -5.7089946e-03 -1.4697304e-02 -8.5906558e-03 -2.0107378e-02 6.2085017e-02 3.6863523e-03 1.4004575e-02 8.0896685e-02 -1.7604774e-02 -2.3429721e-02 -1.5865914e-02 2.2517065e-04 1.0233397e-02 -4.5024910e-03 1.4462532e-02 + 6.2654488e-02 -9.4098717e-02 2.2878259e-01 -1.1518725e-01 -1.0405447e-01 1.2219138e-02 5.6258012e-01 9.2057349e-02 -1.7462849e-01 -9.9483143e-02 -1.0420956e-02 1.0091745e-01 -1.6401823e-02 1.0909859e-01 3.2621180e-02 -6.0896135e-02 1.4546101e-01 1.7930669e-01 5.5836601e-02 -1.2018491e-01 5.9387620e-02 1.2479774e+00 -5.8336433e-02 6.5828698e-02 1.8750485e-02 -3.5935715e-01 -3.9508184e-02 -3.0446325e-02 -4.6754724e-02 -1.7375427e-01 -2.5244489e-01 5.6249616e-02 -8.3672569e-02 4.0176681e-01 5.6774286e-01 4.1664165e-02 1.7150726e-01 2.6597867e-01 -1.6732768e-01 -1.1567332e-01 1.5223479e-01 + -1.4166192e-04 -4.2136068e-03 1.2090119e-02 1.0002084e-03 -7.9622931e-03 1.0387656e-03 -1.7665953e-02 -2.8301311e-03 5.4877588e-04 4.3812439e-03 -1.8376087e-03 -1.4077314e-02 -7.4855279e-03 -2.2589951e-03 -2.3644000e-03 -9.6195045e-04 -3.1854634e-03 -1.3567029e-02 5.1618600e-03 -1.1969088e-03 -3.1918977e-03 -2.3338157e-02 9.3029243e-03 -6.4288453e-04 -5.5420247e-03 1.3597880e-02 6.1427812e-03 7.8810130e-03 -4.6317643e-04 -3.0253744e-03 2.5102749e-02 -1.2547616e-03 2.0194844e-03 -2.3404239e-02 -4.5674513e-03 1.5312795e-03 -1.4045655e-02 -1.1453002e-03 3.9634484e-03 2.7725018e-03 -4.1225970e-03 + 1.0429120e-02 -2.9846164e-02 -8.9606726e-03 -1.7205951e-02 -4.0640875e-02 -5.1939342e-03 1.0364435e-01 2.7889904e-02 -3.0743427e-02 -2.9769278e-02 1.3563954e-02 7.1704546e-02 3.1750499e-02 2.0139927e-02 -1.7082210e-02 5.8858073e-02 -1.2456485e-02 5.4935275e-02 -4.0285751e-02 -3.3166643e-02 5.0562260e-02 1.1004849e-01 -2.8031590e-02 2.9879128e-02 4.2423144e-02 -8.1826652e-02 -1.8154966e-02 -5.8216784e-02 -2.1349638e-02 -1.8387581e-02 -1.6253503e-02 1.3455186e-02 2.9141000e-02 1.3414175e-01 1.3374953e-02 -3.0114382e-02 7.0538856e-03 2.6918196e-03 7.9128570e-03 -7.6915121e-03 1.4975793e-02 + 1.6344154e-03 -9.5810777e-03 9.6621911e-03 -1.8323161e-03 -1.3449730e-02 4.0674354e-04 1.6854299e-03 1.8257484e-03 -3.7394416e-03 -4.5163551e-04 1.3854417e-05 -1.9745447e-03 -8.4194757e-04 1.1988016e-03 -4.8179298e-03 6.1645782e-03 -4.0375277e-03 -3.8070458e-03 -2.0860623e-03 -6.1545016e-03 5.2048830e-03 -9.9660878e-04 3.4131505e-03 4.4686352e-03 2.4796864e-03 1.5412254e-03 2.6792216e-03 -3.5533074e-03 -3.4153276e-03 -4.9668624e-03 2.3746033e-02 8.3061857e-04 5.6219232e-03 -1.7569036e-05 -3.6847791e-03 -4.2565631e-03 -1.2195174e-02 -1.9814995e-03 5.3322349e-03 1.4471602e-03 -1.7319726e-03 + 6.3272298e-03 -3.1119742e-02 1.5907008e-02 -9.2698281e-03 -3.6488969e-02 -6.6931934e-04 4.3835395e-02 1.2995329e-02 -1.7753611e-02 -1.0332026e-02 4.4279051e-03 2.0436625e-02 9.2811961e-03 9.7769213e-03 -1.5941639e-02 2.6973773e-02 -1.0960643e-02 1.1138298e-02 -1.8351119e-02 -2.3325329e-02 2.5251634e-02 4.4505491e-02 -8.7170942e-03 1.7874263e-02 2.0847440e-02 -1.9251006e-02 4.9879947e-04 -2.7020534e-02 -1.2153064e-02 -1.4654862e-02 4.8064733e-02 4.2203597e-03 2.2453281e-02 4.8712904e-02 -3.8260311e-03 -1.6887212e-02 -2.1188512e-02 -2.9241769e-03 1.4757550e-02 6.2801176e-04 2.3893093e-03 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_F_5.txt new file mode 100644 index 00000000..a643a4da --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_F_5.txt @@ -0,0 +1,19 @@ + -4.9842081e-02 1.0564003e-01 4.6033485e-02 -6.3765498e-02 3.3184116e-02 5.6684360e-02 3.1935789e-02 3.6544908e-02 8.8915921e-03 2.7937175e-03 3.1237727e-03 -1.8574874e-02 -9.8092811e-03 1.1066733e-01 -9.5604145e-02 3.0231851e-02 -2.1646084e-02 1.4731508e-01 -2.1371996e-02 2.8717477e-03 2.1100093e-02 -1.6871020e-02 8.2482359e-02 3.4239963e-03 -4.3978352e-03 2.6512220e-02 -9.5460261e-04 1.4630874e-02 2.1104276e-02 1.8328339e-02 2.3049679e-02 -1.6361630e-02 1.6017471e-02 -1.1086780e-03 3.2917416e-02 1.0809325e-03 3.0952180e-02 3.2328675e-02 1.6748344e-02 2.6772083e-03 1.0809930e-02 4.2446857e-03 + -4.7383636e-02 4.0702391e-02 -2.5098067e-03 -8.8275578e-02 7.9034550e-02 -3.8588344e-02 -1.0058847e-01 1.4320108e-02 4.5696234e-02 7.4280300e-03 -6.3154406e-03 1.1017110e-04 -4.7912184e-02 -3.5813643e-03 -5.4283719e-02 3.1272236e-02 -1.2060493e-02 -1.6670906e-03 1.9745985e-02 1.4504534e-01 4.5453007e-02 2.7163686e-02 -5.7571925e-02 3.2553370e-02 3.2336474e-02 4.2653742e-02 -6.1019811e-02 5.6553279e-02 -2.3442475e-02 -4.3612395e-02 9.7911714e-02 -1.2383172e-01 1.2109937e-01 -7.2336963e-02 3.3468923e-03 7.9133165e-02 -1.0924368e-01 2.4089232e-02 9.9782821e-04 5.8539277e-03 -8.5294400e-02 -5.2660188e-02 + -2.5991795e-02 1.0099401e-01 6.6078934e-02 -7.7533150e-02 4.3812150e-02 5.1124515e-02 -7.3831956e-02 -6.8853319e-02 1.4147522e-02 1.3074131e-01 9.3735320e-02 -1.0427158e-01 2.1766838e-02 7.6720416e-03 -1.2042211e-01 -7.0592246e-02 1.0781270e-01 1.6053266e-01 1.4698955e-01 9.7625361e-02 9.6812105e-02 2.3123842e-01 1.0931024e-01 -1.7551343e-01 -1.7204802e-01 -4.4399763e-02 -1.5943401e-01 -1.3158467e-02 -1.1677735e-01 8.5468891e-02 1.8100005e-01 -8.8495539e-02 8.5927022e-02 -1.2616527e-01 -1.9905384e-05 2.1236289e-01 -3.2898406e-03 5.6467127e-02 -1.5199294e-01 1.7679903e-01 -2.7155327e-02 1.1276085e-01 + -1.6398258e-02 -6.2385094e-03 -2.3798677e-02 -3.4077006e-02 1.4839786e-02 -6.9731999e-02 -4.6075304e-02 -5.2820300e-02 2.1702062e-02 -2.6673303e-02 -2.2496476e-02 4.8635966e-02 2.2588490e-02 -1.7584562e-02 -1.6589674e-02 3.2496103e-02 -1.5538647e-02 -2.0596795e-02 -2.4733012e-02 6.8541874e-02 -2.8486104e-02 -6.8616134e-02 -3.7405568e-02 1.6156454e-02 6.0863763e-02 5.1860062e-02 -5.7331071e-02 -8.0287666e-03 -1.2076691e-02 3.1578086e-02 1.2889911e-02 1.8287946e-02 3.9670988e-02 2.8682474e-02 -1.2291633e-02 5.2225890e-02 -2.8849376e-02 2.0896892e-03 -3.2574638e-02 -2.4236814e-02 -2.8510537e-02 -2.9046731e-02 + -9.6989776e-02 -2.1375713e-02 -5.5180942e-02 -6.1679102e-02 -8.7049598e-03 2.1430322e-01 3.0848384e-01 3.7568541e-01 1.3344040e-02 7.0278413e-02 -7.3247225e-02 -8.2629900e-02 -3.0639579e-02 1.1442641e-01 1.1133156e-02 4.2508520e-02 3.1508930e-02 4.5405189e-02 -8.4515276e-03 9.1017452e-03 -7.1456094e-02 -1.4159743e-01 4.4325750e-02 -5.2064712e-02 3.9814108e-03 2.3698207e-02 4.8325219e-02 -6.6930596e-03 2.0222869e-01 1.0358368e-01 -1.1308261e-01 1.1047883e-01 1.1547355e-03 1.2998954e-01 1.2819358e-02 -1.4812678e-01 -7.2153240e-02 -8.1268767e-02 -3.0612192e-02 -6.1738482e-03 -1.4823927e-02 -1.5218813e-01 + -2.5007363e-01 2.8480949e-01 -1.5393218e-01 -2.5321537e-01 1.8239885e-01 -4.9758435e-01 -1.9821613e-01 2.8029393e-01 -5.2392431e-01 -7.9857779e-02 -2.3300378e-01 5.3388618e-01 -6.5900002e-02 3.3521580e-01 1.0849615e-02 2.5085660e-01 -2.6897562e-01 -5.1635964e-02 -3.2387406e-02 4.3261256e-02 1.0524412e-01 -1.3894735e-01 1.1369338e-01 1.4558916e-01 8.9028614e-02 -2.1616753e-01 -9.2027043e-03 6.1994359e-02 2.4438977e-03 -1.3268288e-01 -1.6849541e-01 1.7694685e-01 1.6619108e-01 2.2326984e-01 1.2948463e-03 3.2814800e-01 -1.1311510e-01 -2.2536149e-01 1.9799429e-01 -1.2983152e-01 -1.1174164e-01 -1.1284432e-01 + -2.4109994e-02 1.2014602e-02 1.2924069e-01 3.7219549e-02 6.9346603e-02 -8.8196756e-02 -2.4314371e-02 -5.1976503e-02 1.6308128e-01 1.1384152e-01 1.2670908e-01 -2.5649486e-03 -3.4964659e-02 -1.3632441e-02 -8.9546166e-02 -3.6334329e-02 1.0743435e-01 -2.0428846e-02 1.4699395e-01 1.7024424e-01 1.1008157e-01 1.4982181e-01 1.4375163e-01 -1.6447153e-01 -1.3364047e-01 -1.3082931e-01 -1.7658718e-01 -2.9746763e-02 -9.0274535e-02 7.3073631e-02 1.7280602e-01 -1.6965033e-01 5.1640110e-02 -1.5431855e-01 6.5880808e-02 4.7669014e-02 -5.5459070e-02 4.2740978e-02 -1.2706749e-01 1.6952541e-01 -4.3717216e-02 4.9970405e-02 + 7.2216627e-02 2.5373468e-01 -1.0592989e-01 2.0845946e-01 -2.2143367e-01 -9.5482118e-02 -2.2935263e-01 -1.6343935e-01 2.2312103e-02 1.4890872e-01 2.7377976e-02 3.3494748e-01 3.8330474e-01 2.3128027e-01 -3.5756027e-01 -2.4716822e-01 -4.3176159e-01 6.0059088e-01 2.8953658e-02 -7.3612353e-03 -3.3773086e-01 1.4412665e-02 4.0665327e-01 -4.0288713e-01 -2.7779454e-01 2.1140049e-01 -1.5128866e-01 -1.0700023e-01 -3.8859047e-04 3.3256805e-01 -1.1120509e-02 1.0090439e-03 2.3364187e-01 4.2221189e-02 4.8370782e-02 1.4759156e-01 2.1865985e-01 8.5675925e-03 -5.7027020e-02 2.8600144e-01 2.1129522e-01 8.9779905e-03 + 6.9922557e-03 3.9583025e-02 -1.0810181e-01 -3.2850357e-02 -5.5431374e-02 -5.8474000e-02 -2.1844516e-01 -3.2207148e-02 -1.4194734e-02 -5.5100092e-02 -6.5661799e-02 5.4815933e-02 9.4179738e-02 -6.9433328e-03 -1.4064512e-02 -8.7427463e-02 -3.2078304e-02 1.2070175e-01 6.0886003e-03 3.7471913e-02 2.3745051e-02 -7.4245802e-02 -1.4789536e-03 9.4403199e-02 2.8699714e-02 1.1295705e-01 -8.3570297e-02 -7.7149527e-02 -1.3024792e-01 4.1944796e-02 4.7733149e-03 1.5339891e-02 3.7921566e-02 -7.4295409e-02 -2.6636406e-02 1.3124578e-01 7.4121155e-02 4.1411766e-02 1.2843822e-01 -7.6574192e-02 -2.9692352e-02 1.4214134e-01 + 2.2023447e-02 2.4186039e-02 -1.2872764e-01 -1.4037395e-01 -3.9865339e-02 1.7739245e-01 -2.0529254e-01 -1.0060009e-01 -9.3933168e-02 1.2701818e-01 -1.4643982e-01 7.4058409e-02 1.2943420e-01 -2.1387140e-01 5.7747229e-02 9.0453973e-02 -2.2520290e-01 1.4615296e-01 2.2101264e-02 -8.4911840e-02 1.1191656e-01 -1.7422383e-01 -2.9323371e-02 6.1141443e-02 6.8406790e-02 1.7815021e-01 8.8765640e-02 -4.3711527e-02 1.0425925e-01 -1.0555014e-01 1.0101697e-01 1.3579692e-01 8.1855182e-02 -8.4230278e-02 -2.6390601e-02 -5.4146602e-02 -2.0725099e-01 -5.1338682e-02 5.4715206e-02 1.5075437e-01 -2.9991259e-02 5.4057823e-02 + 5.7376353e-02 -5.7000525e-02 -3.6881183e-02 4.6574199e-02 -5.9178870e-02 -4.7849204e-03 -1.0235067e-03 -4.4701858e-02 -7.2570468e-03 3.0528483e-02 2.5228839e-02 -1.3059315e-02 4.7258878e-02 -4.8505291e-02 2.4015251e-02 -3.6199905e-02 9.8637416e-03 -4.7982672e-02 1.9412772e-02 -1.8813306e-02 -3.3141876e-02 1.7314264e-02 -1.6645914e-03 -3.3673286e-02 -2.6321218e-02 -2.6945040e-02 1.4043543e-02 -4.9496951e-02 -2.1841531e-02 3.0584166e-02 -6.1905664e-03 3.0719222e-02 -4.7976163e-02 3.2760502e-03 -3.6540274e-02 -3.0674248e-02 5.2063514e-02 -3.3896324e-02 -1.3558029e-02 3.3484987e-02 4.1674099e-02 3.4658960e-02 + -3.2156934e-02 9.6311939e-02 5.8938308e-02 -7.3239072e-02 1.3180754e-03 7.7151237e-02 -3.9893612e-02 -4.0537955e-02 2.7881880e-02 -7.2131569e-03 3.0321417e-02 -7.5352825e-02 2.0842041e-02 6.0739725e-02 -9.8379874e-02 2.0159118e-02 -8.5718558e-02 7.1886089e-02 -1.1907587e-02 -5.7252019e-03 2.3376669e-02 2.8337982e-02 8.8235672e-02 -5.2290203e-02 -4.7073060e-02 7.6521220e-02 -9.1462259e-02 -1.2909140e-02 2.3284315e-02 3.2420239e-02 4.0713150e-02 6.6372985e-02 2.2052545e-02 1.4220518e-02 7.1383455e-02 5.5855397e-02 6.9260215e-02 4.5567904e-02 -7.2515056e-02 5.7096025e-02 6.6006130e-03 2.8764711e-02 + 1.7702357e-02 -2.4740364e-03 9.3066185e-02 -5.4975846e-02 -2.2280223e-03 5.6891755e-02 6.0120890e-02 -4.5249305e-02 8.5821160e-02 2.7066346e-02 1.0088307e-01 -4.8862433e-02 -5.3805999e-02 5.3245779e-02 -4.9063493e-02 -2.4639733e-02 4.0017326e-02 -2.8739266e-02 -1.9935594e-02 -8.1038664e-03 7.0814694e-03 -2.1957247e-03 1.0121305e-01 3.4912989e-03 -7.2231757e-03 7.1736457e-02 -5.7458903e-02 4.5247468e-02 7.2420980e-02 1.6966679e-02 -1.9939676e-02 9.7482874e-02 -3.7398382e-02 5.9824287e-02 5.7066915e-02 1.4824276e-02 4.3912838e-02 6.4492315e-02 -2.8253090e-02 1.2749901e-02 8.1002650e-03 3.8085797e-02 + -1.0694208e-01 -1.0089716e-01 -9.6723424e-02 9.2754876e-02 1.8400195e-01 8.9748502e-02 4.9102131e-01 6.6254031e-01 -2.9652178e-01 1.7921595e-01 -2.0651737e-01 2.1410594e-01 -3.2288921e-01 6.1937172e-02 1.6777975e-01 2.3739388e-01 1.8916534e-01 -2.8807780e-01 6.4822523e-02 -1.6555838e-01 1.0128287e-02 -1.3052082e-01 -2.2433562e-01 1.4792281e-01 6.7168202e-02 -5.7943158e-01 5.6667495e-01 1.5650785e-01 1.5790595e-01 -4.5252687e-02 -1.4834413e-01 -8.3016990e-02 -2.4420536e-02 1.6661210e-01 -6.2939596e-02 -2.7141907e-01 -2.6077482e-01 -3.9690626e-01 1.8318785e-01 -1.4829408e-01 -3.1275521e-02 -1.0687843e-01 + 2.1355529e-02 -1.1888621e-01 -2.8830681e-02 3.3022938e-02 1.1998545e-02 -1.7489930e-02 -1.2159856e-02 -2.1091494e-03 4.9428945e-02 -4.1701967e-02 1.3158409e-02 -3.4900227e-02 -3.9707588e-02 -1.1519143e-01 6.1280765e-02 -5.0415844e-02 9.7241635e-02 -1.5475016e-01 2.3067794e-02 3.9279591e-02 -4.5573550e-02 3.0956907e-02 -6.7643502e-02 6.0249318e-02 6.3131720e-02 -1.7405758e-03 1.3320447e-02 4.3510218e-02 1.9304923e-02 -6.1064837e-02 6.6347245e-03 -3.5050016e-02 -4.3392598e-04 4.6020013e-02 -4.0025407e-02 -2.9927787e-02 -1.0246804e-01 -4.2234217e-02 -2.9094035e-02 -8.8898548e-02 -2.0597130e-02 -3.7082900e-02 + -1.2137869e-02 9.8422744e-03 5.4011474e-02 -2.6872571e-03 1.9287007e-02 6.6707272e-02 9.7024902e-02 6.7006712e-02 2.2211684e-02 3.6486549e-02 -1.8210264e-03 -1.2178271e-02 -3.6554481e-02 2.9755264e-02 -5.1318376e-04 -1.4651343e-02 3.9406666e-02 7.5886009e-02 8.8679765e-03 -5.0331644e-02 5.3431138e-03 1.3032718e-02 8.9940468e-02 4.9796110e-03 -1.3833134e-02 -4.0587606e-02 2.4961017e-02 2.5145719e-02 3.8167908e-02 6.4483495e-03 6.1145860e-03 2.1346317e-02 -2.3377185e-02 2.0775109e-02 1.6576909e-02 -4.1370938e-02 -9.0627364e-03 -1.5861225e-02 -5.4495100e-03 2.2410041e-03 2.4636833e-02 1.5915901e-02 + -2.6056594e-01 2.7742842e-01 4.9841446e-01 -1.0073697e-01 3.6608112e-01 3.4098573e-01 3.3020334e-01 8.3953739e-01 3.6233845e-01 2.5832399e-01 -2.1711786e-02 -1.4989868e-02 -3.1212244e-01 1.3527793e-01 -3.9276198e-01 5.6562384e-02 2.8868884e-01 3.5281399e-02 2.7768726e-01 2.3153777e-01 2.0739235e-01 2.1499798e-01 2.1738046e-01 -8.6760320e-02 -2.1560570e-01 -2.7655867e-01 2.3943805e-02 2.4073756e-01 4.8664899e-02 9.1576196e-02 3.1932531e-01 -3.4031737e-01 3.2986672e-01 -1.3665917e-01 2.5524815e-01 5.2720989e-02 -2.9497169e-01 1.2571945e-01 -6.5832403e-02 1.4934166e-01 -2.2308963e-01 4.3546434e-02 + -2.7606653e-01 3.6394354e-01 8.7770910e-02 -1.3783832e-01 9.5532127e-02 -1.2013429e-02 -2.1920786e-01 -1.8858407e-01 7.4744373e-02 -1.2434652e-01 -1.1046713e-01 -1.8384025e-01 9.9625029e-02 1.2877944e-01 -2.1469390e-01 1.4479607e-01 -2.0647777e-01 -1.7544595e-01 -6.8874340e-02 1.3908160e-01 2.8420865e-01 -1.7712217e-01 -1.7636952e-01 -1.2380198e-01 5.0002616e-02 4.0534242e-01 -9.9997092e-02 -4.4222070e-02 -3.8826304e-03 4.6303825e-02 -4.7467868e-02 -7.3437036e-02 1.5312177e-01 -2.5980270e-01 2.3271515e-01 4.5250839e-02 -1.1496537e-01 4.7390071e-01 6.4907012e-03 -1.7731062e-02 -2.5692849e-01 -1.0261696e-01 + -5.9040596e-02 3.3105129e-01 7.7962869e-02 1.4469549e-01 -1.0348744e-01 -2.7293749e-01 -1.1888404e-01 -2.7135924e-01 -1.2285533e-01 4.7265893e-02 -1.0155203e-01 5.5870668e-01 3.1951442e-01 3.6577070e-01 -4.5458283e-01 -1.5678420e-01 -1.9722302e-01 5.4772847e-01 1.3634221e-01 -3.2989989e-02 -4.0530046e-01 -7.3824014e-03 4.2985758e-01 -2.5905992e-01 -3.2401363e-01 7.5278617e-02 -1.6316803e-01 -1.0576495e-01 -8.5373199e-02 3.8602722e-01 3.6758181e-02 9.4413796e-02 1.5635644e-01 2.5605052e-01 4.9467200e-02 1.6680779e-01 1.8582983e-01 1.3436154e-01 -7.6703582e-02 2.8114399e-01 1.7826616e-01 6.6217421e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_G_1.txt new file mode 100644 index 00000000..7c600f9a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_G_1.txt @@ -0,0 +1,20 @@ + 7.7959181e-03 2.3885303e-02 -7.3191857e-03 -3.9796433e-02 -1.4978191e-02 -1.3468858e-05 5.6683582e-03 6.4918980e-03 5.1742529e-03 -1.0852232e-02 4.5185572e-03 -2.3570823e-03 -1.8467441e-02 -1.3316377e-03 -5.1051777e-04 2.1973166e-03 3.8430198e-03 3.2241402e-03 -1.2737376e-02 8.6248433e-03 6.2681706e-03 3.0108481e-03 -2.7028572e-03 -6.5042832e-03 -6.7521081e-04 8.3569013e-04 -2.2456963e-02 1.2173349e-02 + 7.5688546e-02 -1.9035516e-01 1.7882267e-01 6.9316549e-02 -7.6542355e-01 -1.1314593e-01 4.3904302e-01 -3.9020689e-02 -4.0839679e-01 3.1377681e-02 -1.6695384e-01 1.0379539e+00 1.5117215e-01 8.7891832e-02 -5.7348813e-02 -8.3418353e-02 5.4242546e-01 1.5598594e-01 -1.8473170e-02 -5.2908441e-01 -1.2065089e-01 -5.8709632e-02 -2.9323839e-01 -3.2507633e-01 -2.8655258e-01 -3.2147984e-01 -7.5796788e-02 3.2168682e-02 + 1.8143195e-02 -1.0170009e-01 3.5010516e-02 7.6685439e-02 -2.1734714e-02 -1.2002825e-02 5.1559667e-02 -2.2935447e-03 -1.4048431e-02 1.1186292e-02 -5.4435995e-04 3.1399553e-02 3.9467222e-02 4.2708692e-03 3.4242655e-03 5.0176491e-04 -2.6480456e-03 2.3590980e-04 -1.3171369e-04 -4.5938234e-02 -6.4732376e-03 -2.9458021e-02 1.0991685e-02 -9.9057994e-03 2.0836403e-03 8.0546971e-02 6.4332482e-03 -2.5889048e-02 + 1.8731966e-05 -7.6005873e-02 6.5500394e-03 3.1972065e-02 1.6299690e-02 -2.3271797e-03 2.4483163e-02 -3.9676011e-03 -6.0512353e-02 1.3129878e-03 1.1939295e-02 -1.8361457e-02 -2.7539306e-02 1.0945634e-02 1.4899818e-03 6.3253346e-03 4.5431182e-03 1.2838357e-02 8.9532497e-03 -9.3170014e-04 -1.9840183e-03 -8.2908487e-03 1.6020253e-02 1.2634891e-02 2.1172689e-02 6.6401635e-02 4.9093050e-03 -1.6063642e-02 + 8.1705192e-01 -7.3627614e-01 5.4900830e-01 -5.3284341e-01 -5.2852368e-01 -4.1907058e-02 7.7106341e-01 -2.1376918e-02 -1.8495918e-01 2.0679178e-01 -2.9843927e-01 -1.8668318e-01 -3.3766431e-02 4.1070327e-02 1.0239177e-01 8.8507566e-03 2.0943538e-01 1.5351689e-01 -2.5966959e-02 -3.5987610e-01 -3.5121603e-01 9.5904329e-02 -1.8418636e-01 6.0045253e-02 -3.6814291e-01 7.6449826e-01 3.5203924e-02 1.1121520e-01 + -5.6413302e-02 -3.8168404e-01 1.1028653e-01 -6.6387302e-02 3.8583799e-01 2.1123170e-01 -4.5069828e-02 2.2650935e-01 3.7084084e-03 7.0708500e-02 1.1222748e-02 -4.6112025e-01 -2.6631587e-01 -2.3251847e-02 6.3010909e-02 3.2723474e-02 -5.3632644e-01 8.7184589e-02 -7.7488106e-02 -6.3481988e-01 5.6352301e-01 3.3544050e-01 1.0250156e-01 -9.4091584e-02 5.2006498e-03 1.7200097e-01 1.4374125e-01 -1.6153249e-02 + -2.3245214e-01 7.4600149e-02 3.7168617e-02 1.8662451e-01 2.0272183e-01 7.0626549e-02 -2.8063166e-01 3.4854090e-02 1.9226207e-01 -9.4308419e-03 9.4948421e-02 1.8602614e-01 3.5576645e-01 -1.1432352e-01 -1.5419401e-02 -2.5504612e-02 -4.1313782e-01 -1.8318011e-01 2.6818812e-02 4.2492665e-01 5.0428063e-02 -1.4933434e-02 1.5091976e-01 -4.7858823e-02 4.8418055e-02 3.3699316e-01 1.6776978e-01 -3.4566532e-02 + 5.4664520e-02 -2.7721285e-02 2.8566324e-04 1.3571059e-02 -1.5787781e-01 -9.7008199e-02 1.2484128e-01 -7.3013709e-02 -1.3992806e-01 -3.4272305e-02 -1.3522906e-01 1.5084958e-01 -3.2639896e-01 1.4144732e-02 1.0794995e-02 -2.2114555e-02 2.1637664e-01 1.3370047e-01 -3.4208444e-02 7.9682134e-02 -1.2552275e-01 -1.6803603e-01 -2.9061272e-01 5.3862305e-01 -1.5805251e-01 8.5192692e-02 -1.0539910e-01 1.4170196e-01 + 1.1199145e-02 7.6366974e-02 -6.3062860e-02 -4.7876824e-02 -3.2064269e-03 1.5523493e-02 -5.4986769e-02 1.2573098e-02 1.9301482e-02 -2.8427933e-02 -2.0678324e-03 -1.4128047e-02 -4.0975808e-02 -4.8631800e-03 -1.2348386e-02 1.0448094e-02 -3.3849160e-02 -1.8800914e-02 -1.5739473e-02 -1.2284352e-02 1.0231449e-01 1.1581240e-01 1.2484866e-03 3.1171017e-02 -1.6118700e-02 -9.5443082e-02 -1.1768339e-02 4.3629856e-02 + -1.4850934e-02 5.6162900e-02 -8.2897202e-03 -7.1789160e-02 -8.8915538e-03 9.1640936e-03 -3.6375213e-02 -1.6820188e-03 -5.6134051e-03 -2.2429354e-02 -6.2645251e-05 -2.9733952e-02 -2.5303663e-02 8.6983238e-03 -1.0026451e-02 8.3416612e-03 -1.4873227e-03 -1.2649286e-02 -5.6144357e-03 5.4556500e-02 4.9277032e-02 6.0306140e-02 -1.1637094e-02 3.1771002e-02 -2.2018812e-03 -5.6455291e-02 -2.1784597e-02 1.6251453e-02 + -2.8478949e-01 -9.5224939e-02 -1.0922585e-02 7.0241061e-02 7.2285711e-02 -7.1864985e-03 1.8998050e-01 -1.6941754e-02 -1.5321433e-01 -6.0893043e-02 -6.4810546e-02 6.4490395e-02 3.8707811e-01 1.7501690e-02 3.9940976e-03 -2.0691104e-03 8.0606876e-01 3.6625180e-02 -1.1777236e-02 1.7737241e-01 3.6395305e-01 8.6169489e-02 -1.4886940e-01 6.1392976e-01 -1.2390053e-01 -1.0235942e-01 -5.9881398e-02 5.5736470e-02 + 1.0902896e-03 1.6793719e-02 -7.2579017e-03 -1.2855465e-02 -7.6169573e-03 -4.8944202e-04 -6.4862368e-03 -3.1475167e-04 -5.9228695e-04 -7.9719050e-03 4.6086801e-04 -1.4523687e-03 -4.1583247e-03 -9.5132326e-04 -1.4979611e-03 2.1182698e-03 7.8128026e-03 -5.3676957e-03 -3.5072731e-03 6.9621994e-03 1.4367451e-02 1.4910422e-02 -1.4631131e-03 5.2303849e-03 -1.9640851e-03 -1.6199114e-02 -6.7050364e-03 3.3116081e-03 + 5.6924900e-03 6.6395684e-02 -3.0502795e-02 -4.9442545e-02 -4.4856944e-03 -7.1346277e-03 -1.5085369e-02 8.6579268e-04 -1.1537048e-02 -1.9810169e-02 -5.2216730e-03 1.2828797e-02 -1.3387364e-02 -4.6609092e-03 5.1776505e-03 1.4935563e-03 3.6398615e-02 -2.1144801e-02 -3.2104542e-03 6.4418827e-03 3.0765432e-02 3.7104261e-02 7.1380433e-03 1.7115976e-02 -9.9691602e-03 -8.9185652e-02 -1.1744851e-02 1.9484310e-02 + -6.2750382e-02 1.0034206e-02 1.4319464e-02 -1.0848867e-02 7.4497359e-02 4.1699691e-02 -4.1515407e-02 1.9038590e-02 1.1113590e-02 4.4945707e-02 9.2987344e-03 -2.3689458e-02 -4.6005341e-02 1.2367529e-02 -1.7621750e-02 -6.0976806e-03 -6.8048920e-02 5.2631899e-02 9.1927213e-03 -5.2767140e-02 -6.3009862e-02 -2.6544565e-02 2.7012732e-03 -4.9921421e-02 1.9392796e-02 -8.1208884e-03 4.9925619e-02 -1.8678057e-02 + -9.1844194e-03 -1.0783334e-02 -7.1484143e-03 1.1310918e-02 1.5679813e-02 -6.0837925e-04 1.1194820e-02 -4.9976327e-04 2.4096181e-03 6.4687617e-03 -5.7892119e-04 -2.1458502e-02 -3.9752451e-03 4.4350231e-03 -2.8689485e-04 2.7045005e-03 -1.5432943e-02 1.3520797e-02 -6.0709472e-03 2.5402025e-03 7.2556339e-03 3.7134450e-03 -1.1455053e-02 -7.9010810e-03 -7.6156470e-04 7.4558850e-03 -1.2358525e-02 -1.7811285e-02 + -6.3527535e-02 -1.9274426e-01 5.9911422e-02 -1.3604828e-01 -6.2394247e-01 -3.7009075e-02 1.3870852e-02 -7.6075502e-02 1.3188248e-01 -6.9381826e-02 4.3267438e-02 -1.7066583e-01 -5.1517931e-02 8.3265259e-02 3.2541144e-02 1.1466549e-01 4.6452550e-01 -8.7567891e-02 -1.1069473e-02 -9.6145244e-02 6.0223522e-02 -1.4771700e-01 -1.6556844e-01 -7.6990533e-02 3.5419787e-02 9.8134233e-02 -1.8376218e-01 7.0156033e-02 + -5.7974113e-03 -1.0789858e-01 7.0177619e-02 7.7886860e-02 3.9079002e-03 6.4503730e-03 2.0582427e-02 -1.9173824e-03 9.8615346e-03 1.7879834e-02 1.1597499e-02 -3.7391167e-02 1.6815392e-02 5.3603125e-03 -6.9852584e-03 -1.0390217e-03 -5.1306358e-02 1.7021000e-02 3.8371518e-03 5.8329357e-03 -3.6084918e-02 -3.8664972e-02 -1.6199105e-03 -3.0677806e-02 1.8797711e-02 1.5829678e-01 1.1245516e-02 -3.3856984e-02 + 2.8469731e-02 2.2898781e-02 -7.4723742e-03 -2.1029827e-02 -5.5737265e-02 -2.2688653e-02 4.4741839e-03 -8.9492712e-04 -1.8748710e-02 -5.0252928e-02 -6.4164131e-04 3.7110383e-02 -9.9938484e-05 -1.4998743e-03 1.8213640e-02 1.6636083e-02 8.9036608e-02 -6.5041324e-02 -1.3985391e-02 -3.0745633e-02 7.8605762e-02 5.7124391e-02 1.6490425e-02 3.3732364e-02 -1.2055483e-02 -7.7488650e-02 -3.3203455e-02 2.6064693e-02 + 2.8558993e-01 5.5227514e-02 -3.0863626e-02 2.1802939e-01 -4.6910674e-01 -2.9137198e-02 -1.5215317e-01 -6.8977133e-02 2.5900477e-01 -3.1984968e-02 -4.1904009e-02 1.7016843e-02 -2.2624441e-01 -7.7299635e-02 3.1114696e-02 -2.7631353e-02 -6.0258602e-02 1.6500014e-02 8.6561094e-03 2.5697706e-01 -2.2054889e-01 -4.3501768e-01 -2.7522705e-01 -2.5357497e-02 -6.5499962e-02 5.7360658e-01 -6.2382498e-02 1.8720187e-01 + -1.8918556e-02 -6.9659386e-02 -2.3116675e-02 -6.8997279e-03 -9.2085855e-02 4.8647302e-02 1.8151144e-02 1.6866897e-02 2.4884789e-01 -1.3835333e-03 1.7554233e-02 -2.0320655e-01 -1.1464234e-01 8.1355711e-04 1.6927783e-02 4.8413037e-02 5.8159138e-03 9.3723933e-04 -9.8069054e-03 3.9324085e-02 2.0723415e-01 -3.6238414e-02 -7.4167727e-02 6.7774566e-01 -5.0603024e-03 1.5667224e-01 -2.6026651e-02 7.9056763e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_G_2.txt new file mode 100644 index 00000000..202e31ae --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_G_2.txt @@ -0,0 +1,27 @@ + -9.2671692e-04 -3.7059845e-01 -3.5564215e-02 -4.4833319e-01 -2.6357942e-01 9.0068122e-04 2.0455200e-01 2.9393561e-01 1.6247464e-01 2.3882052e-02 5.3225208e-02 3.1752360e-01 1.7398814e-01 -4.4736976e-01 8.5662050e-03 -3.8740311e-01 2.0313510e-01 -7.8436838e-02 4.7187801e-02 -2.2132442e-01 -1.9880182e-01 -3.1019923e-02 -1.8408634e-01 -5.7507445e-03 -1.8538787e-01 -4.8067826e-01 -3.2714355e-01 -4.6417847e-01 1.7227937e-01 2.2469604e-01 1.4876410e-01 -7.4985017e-01 -7.4796754e-01 -3.8103486e-02 + 1.5489793e-02 1.1308238e-02 -8.2148991e-03 1.3473704e-02 9.8380812e-03 -1.6207778e-04 4.8305631e-03 -2.2324318e-02 -3.4266904e-03 9.6751810e-03 -4.9208336e-03 -4.1568988e-02 4.3160866e-02 7.8035569e-03 2.9364923e-02 3.1916346e-03 -1.9913890e-02 3.6786378e-02 -1.3503656e-02 9.1725464e-03 -9.6024151e-03 -1.0071137e-04 1.1413794e-02 -3.6460549e-03 -7.5252860e-03 1.8032104e-02 -1.7729015e-03 6.9664259e-04 -3.7536191e-03 -1.1839877e-02 2.2804150e-02 2.3789065e-02 3.0866214e-02 1.8370840e-03 + -1.3873847e-01 -1.1116218e-01 8.6064851e-02 1.5054682e-01 4.0092115e-02 3.7189265e-02 -2.3726306e-01 -1.6536288e-01 8.7171669e-02 3.2311198e-01 -7.1740380e-02 -7.5009535e-01 4.5106129e-01 -1.3901255e-01 -6.0919619e-02 3.1354772e-01 -2.4117415e-02 -5.4437296e-01 -1.7896857e-02 -3.2398635e-01 1.5103230e-01 -7.6431627e-02 1.6386381e-01 6.9377794e-02 -2.3247694e-01 2.4926641e-01 -3.3599865e-01 -7.0021983e-04 -2.6675164e-01 1.1310440e-01 -1.1099693e+00 -1.6764818e-01 1.4611292e-01 2.1310950e-01 + 3.0688120e-02 5.1932196e-03 -1.8219130e-02 -3.5129885e-03 -4.9338024e-03 -3.8955360e-03 1.8329187e-02 -1.6533564e-02 1.6946581e-03 3.3184876e-02 1.8626665e-03 -9.0167634e-03 6.6505427e-02 3.9417972e-03 4.7131136e-02 -2.4369265e-02 -3.0052900e-03 5.3459211e-02 -9.0595915e-03 1.5729118e-02 -3.2232026e-02 -8.2872730e-04 -4.4167031e-03 -1.3321183e-02 -2.2583577e-02 3.1351882e-03 -1.3904115e-02 -1.2709814e-02 4.6879325e-03 -3.3451010e-03 5.3298918e-02 3.7716128e-03 8.1799494e-03 -1.0111683e-02 + -2.3984095e-02 -4.2483803e-03 2.0949265e-02 -3.8773362e-03 1.0231853e-02 2.0228612e-03 -9.3109641e-03 1.4349563e-02 -1.1442902e-03 -1.6360742e-02 -1.0313575e-02 -1.3870729e-02 -6.7341909e-02 -2.2908923e-02 -3.9476539e-02 1.8512895e-02 -1.5934696e-02 -4.1171679e-02 -6.4978279e-03 -1.3462337e-02 1.6357792e-02 3.0214266e-03 1.0128288e-02 7.1462380e-03 1.8932860e-02 1.2313320e-02 1.8137006e-02 9.3691597e-03 -6.8814253e-03 -8.7426464e-05 -5.6110261e-02 -4.7308928e-03 -2.3434366e-02 2.0796873e-02 + 8.6597599e-02 4.8147392e-03 -2.8638244e-02 -8.8357516e-02 -2.5969983e-02 -1.0010984e-02 3.8040788e-02 -3.6824313e-02 4.8037242e-03 6.4006489e-02 -2.1068027e-02 -8.2611402e-02 2.0247842e-01 -1.6842522e-02 1.6704908e-01 8.4728988e-03 -2.3674175e-02 1.4214931e-01 -2.3174648e-02 5.7768385e-02 -7.7884764e-02 4.8811434e-03 -1.1549178e-02 -1.5524538e-02 -3.4902300e-02 1.5408399e-03 -6.1154339e-02 -1.0378956e-01 2.9560968e-02 -2.0993425e-03 7.5383677e-02 -6.0606675e-02 -7.5017348e-02 -2.8932803e-02 + -1.7408990e-01 4.9624119e-02 2.8515553e-02 3.1186696e-01 6.5367987e-02 3.2384112e-02 -6.3876158e-02 -4.0397115e-02 -1.1260308e-02 2.3307745e-02 6.6034192e-02 2.8347521e-01 -1.7169999e-01 1.3952143e-01 -1.3970709e-01 -1.5027106e-01 2.0760229e-02 -3.3175508e-01 1.4110674e-02 9.7818949e-03 9.7830273e-02 -1.1619373e-02 1.9814719e-02 -8.1862815e-03 6.2981200e-02 2.2261308e-02 1.4842988e-01 1.7482140e-01 -6.1838495e-02 -5.3572925e-02 -1.6576854e-01 2.4589382e-01 3.3424033e-01 3.8809792e-03 + -1.2212532e-01 2.3455013e-02 3.6565248e-02 2.0901788e-01 7.1985486e-02 3.1114218e-02 -6.5204617e-02 -1.7352171e-02 -2.7046511e-02 -4.1267356e-02 5.5382082e-02 1.6898414e-01 -2.6787606e-01 5.4101008e-02 -2.2533522e-01 -5.1938914e-02 -3.3393945e-02 -2.2246732e-01 9.7747346e-04 -5.3853923e-02 1.1030767e-01 -1.0832991e-02 5.3253880e-02 1.5305081e-02 4.8136649e-02 3.5072456e-02 1.1707206e-01 1.3000671e-01 -6.9712274e-02 -3.3372955e-02 -1.2040194e-01 1.8664234e-01 1.8422745e-01 5.8667791e-02 + -1.1843011e-01 -6.4137325e-03 4.8202391e-02 1.3534863e-01 2.6281495e-02 1.5544909e-02 -6.2631759e-02 5.4272107e-02 1.6286393e-02 -1.1143483e-01 6.6279347e-02 -3.3907908e-02 -1.1628170e-01 2.6471471e-02 -2.8488059e-02 -1.2293710e-01 6.2728489e-02 -1.9301287e-01 3.3488214e-02 -3.3247315e-02 1.0042056e-01 -1.0962761e-03 -1.9975262e-02 -2.4356101e-03 6.0212765e-02 2.4177123e-02 3.8704917e-02 8.7250534e-02 -3.8532512e-02 6.7566196e-03 -2.1762627e-01 1.8098635e-02 3.6729896e-02 3.0164021e-02 + -4.5210353e-02 -3.0366378e-01 1.0145982e-02 -3.3601869e-01 -2.8626946e-01 -4.3278659e-02 6.0731052e-02 5.9206706e-01 1.1876514e-01 -2.3548769e-01 1.8261131e-01 4.9711989e-01 -2.0307168e-01 -2.4111044e-01 3.4730975e-01 -1.0382269e+00 4.0285741e-01 -2.1110117e-01 1.8926095e-01 -2.1342903e-01 -4.1990421e-02 1.3248549e-02 -3.0316471e-01 -8.1368154e-02 1.1509103e-01 -5.8550859e-01 -1.8576700e-01 -1.1844349e-01 2.1829957e-01 2.6808248e-01 8.5834609e-02 -8.0898300e-01 -1.1785071e+00 -1.1100920e-01 + 1.0199984e-01 1.2562602e-01 -4.3464497e-03 8.0782566e-02 -1.8942814e-02 -4.5373837e-02 8.9303418e-02 -3.9070465e-02 3.1094057e-02 -2.0884527e-01 -5.1218487e-02 -2.6761233e-01 -3.7150758e-01 1.5141055e-03 3.5891255e-01 4.4032034e-01 -2.2308022e-02 2.8440954e-01 -1.1108264e-02 -7.3957752e-02 -6.3859652e-02 2.7044424e-02 -1.8724530e-02 2.3429257e-02 4.1322049e-03 1.2868612e-01 -8.4693192e-02 -8.2057581e-01 5.2586807e-02 2.7914579e-02 1.9216392e-03 1.0878901e-02 3.9716063e-01 -7.1848561e-03 + -9.2206979e-02 -1.9420901e-01 5.5067105e-02 3.9520342e-02 5.2171023e-02 5.9737711e-02 -9.6524544e-02 6.0383529e-02 1.7205369e-02 -1.7100606e-01 2.6745827e-02 -9.0901217e-01 1.0769572e-01 -2.1214598e-01 -2.9092051e-02 -1.7795129e-01 -5.9744616e-02 -1.4804704e-02 1.5745984e-02 -4.9543053e-03 8.0870779e-02 -2.5914326e-02 7.3931060e-02 -3.0741142e-02 1.1386884e-01 1.4065782e-01 -1.7847305e-01 -3.2331700e-02 -9.9229877e-02 4.4097343e-02 -9.7383036e-01 -1.4453532e-01 5.9361441e-02 8.1138684e-02 + 5.5116213e-02 -6.6110808e-03 -2.7957467e-02 -5.0034637e-02 -1.1688171e-02 -7.7650709e-03 3.1906714e-02 -2.5458685e-02 6.2254782e-03 5.7528726e-02 3.8519998e-03 -2.4453490e-02 1.3410712e-01 -1.0591106e-02 9.4079515e-02 -5.8005830e-02 -7.4977889e-03 1.0143663e-01 -1.5795057e-02 1.5269855e-02 -5.2184084e-02 1.2233458e-03 -7.9870524e-03 -2.1475135e-02 -3.7461623e-02 -1.3603787e-02 -3.6588266e-02 -3.3388114e-03 1.2252021e-02 5.0082586e-04 1.1385298e-01 -2.4669877e-02 -4.3372213e-02 -1.2044914e-02 + 9.7581498e-02 2.5220279e-02 -1.7490364e-02 -8.8174106e-02 3.8800452e-03 -7.2768670e-03 2.3957347e-02 -5.8779190e-02 -2.3344001e-02 8.5874992e-02 -1.4673859e-02 4.3098153e-02 6.7453108e-02 2.7474713e-03 4.9630294e-02 8.5894946e-02 -6.6829921e-02 1.4176399e-01 -1.9210544e-02 2.7485791e-02 -4.7335709e-02 1.2969496e-03 1.4282640e-02 5.5152766e-03 -1.8905113e-02 1.0343205e-02 -1.8310522e-03 -1.8801416e-02 6.1060062e-03 -1.0735101e-02 1.7071447e-01 3.9535864e-02 2.8303215e-02 5.1974335e-03 + -2.4894103e-02 -7.7520609e-03 7.3206063e-03 9.6922154e-04 -5.7710004e-03 1.5976647e-03 -5.6202504e-03 2.2240041e-02 7.0160479e-03 -1.1531439e-02 4.6007013e-03 2.5836647e-02 -4.1766073e-02 -6.6781003e-03 -2.6654475e-02 -8.8251211e-04 1.8463051e-02 -4.1267439e-02 9.7203507e-03 -1.0076519e-02 1.2656594e-02 -1.3901317e-03 -7.5595156e-03 3.8630745e-04 3.2871262e-03 -1.6437415e-02 -5.2475008e-04 1.2170157e-02 1.4377975e-03 7.7080138e-03 -2.9150394e-02 -1.9792250e-02 -1.9954854e-02 -5.4916132e-04 + -1.1140476e-01 2.5153302e-02 2.4776008e-02 2.1158635e-01 5.4090667e-02 1.7808346e-02 -6.1062715e-02 -1.6361084e-02 -1.2871943e-02 -5.0782874e-02 -9.6358930e-03 1.7796886e-01 -2.3844931e-01 8.0307995e-02 -2.3569034e-01 -4.9156824e-02 -9.5369507e-03 -1.9098253e-01 2.2199235e-02 -6.7803830e-02 1.0785611e-01 -1.2487767e-02 4.9794137e-02 3.2702963e-02 4.9295520e-02 4.2930984e-02 9.6259527e-02 1.4208265e-01 -6.2293201e-02 -1.9813521e-02 -9.8655100e-02 1.7415303e-01 2.3006432e-01 3.8783122e-02 + -2.5854610e-02 1.5964296e-02 -5.8610752e-02 7.6565568e-02 6.9816920e-02 -2.3521163e-02 3.4169808e-01 -4.9492002e-02 -8.3520617e-02 -5.5220081e-01 -1.5695852e-01 -6.8923158e-01 2.5123120e-02 -1.0068792e-01 -2.4492815e-01 -1.6119514e-01 -2.4354275e-01 3.6726034e-01 -1.5057107e-01 4.4148381e-02 -1.5949993e-01 1.6842297e-02 1.5500524e-01 -1.2345329e-02 1.9195652e-02 3.1968403e-01 1.7583779e-01 -6.7227270e-01 1.1106938e-01 -9.2489306e-02 4.9634726e-01 1.3609024e-01 -4.2280639e-01 -2.3483963e-02 + 2.2259183e-02 3.2349110e-03 -4.9324307e-03 -1.7281852e-02 1.7571282e-03 -1.5076879e-04 5.4579436e-03 -1.4088614e-02 -6.0849135e-03 6.8185681e-03 -2.9825510e-03 -6.4262075e-03 2.7548987e-02 2.4700975e-03 1.2762617e-02 -2.0915649e-05 -1.8411037e-02 3.3766593e-02 -5.3369989e-03 7.7330043e-03 -8.2157604e-03 -5.4749093e-04 1.0669153e-02 2.0534711e-03 6.7517418e-04 8.4737715e-03 -1.3269018e-03 -2.4101210e-02 4.8407606e-03 -1.8678924e-03 3.3580742e-02 1.1417299e-02 4.9997244e-03 -2.1508574e-03 + 5.8815350e-02 1.9569777e-01 -1.2201233e-01 2.9990700e-01 -5.5716024e-02 -1.0777131e-03 2.8109500e-01 -1.9053146e-01 3.5112585e-02 8.0410607e-02 2.7231092e-02 5.2115742e-01 8.7112944e-01 -5.5418574e-02 2.8676307e-02 3.3151645e-01 -1.1401376e-01 1.3894120e-01 -2.6959814e-01 1.7027506e-01 -3.4092723e-01 2.2761827e-02 -1.5859932e-02 -2.4965039e-01 -3.8668847e-01 1.0606728e-02 7.1566255e-02 -2.5385931e-01 8.3439085e-02 -1.8606680e-01 4.1795940e-01 2.8503815e-01 3.9379912e-01 -1.2286353e-01 + -5.6012766e-02 -1.5812671e-02 2.8351722e-02 7.9972993e-03 1.2200605e-02 9.5936814e-03 -2.2196673e-02 3.0583290e-02 -4.1779061e-03 -6.7735246e-02 2.5575710e-03 2.2688488e-02 -1.2758243e-01 -1.6751407e-02 -1.0324974e-01 4.7560735e-02 -9.4265526e-03 -9.4861674e-02 9.2544513e-03 -3.1442431e-02 5.0016181e-02 -1.1290788e-04 1.7417230e-02 2.1282561e-02 3.4597267e-02 -1.8934640e-03 3.0523996e-02 6.4815783e-03 -5.1973723e-03 5.0823861e-03 -7.5317280e-02 1.0455491e-02 4.3204820e-03 1.9532221e-02 + -3.9640874e-02 -8.0366498e-03 2.5138568e-02 -1.8831230e-03 1.2195893e-02 3.9652241e-03 -2.3142369e-02 1.4794029e-02 -7.8761239e-03 -5.3707453e-02 -7.6970055e-03 1.2261432e-02 -8.9947283e-02 -2.1655478e-03 -6.7823744e-02 5.3266503e-02 -2.0628540e-02 -6.9332481e-02 4.3041673e-03 -1.7856964e-02 4.6532095e-02 6.3778330e-04 2.2509375e-02 2.4668243e-02 3.8694341e-02 7.4676568e-03 2.4232900e-02 -1.5798894e-02 -2.0819023e-03 1.6655960e-03 -5.9899691e-02 7.0831289e-03 4.1264178e-03 1.6174430e-02 + -3.1143727e-02 -6.2383555e-03 4.2093267e-03 7.3125702e-03 -4.7152929e-03 2.6365812e-03 -3.5927895e-03 2.2145837e-02 8.7019845e-03 -1.5148251e-02 7.4066414e-03 2.1594986e-02 -4.6565131e-02 -9.4231062e-03 -2.6447076e-02 -8.0217539e-03 2.7079435e-02 -4.5956620e-02 8.8929485e-03 -9.2770636e-03 5.7706345e-03 -1.7271187e-03 -1.7395388e-03 -5.7865467e-03 3.1718162e-03 -1.8094172e-02 2.5927452e-03 1.5043674e-02 -1.3507906e-03 4.2643677e-03 -2.5999924e-02 -1.9939904e-02 -1.4406607e-02 -4.6477804e-03 + -1.9446915e-02 -3.5386303e-03 8.1882340e-03 -3.3881875e-03 -1.5134280e-03 3.0291455e-03 -1.1766449e-02 1.1659295e-02 -2.7550493e-03 -2.2910458e-02 2.3977684e-03 7.4811861e-03 -4.0823603e-02 -2.0410214e-04 -3.0034209e-02 1.4229971e-02 4.3224324e-03 -3.9189086e-02 7.7443909e-03 -8.1106204e-03 1.7354723e-02 -8.7688896e-04 -8.6040645e-04 5.4907452e-03 1.3493177e-02 -4.4300158e-03 6.4802043e-03 1.0401128e-02 -3.1133324e-03 2.0954178e-03 -3.4338306e-02 -8.4979914e-03 -7.0283035e-03 7.1719495e-03 + 5.0747396e-02 2.3781244e-02 -2.4388126e-02 4.8962967e-03 -4.1790562e-03 -1.0078419e-02 5.4938352e-03 -3.3001342e-02 -3.0197592e-03 5.0376362e-02 -1.5643104e-02 -3.3953742e-02 1.2160302e-01 3.7421542e-02 8.7840212e-02 -1.6750352e-02 5.4611324e-03 8.7257376e-02 -1.1673749e-02 2.9242247e-02 -3.2995587e-02 -5.9966501e-04 -8.3642070e-05 -7.1461638e-03 -2.0876041e-02 9.8241124e-03 -2.6486328e-02 -1.5406903e-02 3.7289816e-03 -5.5661719e-03 5.8670717e-02 8.2233951e-03 1.4533789e-02 -1.9443870e-02 + 7.8044119e-02 3.3803988e-02 8.5461100e-02 -3.7414542e-02 6.2445260e-02 -7.6902768e-03 -3.9865909e-02 -5.1501936e-02 -2.3116415e-02 7.2982382e-02 1.5763175e-01 -3.1090096e-02 -7.4883571e-03 6.6244580e-02 2.3110656e-01 9.3514555e-02 -3.1437405e-02 1.6357877e-01 8.4250657e-03 -6.3238092e-02 7.0908783e-02 1.9262732e-02 1.3523093e-02 2.8770514e-02 5.4154793e-02 2.3455642e-02 5.7843903e-02 1.8173774e-01 -3.5356224e-02 -1.5149679e-02 1.9961847e-01 1.8297553e-01 2.1627841e-01 1.0305609e-01 + 2.2695314e-02 3.5313883e-03 -1.6505439e-02 9.3340115e-03 -6.7342080e-03 -5.1066776e-03 1.4501140e-02 -9.2244391e-03 4.0982853e-03 2.8401358e-02 8.5731659e-04 -7.9906797e-03 5.4667608e-02 8.9315787e-03 3.9422256e-02 -2.6776753e-02 1.2975635e-02 4.1422241e-02 -2.5335532e-03 1.0468588e-02 -2.7649604e-02 -2.4303799e-04 -1.2891949e-02 -1.2284229e-02 -2.1648646e-02 7.1695560e-04 -1.3545293e-02 4.5446205e-04 2.2542714e-03 1.0914903e-03 3.5595367e-02 1.2692241e-03 1.5060029e-02 -1.2456267e-02 + -5.9389269e-04 9.9848168e-03 2.5649755e-02 -2.2529151e-02 3.2404598e-02 8.0705997e-03 -1.0711430e-02 -3.6565862e-02 -1.9493977e-02 -3.8029040e-02 -1.2034099e-02 -2.2656222e-02 -1.7037364e-02 -1.4170859e-03 -1.3583115e-02 6.3523055e-02 -7.7727635e-02 9.4481627e-03 -1.0025397e-02 -4.3536882e-03 3.5814695e-02 5.2221949e-03 5.0919293e-02 2.5271490e-02 3.3679875e-02 2.3076708e-02 2.9754246e-02 -3.0152949e-02 -7.6223550e-03 -1.9647019e-02 4.5748002e-03 4.4060635e-02 6.9401989e-03 2.3018634e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_G_3.txt new file mode 100644 index 00000000..64a0661f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_G_3.txt @@ -0,0 +1,28 @@ + 9.5445603e-02 3.4580829e-02 6.3255970e-02 -8.2940532e-02 4.3895772e-02 6.6240523e-02 2.2227635e-02 -1.9471627e-01 -1.6884462e-01 -1.3536834e-02 2.2690352e-01 1.3965583e-02 -1.4061333e-01 3.4916543e-02 -2.3395723e-01 -9.4444577e-03 1.8985971e-01 7.2156256e-02 -5.3852932e-02 1.6979605e-01 5.1267253e-02 2.9375332e-01 -5.7454078e-02 -1.2389129e-01 -2.9857722e-02 2.7405336e-01 5.2649989e-02 6.5806914e-02 7.5553267e-02 -3.0491784e-01 8.4397369e-02 -7.9546943e-03 -1.0197751e-01 -8.0162095e-02 6.9495622e-02 + 2.5085312e-02 -1.1250881e-02 1.9017901e-02 -1.2616877e-02 -1.2836537e-02 -1.3121700e-01 -2.4281382e-02 1.3387175e-02 -5.1917846e-02 1.2754362e-02 -3.5388004e-02 3.5509483e-02 7.9918600e-02 3.2628733e-02 5.4869613e-02 -9.2613619e-02 1.1035919e-02 8.0542316e-03 -8.6691936e-02 -4.6442047e-02 -7.7895001e-02 -1.0833443e-01 -1.2273159e-01 1.0648507e-02 -9.4912573e-03 1.8224899e-02 -8.1037251e-03 4.9075642e-02 4.2763128e-03 -5.1381882e-03 5.2166785e-02 -1.7819497e-02 1.1041285e-02 2.1214303e-02 -4.5486593e-02 + -3.2136631e-02 -7.6235316e-02 -1.4376699e-01 9.7945081e-03 -1.0814971e-01 -1.8754746e-01 -8.2595393e-02 2.1952873e-01 -1.1219337e-01 -1.1012883e-02 2.1098528e-01 -8.1855218e-02 -1.1090174e-01 -2.2613646e-01 9.3545953e-02 1.4503840e-01 2.1850951e-01 -2.7250722e-01 -7.0466704e-03 -2.6518937e-01 -1.6445997e-01 -2.0138256e-01 5.3715511e-02 -1.1563064e-02 -2.0694376e-01 -5.9011626e-02 -1.3852776e-01 -3.9030546e-02 -1.2752306e-01 -2.4880437e-04 2.1606974e-01 1.7806782e-01 3.2690424e-03 -1.4942032e-02 1.0681935e-01 + -7.6634590e-03 -4.5705108e-02 -3.6182059e-02 2.4236028e-03 2.7025154e-02 -1.5668884e-02 -3.9535639e-02 1.2096880e-02 3.7107244e-02 2.7826510e-02 -1.1003024e-01 3.3144905e-02 1.3198835e-01 1.4901406e-02 -3.2586074e-03 3.1734403e-03 -1.2504707e-02 1.4496966e-02 1.0032252e-01 4.2711255e-02 8.9064445e-02 -1.3323759e-01 -1.2751536e-01 -9.6012806e-02 2.1366856e-02 1.0631611e-01 -4.6599190e-02 8.5735227e-02 -3.0341038e-02 5.0798337e-03 4.8018246e-02 -9.6822908e-04 5.3173309e-02 3.7035066e-03 -6.6043658e-02 + 8.8062014e-02 1.8964084e-02 9.5733397e-02 -9.3335389e-02 -9.0509725e-02 -8.4734552e-02 5.8936633e-02 -5.4038697e-03 -1.0138817e-01 -2.5362140e-02 -4.4756375e-02 7.7421136e-02 -2.1889320e-02 1.6672628e-01 8.2663955e-03 -1.1453247e-01 2.7275480e-02 -1.5885902e-02 -1.3327107e-01 -1.4105117e-01 -1.4791511e-01 -9.0272103e-02 -1.8431157e-02 2.0629143e-02 -1.0180023e-01 -1.7304943e-02 4.1913308e-02 -2.6341446e-02 6.8725730e-02 -3.4703522e-02 6.9227161e-02 -6.2601666e-02 -4.4423933e-02 9.3079090e-03 7.9645368e-02 + 9.1009436e-02 6.6643098e-02 1.3533777e-03 -1.3324870e-01 3.5329528e-03 -7.9309545e-03 4.5105264e-02 -2.8042325e-02 7.8905178e-02 -7.0571941e-02 -1.5075055e-01 7.8286589e-02 -2.2487793e-04 -1.3308899e-01 1.1486908e-01 1.8929240e-01 1.3004312e-01 2.4331152e-01 1.9344010e-01 1.4523531e-01 1.7059435e-01 -6.0179159e-02 -3.1844928e-01 4.7429324e-02 1.8594362e-02 -7.3599607e-02 3.0038685e-02 -1.0583843e-01 6.3141552e-02 -2.1613048e-01 -3.0995942e-02 -7.3517937e-02 -1.3558924e-01 6.5954433e-02 -1.2003158e-01 + -7.9662589e-02 1.3517769e-01 3.9661057e-02 7.7226714e-02 -1.2077379e-02 3.4839779e-02 7.6731085e-02 -3.2951843e-01 1.4068016e-01 4.1249335e-02 -1.6442128e-01 5.5405848e-02 3.6399337e-01 1.2229622e-01 4.1263529e-02 7.8486533e-02 -1.9015483e-01 1.8054657e-01 -1.6646755e-01 4.7820098e-01 1.2617781e-01 -6.8390896e-02 -6.3354501e-01 7.7676638e-02 2.0727206e-01 -1.4638223e-01 3.6440754e-01 1.2360920e-01 1.1986206e-01 8.0230846e-02 -2.3078287e-01 -1.4284361e-01 -2.0153404e-01 2.0931178e-01 3.9709846e-02 + 1.8120149e-02 8.7204926e-02 6.5167747e-02 -2.9589067e-02 -1.3915576e-01 -9.5875707e-03 1.7530896e-02 -2.5942617e-02 -1.4547135e-02 -2.9753930e-02 -1.5321723e-02 6.0938784e-02 -4.9707078e-02 -3.6918907e-02 1.3603172e-01 1.6977262e-03 -4.1377368e-02 -1.0278164e-01 -7.1669152e-03 -4.0304107e-02 -6.8166885e-02 -6.5641778e-02 -6.6968798e-02 -6.8340469e-02 -6.0047847e-02 1.9255703e-02 1.4803487e-01 -2.3273223e-02 8.5988898e-02 -4.2333020e-02 -5.9496052e-03 4.0965868e-02 -1.1325949e-01 -2.1938625e-02 5.5608342e-02 + -8.7051703e-02 2.2924891e-01 1.7865148e-01 -2.1788216e-02 1.1850780e-02 2.9325873e-01 1.1316542e-01 7.7915231e-02 1.3087393e-01 -7.8313826e-02 -6.0102744e-02 7.6737419e-02 2.2039021e-02 7.9343726e-02 -7.2831071e-02 6.3868999e-02 -1.3223443e-01 1.3162190e-01 8.8421699e-02 8.3785377e-03 3.4176412e-01 2.2314578e-01 6.2007311e-01 -1.5352926e-02 8.3845475e-02 2.1132024e-02 -7.1872863e-02 -1.8093920e-01 6.6492163e-02 -1.1219260e-01 -2.0382972e-01 -1.5239036e-01 7.9150757e-03 -1.2442457e-01 1.6862198e-02 + -2.5294321e-01 -3.4315528e-02 -6.4619892e-02 1.3390453e-01 -1.1348798e-02 1.7809689e-01 -4.0690044e-02 1.1558730e-02 -3.9204494e-02 -4.5942766e-02 1.1003049e-01 3.4489781e-03 -2.1323400e-01 1.1658239e-01 -8.9072954e-02 4.2748323e-02 -2.8555159e-02 9.9672755e-02 6.1706109e-02 1.7293494e-01 3.2508063e-01 2.4421585e-01 1.9189800e-01 1.4422128e-02 1.6676990e-01 -1.4599634e-01 8.0437080e-02 -1.3632997e-01 -6.6194753e-02 -1.3193311e-01 -3.0549726e-02 -9.9326218e-03 -4.7596322e-02 1.1487997e-01 -1.9373067e-01 + -2.1596103e-02 -2.1338415e-02 -3.3042673e-02 2.7263114e-02 5.8723852e-02 -1.0265147e-02 -7.0184738e-03 9.8541410e-03 7.5524832e-02 1.4897496e-03 -2.2786396e-02 3.7755246e-03 -9.3152239e-03 -8.5706206e-02 -6.7758068e-03 4.7545841e-02 9.1938026e-02 -2.1059789e-02 1.5942263e-02 8.0396532e-03 -1.0751940e-02 -1.2441334e-01 -6.2601531e-02 1.1712719e-01 2.7670023e-02 -1.2698534e-01 -2.4235337e-02 -1.1422359e-02 -4.1596375e-02 3.0328784e-02 2.5405257e-02 1.0141572e-02 -4.0229451e-02 9.8055300e-02 2.6685986e-02 + 7.3053880e-02 9.5054671e-02 8.8986983e-02 -7.5999098e-02 -5.2549956e-02 8.8198769e-02 4.0191395e-02 -7.9579948e-02 -5.9942805e-03 -3.4448574e-02 1.1050346e-02 6.4572976e-02 -7.3083894e-02 -1.6314887e-02 -2.5677520e-03 -5.9944721e-03 -1.0138357e-03 -3.5850614e-02 1.0248264e-02 2.1882323e-02 5.6909298e-03 1.3914395e-02 -6.4819794e-02 -4.4380093e-02 -3.2599608e-02 1.5870292e-02 8.2018167e-02 -3.9532841e-03 8.3666548e-02 -7.0143787e-02 -1.2064868e-02 3.5274990e-03 -7.5864884e-02 -3.9050017e-02 8.4180803e-02 + 3.4761390e-02 1.2200748e-01 6.6443023e-02 5.2223872e-02 3.7853495e-02 1.9368247e-01 1.7386458e-01 3.7725649e-02 2.8253705e-01 -1.1410554e-01 2.0462670e-02 7.0172765e-02 2.4494628e-02 7.2726694e-02 1.5722957e-02 1.9729398e-01 -5.4298648e-02 3.9270421e-02 3.2617473e-02 2.8742764e-03 1.4308970e-01 -3.5481154e-02 -9.1173438e-02 -3.4692100e-02 1.3173235e-01 -1.0198259e-01 9.1772029e-03 1.4731317e-01 -7.3925425e-04 1.8459346e-01 -1.5510648e-01 -1.1938188e-01 -4.1009576e-02 -8.1925032e-02 1.4474026e-01 + -6.3810541e-03 -1.3015161e-02 -2.3309319e-02 2.3656630e-02 3.8075408e-02 7.9604628e-02 3.8770385e-02 -2.0688338e-02 9.6730373e-02 -1.6649210e-02 -4.6015898e-02 -4.6429110e-02 1.9050894e-02 9.8763011e-03 -2.5643066e-02 1.0996203e-01 -1.8419971e-02 4.5804218e-02 6.7234264e-02 5.8352696e-02 7.7537977e-02 -7.7447941e-03 5.2273214e-02 7.6364320e-02 -1.1855467e-03 -6.3475113e-02 -3.9144266e-02 -3.9809929e-02 -2.3125970e-02 7.1603984e-02 -6.2910577e-02 -3.6316095e-02 1.7018351e-02 3.2724451e-02 5.1722831e-02 + -1.8225246e-01 1.2386874e-01 -1.8733556e-02 -9.4153959e-02 -8.1188998e-02 -1.0267946e-01 4.4411549e-01 -9.0248237e-02 3.6965145e-02 -3.5263003e-01 -2.0386298e-01 5.3001602e-02 -1.9273288e-01 2.3411673e-01 3.5646388e-01 3.7740283e-01 -1.2032194e-01 -2.5085380e-02 -1.7094259e-01 4.2166043e-01 2.5734533e-02 2.5253077e-01 -1.5052306e-01 6.6112207e-02 -2.3937514e-02 -2.4512038e-01 9.8531963e-02 -9.7935387e-02 4.4362852e-02 -1.6751113e-01 -2.7411993e-01 4.4044727e-02 -1.3137094e-01 1.1070750e-01 -1.6699856e-01 + 3.7307694e-02 2.9080781e-02 4.6870354e-02 -3.7578638e-02 -1.7238617e-02 9.5795797e-03 2.2552864e-02 -3.3551095e-02 1.9733092e-03 -2.0295008e-02 -2.1353663e-03 2.8165137e-02 -9.5624485e-03 1.9870737e-02 4.5884482e-03 -1.2713517e-02 -1.6788222e-02 7.6583489e-03 -1.2039907e-02 7.6068240e-03 -1.7123666e-02 1.6695077e-02 -3.8893353e-02 -2.3438990e-02 -9.5299073e-03 4.0379387e-02 4.7140740e-02 1.0698825e-02 4.3493674e-02 -1.6472227e-02 -1.9988784e-02 -1.8176774e-02 -3.5043240e-02 -7.7787481e-03 1.1695937e-02 + -1.0260859e-01 1.0335738e-01 3.4729844e-02 1.1303831e-01 1.0941359e-03 2.5776466e-01 2.5280157e-01 -4.3257722e-02 1.5990826e-01 -1.0136581e-01 -1.0178112e-01 7.9254992e-03 -8.0397543e-02 4.4974816e-02 7.5787695e-02 3.1441126e-01 -9.2307751e-02 1.3515466e-01 1.0141549e-01 1.6474845e-01 1.9612650e-01 1.2119203e-01 1.4902003e-02 -4.7671233e-02 -9.1007390e-02 -9.2637622e-02 5.5668214e-02 -1.6040221e-01 -8.6878590e-03 3.8379741e-03 -2.0762209e-02 6.1301169e-02 -2.9313227e-02 -2.4570658e-03 -2.3390570e-01 + 5.1232948e-02 1.3097256e-01 1.6867612e-01 -6.2678402e-03 -1.6847657e-01 -7.9673913e-02 9.0336860e-02 4.7578021e-03 -1.1074634e-02 -4.1178440e-03 1.4995990e-01 5.6991963e-02 -1.8047579e-01 5.8269548e-01 -1.0865634e-01 4.4535766e-02 1.5837251e-01 -1.6834904e-01 -1.6225155e-01 -1.7538794e-01 -6.8725527e-02 -3.2573287e-02 2.7937996e-01 -1.1782233e-01 -1.6321460e-01 1.8380950e-01 -5.8154488e-03 1.7609641e-01 5.5904233e-02 -3.2472472e-01 6.8867032e-03 -3.6897960e-01 -1.0352154e-01 -1.0274453e-01 3.3031530e-01 + 9.8420600e-02 9.2186323e-02 1.2652898e-01 -1.1476618e-01 -1.0743390e-01 -1.2658530e-01 -4.7437487e-02 4.7487896e-03 -1.9900958e-02 -1.6833445e-02 -2.9493877e-02 8.9027879e-02 -6.0200803e-02 -1.8521484e-02 -4.0754776e-03 -8.0824322e-02 -5.1536153e-03 6.2023463e-02 -4.7395397e-02 -1.1749618e-01 -8.8252439e-02 4.9557027e-02 -4.0464255e-02 -6.3653001e-02 -1.1531842e-01 1.0174124e-01 1.1669473e-01 9.7577859e-02 1.4078413e-01 -1.9521363e-01 7.3375912e-02 1.8264709e-02 -1.3092789e-01 -3.4907627e-02 -6.6186399e-02 + -1.7258149e-01 1.2861846e-03 -6.0591799e-02 8.3919615e-02 1.3763119e-01 1.3712504e-01 1.0687695e-01 3.0327413e-02 1.3493716e-01 -9.9402129e-02 -1.7127418e-02 -3.3614795e-02 -1.4532530e-01 -1.2018891e-02 -1.7958517e-01 1.6312556e-01 6.9546861e-02 1.2011549e-01 4.0124696e-02 -2.8243512e-02 2.0286649e-01 1.1304410e-01 1.5953217e-01 1.1352774e-01 1.7622075e-01 -2.0721478e-01 -1.8978424e-01 -4.9390157e-03 -1.5689724e-01 1.7937767e-02 5.1774709e-02 -6.0067582e-02 6.0002748e-02 6.9966111e-02 -5.8341560e-02 + -2.0019451e-02 -9.4698173e-02 2.3826469e-02 7.9031517e-03 -5.5186851e-03 -2.9258994e-02 3.9131578e-04 -2.2359244e-01 -9.0714155e-02 -6.8998481e-02 1.0570899e-01 -1.3311714e-02 -7.8256411e-02 2.6682507e-01 -5.7645415e-02 -4.8101980e-02 -1.5655183e-01 -1.4989875e-01 -1.0103062e-01 -4.3624777e-03 -2.1802133e-01 2.6093481e-01 1.0584385e-01 -1.8199640e-01 2.0704241e-03 1.1349831e-01 1.6095134e-01 3.5761815e-02 2.3338905e-02 7.8146207e-02 -4.5098146e-02 3.3706413e-02 -5.2433589e-02 -1.1138913e-02 1.1494978e-01 + 3.9976587e-02 6.3213239e-02 8.1965286e-02 -1.0320192e-02 -8.8390669e-03 1.8563487e-01 1.7039203e-01 -4.5065999e-02 2.3989157e-02 -8.8668016e-02 -3.9512120e-03 7.3008652e-02 -1.0053357e-01 5.7031568e-02 -1.1172688e-01 2.1475634e-01 2.5684701e-02 1.0038610e-01 2.1232617e-02 -3.6108824e-02 2.5971702e-04 5.9399163e-02 1.2844671e-02 -5.7751543e-02 -3.6564914e-02 -1.3824603e-02 9.0292692e-02 -1.4055900e-01 3.9681803e-02 4.3287071e-02 3.9448358e-02 3.1707330e-02 -7.9758785e-02 -3.2213832e-03 -8.8392183e-02 + 1.7894011e-02 -5.9587185e-02 1.6003944e-03 -2.6200743e-02 8.1726871e-02 1.9743745e-02 4.5337814e-02 -6.7923837e-02 6.0677542e-02 -2.3073394e-02 -3.4998347e-02 2.3602797e-03 3.0103954e-02 1.0398701e-01 -1.4576520e-01 2.7251034e-02 1.5117233e-02 1.5789655e-01 -1.3192801e-02 1.7025548e-02 6.2815108e-02 8.7778134e-03 1.2589475e-02 6.0686257e-02 4.4392655e-02 -6.2017713e-02 -6.5370354e-02 1.7837454e-02 -2.2165976e-02 6.6912067e-02 4.3185586e-03 -5.5876180e-02 4.5300474e-02 5.5305765e-02 -1.2852114e-02 + 1.3375021e-01 -1.8548730e-01 -1.4455322e-01 1.2002035e-02 2.9738562e-01 -1.7196340e-01 -1.5274976e-01 -8.5052179e-02 8.7401653e-02 1.2345671e-01 -9.1739502e-02 -2.5444055e-01 1.0262116e-01 9.5934631e-02 -3.5972837e-01 -6.1024168e-02 5.0743004e-02 5.8705607e-01 3.4929338e-01 3.8297332e-01 3.9536516e-01 5.0506847e-01 5.9370242e-02 9.9624812e-02 7.8048503e-02 3.9538418e-01 -2.5919170e-01 2.1384490e-01 -4.2440232e-02 -1.8756496e-01 -2.0841363e-01 -5.3273411e-02 3.0118621e-01 -8.3809883e-02 -2.0810127e-01 + -2.2860413e-02 -2.9991750e-01 -8.3511474e-02 -1.7106506e-01 9.1960010e-02 -2.9582150e-01 -3.7362483e-01 -2.3245352e-01 -3.3218581e-01 4.7462063e-02 4.8175039e-02 -3.3092288e-02 -3.0059459e-02 1.2947286e-01 -5.0966128e-01 -1.9211704e-01 1.4007468e-01 1.5632349e-02 -2.5499725e-01 -1.4019180e-01 -4.6228911e-01 1.2822122e-01 1.3028917e-01 8.2857983e-02 2.1814483e-01 8.8106223e-02 -6.3845054e-02 1.1017151e-01 -7.0220962e-02 1.1143371e-01 8.3264721e-02 -2.6285162e-02 -4.3287336e-02 1.8531667e-01 6.9271866e-03 + 9.3461062e-02 1.2784253e-01 5.5284432e-02 -9.9639865e-02 -1.4563171e-01 -3.6554775e-02 1.0673374e-01 -6.9012087e-03 -1.1935739e-01 -1.4195927e-01 -7.1297592e-02 1.7742252e-02 -6.8844034e-02 6.9424920e-02 -3.2500364e-02 8.8285092e-02 2.1480434e-02 -1.6272169e-01 -1.0505720e-01 -3.8721775e-02 -1.2713127e-01 -2.7261988e-02 -8.2956332e-02 -3.8539525e-02 -2.8043348e-01 8.8731938e-03 5.6903241e-02 -3.4328481e-02 8.1801069e-02 -1.8436637e-01 4.6588162e-02 4.1663920e-02 -5.0603200e-02 -4.9538050e-02 5.0933721e-02 + -4.2555323e-02 -9.2405063e-02 -9.1071137e-02 -1.8532138e-02 -3.0023007e-02 -1.2838577e-01 -1.4690136e-01 5.7869809e-02 -2.1884409e-01 3.5853788e-02 7.3835581e-02 -7.5257911e-02 -2.8431153e-02 -2.5242912e-03 -2.6145507e-03 -1.7587239e-01 3.4731235e-03 -9.3816917e-02 -1.8333671e-02 2.4110863e-02 -1.0755312e-01 1.5369557e-01 1.2345353e-01 1.9255611e-02 -5.8066685e-02 4.9320953e-02 -3.9370990e-02 -4.1491788e-02 -3.4304200e-02 -6.8446199e-02 5.5772630e-04 8.6856364e-02 8.5949245e-02 -2.3477821e-02 -4.8134339e-02 + -4.6567177e-02 1.3770141e-01 3.5224426e-01 2.4166576e-01 3.2436917e-02 3.1074350e-01 2.8330652e-01 -7.1117468e-01 -1.3245538e-03 4.2699710e-02 -5.0643758e-01 1.4428191e-01 1.4776453e-01 5.2709375e-01 -2.5281240e-01 6.7428888e-02 -4.5026248e-01 5.1032747e-01 -2.2134783e-01 6.0048272e-01 5.2605617e-02 4.0620971e-01 -1.1144936e-01 2.2685246e-01 4.9410406e-01 3.9872298e-02 4.7884274e-01 -5.9117444e-02 2.5224397e-01 5.7040053e-02 -5.7196684e-01 -4.4176211e-01 -2.0059130e-01 2.6550507e-01 -1.7470115e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_G_4.txt new file mode 100644 index 00000000..68dd4ec3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_G_4.txt @@ -0,0 +1,22 @@ + -1.0584902e-01 1.2679046e-01 6.5685391e-02 -6.1823097e-02 1.6239317e-02 -4.9069317e-02 1.9216960e-02 1.6177311e-01 1.0850967e-01 7.0518383e-02 -9.7502324e-02 -3.5904554e-02 -4.7994079e-02 -3.2398271e-02 -5.6747472e-03 4.1457387e-02 -2.4309397e-01 -2.6896497e-03 -2.5689936e-02 -4.1125520e-02 2.8171531e-02 2.6061916e-01 -4.0919746e-02 -8.4027062e-02 1.4141868e-02 1.0220287e-01 1.4043712e-01 6.4475941e-02 -4.0038457e-02 -5.3254968e-02 4.9797860e-02 -1.6500926e-01 8.2708587e-02 -5.6269256e-02 1.3831484e-01 -1.2643103e-01 -1.2010096e-01 -4.2702754e-02 -6.7873647e-02 5.9739426e-02 + -1.6068324e-02 5.9257090e-03 -6.7560227e-03 4.5860614e-04 -2.8012487e-02 2.8187952e-02 -7.4578320e-03 7.3705147e-02 -5.2820350e-02 -6.8945126e-03 1.4052660e-02 -1.1613738e-02 2.0949488e-02 -1.0742725e-02 1.9122534e-02 -2.2155498e-02 -8.0299026e-03 -2.0372835e-02 -5.8148756e-02 -1.9166331e-04 -4.0846289e-02 4.4071790e-02 1.5392858e-02 3.7348108e-02 2.7551442e-02 4.5480973e-02 -2.7876107e-04 7.2933594e-03 -6.9201104e-02 -6.6885835e-02 -3.6762169e-02 -4.1598567e-02 -8.7512234e-03 -2.3361492e-02 2.5352963e-02 -8.2268651e-02 -6.5023599e-04 -3.7117846e-02 -4.7829648e-02 2.2002632e-02 + 5.2356036e-02 7.9763720e-03 -5.2552191e-02 -1.4526151e-01 7.0006956e-02 9.0078747e-03 4.8666679e-02 1.9137840e-02 -5.2937199e-02 1.1124752e-01 -5.1313943e-03 2.3082026e-02 -9.7545246e-02 -1.1570513e-01 -7.0217812e-02 1.1121324e-02 6.2198824e-02 5.8231518e-02 3.0106110e-02 4.4116365e-02 1.2037040e-01 -4.1838943e-02 -5.9359213e-03 -8.9397301e-02 6.7047976e-02 -7.5012037e-02 -1.2606723e-02 1.5916335e-02 5.2057238e-02 7.7423619e-03 7.7748061e-04 -1.7290672e-02 -1.2631470e-02 9.0874693e-03 -3.1079610e-02 2.7826047e-02 3.9504648e-02 5.6688591e-02 -4.5937128e-03 -5.3455562e-02 + 2.1367089e-01 -9.3367566e-02 -3.6652670e-02 8.8395856e-03 -5.9204056e-02 -2.8952219e-01 1.1886113e-02 -1.3927594e-01 1.6720964e-01 -2.2225435e-02 2.3044252e-03 -1.2262917e-01 -2.8555721e-02 1.9244644e-01 -1.0915590e-01 -3.8262815e-02 -6.6832855e-02 -4.3836955e-01 1.6223735e-01 -3.5864683e-02 1.9579255e-01 -1.4961793e-01 2.8292393e-02 5.0023006e-02 1.2653027e-01 4.4311928e-02 2.2080911e-01 1.4186543e-01 -2.4986782e-01 2.7224466e-01 2.6274680e-01 -5.3499995e-02 4.3919553e-01 7.6942107e-02 -9.4796062e-02 -1.2034584e-01 6.7938386e-02 3.3792998e-01 8.0146922e-03 -2.6040739e-01 + -4.9635685e-02 -5.4810689e-02 -2.6388908e-01 -1.1336754e-01 -3.1595236e-03 2.5883847e-01 5.4681880e-02 2.8496497e-02 2.1101995e-01 -1.0507868e-01 5.4861450e-01 2.1794883e-01 6.2997187e-02 -4.0771802e-02 -2.5591707e-01 2.8255830e-01 -6.5128207e-03 6.3567496e-02 2.3692060e-01 1.0261484e-01 -1.9902935e-02 -2.4192957e-01 1.6027656e-02 -6.8190412e-02 1.5957166e-01 -1.4230648e-01 1.0193910e-02 2.1221842e-01 -9.6603346e-02 -1.0346467e-01 -4.0486384e-01 -5.7838271e-02 -2.4590037e-01 3.7761233e-01 -2.0544485e-01 2.6617283e-01 5.5108116e-04 -1.9800879e-02 2.1309629e-01 -1.2178433e-01 + -8.9745520e-02 8.7646298e-02 -1.2006977e-02 -3.9665292e-01 2.5599544e-01 2.8712548e-01 2.2849191e-01 -2.8307896e-02 1.6380605e-01 1.9671831e-01 9.3027831e-02 1.9643956e-01 -1.0855766e-02 -2.9343382e-01 -1.1209566e-01 -1.5112666e-02 -9.1077137e-02 3.3316856e-01 -5.7289383e-02 -1.3401531e-03 -9.2495813e-02 1.1457157e-01 1.8774727e-02 -1.8512112e-01 2.3463833e-01 1.5715793e-01 1.0992728e-01 2.0656234e-01 4.7052088e-01 -1.0472459e-01 -1.5515629e-01 -2.4713714e-01 -6.5081974e-02 7.2937191e-02 -5.7026435e-02 1.4426625e-01 -4.7291024e-02 1.6022489e-04 1.9552445e-01 -3.3991690e-02 + 6.8782410e-03 -1.4353769e-01 9.9487468e-02 -6.6893756e-02 -6.0124257e-02 -5.4060511e-02 -5.0160138e-02 -5.5201167e-02 -5.4016259e-02 -7.2620402e-02 1.1168742e-01 -5.6747581e-02 -1.0775544e-02 -1.0315418e-01 1.0156628e-01 -9.9768210e-02 3.3125879e-02 -3.6295251e-02 -2.7043761e-01 -7.3691325e-02 1.4918838e-01 -1.1318060e-01 6.7581516e-02 -5.0955931e-02 1.5508548e-01 7.7119289e-03 -1.9662019e-02 -1.7654469e-01 -1.8283375e-01 -1.3296834e-01 -1.5565831e-01 -2.8272985e-02 1.1620388e-02 -9.0506298e-02 1.1678626e-01 9.0441605e-02 8.7947878e-03 4.6027094e-02 -9.9059927e-02 -2.8870043e-02 + 1.0319687e-01 1.7404028e-01 1.5837492e-01 1.8228724e-01 -6.4323733e-02 1.0581306e-01 -3.2323059e-01 -3.9325359e-02 -2.0330205e-02 6.9407490e-02 2.5236359e-01 -1.6488822e-01 3.2008363e-02 -8.5243160e-03 3.3561203e-03 -5.8031141e-02 -4.3429195e-02 7.6309382e-02 -2.6369877e-01 -4.3891387e-01 -2.0331637e-01 4.0241280e-01 -1.0225937e-01 -1.8703881e-01 4.5991813e-03 5.7921533e-02 -7.7455488e-02 -1.6537610e-01 1.2309122e-01 -2.0744851e-01 -2.0926633e-01 8.8477170e-02 2.7539061e-02 -1.3833233e-01 -4.6802697e-02 -3.7536556e-01 -6.8060943e-02 7.2434761e-02 -2.1537926e-01 6.5828274e-03 + -5.6013299e-02 3.5076750e-02 -2.9238812e-02 -1.2230951e-01 -3.8829071e-03 -2.3721722e-02 1.7164615e-02 -9.5326354e-02 2.1581228e-02 -6.6464805e-02 -1.0486891e-03 -9.6996366e-02 2.6857039e-02 -5.1735906e-02 3.9251525e-02 -3.4409004e-02 -5.6009171e-02 -3.3638308e-02 1.9650722e-02 -1.5277824e-01 7.1067048e-02 1.3907696e-01 1.0326168e-03 -1.2310075e-01 1.0979973e-01 -1.7647450e-02 7.7094707e-02 6.0653756e-02 -8.1257436e-02 1.2167416e-01 -1.2142330e-01 7.0072618e-02 7.9081430e-02 5.8856985e-02 2.4007156e-02 4.6373447e-02 -1.9239979e-02 7.3107595e-02 6.3246937e-03 -5.2653520e-02 + -4.2435435e-02 6.1503776e-02 1.4248123e-02 -3.7730690e-02 4.2080302e-02 5.0005182e-02 1.6955412e-02 -1.6655746e-02 8.5740967e-02 1.8302242e-02 3.7311367e-02 -5.0983940e-02 3.1544986e-02 7.7597853e-03 4.0997741e-02 -4.6334944e-02 -5.3927208e-02 1.1452459e-02 -1.4836374e-01 -1.5138819e-02 9.0777648e-03 9.8707317e-02 4.1440849e-02 1.1609993e-02 3.7192757e-02 9.9373035e-02 2.3768128e-02 -1.8689839e-02 -5.2579789e-02 -8.2540101e-02 -4.8750160e-02 -8.8190588e-02 -1.9246541e-02 3.3181505e-02 8.5819556e-02 4.1339701e-02 -1.6031998e-02 -3.0557762e-02 5.8845762e-03 2.0938586e-02 + -7.2814661e-02 6.3448547e-03 4.5474833e-02 1.4573409e-01 -1.6467050e-01 -3.1029257e-02 3.0072445e-02 -1.7673093e-01 1.3039944e-01 -2.2745131e-01 5.0659899e-02 4.9111247e-03 4.5985736e-02 2.6927676e-01 -5.0524714e-02 6.3909158e-02 -9.8437974e-02 -1.6930577e-01 -1.4252093e-02 7.2559442e-02 1.2740172e-01 -2.6564361e-02 5.4939118e-02 1.6360395e-01 7.6371762e-02 6.0929458e-02 8.7096114e-02 -9.4753485e-03 -2.3025609e-01 1.2417448e-01 -7.1789223e-02 8.8216017e-02 -2.1047233e-02 5.0482338e-02 9.5209969e-02 2.4824589e-01 -4.2760197e-02 -4.9142377e-02 7.5817245e-02 6.8962709e-02 + 3.1320056e-02 -3.1021477e-02 -1.4803538e-02 -2.0028203e-02 2.3320447e-02 -1.4851434e-03 2.9362273e-03 -1.7788280e-02 6.4881574e-02 7.0142266e-03 4.6269191e-02 -2.7726215e-02 -8.4527933e-03 1.4285563e-02 -1.5712290e-02 -2.6720338e-02 1.6137183e-02 -4.5104789e-03 -2.5355143e-02 -5.4677986e-03 1.9509145e-02 -1.0212261e-01 3.6204349e-03 -2.9121695e-03 6.1839751e-02 1.7418650e-03 -4.1118504e-02 -1.4987075e-02 2.4048211e-02 4.9085500e-02 1.0967957e-02 2.8339345e-02 3.8191154e-03 1.8382920e-02 -4.1132607e-02 1.2043367e-01 -6.3520245e-04 2.7866134e-02 2.9105118e-02 -4.1403182e-02 + -1.6363589e-01 -3.8677272e-02 7.7938116e-02 -3.1084321e-01 3.0485412e-01 9.6193470e-02 2.8944145e-01 -1.9008869e-01 1.0425220e-01 3.6264475e-01 -3.1342002e-01 2.8662620e-01 1.3357427e-01 1.6025148e-01 -1.8290779e-01 2.6372347e-01 2.8716429e-03 2.8180841e-01 2.4279267e-01 1.6632040e-01 1.4392032e-01 -7.3562207e-03 8.7717379e-02 -6.0986976e-02 5.9489349e-02 3.7178044e-01 4.2101150e-01 2.9075108e-01 2.7849416e-01 4.6913208e-02 5.7930467e-02 1.2146358e-01 1.7139717e-01 -3.2582485e-01 -1.6246755e-01 1.1223371e-01 3.6095164e-02 1.1761043e-02 2.3191965e-01 -2.0687751e-02 + 2.1058487e-02 -8.6864089e-02 2.3186394e-02 -8.7509841e-03 -2.7441444e-02 1.9758090e-02 -1.2693366e-02 9.9712361e-02 -6.4522704e-02 -3.8551649e-02 2.7310004e-01 1.4498097e-01 -3.6588394e-02 -1.4449171e-01 3.1673415e-02 -6.6004637e-02 6.5188498e-02 -4.7295747e-02 -1.5566158e-01 8.1199325e-02 2.0476231e-02 -3.1677977e-01 2.4607421e-02 -3.4367404e-03 1.3712430e-04 -6.3903488e-02 -7.7294493e-02 -1.2410700e-01 2.8960980e-04 -2.8502867e-01 -1.3274651e-01 -1.4627184e-01 -1.2198028e-01 4.1243821e-03 -3.8550760e-02 -4.4748672e-02 -3.0691496e-02 -5.3724829e-02 -8.3833579e-02 -1.8325252e-02 + 1.1158274e-01 -9.9315150e-02 1.2374095e-02 -3.3010273e-02 -1.5930656e-01 -8.2875087e-02 -3.9420343e-02 4.1059202e-02 -6.6009614e-03 -1.7652642e-01 1.2374154e-01 -3.1135763e-02 -3.4610622e-02 -2.4167811e-02 -1.8612308e-01 -4.4898561e-02 -3.4663002e-02 -2.3405472e-01 1.5114637e-02 4.5224793e-02 5.6649550e-02 -2.3470108e-01 -3.9784217e-02 3.7020037e-02 3.1700289e-01 1.9339943e-02 -8.1713642e-03 1.0898007e-01 -2.5442978e-01 1.3295539e-01 3.5834712e-02 -4.3204103e-02 7.8342592e-02 2.4357500e-03 -1.0674996e-01 5.7064469e-02 7.7025618e-02 -5.2337955e-02 -7.5513324e-02 -2.0316883e-01 + -1.2101079e-01 -4.7901509e-01 -3.5058734e-01 -1.3369421e-01 -2.5601219e-01 5.3903300e-01 2.5766060e-01 -4.9804241e-01 -3.6812575e-01 -1.9772831e-01 8.1895952e-01 5.4437535e-02 -6.8591142e-03 -6.4294506e-01 -1.5461308e-02 -1.3423039e-01 2.3681270e-01 4.3308222e-01 -9.6521220e-02 2.6007751e-01 -5.5975677e-01 -6.3188160e-01 -2.2864528e-01 1.9262786e-01 2.3357058e-01 4.1051917e-01 -3.6494869e-02 3.8463034e-01 -3.3018776e-01 -3.9800872e-01 -5.5307107e-01 1.1600141e-01 -6.3452051e-01 2.9899380e-01 -4.5858368e-01 1.1423072e-05 2.1958279e-01 -5.8111170e-01 2.5432022e-01 -1.6695736e-02 + -1.2365181e-01 1.8909946e-01 1.7138137e-01 2.4472554e-01 4.1702733e-02 4.3744303e-02 -3.2872280e-01 2.0835178e-01 -1.7580500e-01 -2.9222686e-02 -9.3218749e-02 4.3108180e-01 8.1997093e-02 2.2061013e-01 2.3180947e-01 9.1167118e-02 -9.0191228e-02 1.2896521e-01 -1.5690194e-01 1.2784105e-01 1.4714970e-01 1.5643568e-01 1.4533321e-01 3.4750556e-02 -3.3716135e-01 1.4600692e-01 -1.8647463e-01 -1.9819929e-01 1.6893059e-01 -3.8988540e-01 -8.1689457e-02 2.8541815e-02 -2.6184468e-01 -1.2384168e-01 3.5712258e-01 -6.4008146e-02 -1.9999554e-01 -2.3666262e-01 -3.0253014e-02 2.7267879e-01 + -6.0441925e-02 1.9188178e-02 7.3869548e-02 -4.0939651e-03 -1.2486746e-01 -4.6102035e-02 8.7051852e-03 -5.8981433e-02 1.3688928e-01 -5.3921579e-02 7.7098217e-02 1.4450342e-01 1.6134715e-02 1.1518608e-01 -3.9862710e-02 4.7606389e-02 -2.0262743e-01 -9.9434078e-02 5.2885811e-03 5.9971283e-02 -2.6213667e-02 -1.6284418e-01 -5.2692249e-02 1.1090001e-02 -6.3402528e-02 -1.4175289e-02 2.0548187e-03 -4.7895195e-02 6.4418011e-03 1.5464820e-02 -1.2162290e-01 -6.6138852e-02 -5.9731718e-02 -9.3516090e-02 -5.2913025e-02 2.9996461e-02 -1.7295714e-03 -3.4824855e-02 -9.4994212e-02 3.0647658e-02 + -3.7531858e-02 9.9893454e-02 -2.3742370e-01 -1.1981055e-01 -6.7589009e-02 3.5001951e-02 1.1585325e-01 -2.9753784e-01 -1.2625690e-01 8.8955659e-02 2.2700814e-01 7.1535971e-02 -1.3428694e-01 -1.4424541e-01 -1.8100426e-01 -7.2058599e-02 2.4870692e-01 6.7350879e-02 7.1648767e-03 -7.4776136e-03 2.0598419e-01 -5.6498962e-02 2.3685262e-02 -1.6134768e-01 1.1898328e-01 -1.1611656e-01 9.0187063e-02 1.5284719e-01 1.2078381e-01 -1.0452045e-01 -1.4197619e-01 3.1166606e-02 1.2045388e-02 1.9649021e-01 -9.6923566e-02 -4.3676777e-02 1.2127693e-01 -4.2279702e-02 5.3836683e-02 -9.0048019e-02 + 4.7786015e-02 3.5957576e-02 -1.2432777e-01 8.5801011e-03 1.4853240e-01 7.1319848e-02 -6.5340980e-02 -5.2095518e-02 6.2349548e-02 -5.5457176e-02 -9.4080745e-02 -1.2092354e-01 4.8552989e-02 3.1040048e-02 1.8431850e-01 -2.0828358e-01 -3.4889067e-02 -3.9095756e-02 -3.2869257e-02 -1.6688193e-01 -3.4669337e-01 5.1306684e-02 7.3485317e-02 9.5557045e-02 -4.7478477e-02 8.4510974e-02 -7.1660166e-02 2.3109503e-02 1.1203428e-01 1.0332305e-01 1.4833753e-02 1.0933898e-01 -7.3404817e-03 3.0513868e-01 -1.1820129e-01 -1.0351120e-01 6.4121383e-02 8.4745197e-02 3.5320118e-02 -1.4381093e-01 + -1.8278543e-02 5.6521155e-02 -1.3556332e-02 4.0914837e-02 -2.3740252e-02 3.6946155e-02 1.6457194e-02 4.3351933e-02 9.7524035e-02 -2.4141158e-02 1.5196524e-01 -2.0893739e-02 4.7642204e-02 2.2427029e-03 5.8561607e-03 8.6857350e-02 -1.2728132e-01 1.9601448e-02 1.6384820e-02 -1.9763118e-02 -9.4403777e-02 -1.8138756e-02 -1.5346167e-03 -2.4862178e-02 -2.8852653e-02 -2.7300639e-02 -4.9233345e-02 5.1243836e-02 5.2585126e-02 -7.0100069e-02 -5.4456206e-02 -6.8939087e-02 -5.5299407e-02 -6.7338515e-02 -4.5737826e-03 2.2543927e-02 -3.6877909e-02 -2.4751980e-02 1.2502592e-02 3.2656795e-02 + 1.2267811e-01 -3.6652963e-01 3.8514164e-01 9.4381996e-02 -2.4618443e-02 -7.3046536e-03 -2.2041308e-01 -4.3185524e-03 4.9607042e-02 -1.6725375e-01 -1.0834809e-01 -6.1431500e-02 2.7660788e-02 1.6054488e-01 1.4305518e-02 -6.6189359e-02 -7.5920092e-02 -8.7222365e-02 -2.5411035e-03 -4.4983227e-02 1.8229814e-02 -1.7239631e-01 -3.9209366e-02 1.5381716e-01 -1.0290585e-02 1.3718681e-02 -3.9986527e-02 -3.1630940e-01 -4.0837861e-01 1.6287918e-01 1.8141757e-01 1.0422615e-01 -4.3103896e-02 -2.6703055e-02 -6.8043597e-02 1.2416307e-01 -2.6273756e-02 1.6419962e-01 -1.0722453e-01 -4.9651853e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW1_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_LW1_G_5.txt new file mode 100644 index 00000000..9067d66b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW1_G_5.txt @@ -0,0 +1,16 @@ + 5.6205157e-01 -2.1462881e-03 1.7542092e-01 2.9458172e-01 -9.1102622e-02 -4.8907223e-02 -7.3732932e-01 -1.8915267e-01 2.3229108e-01 1.9550429e-01 4.4447875e-02 -4.2387238e-02 1.4704611e-02 7.7378354e-02 4.4779158e-02 -9.3759450e-02 4.0165229e-02 2.8503793e-01 -6.1857468e-01 -2.4304251e-02 -8.7117854e-02 6.0814646e-02 -4.6847780e-02 1.2402434e-01 -1.4849301e-02 3.6944643e-01 -4.2444132e-02 6.7032336e-01 2.2667898e-01 -2.2321908e-01 9.4575917e-02 -3.1490655e-01 2.6109539e-01 3.3020519e-01 1.8832402e-01 7.7810026e-02 1.1071847e-01 1.0307641e-01 4.9132377e-01 -1.2321112e-01 -6.7352161e-02 2.3932111e-01 -8.9356966e-02 -5.4400106e-02 2.1298717e-02 -1.6680829e-02 + -3.7666302e-01 -9.8944762e-02 -1.0453995e-02 7.0178431e-01 -2.6365543e-02 -6.1670310e-02 -1.2528998e+00 -2.1444615e-01 -1.1994277e-02 1.1665600e-01 1.6992819e-01 -1.1604532e-01 -7.0297450e-02 1.6535938e-01 5.0654277e-02 4.1513775e-02 1.6526635e-01 -9.0233845e-02 -4.2133057e-01 -1.0188203e-01 2.4073679e-01 -4.4116569e-01 3.4375095e-02 1.4388816e-01 -4.8828894e-02 3.5226250e-01 -4.9446616e-01 2.6746463e-01 5.4927229e-01 2.7436756e-02 3.2673303e-01 -2.9399375e-01 2.2749487e-01 -2.2200054e-01 1.5536407e-01 -6.6888046e-02 5.6117066e-02 2.1981383e-01 1.8080772e-01 3.7689439e-02 -3.0626968e-02 2.5208474e-01 -3.0623060e-03 7.3941164e-02 1.6135231e-03 -6.9110643e-02 + 1.4761057e-01 -6.2449546e-03 3.2853558e-02 -5.6955935e-02 -2.0329332e-02 -1.5113106e-03 -3.6782641e-02 2.1098038e-03 8.9246538e-02 -4.9788048e-04 2.5001663e-02 -1.1168078e-01 -4.2169575e-03 1.0288279e-02 -1.4636717e-02 -6.8931652e-03 -8.7147799e-04 4.9331444e-02 2.6805535e-03 -5.6923639e-03 -2.9181935e-02 1.9934182e-03 -4.7546109e-03 1.4930279e-02 7.7744530e-04 1.2222973e-02 2.2512041e-02 -4.7233872e-02 5.4080944e-02 -3.9414339e-02 -3.8087537e-02 2.5909296e-02 9.8996999e-03 -4.9186031e-02 1.5672315e-03 -3.0341555e-03 1.1742744e-02 -2.4284129e-02 4.5493018e-02 4.8279327e-03 3.8446656e-03 -5.8769747e-02 -1.7342916e-02 -1.9663509e-02 2.3317847e-02 6.3332261e-03 + -2.2454803e-01 1.6389277e-01 -1.7809010e-01 4.5809806e-03 -1.0372372e-01 -2.7629463e-02 3.0612423e-01 -8.0932923e-02 -3.8550064e-01 1.7370932e-01 -6.9042228e-02 5.3073664e-02 -2.6962724e-01 1.1892734e-01 -2.9174860e-02 8.4095882e-02 -1.1910719e-01 -4.6806944e-01 -7.6089727e-02 7.4234088e-02 1.6346202e-01 -2.0962777e-02 9.0244047e-02 -1.0644894e-01 1.7408426e-01 -2.4399447e-01 -5.2243528e-02 -1.6280805e-01 -9.3640759e-02 -7.5467094e-02 -9.9019479e-02 -1.8275585e-01 -1.7217924e-01 -5.7304599e-02 -1.4855410e-01 1.1410700e-01 1.6393041e-02 3.2100124e-02 -1.2751842e-01 -1.7925416e-01 1.1786729e-03 -1.2760046e-02 -5.0509263e-03 5.7118290e-02 6.4817657e-02 7.6801475e-02 + -3.4619051e-01 -1.2625033e-01 -3.1745561e-01 2.0422712e-01 3.5946760e-01 -1.3773964e-01 7.0258777e-02 1.8141360e-01 -8.0569762e-02 7.2527514e-03 6.5529013e-02 -1.8371432e-02 1.0640992e-02 -2.7300463e-01 4.1379516e-03 2.6469280e-02 2.7033474e-02 -1.8118396e-01 2.1278120e-01 4.5635174e-01 -1.1633723e-01 2.0158882e-01 2.5168979e-01 -5.1219927e-02 -1.6496427e-02 -8.7175216e-02 4.7407723e-01 2.7609601e-03 -1.5813435e-01 2.7861397e-01 3.9280547e-01 -3.3281212e-01 -1.3423197e-01 -4.5567884e-01 1.9743075e-02 -1.4003328e-01 1.6797102e-01 2.1051013e-01 -4.8456447e-01 2.3612128e-02 9.6612197e-02 -6.6461970e-02 6.9207363e-02 8.9574371e-02 1.5460658e-01 -9.2636172e-02 + 6.1776891e-01 -4.7879346e-02 9.3291629e-02 -1.3334474e-01 2.4490421e-01 2.0286868e-02 8.8232459e-02 2.2242923e-01 5.8608495e-01 -2.0157775e-01 -3.3078410e-02 1.8750606e-01 1.9574956e-01 -2.0716851e-01 -6.1428384e-03 -8.5499514e-02 -4.1482232e-02 2.7072200e-01 1.4066458e-01 1.1975279e-01 -3.3734777e-01 2.2327283e-01 -1.1557369e-02 -5.3174356e-02 -7.1141535e-02 -4.5997709e-01 5.1936475e-01 1.7508939e-01 -2.3768479e-01 7.9808991e-04 7.0380656e-02 2.2922700e-01 -1.5125990e-02 2.5837492e-01 -6.1407917e-02 -6.1355008e-03 -4.4998973e-02 1.1237076e-02 -7.2585887e-02 9.5091104e-02 1.2947230e-01 -2.5371089e-01 1.2628399e-01 -1.7628952e-02 1.9364065e-02 -1.0084790e-01 + 1.7028056e-02 2.6479358e-02 -1.7732412e-02 -2.9820022e-01 3.1552582e-02 -9.5746515e-03 -2.9834650e-02 2.2274269e-02 -5.6979967e-02 -1.0061343e-03 -2.1742367e-02 1.0231255e-01 7.0598019e-02 -4.7212747e-02 -1.8586420e-02 1.5327493e-02 1.3777661e-02 1.0069510e-01 -1.2960449e-01 4.1193101e-02 -8.8598787e-02 -2.9180805e-03 -4.8265755e-02 3.1544364e-03 -1.0312354e-02 -2.4137050e-02 -1.0320841e-01 -1.0006119e-01 -2.2452756e-01 6.3606056e-02 3.3907191e-02 2.3860494e-02 9.8299142e-02 1.1693177e-01 -4.9632143e-02 -4.8425264e-03 2.2530262e-02 2.6211910e-02 -1.3639322e-01 1.0334897e-02 6.8788635e-02 -1.3674548e-02 -3.5490708e-02 2.4628133e-02 -2.6720318e-02 2.0129354e-02 + -1.0265156e-01 -3.0700100e-02 1.7103165e-02 8.9497520e-02 -7.2311198e-02 5.5952443e-02 1.1036229e-01 -5.7786636e-02 -3.5881451e-03 -3.6991395e-02 -1.4626839e-02 -5.1695977e-02 -5.3579538e-02 5.2859939e-02 -2.9351390e-02 -1.3362113e-02 -3.5393669e-02 -8.7373842e-02 1.0272747e-02 -9.7288160e-02 2.0288865e-02 5.4313379e-02 1.0617027e-02 6.7078603e-03 -2.4227998e-02 1.6888971e-01 -1.1371116e-02 1.0402503e-02 6.6305877e-02 -8.1151124e-02 -4.1439891e-03 1.4767811e-02 -6.3580235e-02 3.7318767e-02 6.6230842e-03 -3.3503224e-03 -1.0646590e-02 -1.5633222e-02 5.3941762e-02 -1.7973351e-03 9.7267690e-03 1.6489381e-02 -1.4592123e-02 -2.0629866e-02 6.4672507e-04 -3.1836516e-03 + -1.8399584e-01 -5.5608168e-02 -9.0267463e-02 1.7786461e-01 1.8487056e-01 3.5884349e-02 1.9401525e-01 8.4507439e-02 5.5777807e-02 -1.1993204e-01 -2.7640220e-02 3.0940900e-01 4.3630077e-02 -7.8130379e-02 4.7488445e-02 -1.4728687e-02 -2.4749537e-02 -1.6817422e-01 -7.4389605e-02 -3.0127245e-02 7.2611954e-02 5.9857815e-02 8.0128013e-02 -1.4724370e-01 -3.4443052e-02 -1.1152653e-01 -2.8449044e-02 9.4545539e-02 -1.9051390e-01 1.5538235e-01 1.0409059e-01 8.0499655e-02 -1.0934686e-01 1.5586993e-01 -8.2591868e-02 -7.5111774e-02 -1.0559169e-01 -2.6595203e-02 -2.7643618e-01 7.3572815e-02 3.2282018e-02 -3.3651448e-02 1.4250362e-01 1.1771270e-01 -1.0366843e-02 -1.1814525e-01 + 9.2445280e-02 3.0016752e-02 3.8959555e-02 -4.9456876e-01 -1.1106234e-03 1.9397215e-02 2.8518583e-02 6.9455168e-03 -1.9203974e-02 -6.1778655e-02 -3.4906541e-02 1.3250774e-01 1.1140428e-01 -2.8516843e-02 -3.1439058e-02 -7.1414086e-02 2.1093659e-02 1.1026106e-01 -2.3171719e-01 -1.0960351e-02 -2.2223902e-02 -7.1018834e-02 -1.2604250e-01 1.4969881e-02 -4.5723543e-02 -3.9601508e-01 -3.0728371e-02 -1.7783049e-01 -3.4321366e-01 3.3641063e-02 -8.8156035e-02 1.2593489e-01 5.3330058e-02 1.8276617e-01 -4.9338956e-02 1.2741143e-02 -3.3875702e-02 -1.9399495e-02 -2.4269131e-01 2.8882891e-02 8.9266151e-03 -4.1735918e-02 5.4557556e-02 1.3330407e-02 -3.4082758e-02 1.4085960e-02 + -3.7848869e-01 5.4949791e-02 1.3755212e-01 -4.4931681e-01 -2.0826675e-01 1.1206717e-01 7.4223661e-01 9.8031539e-02 2.6781158e-01 -1.6818950e-01 -1.1378958e-01 3.1139336e-01 -3.8985499e-02 3.7261750e-02 -9.7986108e-02 -1.3223014e-01 -9.9818978e-02 1.2893522e-01 6.4053516e-02 -2.8530569e-04 -1.7417245e-01 7.3896131e-02 -2.0594995e-01 5.1439897e-02 -2.5218755e-02 2.0064229e-01 -6.3017862e-02 5.6068352e-02 -3.8084672e-01 -2.0478268e-01 -1.9184160e-01 2.9680494e-01 -8.4925638e-02 2.6481041e-01 -3.9374256e-02 2.6532226e-02 -4.7308007e-02 -5.8250590e-03 -1.8464587e-01 -1.0213433e-02 1.3462976e-01 -2.9027172e-01 2.2068009e-02 -1.2696162e-01 7.2987016e-02 4.6141911e-02 + 9.4805267e-01 -3.5313596e-02 -1.7762322e-02 1.9557359e-01 3.6802384e-01 3.7019961e-02 4.8936956e-01 3.2286246e-01 6.5067752e-01 -2.5111732e-01 -6.1227515e-02 4.2143887e-01 9.8981019e-02 -2.6413439e-01 4.6529663e-02 2.5597830e-03 -6.9146974e-02 -4.3141753e-02 7.0919028e-01 1.6670164e-02 -3.2216801e-01 3.9701915e-01 2.9191763e-01 -2.0922911e-01 -6.1768340e-02 -6.8027189e-01 9.6254586e-01 1.7721138e-01 -3.5692536e-01 7.3460731e-02 1.9454990e-01 3.4527747e-01 -2.1103612e-01 9.9820292e-02 -1.9604661e-01 -5.3213049e-03 -1.1282002e-01 -1.3822093e-01 -1.2386866e-01 1.4010063e-01 1.3266579e-01 -2.9540184e-01 1.6320549e-01 1.5691057e-02 -4.1409654e-02 -1.4976531e-01 + 4.0537930e-01 -1.7487307e-03 -5.3574027e-02 1.7129983e-01 -1.6489455e-03 2.8394218e-02 4.0970869e-02 4.4022955e-02 4.6357393e-01 7.5085276e-04 9.1601828e-05 -2.2805405e-01 -1.2216348e-03 -4.7009401e-02 -7.7411817e-02 1.9805677e-02 -4.5528633e-02 4.0821650e-02 2.5943679e-01 8.3772462e-02 -1.4913586e-01 2.1768641e-01 1.4494835e-01 -2.1877827e-02 7.5240368e-03 1.8457991e-02 -1.0761279e-01 -9.9270488e-04 8.8769082e-02 -1.1559284e-01 5.4991403e-02 -7.0178369e-02 -1.1709999e-01 -3.5186027e-01 -5.7036507e-02 2.3407949e-02 1.1615199e-02 6.0145452e-02 9.9950455e-02 2.5726169e-03 1.1062008e-01 -1.5788922e-01 -3.7194606e-03 -6.2219152e-02 1.7020491e-02 3.3634709e-02 + 4.2328550e-01 1.0363268e-01 -1.4215459e-01 2.3096515e-01 2.1938968e-01 -1.2813900e-01 -1.0985456e-01 1.3702277e-01 2.6433684e-01 1.8623424e-01 7.4177773e-02 -4.5607211e-01 -1.6818949e-01 -1.3293276e-01 -2.4782982e-02 1.4296061e-01 -9.0563616e-02 -9.8270830e-02 9.7397912e-01 3.7467243e-01 -1.4823250e-01 7.0632848e-02 2.6289346e-01 -5.9629306e-02 9.4464338e-02 -6.8345579e-01 7.1273518e-01 3.2567494e-01 3.2899010e-01 2.8674968e-02 3.7234410e-02 -3.1513772e-01 -1.6881310e-01 -6.8490361e-01 -1.5463594e-01 5.6986672e-02 1.0593711e-01 2.6669189e-01 1.4448014e-01 -1.2505161e-01 1.5851179e-01 -2.5079784e-01 -3.9574440e-02 -3.1877410e-02 1.6629101e-01 6.5896286e-02 + -1.6707121e-01 -2.5555352e-02 4.6626523e-02 7.3413880e-02 -5.4310009e-02 1.7777591e-02 -1.0039557e-01 -8.9584879e-03 -4.9987774e-02 2.3523038e-02 -5.2876287e-04 -4.9194259e-02 2.1220381e-02 7.1971470e-02 3.6495112e-02 -3.1651190e-02 -1.0778652e-02 3.9979285e-02 -1.4432104e-01 -3.9306548e-02 7.5182081e-02 -5.9215251e-02 -9.1436713e-02 5.6346286e-02 -1.3362132e-02 1.8167363e-01 -1.2092727e-01 1.9259854e-01 2.5845957e-02 -2.4635790e-02 -1.3265544e-02 -5.4510463e-02 7.1933638e-02 1.8031814e-01 6.5512288e-02 -2.8179997e-02 -9.7122770e-03 7.6550370e-02 -5.6166654e-04 -1.4725093e-02 -4.7741612e-02 8.2297078e-02 1.6020372e-02 -9.8517881e-03 7.3603001e-03 -1.5237176e-02 + 1.7000063e-01 1.8745977e-02 -9.2172584e-03 -3.1865563e-02 5.5439009e-02 -1.6865319e-02 -5.7024087e-02 5.0648558e-02 8.8606249e-02 1.9224313e-02 1.7695365e-03 -8.5154171e-02 3.5017163e-02 -3.2367297e-02 1.1017892e-02 -4.2912501e-03 -1.7921585e-02 2.7148579e-02 4.6517845e-02 5.7422504e-02 -2.5195210e-02 -3.4362926e-02 2.3692093e-02 -2.0927735e-02 2.1963799e-03 -2.0157202e-01 1.6415735e-01 -2.5091420e-02 4.5965742e-02 2.3028077e-02 -5.7215464e-03 1.9925749e-02 -1.0035664e-02 -9.5245524e-02 -3.8514441e-02 -9.1585123e-03 3.6476368e-03 -1.1670087e-02 1.3396064e-02 -1.3671805e-02 2.0520500e-02 -9.6336077e-02 -6.1751623e-03 1.5353232e-02 1.8259017e-02 -5.0726672e-04 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_F_1.txt new file mode 100644 index 00000000..94499c82 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_F_1.txt @@ -0,0 +1 @@ + 1.2296245e-01 5.5295475e-01 -8.0152965e-02 -2.3816582e-02 -1.9026287e-01 6.4577878e-02 3.2553092e-01 -2.3534399e-01 1.6510218e-01 9.1097472e-02 -2.0735800e-01 7.0762422e-02 4.0203977e-01 -8.9939386e-02 8.1852177e-02 -3.1949966e-01 -8.2764281e-02 3.5668946e-02 1.8308321e-01 1.5366887e-01 -2.1271794e-01 -4.7931686e-02 3.6690347e-03 3.5187609e-01 -9.4939490e-02 1.5733440e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_F_2.txt new file mode 100644 index 00000000..c47b076b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_F_2.txt @@ -0,0 +1 @@ + 7.4262138e-02 -3.2576170e-01 2.3148080e-01 5.0551217e-02 -1.4368102e-02 8.2126729e-03 -3.5144701e-01 -2.1249420e-02 1.4938342e-02 1.3723500e-01 -5.4493004e-02 5.1348892e-02 2.2838051e-01 -5.7027417e-01 8.0132375e-02 9.1602670e-02 -8.0440169e-02 -1.5571593e-03 4.3858684e-01 -6.6756544e-02 5.7805638e-01 -8.9467602e-02 2.2204408e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_F_3.txt new file mode 100644 index 00000000..a1b95583 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_F_3.txt @@ -0,0 +1 @@ + -1.1812148e-01 1.8660997e-01 -2.6323215e-03 -2.3004252e-01 -4.0080630e-01 -1.3467704e-01 4.3140191e-01 4.9569116e-01 1.2513213e-01 7.5435435e-02 -4.5332736e-01 -1.5557378e-01 -4.1685805e-01 1.5891525e-01 -7.1341881e-03 -2.8867732e-01 -2.1719033e-01 -4.8107778e-02 -7.5538559e-02 5.5052906e-01 2.9386248e-01 -5.4830773e-02 4.4403468e-01 1.0849255e-01 3.0440589e-01 4.2674765e-01 -1.5214453e-02 -3.2759038e-01 -1.0967171e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_F_4.txt new file mode 100644 index 00000000..0794bf53 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_F_4.txt @@ -0,0 +1 @@ + 3.5101688e-01 -8.6887383e-03 2.2976344e-02 5.0045774e-02 3.1896718e-01 6.2478560e-02 -7.2266244e-02 -1.6198680e-01 6.9322001e-01 -1.3406359e-01 -1.3446661e-01 1.3604226e-01 -5.9246852e-02 -2.4427311e-01 5.5042095e-01 2.0865692e-01 7.3761782e-01 9.9531523e-02 -3.3533407e-02 -3.1053176e-01 -4.3117375e-02 1.1678228e-02 -3.7686815e-02 -6.7170035e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_F_5.txt new file mode 100644 index 00000000..bd8fb3d2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_F_5.txt @@ -0,0 +1 @@ + -1.8491530e-01 -4.8534109e-02 1.8375666e-01 7.8700935e-02 -6.5053712e-01 3.2520844e-01 1.7416702e-01 -3.7748056e-01 3.7106722e-01 3.0724289e-01 1.3062513e-01 2.2763694e-02 -4.3259880e-02 2.0320303e-01 -5.1545505e-03 -2.0774061e-01 2.1019403e-01 -4.2576756e-01 -4.0112789e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_G_1.txt new file mode 100644 index 00000000..c08e6163 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_G_1.txt @@ -0,0 +1 @@ + 4.9518732e-02 2.4109671e-01 -2.4964777e-01 -1.3611162e-01 5.3766220e-01 2.8330445e-01 3.6780704e-01 -3.8973130e-01 2.5626680e-01 1.4737783e-01 6.3843728e-01 3.9843564e-02 1.4299833e-01 5.5381872e-02 -1.5782255e-02 2.5865983e-01 -2.2598565e-01 4.3133769e-02 4.2098891e-01 -3.6750689e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_G_2.txt new file mode 100644 index 00000000..678338b9 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_G_2.txt @@ -0,0 +1 @@ + -2.6205252e-01 -1.0923889e-01 -3.5269740e-01 -8.9242231e-02 6.2827796e-02 -2.4690588e-01 3.0908621e-01 2.7686530e-01 2.3968812e-01 -3.9207824e-01 2.1674698e-01 2.9589633e-01 -1.3741897e-01 -2.2441822e-01 9.2163186e-02 2.4778890e-01 4.0327111e-01 -5.2630575e-02 2.5271340e-01 1.6484167e-01 9.5043598e-02 8.8529265e-02 6.2967973e-02 -1.8552213e-01 -4.7239336e-01 -6.8651019e-02 -4.9152254e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_G_3.txt new file mode 100644 index 00000000..61f7519a --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_G_3.txt @@ -0,0 +1 @@ + -2.0033338e-01 1.3625429e-01 3.3214092e-02 -1.1846547e-03 2.7378605e-01 -1.8194897e-01 3.4362953e-01 -1.3310419e-01 -2.8955133e-01 -3.2988358e-01 1.9553353e-02 -1.2406523e-01 1.0392221e-01 5.4300287e-04 2.3149319e-01 -4.5064543e-02 1.1483707e-02 6.6259175e-01 -3.3843272e-02 -3.4192922e-02 -9.6956120e-02 2.2334803e-02 1.2483508e-01 4.2412825e-01 -4.8606925e-01 1.5256926e-01 -9.7826091e-02 4.7728815e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_G_4.txt new file mode 100644 index 00000000..73d0cb8b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_G_4.txt @@ -0,0 +1 @@ + -1.9412722e-01 -1.7439495e-01 6.8747061e-02 -2.0843924e-01 4.3534357e-01 -3.6485935e-01 -1.4358723e-01 -4.6142689e-01 1.5213893e-01 -4.1009863e-02 -7.5762932e-02 1.6869644e-01 -3.5327252e-01 -3.3064014e-01 -2.0850858e-01 3.0559880e-01 2.5203055e-01 1.4649259e-02 1.6466591e-01 2.1229414e-01 8.0579065e-03 -1.5202081e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_LW2_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_LW2_G_5.txt new file mode 100644 index 00000000..49281953 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_LW2_G_5.txt @@ -0,0 +1 @@ + -2.3588477e-01 -4.0663944e-01 6.9724544e-02 -5.9410314e-01 7.8842403e-02 1.9533399e-01 1.7907191e-02 1.6980908e-01 -4.8852620e-01 2.4723371e-01 -4.7482565e-01 1.8339925e-01 -3.0031888e-01 2.7900837e-01 3.3883916e-01 -2.5484885e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_b1_F_1.txt new file mode 100644 index 00000000..156a26f0 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_F_1.txt @@ -0,0 +1,26 @@ + -1.3250898e-01 + 2.3813392e-02 + -7.5077420e-01 + 2.0969744e-01 + -2.1461911e-01 + 7.0860844e-02 + -1.7815845e-01 + -7.1788295e-02 + 7.3234205e-02 + 2.4738262e-02 + -1.6467281e-01 + 4.2312398e-02 + 7.9962211e-02 + 1.1847734e-01 + -1.1498970e+00 + -2.0305340e-01 + -2.7433029e-01 + -5.6548028e-01 + 3.8535576e-01 + 1.2196207e-01 + -3.9886282e-01 + -2.3851470e-01 + 2.3933669e-01 + 9.7106294e-02 + -1.9123599e-01 + 2.9063558e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_b1_F_2.txt new file mode 100644 index 00000000..62747038 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_F_2.txt @@ -0,0 +1,31 @@ + 1.7383271e-01 + -5.9056402e-02 + -3.8328377e-02 + 1.4785500e-01 + 3.0704730e-01 + 7.4394717e-02 + -2.8631887e-01 + -3.8305767e-02 + 3.9979382e-01 + -1.2628723e-01 + -6.6760556e-03 + 9.4578680e-02 + 5.2951679e-01 + -2.8846060e-01 + -4.8641813e-01 + 3.8542501e-01 + 2.8586520e-01 + 3.2459334e-01 + -9.6824464e-02 + 1.1721249e-01 + -4.5504302e-02 + -7.9274939e-02 + 1.5398032e-01 + 2.3409680e-02 + -3.7525798e-02 + -2.5261659e-03 + 2.9705181e-01 + -1.0314995e-01 + 2.0342056e-02 + 2.1192307e-01 + 5.8021531e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_b1_F_3.txt new file mode 100644 index 00000000..d2f7e7f2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_F_3.txt @@ -0,0 +1,34 @@ + -2.5172921e-01 + -5.0567560e-03 + -9.7992066e-02 + -2.7606876e-01 + -1.5128524e-01 + 8.3290790e-01 + -8.3056580e-01 + 1.3755076e+00 + -4.3788391e-01 + 5.9407112e-01 + 3.0521360e-02 + 1.3551056e-01 + -6.2646481e-01 + -1.0546966e-01 + -1.1657663e-02 + -5.8988106e-03 + -1.6530279e-01 + -1.0744906e-01 + -1.3299072e-01 + -5.4085938e-01 + -2.9459358e-01 + 1.7094815e-02 + -9.5324377e-03 + -2.6111953e-01 + -6.9141104e-01 + -1.4910232e-02 + 2.5074011e-01 + 1.2321668e-01 + -3.8284925e-01 + 7.5042540e-01 + 6.0362827e-01 + -1.5741170e-01 + -2.8756216e-01 + -3.4916166e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_b1_F_4.txt new file mode 100644 index 00000000..f7b45b5f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_F_4.txt @@ -0,0 +1,41 @@ + 4.6571037e-02 + -5.0137865e-03 + 3.8094810e-01 + -9.4244642e-02 + -6.4546773e-02 + -2.1432536e-02 + 6.1942729e-01 + 4.3024362e-02 + -8.4242903e-02 + -1.1130543e-01 + 5.0683407e-02 + 5.1512989e-02 + -3.7540847e-02 + 1.1599216e-01 + 6.1841945e-02 + 3.0508840e-01 + 1.8421843e-01 + 2.2798049e-01 + 2.6326649e-01 + -3.0134027e-01 + -5.6392778e-02 + 9.3385530e-01 + 5.6181987e-02 + 2.9704999e-02 + 1.3846364e-02 + -1.7631376e-01 + -3.0450856e-02 + -6.1197104e-02 + 2.7086170e-03 + -1.6773564e-01 + -4.0458423e-01 + 9.2659336e-02 + 8.7692769e-02 + -2.7719195e-01 + 3.8099085e-01 + 7.1517444e-02 + -2.2598343e-01 + 2.9533314e-01 + -2.3035184e-01 + -1.3485370e-01 + 2.0575133e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_b1_F_5.txt new file mode 100644 index 00000000..73bfc8bd --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_F_5.txt @@ -0,0 +1,42 @@ + 2.1308309e-01 + 2.2175277e-03 + 7.7774833e-03 + 1.3783694e-01 + -2.2316382e-01 + -2.0771624e-01 + -4.4672145e-02 + -7.4733708e-01 + 1.5837133e-02 + 3.5423389e-02 + 2.3239744e-01 + -1.8990467e-03 + 8.9495693e-02 + 5.7305256e-02 + -7.0075256e-02 + -1.4392650e-01 + -1.3036496e-01 + 3.2632202e-01 + 2.5348967e-02 + -1.5246123e-01 + -1.9416814e-01 + 2.3711419e-01 + 1.6803472e-01 + -1.1011749e-01 + -2.3335346e-01 + 5.3452730e-03 + -2.2115367e-01 + -1.4006402e-01 + 4.3451887e-02 + 3.1067298e-02 + -4.0066732e-02 + 8.3141988e-02 + -2.6405727e-01 + 1.8582198e-01 + -6.9509253e-02 + 2.0107449e-01 + 3.0306229e-01 + -1.9928500e-02 + -2.5589161e-01 + 7.4479112e-02 + 1.7100801e-01 + -1.8851141e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_b1_G_1.txt new file mode 100644 index 00000000..c87499fe --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_G_1.txt @@ -0,0 +1,28 @@ + -3.4272657e-01 + 2.2078085e-01 + -6.2361227e-01 + 6.2520825e-01 + 9.4274578e-01 + 4.6533281e-02 + -4.7108185e-01 + 4.5508173e-03 + 1.3887213e-01 + -5.4161667e-02 + 1.5001435e-01 + 5.6928011e-01 + -4.6404694e-01 + -5.0866160e-02 + 6.2682268e-02 + 2.6652615e-02 + -4.7849313e-01 + -3.9038693e-02 + 1.6325329e-02 + 6.6798221e-01 + -1.8602081e-01 + -2.4657552e-01 + 2.0704475e-01 + -1.1570485e-01 + 3.1878550e-01 + 3.9368287e-01 + 1.7070654e-02 + -4.1085149e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_b1_G_2.txt new file mode 100644 index 00000000..fb169f41 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_G_2.txt @@ -0,0 +1,34 @@ + -1.0831178e-01 + -9.7173954e-02 + 7.1004283e-02 + -5.3890949e-01 + -6.6746226e-02 + 3.8929535e-03 + 4.7384650e-02 + 1.1575049e-01 + 6.5507350e-02 + 4.4190595e-01 + -3.5273426e-01 + -3.5267836e-01 + -2.0615650e-01 + -2.8557021e-01 + -2.1897786e-01 + 7.8295973e-01 + 5.1653596e-02 + -3.7642913e-01 + 1.1298782e-01 + -2.4765493e-02 + -3.4952768e-02 + -2.6279013e-02 + -1.4155363e-02 + 1.4473982e-01 + -2.7912899e-02 + -1.4525906e-01 + -1.8439132e-01 + -2.1615474e-01 + 4.9000479e-02 + 9.8833641e-02 + -8.0197446e-01 + -4.7961118e-01 + -1.3648939e+00 + 7.1122674e-03 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_b1_G_3.txt new file mode 100644 index 00000000..080e71aa --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_G_3.txt @@ -0,0 +1,35 @@ + -1.1837748e-01 + -5.7386506e-02 + -8.2988564e-02 + 8.1644040e-02 + 9.5898932e-02 + -1.1520132e-01 + -4.5361551e-01 + 3.4197657e-01 + 4.9503588e-02 + 9.6849479e-02 + 3.5089576e-01 + -1.1069836e-01 + -2.2739276e-01 + -1.2801015e-01 + -3.7153208e-01 + -3.1406962e-01 + 1.4455128e-01 + -2.0448413e-01 + 1.3151851e-01 + -1.8692845e-01 + 1.0505346e-01 + 1.6715425e-01 + 4.8780108e-01 + 6.4755153e-02 + 1.3211955e-01 + 1.6300068e-01 + -2.0932961e-01 + -9.7846851e-02 + -1.2201636e-01 + 4.5038240e-02 + 1.4616240e-01 + 1.4690546e-01 + 3.9097971e-01 + -7.6062595e-02 + 9.5043041e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_b1_G_4.txt new file mode 100644 index 00000000..64c97e02 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_G_4.txt @@ -0,0 +1,40 @@ + -6.1232835e-02 + -1.1703930e-01 + 2.9431691e-01 + -9.1522444e-02 + -6.1262738e-02 + -3.3338967e-01 + 1.5457518e-01 + 1.9647818e-01 + 1.6879332e-01 + 3.2954549e-01 + -7.3040083e-01 + -2.0170502e-01 + 1.4066314e-01 + 3.8927076e-01 + 1.0808701e-01 + 1.5030865e-01 + -3.5936932e-01 + -2.4652470e-01 + 1.7887520e-01 + 1.0392810e-01 + 1.4557611e-01 + 5.8685268e-02 + 1.3712930e-01 + -1.9784752e-01 + -2.1820180e-01 + 3.0790309e-01 + 2.0821624e-01 + 2.9382819e-02 + -2.3243731e-01 + -2.1809553e-01 + 7.2004532e-01 + 1.7747719e-01 + 4.1771810e-01 + -6.3331809e-01 + 1.0185442e-01 + 2.5241861e-01 + -1.0981364e-01 + -1.4833257e-01 + 3.5929244e-02 + -3.8992045e-03 diff --git a/argopy/static/assets/canyon-med/poids_sil_b1_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_b1_G_5.txt new file mode 100644 index 00000000..1be39710 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b1_G_5.txt @@ -0,0 +1,46 @@ + -1.1011637e+00 + 2.3196384e-02 + -3.5274263e-02 + -2.3988525e-01 + -4.4859829e-02 + -3.7886567e-03 + -5.8343644e-01 + -1.5714830e-01 + -2.0664221e-01 + 1.5136815e-01 + -3.2046065e-03 + -1.6215160e-01 + -4.6873051e-02 + 9.0192533e-02 + 5.4863045e-02 + 1.6317459e-02 + 3.0586559e-02 + -9.1440946e-02 + -1.0776682e+00 + -1.9814287e-01 + 1.5417339e-01 + 1.8787668e-02 + 2.3291672e-02 + -2.7984656e-02 + 4.9025159e-02 + 5.2159459e-01 + -6.3083588e-02 + -3.3196106e-01 + -2.8936313e-01 + -1.1078572e-03 + -5.8553803e-02 + -1.7973583e-01 + 3.7801626e-02 + -1.1927220e-01 + 7.4542828e-02 + 2.9389466e-02 + 1.8708514e-02 + -1.8698691e-01 + -8.1734299e-03 + -6.6531212e-02 + -1.8965239e-01 + 2.5529724e-01 + -9.2668201e-02 + 4.8640084e-02 + -9.3890270e-02 + 2.5184748e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_b2_F_1.txt new file mode 100644 index 00000000..eb8e91db --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_F_1.txt @@ -0,0 +1,26 @@ + 9.9547083e-02 + 9.4910045e-02 + 1.8790467e-02 + 8.2126133e-03 + 4.2171174e-02 + -2.4672688e-03 + -6.7150386e-02 + -5.8638378e-03 + -1.6483880e-01 + 6.1476437e-03 + -5.8166213e-02 + 8.3978730e-02 + -3.3094327e-01 + 2.9118537e-02 + -1.1188461e-02 + -3.2773291e-02 + -4.4067112e-03 + -6.8024399e-02 + -1.4135471e-01 + 3.1894844e-01 + 9.9204687e-02 + 2.3025335e-02 + 8.3176037e-02 + -2.0700305e-01 + -3.9315163e-02 + -8.3724890e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_b2_F_2.txt new file mode 100644 index 00000000..4cef500e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_F_2.txt @@ -0,0 +1,23 @@ + -7.9238279e-02 + 8.3331773e-02 + 2.2441782e-02 + -3.4545101e-02 + 5.9440160e-02 + -2.3934810e-02 + -7.3611829e-02 + -8.1522411e-02 + 8.9328566e-02 + 4.0550966e-02 + 8.6947035e-03 + 4.6365819e-02 + -1.3105256e-01 + 2.6729083e-01 + -5.5417641e-02 + 1.1094498e-02 + -1.9740935e-02 + -4.0081604e-03 + 3.5191432e-01 + 1.1730091e-02 + -4.8323184e-01 + -1.8053680e-02 + 6.4372892e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_b2_F_3.txt new file mode 100644 index 00000000..9280e95b --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_F_3.txt @@ -0,0 +1,29 @@ + -1.1068758e-02 + 5.9432336e-03 + 2.9802475e-02 + -4.0655103e-02 + 2.6811752e-01 + 1.5536070e-01 + -7.1878018e-01 + 3.1373171e-01 + 1.5395051e-01 + -4.8353243e-02 + -4.2482741e-02 + -1.1244332e-02 + -4.7545933e-01 + 1.2736996e-02 + 2.3227472e-04 + -3.4536706e-01 + 2.2998242e-01 + 3.3573642e-02 + -4.5177687e-02 + -1.2271196e-01 + 6.6277614e-02 + -1.4484751e-02 + -1.3504032e-01 + -1.4555237e-02 + 1.3962972e-01 + 9.6680133e-03 + -3.0234526e-04 + 1.5618617e-01 + -2.1134809e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_b2_F_4.txt new file mode 100644 index 00000000..e6934cde --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_F_4.txt @@ -0,0 +1,24 @@ + -2.7221187e-01 + -1.4535561e-01 + -4.7621892e-03 + -6.2249533e-04 + -1.5860868e-01 + 3.5744671e-02 + -2.1604380e-02 + 8.5171301e-02 + 4.6854822e-01 + 4.1219785e-02 + 1.1474932e-01 + 1.8832016e-02 + -3.3664915e-02 + -4.8852225e-02 + -2.2465830e-01 + 4.5513046e-02 + -2.6426700e-01 + -4.4934141e-02 + -3.3174673e-02 + 4.0127745e-01 + 8.6428588e-03 + -7.8894843e-02 + -5.3809745e-03 + -3.8270212e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_b2_F_5.txt new file mode 100644 index 00000000..ce73363d --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_F_5.txt @@ -0,0 +1,19 @@ + 5.1610082e-03 + -5.5833634e-02 + 2.5093566e-02 + -1.6240253e-02 + -1.4540718e-02 + -2.1426439e-01 + -9.4960524e-02 + 2.5929659e-01 + -4.9218174e-02 + -1.3556743e-01 + 3.4758327e-02 + 3.1093599e-02 + 1.2113673e-02 + -1.1003069e-01 + 2.2814346e-02 + -1.2784977e-02 + -4.8070584e-01 + -3.6628550e-01 + 1.6023049e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_b2_G_1.txt new file mode 100644 index 00000000..e2725635 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_G_1.txt @@ -0,0 +1,20 @@ + -2.5731887e-03 + -4.8940542e-01 + 3.8929445e-02 + 2.4014533e-02 + 2.6680685e-02 + 7.3172240e-02 + -1.9791318e-02 + 1.6096821e-01 + -4.2058623e-02 + -4.1604577e-02 + -5.8114493e-02 + 3.6957073e-03 + 1.5527816e-02 + -1.3831837e-01 + 9.3426141e-03 + -1.8279719e-02 + -1.2271230e-03 + 5.4075439e-02 + 5.4095564e-01 + -7.5986393e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_b2_G_2.txt new file mode 100644 index 00000000..03505f16 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_G_2.txt @@ -0,0 +1,27 @@ + 6.4904424e-01 + -2.4070617e-02 + 8.8599472e-03 + -3.7641239e-02 + 1.8141935e-02 + -4.5241749e-02 + -1.2160995e-01 + -6.4335012e-03 + -1.0215198e-02 + 3.1506828e-01 + -6.1797902e-02 + -2.4779783e-01 + -1.7182043e-02 + -4.1710296e-02 + 2.7619674e-02 + 1.1034875e-03 + -1.3875941e-01 + -2.3730966e-02 + -5.3468014e-01 + 6.0851596e-02 + 3.2027041e-02 + 2.9128943e-02 + 2.3972388e-02 + -6.7955723e-02 + -7.9456241e-02 + -3.1125497e-02 + 1.9442242e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_b2_G_3.txt new file mode 100644 index 00000000..74fab449 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_G_3.txt @@ -0,0 +1,28 @@ + -1.0969204e-02 + 4.7795567e-02 + 1.1376634e-01 + 3.6671817e-02 + 5.5131269e-02 + -6.9343724e-02 + -2.7367097e-01 + -6.2980518e-02 + 2.0393198e-03 + 1.0876818e-01 + -2.2733106e-02 + -6.6766379e-02 + -9.5090386e-02 + 6.5052690e-03 + -1.2288382e-01 + -1.7759676e-03 + -9.2451151e-02 + 1.0745300e-01 + -5.6012711e-02 + 9.8560229e-02 + 7.2927163e-02 + -1.1068080e-02 + 4.2855728e-02 + 2.4465775e-01 + 1.1544130e-01 + -8.7623903e-02 + 3.9518378e-02 + -4.6422482e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_b2_G_4.txt new file mode 100644 index 00000000..d1c115e3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_G_4.txt @@ -0,0 +1,22 @@ + 8.8325852e-02 + -4.8125008e-02 + -1.9065557e-02 + 1.2517887e-02 + -1.5037148e-01 + -4.0048379e-02 + 3.2552179e-02 + -1.4761591e-01 + 8.2920283e-02 + 4.8510775e-02 + 9.1499014e-02 + 4.8712176e-02 + 3.1212171e-01 + -9.6588939e-02 + -1.9047437e-01 + -4.6187644e-01 + 1.6788582e-01 + 7.1828460e-03 + -1.6017416e-01 + -7.6746197e-02 + 1.4545952e-02 + 6.1833531e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b2_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_b2_G_5.txt new file mode 100644 index 00000000..c78353cb --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b2_G_5.txt @@ -0,0 +1,16 @@ + 2.2458478e-01 + -1.5607833e-01 + 2.6376302e-02 + 1.5305973e-01 + -1.3347247e-01 + -4.6746323e-01 + -2.6115883e-02 + -8.0653125e-03 + -1.0927666e-01 + -1.1933061e-01 + -6.0012570e-01 + -9.3937164e-02 + -1.1589153e-01 + -4.8715194e-01 + -5.8962207e-02 + 6.9395033e-02 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_F_1.txt b/argopy/static/assets/canyon-med/poids_sil_b3_F_1.txt new file mode 100644 index 00000000..31032f70 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_F_1.txt @@ -0,0 +1 @@ + 5.9303416e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_F_2.txt b/argopy/static/assets/canyon-med/poids_sil_b3_F_2.txt new file mode 100644 index 00000000..677c294c --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_F_2.txt @@ -0,0 +1 @@ + 4.7055711e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_F_3.txt b/argopy/static/assets/canyon-med/poids_sil_b3_F_3.txt new file mode 100644 index 00000000..12e11993 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_F_3.txt @@ -0,0 +1 @@ + 3.3113849e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_F_4.txt b/argopy/static/assets/canyon-med/poids_sil_b3_F_4.txt new file mode 100644 index 00000000..3757b5f7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_F_4.txt @@ -0,0 +1 @@ + 5.0040272e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_F_5.txt b/argopy/static/assets/canyon-med/poids_sil_b3_F_5.txt new file mode 100644 index 00000000..34c3512e --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_F_5.txt @@ -0,0 +1 @@ + 2.8582131e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_G_1.txt b/argopy/static/assets/canyon-med/poids_sil_b3_G_1.txt new file mode 100644 index 00000000..46e41dd3 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_G_1.txt @@ -0,0 +1 @@ + 5.5946773e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_G_2.txt b/argopy/static/assets/canyon-med/poids_sil_b3_G_2.txt new file mode 100644 index 00000000..c39a9dd7 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_G_2.txt @@ -0,0 +1 @@ + 7.1607256e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_G_3.txt b/argopy/static/assets/canyon-med/poids_sil_b3_G_3.txt new file mode 100644 index 00000000..78f2b2b2 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_G_3.txt @@ -0,0 +1 @@ + 7.4991901e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_G_4.txt b/argopy/static/assets/canyon-med/poids_sil_b3_G_4.txt new file mode 100644 index 00000000..6c3d1889 --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_G_4.txt @@ -0,0 +1 @@ + 5.1262835e-01 diff --git a/argopy/static/assets/canyon-med/poids_sil_b3_G_5.txt b/argopy/static/assets/canyon-med/poids_sil_b3_G_5.txt new file mode 100644 index 00000000..3b94552f --- /dev/null +++ b/argopy/static/assets/canyon-med/poids_sil_b3_G_5.txt @@ -0,0 +1 @@ + 3.2957340e-01 diff --git a/argopy/static/assets/canyon-med/std_AT_F.txt b/argopy/static/assets/canyon-med/std_AT_F.txt new file mode 100644 index 00000000..26a071c3 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_AT_F.txt @@ -0,0 +1 @@ + 3.2875797e+00 1.2074746e+01 9.7543658e+00 2.6116942e+00 5.7742351e-01 2.5196621e+01 3.7077273e-01 5.1676557e+01 diff --git a/argopy/static/assets/canyon-med/std_AT_G.txt b/argopy/static/assets/canyon-med/std_AT_G.txt new file mode 100644 index 00000000..4fc9d959 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_AT_G.txt @@ -0,0 +1 @@ + 3.3431149e+00 1.1972212e+01 9.9014578e+00 2.6661903e+00 5.8840609e-01 2.5040965e+01 3.6985189e-01 5.1683861e+01 diff --git a/argopy/static/assets/canyon-med/std_CT_F.txt b/argopy/static/assets/canyon-med/std_CT_F.txt new file mode 100644 index 00000000..4a0a25b5 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_CT_F.txt @@ -0,0 +1 @@ + 3.2901566e+00 1.0764863e+01 6.3156336e+00 2.3266979e+00 4.8660053e-01 2.3598290e+01 3.7618916e-01 4.2104187e+01 diff --git a/argopy/static/assets/canyon-med/std_CT_G.txt b/argopy/static/assets/canyon-med/std_CT_G.txt new file mode 100644 index 00000000..ac11e817 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_CT_G.txt @@ -0,0 +1 @@ + 3.3059533e+00 1.0974516e+01 6.1097957e+00 2.3700614e+00 4.9842495e-01 2.3341878e+01 3.7765295e-01 4.2536866e+01 diff --git a/argopy/static/assets/canyon-med/std_nit_F.txt b/argopy/static/assets/canyon-med/std_nit_F.txt new file mode 100644 index 00000000..6110e2cd --- /dev/null +++ b/argopy/static/assets/canyon-med/std_nit_F.txt @@ -0,0 +1 @@ + 3.2561670e+00 9.3975686e+00 7.3722728e+00 2.0325383e+00 5.0691732e-01 2.4320114e+01 3.6834350e-01 3.2251520e+00 diff --git a/argopy/static/assets/canyon-med/std_nit_G.txt b/argopy/static/assets/canyon-med/std_nit_G.txt new file mode 100644 index 00000000..5ca1cbb7 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_nit_G.txt @@ -0,0 +1 @@ + 3.2851493e+00 9.5597207e+00 7.7194391e+00 2.0645693e+00 5.1322348e-01 2.4448013e+01 3.6668148e-01 3.2392317e+00 diff --git a/argopy/static/assets/canyon-med/std_ph_F.txt b/argopy/static/assets/canyon-med/std_ph_F.txt new file mode 100644 index 00000000..ca304aaa --- /dev/null +++ b/argopy/static/assets/canyon-med/std_ph_F.txt @@ -0,0 +1 @@ + 3.1433157e+00 1.1298388e+01 7.1140585e+00 2.3259861e+00 5.9250456e-01 2.4813816e+01 3.7407028e-01 4.1021241e-02 diff --git a/argopy/static/assets/canyon-med/std_ph_G.txt b/argopy/static/assets/canyon-med/std_ph_G.txt new file mode 100644 index 00000000..6a56620f --- /dev/null +++ b/argopy/static/assets/canyon-med/std_ph_G.txt @@ -0,0 +1 @@ + 3.0846746e+00 1.1151428e+01 7.5180493e+00 2.2938756e+00 5.9795553e-01 2.4743494e+01 3.7220283e-01 4.0531500e-02 diff --git a/argopy/static/assets/canyon-med/std_phos_F.txt b/argopy/static/assets/canyon-med/std_phos_F.txt new file mode 100644 index 00000000..cb6e62e4 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_phos_F.txt @@ -0,0 +1 @@ + 3.3992983e+00 9.1397082e+00 8.0052405e+00 2.1466119e+00 4.8977942e-01 2.4846198e+01 3.6771533e-01 1.5435836e-01 diff --git a/argopy/static/assets/canyon-med/std_phos_G.txt b/argopy/static/assets/canyon-med/std_phos_G.txt new file mode 100644 index 00000000..09a92f3a --- /dev/null +++ b/argopy/static/assets/canyon-med/std_phos_G.txt @@ -0,0 +1 @@ + 3.4186294e+00 9.1494473e+00 8.0225659e+00 2.1861226e+00 4.9281979e-01 2.4795808e+01 3.6690993e-01 1.5264010e-01 diff --git a/argopy/static/assets/canyon-med/std_sil_F.txt b/argopy/static/assets/canyon-med/std_sil_F.txt new file mode 100644 index 00000000..39b9876f --- /dev/null +++ b/argopy/static/assets/canyon-med/std_sil_F.txt @@ -0,0 +1 @@ + 3.5207297e+00 1.0886974e+01 8.7894396e+00 2.4915356e+00 5.2634202e-01 2.4820993e+01 3.6925887e-01 3.1879139e+00 diff --git a/argopy/static/assets/canyon-med/std_sil_G.txt b/argopy/static/assets/canyon-med/std_sil_G.txt new file mode 100644 index 00000000..36c05bc6 --- /dev/null +++ b/argopy/static/assets/canyon-med/std_sil_G.txt @@ -0,0 +1 @@ + 3.5076504e+00 1.0886054e+01 8.9838980e+00 2.3993554e+00 5.2808536e-01 2.4721828e+01 3.6905748e-01 3.1719029e+00 diff --git a/argopy/stores/argo_index.py b/argopy/stores/argo_index.py index 84f60e6b..85b103e2 100644 --- a/argopy/stores/argo_index.py +++ b/argopy/stores/argo_index.py @@ -17,7 +17,8 @@ class ArgoIndex(indexstore): - ``core`` for the ``ar_index_global_prof.txt`` index file, - ``bgc-b`` for the ``argo_bio-profile_index.txt`` index file, - - ``bgc-s`` for the ``argo_synthetic-profile_index.txt`` index file. + - ``bgc-s`` for the ``argo_synthetic-profile_index.txt`` index file, + - ``aux`` for the ``etc/argo-index/argo_aux-profile_index.txt`` index file. Examples -------- @@ -77,5 +78,6 @@ class ArgoIndex(indexstore): >>> idx.records_per_wmo """ + def __init__(self, **kwargs): super().__init__(**kwargs) diff --git a/argopy/stores/argo_index_pa.py b/argopy/stores/argo_index_pa.py index 7ac200c4..84caf749 100644 --- a/argopy/stores/argo_index_pa.py +++ b/argopy/stores/argo_index_pa.py @@ -33,7 +33,7 @@ class indexstore_pyarrow(ArgoIndexStoreProto): """Argo GDAC index store using :class:`pyarrow.Table` as internal storage format. - With this store, index and search results are saved as pyarrow/parquet files in cache + With this store, index and search results are saved as pyarrow/parquet files in cache """ # __doc__ += ArgoIndexStoreProto.__doc__ @@ -94,6 +94,7 @@ def read_csv(input_file, nrows=None): def csv2index(obj): index = read_csv(obj, nrows=nrows) + log.debug(index.column_names) check_index_cols( index.column_names, convention=self.convention, @@ -274,9 +275,16 @@ def fct(row): return wmo def read_params(self, index=False): - if self.convention not in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: - raise InvalidDatasetStructure("Cannot list parameters in this index (not a BGC profile index)") + if self.convention not in ["argo_bio-profile_index", + "argo_synthetic-profile_index", + "argo_aux-profile_index"]: + raise InvalidDatasetStructure("Cannot list parameters in this index (not a BGC or AUX profile index)") if hasattr(self, "search") and not index: + if self.N_MATCH == 0: + raise DataNotFound( + "No data found in the index corresponding to your search criteria." + " Search definition: %s" % self.cname + ) df = pa.compute.split_pattern(self.search["parameters"], pattern=" ").to_pandas() else: if not hasattr(self, "index"): @@ -451,19 +459,19 @@ def search_lat_lon_tim(self, BOX, nrows=None): return self def search_params(self, PARAMs, nrows=None, logical='and'): - if self.convention not in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: - raise InvalidDatasetStructure("Cannot search for parameters in this index (not a BGC profile index)") + if self.convention not in ["argo_bio-profile_index", + "argo_synthetic-profile_index", + "argo_aux-profile_index"]: + raise InvalidDatasetStructure("Cannot search for parameters in this index (not a BGC or AUX profile index)") log.debug("Argo index searching for parameters in PARAM=%s ..." % PARAMs) PARAMs = to_list(PARAMs) # Make sure we deal with a list self.load(nrows=self._nrows_index) self.search_type = {"PARAM": PARAMs, "logical": logical} filt = [] for param in PARAMs: - # pattern = " %s" % param - pattern = r"^\%s+|\s%s" % (param, param) filt.append( pa.compute.match_substring_regex( - self.index["parameters"], pattern=pattern + self.index["parameters"], options=pa.compute.MatchSubstringOptions(param, ignore_case=True) ) ) self.search_filter = self._reduce_a_filter_list(filt, op=logical) @@ -477,6 +485,8 @@ def search_parameter_data_mode(self, PARAMs: dict, nrows=None, logical='and'): [PARAMs.update({p: to_list(PARAMs[p])}) for p in PARAMs] # Make sure we deal with a list if not np.all([v in ['R', 'A', 'D', '', ' '] for vals in PARAMs.values() for v in vals]): raise ValueError("Data mode must be a value in 'R', 'A', 'D', ' ', ''") + if self.convention in ["argo_aux-profile_index"]: + raise InvalidDatasetStructure("Method not available for this index ('%s')" % self.convention) self.load(nrows=self._nrows_index) self.search_type = {"DMODE": PARAMs, "logical": logical} @@ -539,6 +549,8 @@ def convert_a_date(row): s = s.set_column(7, "date_update", new_date_update) elif self.convention in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: s = s.set_column(9, "date_update", new_date_update) + elif self.convention in ["argo_aux-profile_index"]: + s = s.set_column(8, "date_update", new_date_update) write_options = csv.WriteOptions(delimiter=",", include_header=False, quoting_style="none") csv.write_csv(s, file, write_options=write_options) diff --git a/argopy/stores/argo_index_pd.py b/argopy/stores/argo_index_pd.py index f1082c69..5fb64ad3 100644 --- a/argopy/stores/argo_index_pd.py +++ b/argopy/stores/argo_index_pd.py @@ -219,9 +219,16 @@ def read_wmo(self, index=False): return wmo def read_params(self, index=False): - if self.convention not in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: - raise InvalidDatasetStructure("Cannot list parameters in this index (not a BGC profile index)") + if self.convention not in ["argo_bio-profile_index", + "argo_synthetic-profile_index", + "argo_aux-profile_index"]: + raise InvalidDatasetStructure("Cannot list parameters in this index (not a BGC or AUX profile index)") if hasattr(self, "search") and not index: + if self.N_MATCH == 0: + raise DataNotFound( + "No data found in the index corresponding to your search criteria." + " Search definition: %s" % self.cname + ) df = self.search['parameters'] else: if not hasattr(self, "index"): @@ -373,8 +380,10 @@ def search_lat_lon_tim(self, BOX, nrows=None): return self def search_params(self, PARAMs, logical: bool = 'and', nrows=None): - if self.convention not in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: - raise InvalidDatasetStructure("Cannot search for parameters in this index (not a BGC profile index)") + if self.convention not in ["argo_bio-profile_index", + "argo_synthetic-profile_index", + "argo_aux-profile_index"]: + raise InvalidDatasetStructure("Cannot search for parameters in this index (not a BGC or AUX profile index)") log.debug("Argo index searching for parameters in PARAM=%s ..." % PARAMs) PARAMs = to_list(PARAMs) # Make sure we deal with a list self.load(nrows=self._nrows_index) @@ -400,6 +409,8 @@ def search_parameter_data_mode(self, PARAMs: dict, logical: bool = 'and', nrows= [PARAMs.update({p: to_list(PARAMs[p])}) for p in PARAMs] # Make sure we deal with a list if not np.all([v in ['R', 'A', 'D', '', ' '] for vals in PARAMs.values() for v in vals]): raise ValueError("Data mode must be a value in 'R', 'A', 'D', ' ', ''") + if self.convention in ["argo_aux-profile_index"]: + raise InvalidDatasetStructure("Method not available for this index ('%s')" % self.convention) self.load(nrows=self._nrows_index) self.search_type = {"DMODE": PARAMs, "logical": logical} @@ -448,6 +459,9 @@ def to_indexfile(self, outputfile): elif self.convention in ["argo_bio-profile_index", "argo_synthetic-profile_index"]: columns = ['file', 'date', 'latitude', 'longitude', 'ocean', 'profiler_type', 'institution', 'parameters', 'parameter_data_mode', 'date_update'] + elif self.convention in ["argo_aux-profile_index"]: + columns = ['file', 'date', 'latitude', 'longitude', 'ocean', 'profiler_type', 'institution', + 'parameters', 'date_update'] self.search.to_csv(outputfile, sep=',', index=False, index_label=False, header=False, columns=columns) outputfile = self._insert_header(outputfile) diff --git a/argopy/stores/argo_index_proto.py b/argopy/stores/argo_index_proto.py index 6d7fa312..fa2e9162 100644 --- a/argopy/stores/argo_index_proto.py +++ b/argopy/stores/argo_index_proto.py @@ -50,6 +50,8 @@ class ArgoIndexStoreProto(ABC): "argo_synthetic-profile_index", "bgc-s", "synth", + "argo_aux-profile_index", + "aux", ] """List of supported conventions""" @@ -80,14 +82,15 @@ def __init__( Name of the csv-like text file with the index. Possible values are standard file name: ``ar_index_global_prof.txt``, - ``argo_bio-profile_index.txt`` or ``argo_synthetic-profile_index.txt``. + ``argo_bio-profile_index.txt``, ``argo_synthetic-profile_index.txt`` + or ``etc/argo-index/argo_aux-profile_index.txt`` - You can also use the following keywords: ``core``, ``bgc-b``, ``bgc-s``. + You can also use the following keywords: ``core``, ``bgc-b``, ``bgc-s`` and ``aux``. convention: str, default: None Set the expected format convention of the index file. This is useful when trying to load index file with custom name. If set to ``None``, we'll try to infer the convention from the ``index_file`` value. - Possible values: ``ar_index_global_prof``, ``argo_bio-profile_index``, or ``argo_synthetic-profile_index``. + Possible values: ``ar_index_global_prof``, ``argo_bio-profile_index``, ``argo_synthetic-profile_index`` or ``argo_aux-profile_index``. - You can also use the following keywords: ``core``, ``bgc-s``, ``bgc-b``. + You can also use the following keywords: ``core``, ``bgc-s``, ``bgc-b`` and ``aux``. cache : bool, default: False Use cache or not. cachedir: str, default: OPTIONS['cachedir'] @@ -112,6 +115,8 @@ def __init__( index_file = "argo_synthetic-profile_index.txt" elif index_file in ["bgc-b", "bio"]: index_file = "argo_bio-profile_index.txt" + elif index_file in ["aux"]: + index_file = "etc/argo-index/argo_aux-profile_index.txt" self.index_file = index_file # Default number of commented lines to skip at the beginning of csv index files @@ -187,6 +192,16 @@ def __init__( "Convention '%s' is not supported, it must be one in: %s" % (convention, self.convention_supported) ) + else: + # Catch shortcuts for convention: + if convention in ["core"]: + convention = "ar_index_global_prof" + elif convention in ["bgc-s", "synth"]: + convention = "argo_synthetic-profile_index" + elif convention in ["bgc-b", "bio"]: + convention = "argo_bio-profile_index" + elif convention in ["aux"]: + convention = "argo_aux-profile_index" self._convention = convention # Check if the index file exists @@ -206,7 +221,6 @@ def __init__( else: # Will init search with full index by default: self._nrows_index = None - # Work with the compressed index if available: if self.fs["src"].exists(self.index_path + ".gz"): self.index_file += ".gz" @@ -428,6 +442,8 @@ def convention_title(self): title = "Bio-Profile directory file of the Argo GDAC" elif self.convention in ["argo_synthetic-profile_index", "bgc-s", "synth"]: title = "Synthetic-Profile directory file of the Argo GDAC" + elif self.convention in ["argo_aux-profile_index", "aux"]: + title = "Aux-Profile directory file of the Argo GDAC" return title def _same_origin(self, path): @@ -597,7 +613,7 @@ def get_filename(s, index): df["date_update"] = pd.to_datetime(df["date_update"], format="%Y%m%d%H%M%S") df["wmo"] = df["file"].apply(lambda x: int(x.split("/")[1])) df["cyc"] = df["file"].apply( - lambda x: int(x.split("_")[-1].split(".nc")[0].replace("D", "")) + lambda x: int(x.split("_")[1].split(".nc")[0].replace("D", "")) ) if completed: @@ -875,7 +891,7 @@ def search_params(self, PARAMs: Union[str, list], logical: str): Warnings -------- - This method is only available for index following the ``bgc-s`` or ``bgc-b`` conventions. + This method is only available for index following the ``bgc-s``, ``bgc-b`` and ``aux`` conventions. """ raise NotImplementedError("Not implemented") @@ -945,6 +961,22 @@ def _insert_header(self, originalfile): # FTP root number 2 : ftp://usgodae.org/pub/outgoing/argo/dac # GDAC node : CORIOLIS file,date,latitude,longitude,ocean,profiler_type,institution,parameters,parameter_data_mode,date_update +""" % pd.to_datetime( + "now", utc=True + ).strftime( + "%Y%m%d%H%M%S" + ) + + elif self.convention == "argo_aux-profile_index": + header = """# Title : Aux-Profile directory file of the Argo Global Data Assembly Center +# Description : The directory file describes all aux-profile files of the argo GDAC ftp site. +# Project : ARGO +# Format version : 2.2 +# Date of update : %s +# FTP root number 1 : ftp://ftp.ifremer.fr/ifremer/argo/dac +# FTP root number 2 : ftp://usgodae.org/pub/outgoing/argo/dac +# GDAC node : CORIOLIS +file,date,latitude,longitude,ocean,profiler_type,institution,parameters,date_update """ % pd.to_datetime( "now", utc=True ).strftime( diff --git a/argopy/stores/filesystems.py b/argopy/stores/filesystems.py index 9cf27acc..78bb77e3 100644 --- a/argopy/stores/filesystems.py +++ b/argopy/stores/filesystems.py @@ -27,6 +27,7 @@ import shutil import pickle # nosec B403 only used with internal files/assets import json +import io import time import tempfile import logging @@ -640,12 +641,13 @@ def exists(self, path, *args, **kwargs): return super().exists(path, *args, **kwargs) def curateurl(self, url): - """Possibly replace server of a given url by a local argopy option value + """Possibly manipulate an url before it's accessed - This is intended to be used by tests and dev + This is primarily intended to be used by tests and dev """ self.urls_registry.commit(url) return url + # if OPTIONS["server"] is not None: # # log.debug("Replaced '%s' with '%s'" % (urlparse(url).netloc, OPTIONS["netloc"])) # @@ -783,10 +785,12 @@ def open_dataset(self, url, errors: str = 'raise', **kwargs): log.error("DataNotFound: %s" % url) return None - if data[0:3] != b"CDF": + if data[0:3] != b"CDF" and data[0:3] != b'\x89HD': raise TypeError( - "We didn't get a CDF binary data as expected ! We get: %s" % data + "We didn't get a CDF or HDF5 binary data as expected ! We get: %s" % data ) + if data[0:3] == b'\x89HD': + data = io.BytesIO(data) xr_opts = {} if "xr_opts" in kwargs: @@ -855,7 +859,7 @@ def task_fct(url): log.debug("task_fct: This url returned no data: %s" % strUrl(url)) return DataNotFound(url), True except Exception as e: - log.debug("task_fct: Unexpected error when opening a remote dataset: '%s'" % str(e)) + log.debug("task_fct: Unexpected error when opening the remote dataset '%s':\n'%s'" % (strUrl(url), str(e))) return None, False def postprocessing_fct(obj, **kwargs): diff --git a/argopy/tests/pytest.ini b/argopy/tests/pytest.ini index 2b94611a..1aa0619a 100644 --- a/argopy/tests/pytest.ini +++ b/argopy/tests/pytest.ini @@ -3,6 +3,9 @@ log_file = argopy-tests.log log_file_level = DEBUG log_file_format = %(asctime)s [%(levelname)5s] [%(name)35s] %(filename)25s:%(lineno)5d: %(message)s log_file_date_format = %I:%M:%S %p -norecursedirs=helpers +norecursedirs = helpers env = - FTP_FIXTURE_SCOPE=module \ No newline at end of file + FTP_FIXTURE_SCOPE = module +filterwarnings = + ignore::pytest.PytestUnhandledThreadExceptionWarning + ignore::UserWarning:pytest_localftpserver.* \ No newline at end of file diff --git a/argopy/tests/test_data/01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e.nc b/argopy/tests/test_data/01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e.nc new file mode 100644 index 00000000..ca4e9cfa Binary files /dev/null and b/argopy/tests/test_data/01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e.nc differ diff --git a/argopy/tests/test_data/02c95ca7d2eb2f17554615839c5937afc242e589dce4d7b615856df577d3d389.nc b/argopy/tests/test_data/02c95ca7d2eb2f17554615839c5937afc242e589dce4d7b615856df577d3d389.nc new file mode 100644 index 00000000..94aa4130 Binary files /dev/null and b/argopy/tests/test_data/02c95ca7d2eb2f17554615839c5937afc242e589dce4d7b615856df577d3d389.nc differ diff --git a/argopy/tests/test_data/03a4f252ca48f9c683fbb0a3059d788dbd00c9f99c58a3927bd00076bc8febb0.ncHeader b/argopy/tests/test_data/03a4f252ca48f9c683fbb0a3059d788dbd00c9f99c58a3927bd00076bc8febb0.ncHeader new file mode 100644 index 00000000..88b83eb2 --- /dev/null +++ b/argopy/tests/test_data/03a4f252ca48f9c683fbb0a3059d788dbd00c9f99c58a3927bd00076bc8febb0.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_5a91_5350_80e1.nc { + dimensions: + row = 70; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=70); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=70); + :_FillValue = 99999; // int + :actual_range = 34, 34; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=70, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=70); + :actual_range = 175.2335f, 331.919f; // float + + float doxy_adjusted_error(row=70); + :actual_range = 5.257005f, 9.957571f; // float + + char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=70); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.153, -57.153; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=70); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 161.893, 161.893; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=70, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=70); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.2f, 1999.5f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.85463f, 34.7401f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.158f, 4.301f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=70); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=70); + :_CoordinateAxisType = "Time"; + :actual_range = 1.295420656E9, 1.295420656E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=70); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 161.893; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -57.153; // double + :geospatial_lat_min = -57.153; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 161.893; // double + :geospatial_lon_min = 161.893; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:54Z (local files) +2024-09-25T05:50:54Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%2234%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -57.153; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.153; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2011-01-19T07:04:16Z"; + :time_coverage_start = "2011-01-19T07:04:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 161.893; // double +} diff --git a/argopy/tests/test_data/03f7d373c2a0e9efad57bedeb468d1c54f2b83a6dfad06b7e5cef1d9c05b5c61.ncHeader b/argopy/tests/test_data/03f7d373c2a0e9efad57bedeb468d1c54f2b83a6dfad06b7e5cef1d9c05b5c61.ncHeader new file mode 100644 index 00000000..5c5dcf40 --- /dev/null +++ b/argopy/tests/test_data/03f7d373c2a0e9efad57bedeb468d1c54f2b83a6dfad06b7e5cef1d9c05b5c61.ncHeader @@ -0,0 +1,123 @@ +netcdf ArgoFloats-reference_b803_50e2_b574.nc { + dimensions: + row = 227; + cycle_number_strlen = 3; + platform_number_strlen = 7; + variables: + char cycle_number(row=227, cycle_number_strlen=3); + :_ChunkSizes = 1227; // int + :_Encoding = "ISO-8859-1"; + :ioos_category = "Unknown"; + :long_name = "Cycle number"; + + double latitude(row=227); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Lat"; + :_FillValue = NaN; // double + :actual_range = 36.003, 39.964; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude"; + :standard_name = "latitude"; + :units = "degrees_north"; + + double longitude(row=227); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Lon"; + :_FillValue = NaN; // double + :actual_range = -24.757000000000005, -11.037000000000006; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude"; + :standard_name = "longitude"; + :units = "degrees_east"; + + char platform_number(row=227, platform_number_strlen=7); + :_ChunkSizes = 1227; // int + :_Encoding = "ISO-8859-1"; + :ioos_category = "Unknown"; + :long_name = "Platform number"; + + double pres(row=227); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 1.0, 10.0; // double + :ioos_category = "Pressure"; + :long_name = "Pressure"; + :missing_value = NaN; // double + + double psal(row=227); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 33.916900634765625, 34.80009841918945; // double + :ioos_category = "Salinity"; + :long_name = "psal"; + :missing_value = NaN; // double + + double ptmp(row=227); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 8.532416183006166, 26.5746003855135; // double + :ioos_category = "Unknown"; + :long_name = "ptmp"; + :missing_value = NaN; // double + + double temp(row=227); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 8.532999992370605, 26.576000213623047; // double + :ioos_category = "Temperature"; + :long_name = "Temperature"; + :missing_value = NaN; // double + + double time(row=227); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Time"; + :actual_range = 1.515104337E9, 1.545976383E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Time"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + // global attributes: + :cdm_data_type = "Other"; + :Conventions = "COARDS, CF-1.6, ACDD-1.3"; + :Easternmost_Easting = -11.037000000000006; // double + :geospatial_lat_max = 39.964; // double + :geospatial_lat_min = 36.003; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -11.037000000000006; // double + :geospatial_lon_min = -24.757000000000005; // double + :geospatial_lon_units = "degrees_east"; + :history = "Mon Apr 29 14:02:51 2024: ncks -d n_levels,1501,2034 7402.nc 7402_3.nc +2024-09-24T08:15:48Z (local files) +2024-09-24T08:15:48Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude%3E=-25&longitude%3C=-10&latitude%3E=36&latitude%3C=40&pres%3E=0&pres%3C=10.0&time%3E=1514764800.0&time%3C=1546300800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats-reference"; + :infoUrl = "http://www.argodatamgt.org/DMQC/Reference-data-base"; + :institution = "Argo"; + :keywords = "cycle, cycle_number, data, latitude, levels, local, longitude, n_levels, n_prof, name, number, pi_name, platform, platform_number, pres, pressure, prof, psal, ptmp, source, temp, temperature, time"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :NCO = "netCDF Operators version 4.9.7 (Homepage = http://nco.sf.net, Code = https://github.com/nco/nco)"; + :Northernmost_Northing = 39.964; // double + :sourceUrl = "(local files)"; + :Southernmost_Northing = 36.003; // double + :standard_name_vocabulary = "CF Standard Name Table v70"; + :summary = "Argo float vertical profiles to be used in DMQC. The free-moving nature of profiling floats means that most float measurements are without accompanying in-situ ground truth values for absolute calibration (such as those afforded by shipboard CTD measurements). Therefore Argo delayed-mode procedures for checking sensor drifts and offsets in salinity rely on reference datasets and statistical methods. Dataset assembled by John Gilson (SCRIPPS)"; + :time_coverage_end = "2018-12-28T05:53:03Z"; + :time_coverage_start = "2018-01-04T22:18:57Z"; + :title = "Argo Reference Measurements"; + :version = "2023V3"; + :Westernmost_Easting = -24.757000000000005; // double +} diff --git a/argopy/tests/test_data/057f3062b1aa30d31b04f3cf028f5f8a14ba826787aab9eca371f20f39b4c22b.ncHeader b/argopy/tests/test_data/057f3062b1aa30d31b04f3cf028f5f8a14ba826787aab9eca371f20f39b4c22b.ncHeader new file mode 100644 index 00000000..f2762c24 --- /dev/null +++ b/argopy/tests/test_data/057f3062b1aa30d31b04f3cf028f5f8a14ba826787aab9eca371f20f39b4c22b.ncHeader @@ -0,0 +1,752 @@ +netcdf ArgoFloats-synthetic-BGC_c553_1555_f774.nc { + dimensions: + row = 126044; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.193454E-5f, 0.04767596f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.193454E-5f, 0.04767596f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=126044, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=126044, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.4982f, 3.510933f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=126044, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=126044, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.292f, 9.398142f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01644325f, 4.691771f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=126044, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=126044, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=126044); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = -0.04620937f, 1.328981f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=126044, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=126044, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=126044); + :_FillValue = 99999; // int + :actual_range = 1, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=126044, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.547487E-4f, 0.8009f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=126044, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=126044, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.483982E-4f, 1.195713f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=126044, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=126044, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.47471E-4f, 1.752278f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=126044, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=126044, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.1310812f, 2315.559f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=126044, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=126044, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 217.6861f, 341.608f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 231.0956f, 362.6511f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 12.56249f, 17.39042f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=126044, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=126044, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=126044); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 57.097543166666675, 63.18395183333334; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=126044); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -51.75795016666666, -30.635311333333334; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = 2.132518f, 20.6984f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=126044); + :actual_range = -0.05777724f, 99999.0f; // float + + float nitrate_adjusted_error(row=126044); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=126044, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=126044, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = 5.56744f, 8.088566f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=126044, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=126044, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=126044, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=126044); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2011.203f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.181f, 2006.433f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=126044, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=126044, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.488f, 35.137f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.13953f, 35.1359f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=126044, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=126044, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.124f, 11.983f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.12f, 11.983f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=126044, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=126044, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=126044); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653144082985E9, 1.726927792036E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -30.635311333333334; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 63.18395183333334; // double + :geospatial_lat_min = 57.097543166666675; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -30.635311333333334; // double + :geospatial_lon_min = -51.75795016666666; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:04Z (local files) +2024-09-24T12:43:04Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904240%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 63.18395183333334; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 57.097543166666675; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-21T14:09:52Z"; + :time_coverage_start = "2022-05-21T14:41:22Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -51.75795016666666; // double +} diff --git a/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz b/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz new file mode 100644 index 00000000..8daa9900 Binary files /dev/null and b/argopy/tests/test_data/05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53.gz differ diff --git a/argopy/tests/test_data/06cac898c9fffa0176c4e844c690fbd29b75242fe0e1412ba991085e97dd1298.nc b/argopy/tests/test_data/06cac898c9fffa0176c4e844c690fbd29b75242fe0e1412ba991085e97dd1298.nc new file mode 100644 index 00000000..52f0ef86 Binary files /dev/null and b/argopy/tests/test_data/06cac898c9fffa0176c4e844c690fbd29b75242fe0e1412ba991085e97dd1298.nc differ diff --git a/argopy/tests/test_data/06e127414eaa6b32d9e6fcb381fa4e3c13cd245adeffbbe151c0430df748d267.nc b/argopy/tests/test_data/06e127414eaa6b32d9e6fcb381fa4e3c13cd245adeffbbe151c0430df748d267.nc new file mode 100644 index 00000000..89306664 Binary files /dev/null and b/argopy/tests/test_data/06e127414eaa6b32d9e6fcb381fa4e3c13cd245adeffbbe151c0430df748d267.nc differ diff --git a/argopy/tests/test_data/0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea.json b/argopy/tests/test_data/0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea.json new file mode 100644 index 00000000..9ed178db --- /dev/null +++ b/argopy/tests/test_data/0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea.json @@ -0,0 +1,637 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PET/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PET/1/" + }, + "dce:identifier": "SDN:RTV::PET", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/" + }, + "skos:notation": "SDN:RTV::PET", + "skos:altLabel": "PARK_END", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Park End Time" + }, + "dc:identifier": "SDN:RTV::PET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float exists from its Park or Drift mission. The float may then rise to the surface or sink to profile depth." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DDET/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DDET/1/" + }, + "dce:identifier": "SDN:RTV::DDET", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/" + }, + "skos:notation": "SDN:RTV::DDET", + "skos:altLabel": "DEEP_DESCENT_END", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep Descent End Time" + }, + "dc:identifier": "SDN:RTV::DDET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float first approaches within 3% of the eventual deep drift or profile pressure. This variable is based on pressure only, and can be measured or estimated by fall-rate." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AST/1/" + }, + "dce:identifier": "SDN:RTV::AST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/" + }, + "skos:notation": "SDN:RTV::AST", + "skos:altLabel": "ASCENT_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ascent Start Time" + }, + "dc:identifier": "SDN:RTV::AST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float begins its return to the surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DST/1/" + }, + "dce:identifier": "SDN:RTV::DST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/" + }, + "skos:notation": "SDN:RTV::DST", + "skos:altLabel": "DESCENT_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Descent Start Time" + }, + "dc:identifier": "SDN:RTV::DST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float leaves the surface and begins the descent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DET/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DET/1/" + }, + "dce:identifier": "SDN:RTV::DET", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/" + }, + "skos:notation": "SDN:RTV::DET", + "skos:altLabel": "DESCENT_END", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Descent End Time" + }, + "dc:identifier": "SDN:RTV::DET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float first approaches within 3% of the eventual drift pressure, whether it is transitioning from the surface or from a deep profile. In case the float overshoots the drift pressure on descent, the Descent End Time (DET) corresponds to the time of the overshoot. This variable is based on pressure only, and can be measured or estimated by fall-rate." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AET/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AET/1/" + }, + "dce:identifier": "SDN:RTV::AET", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/" + }, + "skos:notation": "SDN:RTV::AET", + "skos:altLabel": "ASCENT_END", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ascent End Time" + }, + "dc:identifier": "SDN:RTV::AET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float reaches the surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DPST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DPST/1/" + }, + "dce:identifier": "SDN:RTV::DPST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/" + }, + "skos:notation": "SDN:RTV::DPST", + "skos:altLabel": "DEEP_PARK_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep Park Start Time" + }, + "dc:identifier": "SDN:RTV::DPST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float transitions to a deep park drift mission. This variable is only defined if the float is expected to enter a deep drift phase; it does not apply to cases of accidental drift at deep pressure, caused by bottom hits or buoyancy issues for example." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FMT/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FMT/1/" + }, + "dce:identifier": "SDN:RTV::FMT", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/" + }, + "skos:notation": "SDN:RTV::FMT", + "skos:altLabel": "FIRST_MESSAGE", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "First Message Time" + }, + "dc:identifier": "SDN:RTV::FMT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the first message received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DAST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DAST/1/" + }, + "dce:identifier": "SDN:RTV::DAST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/" + }, + "skos:notation": "SDN:RTV::DAST", + "skos:altLabel": "DEEP_ASCENT_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep Ascent Start Time" + }, + "dc:identifier": "SDN:RTV::DAST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float begins its rise to drift pressure. This variable is typically used for floats that profile on descent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TST/1/" + }, + "dce:identifier": "SDN:RTV::TST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/" + }, + "skos:notation": "SDN:RTV::TST", + "skos:altLabel": "TRANSMISSION_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transmission Start Time" + }, + "dc:identifier": "SDN:RTV::TST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float begins transmitting." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LLT/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LLT/1/" + }, + "dce:identifier": "SDN:RTV::LLT", + "pav:version": "1", + "skos:notation": "SDN:RTV::LLT", + "skos:altLabel": "LAST_LOCATION", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Last Location Time" + }, + "dc:identifier": "SDN:RTV::LLT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the last location received." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TET/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TET/1/" + }, + "dce:identifier": "SDN:RTV::TET", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/" + }, + "skos:notation": "SDN:RTV::TET", + "skos:altLabel": "TRANSMISSION_END", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transmission End Time" + }, + "dc:identifier": "SDN:RTV::TET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float stops transmitting." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PST/1/" + }, + "dce:identifier": "SDN:RTV::PST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/" + }, + "skos:notation": "SDN:RTV::PST", + "skos:altLabel": "PARK_START", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Park Start Time" + }, + "dc:identifier": "SDN:RTV::PST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float transitions to its Park or Drift mission. This variable is estimated either by an onboard descent timer (e.g. SOLO floats) or by pressure measurements (e.g. PROVOR floats)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FST/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FST/1/" + }, + "dce:identifier": "SDN:RTV::FST", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/" + }, + "skos:notation": "SDN:RTV::FST", + "skos:altLabel": "FIRST_STABILIZATION", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "First Stabilization Time" + }, + "dc:identifier": "SDN:RTV::FST", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time at which the float first becomes water-neutral." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FLT/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FLT/1/" + }, + "dce:identifier": "SDN:RTV::FLT", + "pav:version": "1", + "skos:notation": "SDN:RTV::FLT", + "skos:altLabel": "FIRST_LOCATION", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "First Location Time" + }, + "dc:identifier": "SDN:RTV::FLT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the first location received." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LMT/", + "pav:authoredOn": "2021-11-30 12:47:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LMT/1/" + }, + "dce:identifier": "SDN:RTV::LMT", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/" + }, + "skos:notation": "SDN:RTV::LMT", + "skos:altLabel": "LAST_MESSAGE", + "dc:date": "2021-11-30 12:47:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Last Message Time" + }, + "dc:identifier": "SDN:RTV::LMT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of the last message received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DDET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/AET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DPST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FMT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/DAST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LLT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/TET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/PST/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/LMT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FLT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RTV/current/FST/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Timing variables representing stages of an Argo float profiling cycle, most of which are associated with a trajectory measurement code ID listed in NVS collection 'R15'. Argo netCDF cycle timing variable names JULD__STATUS are constructed by RTV altLabel.", + "dc:title": "Argo float cycle timing variables", + "skos:prefLabel": "Argo float cycle timing variables", + "owl:versionInfo": "1", + "dc:date": "2021-12-01 02:00:02.0", + "skos:altLabel": "CYCLE_TIMING_VARIABLE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "CYCLE_TIMING_VARIABLE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre" + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/09e6dbede3a159faaf33ea3f4be9cff3e25352c4e65d73499e6d0fffcc0b1823.nc b/argopy/tests/test_data/09e6dbede3a159faaf33ea3f4be9cff3e25352c4e65d73499e6d0fffcc0b1823.nc new file mode 100644 index 00000000..8524da18 Binary files /dev/null and b/argopy/tests/test_data/09e6dbede3a159faaf33ea3f4be9cff3e25352c4e65d73499e6d0fffcc0b1823.nc differ diff --git a/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json b/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json new file mode 100644 index 00000000..2fe079c4 --- /dev/null +++ b/argopy/tests/test_data/0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":141} \ No newline at end of file diff --git a/argopy/tests/test_data/0a9892220be0aee7ef6dfd747a8139d6634f89f95e4e60ffaf8b2834a8a4e03c.nc b/argopy/tests/test_data/0a9892220be0aee7ef6dfd747a8139d6634f89f95e4e60ffaf8b2834a8a4e03c.nc new file mode 100644 index 00000000..4e2ef7ad Binary files /dev/null and b/argopy/tests/test_data/0a9892220be0aee7ef6dfd747a8139d6634f89f95e4e60ffaf8b2834a8a4e03c.nc differ diff --git a/argopy/tests/test_data/0dff09b865c98d376e650f80954c0d8de288d51dd030262b7085db0eab41a3eb.ncHeader b/argopy/tests/test_data/0dff09b865c98d376e650f80954c0d8de288d51dd030262b7085db0eab41a3eb.ncHeader new file mode 100644 index 00000000..5b7b4048 --- /dev/null +++ b/argopy/tests/test_data/0dff09b865c98d376e650f80954c0d8de288d51dd030262b7085db0eab41a3eb.ncHeader @@ -0,0 +1,764 @@ +netcdf ArgoFloats-synthetic-BGC_0abd_084b_d559.nc { + dimensions: + row = 29557; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.953782E-4f, 0.04400722f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.475482E-5f, 0.04400722f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.950965E-6f, 0.002592091f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=29557, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=29557, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.8832f, 18.4705f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=29557, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=29557, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.1728f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.04015f, 4.0661f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=29557, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=29557, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=29557); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 0, 65; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 0.1697397f, 19.58223f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=29557, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=29557, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=29557); + :_FillValue = 99999; // int + :actual_range = 0, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=29557, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.040283E-5f, 0.6385083f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.6381621f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01276324f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=29557, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=29557, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.153E-4f, 1.227665f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 1.075224f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02150448f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=29557, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=29557, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.273E-4f, 1.711586f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.310853f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02621705f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=29557, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=29557, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01326383f, 1939.872f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1509.441f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 75.47203f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=29557, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=29557, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.630909f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=29557, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=29557, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=29557); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.00095666666667, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=29557); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.999, -47.00874350000001; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 3.829968f, 12.175f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=29557); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=29557); + :actual_range = 0.7363588f, 99999.0f; // float + + char nitrate_adjusted_qc(row=29557, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=29557, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 5.686137f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=29557, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=29557, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=29557, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=29557); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=29557); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.768372E-7f, 10.49f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=29557, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=29557, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.208f, 35.02467f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 35.02467f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 1.046394f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=29557, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=29557, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 15.6335f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 12.905f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=29557, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=29557, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=29557); + :_CoordinateAxisType = "Time"; + :actual_range = 1.063557316224E9, 1.72709058E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=29557); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.00874350000001; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.00095666666667; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.00874350000001; // double + :geospatial_lon_min = -54.999; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:28:03Z (local files) +2024-09-24T12:28:03Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.00095666666667; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-23T11:23:00Z"; + :time_coverage_start = "2003-09-14T16:35:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.999; // double +} diff --git a/argopy/tests/test_data/0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba.json b/argopy/tests/test_data/0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba.json new file mode 100644 index 00000000..42dfbdf2 --- /dev/null +++ b/argopy/tests/test_data/0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba.json @@ -0,0 +1,286 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/5/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/5/1/" + }, + "dce:identifier": "SDN:R21::5", + "pav:version": "1", + "skos:notation": "SDN:R21::5", + "skos:altLabel": "5", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the average of the min and max pressure measurements sampled during the drift phase (the precision is 1 bar)" + }, + "dc:identifier": "SDN:R21::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the average of the min and max pressure measurements sampled during the drift phase (the precision is 1 bar)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/6/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/6/1/" + }, + "dce:identifier": "SDN:R21::6", + "pav:version": "1", + "skos:notation": "SDN:R21::6", + "skos:altLabel": "6", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the PARKING_PRESSURE meta-data but the float is programmed to sample measurements during the drift phase (i.e. drift measurement is missing)" + }, + "dc:identifier": "SDN:R21::6", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the PARKING_PRESSURE meta-data but the float is programmed to sample measurements during the drift phase (i.e. drift measurement is missing)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/3/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/3/1/" + }, + "dce:identifier": "SDN:R21::3", + "pav:version": "1", + "skos:notation": "SDN:R21::3", + "skos:altLabel": "3", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the median value, directly provided by the float, of the pressure measurements regularly sampled during the drift phase" + }, + "dc:identifier": "SDN:R21::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the median value, directly provided by the float, of the pressure measurements regularly sampled during the drift phase" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/1/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/1/1/" + }, + "dce:identifier": "SDN:R21::1", + "pav:version": "1", + "skos:notation": "SDN:R21::1", + "skos:altLabel": "1", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the weighted average of pressure measurements regularly sampled during the drift phase and provided by the float" + }, + "dc:identifier": "SDN:R21::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the weighted average of pressure measurements regularly sampled during the drift phase and provided by the float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/4/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/4/1/" + }, + "dce:identifier": "SDN:R21::4", + "pav:version": "1", + "skos:notation": "SDN:R21::4", + "skos:altLabel": "4", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the pressure measurement sampled at Park End Time (PET)" + }, + "dc:identifier": "SDN:R21::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the pressure measurement sampled at Park End Time (PET)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/2/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/2/1/" + }, + "dce:identifier": "SDN:R21::2", + "pav:version": "1", + "skos:notation": "SDN:R21::2", + "skos:altLabel": "2", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the mean value, directly provided by the float, of the pressure measurements regularly sampled during the drift phase" + }, + "dc:identifier": "SDN:R21::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the mean value, directly provided by the float, of the pressure measurements regularly sampled during the drift phase" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/7/", + "pav:authoredOn": "2020-05-03 20:29:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/7/1/" + }, + "dce:identifier": "SDN:R21::7", + "pav:version": "1", + "skos:notation": "SDN:R21::7", + "skos:altLabel": "7", + "dc:date": "2020-05-03 20:29:43.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value is the PARKING_PRESSURE meta-data for this float which does not achieve any measurement during the drift phase" + }, + "dc:identifier": "SDN:R21::7", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is the PARKING_PRESSURE meta-data for this float which does not achieve any measurement during the drift phase" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R21/current/2/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Argo status flag on the Representative Park Pressure (RPP). Argo netCDF variable REPRESENTATIVE_PARK_PRESSURE_STATUS in the Trajectory file is populated by R21 altLabel.", + "dc:title": "Argo status flag on the Representative Park Pressure (RPP)", + "skos:prefLabel": "Argo status flag on the Representative Park Pressure (RPP)", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "REPRESENTATIVE_PARK_PRESSURE_STATUS", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "REPRESENTATIVE_PARK_PRESSURE_STATUS", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R21" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/0f97280439abec15c50d6e73f8b18cc52ce57a833f0091ee02cf30830423a8f0.nc b/argopy/tests/test_data/0f97280439abec15c50d6e73f8b18cc52ce57a833f0091ee02cf30830423a8f0.nc new file mode 100644 index 00000000..3eeea95f Binary files /dev/null and b/argopy/tests/test_data/0f97280439abec15c50d6e73f8b18cc52ce57a833f0091ee02cf30830423a8f0.nc differ diff --git a/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz b/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz new file mode 100644 index 00000000..b70489aa Binary files /dev/null and b/argopy/tests/test_data/109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444.gz differ diff --git a/argopy/tests/test_data/125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200.nc b/argopy/tests/test_data/125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200.nc new file mode 100644 index 00000000..f7c6ba8b Binary files /dev/null and b/argopy/tests/test_data/125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200.nc differ diff --git a/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html b/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html new file mode 100644 index 00000000..ec84fdbb --- /dev/null +++ b/argopy/tests/test_data/13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c.html @@ -0,0 +1,16 @@ + + + Processing BGC-Argo Radiometric data at the DAC level + + + + + + +

Processing BGC-Argo Radiometric data at the DAC level

Presently, radiometers can be implemented on profiling floats to estimate some radiometric measurements. Hereafter we briefly describe the principle of this method and several configurations of the OCR500 series instruments. These measurements can be radiance or irradiance at different wavelengths and in different directions (upward or downward). The Photosynthetically Available Radiation (PAR) is also measured as it represents the solar radiation that photosynthetic organisms are able to use in the process of photosynthesis.

+ +

At the moment all radiometric sensors implemented on floats are developed by the Satlantic Company and are of the OCR serie. These radiometers combine three wavelengths for irradiance measurements together with a measurement of the Photosynthetically Available Radiation. The present document is focused on the management of radiometric data flow acquired by those sensors (section 3). As soon as other sensors are implemented and successfully tested on floats, the present document would be accordingly updated.

Keyword(s)

argo, bgc-argo, optic

Full Text

FilePagesSizeAccess
Publisher's official version
12148 Ko
How to cite
Schmechtig Catherine, Poteau Antoine, Claustre Herve, D’ortenzio Fabrizio (2017). Processing BGC-Argo Radiometric data at the DAC level. Ifremer. https://doi.org/10.13155/51541

Copy this text

+ + + diff --git a/argopy/tests/test_data/148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191.nc b/argopy/tests/test_data/148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191.nc new file mode 100644 index 00000000..c90e8ebd Binary files /dev/null and b/argopy/tests/test_data/148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191.nc differ diff --git a/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html b/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html new file mode 100644 index 00000000..c7d3c52b --- /dev/null +++ b/argopy/tests/test_data/153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605.html @@ -0,0 +1,17 @@ + + + Argo Quality Control Manual for CTD and Trajectory Data + + + + + + +

Argo Quality Control Manual for CTD and Trajectory Data

A CTD (conductivity, temperature, depth) device measures temperature and salinity versus pressure. This document is the Argo quality control manual for CTD and trajectory data. It describes two levels of quality control: +- The first level is the real-time system that performs a set of agreed automatic checks. +- The second level of quality control is the delayed-mode system. +These quality control procedures are applied to the parameters JULD, LATITUDE, LONGITUDE, PRES, TEMP, PSAL, and CNDC.

Full Text

FilePagesSizeAccess
Version 3.8
564 Mo
Old versions
-22 Mo
How to cite
Wong Annie, Keeley Robert, Carval Thierry, Argo Data Management Team (2024). Argo Quality Control Manual for CTD and Trajectory Data. Ifremer. https://doi.org/10.13155/33951

Copy this text

+ + + diff --git a/argopy/tests/test_data/1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2.json b/argopy/tests/test_data/1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2.json new file mode 100644 index 00000000..2059549a --- /dev/null +++ b/argopy/tests/test_data/1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2.json @@ -0,0 +1,1309 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Japanese company based in Nishinomiya that manufactures and sells measuring instruments, water level gauges, and other diagnostic equipment. It was established in 1973 and is a subsidiary of Kawasaki Steel, now known as JFE Steel." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::JAC", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co., Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "JAC", + "skos:notation": "SDN:R26::JAC", + "pav:version": "1", + "dce:identifier": "SDN:R26::JAC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: https://www.kistler.com/en/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::KISTLER", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "KISTLER", + "skos:notation": "SDN:R26::KISTLER", + "pav:version": "1", + "dce:identifier": "SDN:R26::KISTLER" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/1/" + }, + "dce:identifier": "SDN:R26::KELLER", + "pav:version": "1", + "skos:notation": "SDN:R26::KELLER", + "skos:altLabel": "KELLER", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KELLER AG für Druckmesstechnik" + }, + "dc:identifier": "SDN:R26::KELLER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A multinational technology company based in Winterthur, Switzerland, specialised in the manufacture of pressure sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/1/" + }, + "dce:identifier": "SDN:R26::QUARTZDYNE", + "pav:version": "1", + "skos:notation": "SDN:R26::QUARTZDYNE", + "skos:altLabel": "QUARTZDYNE", + "dc:date": "2021-09-14 12:16:36.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne" + }, + "dc:identifier": "SDN:R26::QUARTZDYNE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A ChampionX company specialised in resonating quartz pressure transducers and temperature gauges, located in Salt Lake City, Utah (United States of America)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Rastede, Germany, specialised in the production and supply of optical sensors including radiometers, photometers and fluorometers for marine research and industrial applications." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::TRIOS", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS Mess- und Datentechnik GmbH" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "TRIOS", + "skos:notation": "SDN:R26::TRIOS", + "pav:version": "1", + "dce:identifier": "SDN:R26::TRIOS", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/1/" + }, + "dce:identifier": "SDN:R26::AANDERAA", + "pav:version": "1", + "skos:notation": "SDN:R26::AANDERAA", + "skos:altLabel": "AANDERAA", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Xylem brand, headquartered in Bergen (Norway) that designs, manufactures and sells sensors, instruments and systems for measuring and monitoring in Environmental Research, Marine Transportation, Oil and Gas, Aquaculture, Road and Traffic and Construction." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AANDERAA", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/1/" + }, + "dce:identifier": "SDN:R26::SATLANTIC", + "pav:version": "1", + "skos:notation": "SDN:R26::SATLANTIC", + "skos:altLabel": "SATLANTIC", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An ocean technology company and brand of Sea-Bird Scientific that develops optical sensors for aquatic research and water quality monitoring. The company was initially founded in 1990. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SATLANTIC", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/1/" + }, + "dce:identifier": "SDN:R26::TSK", + "pav:version": "1", + "skos:notation": "SDN:R26::TSK", + "skos:altLabel": "TSK", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "dc:identifier": "SDN:R26::TSK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A Japanese manufacturer based in Yokohama (head office), specialised in the production of oceanographic observation equipment and water quality monitoring instruments." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/1/" + }, + "dce:identifier": "SDN:R26::PAINE", + "pav:version": "1", + "skos:notation": "SDN:R26::PAINE", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: moreinfo@paineelectronics.com; Organisation website: http://www3.emersonprocess.com/rosemount/paineelectronics/default.aspx" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::PAINE", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine Electronics" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "PAINE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/1/" + }, + "dce:identifier": "SDN:R26::WETLABS", + "pav:version": "1", + "skos:notation": "SDN:R26::WETLABS", + "skos:altLabel": "WETLABS", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A brand of Sea-Bird Scientific, the business manufactures oceanographic and environmental fluorometers, transmissometers, scattering sensors and spectrophotometers. The company was initially founded in 1992. Danaher acquired three ocean science instrumentation companies, Sea-Bird Electronics (2008), WET Labs (2010), and Satlantic (2011), which were then combined to form Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::WETLABS", + "skos:prefLabel": { + "@language": "en", + "@value": "Wetlabs Inc." + }, + "owl:versionInfo": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/1/" + }, + "dce:identifier": "SDN:R26::MICRON", + "pav:version": "1", + "skos:notation": "SDN:R26::MICRON", + "skos:altLabel": "MICRON", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments" + }, + "dc:identifier": "SDN:R26::MICRON", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in Simi Valley, California (United States of America), specialised in the production and supply of semiconductor strain gages, pressure transducers, temperature sensors and measuring systems." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/1/" + }, + "dce:identifier": "SDN:R26::SEASCAN", + "pav:version": "1", + "skos:notation": "SDN:R26::SEASCAN", + "skos:altLabel": "SEASCAN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan, Inc." + }, + "dc:identifier": "SDN:R26::SEASCAN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A small manufacturing company located in Falmouth, Massachusetts (United States of America), specialising in oceanographic research equipment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: usa.sales@druck.com; Organisation website: http://www.druckinc.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::DRUCK", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck Inc." + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "DRUCK", + "skos:notation": "SDN:R26::DRUCK", + "pav:version": "1", + "dce:identifier": "SDN:R26::DRUCK" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/1/" + }, + "dce:identifier": "SDN:R26::FSI", + "pav:version": "1", + "skos:notation": "SDN:R26::FSI", + "skos:altLabel": "FSI", + "dc:date": "2019-10-11 15:08:43.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific Inc." + }, + "dc:identifier": "SDN:R26::FSI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: sales@falmouth.com; Organisation website: http://www.falmouth.com/index.html" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/1/" + }, + "dce:identifier": "SDN:R26::SEAPOINT", + "pav:version": "1", + "skos:notation": "SDN:R26::SEAPOINT", + "skos:altLabel": "SEAPOINT", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Sensors, Inc." + }, + "dc:identifier": "SDN:R26::SEAPOINT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A worldwide supplier of underwater optical sensors located in Exeter, New Hampshire (United States of America)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/1/" + }, + "dce:identifier": "SDN:R26::Unknown", + "pav:version": "1", + "skos:notation": "SDN:R26::Unknown", + "skos:altLabel": "Unknown", + "dc:date": "2021-02-11 14:21:39.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R26::Unknown", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown sensor maker; the use of this code should be exceptional, as the sensor maker should be known." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/1/" + }, + "dce:identifier": "SDN:R26::RBR", + "pav:version": "1", + "skos:notation": "SDN:R26::RBR", + "skos:altLabel": "RBR", + "dc:date": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Canadian designer and manufacturer of oceanographic instruments, including sensors, loggers and compact systems." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::RBR", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR Ltd" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + } + ] + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: webadmin@apl.washington.edu; Organisation website: http://www.apl.washington.edu/" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::APL_UW", + "skos:prefLabel": { + "@language": "en", + "@value": "University of Washington, Applied Physics Laboratory" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "APL_UW", + "skos:notation": "SDN:R26::APL_UW", + "pav:version": "1", + "dce:identifier": "SDN:R26::APL_UW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A non-profit oceanographic research centre located in Moss Landing, California (United States of America), with a technology unit dedicated to the development of oceanographic instruments and platforms." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::MBARI", + "skos:prefLabel": { + "@language": "en", + "@value": "Monterey Bay Aquarium Research Institute" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + } + ], + "dc:date": "2021-02-11 14:21:39.0", + "skos:altLabel": "MBARI", + "skos:notation": "SDN:R26::MBARI", + "pav:version": "1", + "dce:identifier": "SDN:R26::MBARI" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/", + "pav:authoredOn": "2021-09-14 12:16:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/1/" + }, + "dce:identifier": "SDN:R26::MENSOR", + "pav:version": "1", + "skos:notation": "SDN:R26::MENSOR", + "skos:altLabel": "MENSOR", + "dc:date": "2021-09-14 12:16:36.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor" + }, + "dc:identifier": "SDN:R26::MENSOR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Marcos, Texas (United States of America), specialised in precision pressure products." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/", + "pav:authoredOn": "2019-10-11 15:08:43.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Organisation e-mail: Unavailable; Organisation website: http://www.ametekpi.com" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::AMETEK", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek Process Instruments" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + } + ], + "dc:date": "2019-10-11 15:08:43.0", + "skos:altLabel": "AMETEK", + "skos:notation": "SDN:R26::AMETEK", + "pav:version": "1", + "dce:identifier": "SDN:R26::AMETEK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/1/" + }, + "pav:authoredOn": "2021-06-02 23:04:11.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/2/" + }, + "dce:identifier": "SDN:R26::SBE", + "pav:version": "2", + "skos:notation": "SDN:R26::SBE", + "skos:altLabel": "SBE", + "dc:date": "2021-06-02 23:04:11.0", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A large, global company based in the United States of America that develops and manufactures products for the measurement of salinity, temperature, pressure, dissolved oxygen, fluorescence, nutrients and related oceanographic parameters in marine waters. It is formed from three ocean science companies, Sea-Bird Electronics, WET Labs and Satlantic that were combined in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R26::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "2" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/", + "pav:authoredOn": "2021-02-11 14:21:39.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/1/" + }, + "dce:identifier": "SDN:R26::TURNER_DESIGN", + "pav:version": "1", + "skos:notation": "SDN:R26::TURNER_DESIGN", + "skos:altLabel": "TURNER_DESIGN", + "dc:date": "2021-02-11 14:21:39.0", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs" + }, + "dc:identifier": "SDN:R26::TURNER_DESIGN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A manufacturing company located in San Jose, California (United States of America), specialised in the supply of fluorometers for environmental and industrial uses." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/Unknown/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing developers and manufacturers of sensors mounted on Argo floats. Argo netCDF variable SENSOR_MAKER is populated by R26 altLabel.", + "dc:title": "Argo sensor manufacturers", + "skos:prefLabel": "Argo sensor manufacturers", + "owl:versionInfo": "4", + "dc:date": "2021-09-15 03:00:07.0", + "skos:altLabel": "SENSOR_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R26" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/163a1c42f872d1a3d10a795d581fa8e676d2698a8ef9135bde278cdbb05612d9.ncHeader b/argopy/tests/test_data/163a1c42f872d1a3d10a795d581fa8e676d2698a8ef9135bde278cdbb05612d9.ncHeader new file mode 100644 index 00000000..8637612d --- /dev/null +++ b/argopy/tests/test_data/163a1c42f872d1a3d10a795d581fa8e676d2698a8ef9135bde278cdbb05612d9.ncHeader @@ -0,0 +1,352 @@ +netcdf ArgoFloats-synthetic-BGC_0478_10ce_d179.nc { + dimensions: + row = 83615; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=83615); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=83615); + :_FillValue = 99999; // int + :actual_range = 1, 57; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=83615, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 259.8413f, 344.439f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 264.4146f, 350.5012f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 12.55041f, 17.08033f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=83615, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=83615, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=83615); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.84967733333333, 57.650632166666675; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=83615); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.10385516666667, -43.740898; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=83615, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=83615); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=83615); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2005.056f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.054f, 2003.352f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=83615, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=83615, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 27.411f, 34.936f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.20806f, 34.93495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=83615, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=83615, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=83615, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=83615, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=83615); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653827397E9, 1.701612697015E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=83615); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -43.740898; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 57.650632166666675; // double + :geospatial_lat_min = 55.84967733333333; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -43.740898; // double + :geospatial_lon_min = -53.10385516666667; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:51Z (local files) +2024-09-24T12:43:51Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904241%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 57.650632166666675; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.84967733333333; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-12-03T14:11:37Z"; + :time_coverage_start = "2022-05-29T12:29:57Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.10385516666667; // double +} diff --git a/argopy/tests/test_data/17943e904712471c5ba2c9dff54308b93d8a79559bafb386c1eaa71b754736a1.ncHeader b/argopy/tests/test_data/17943e904712471c5ba2c9dff54308b93d8a79559bafb386c1eaa71b754736a1.ncHeader new file mode 100644 index 00000000..f376edbd --- /dev/null +++ b/argopy/tests/test_data/17943e904712471c5ba2c9dff54308b93d8a79559bafb386c1eaa71b754736a1.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_3647_0949_d8d0.nc { + dimensions: + row = 109; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=109); + :_FillValue = 99999; // int + :actual_range = 2, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=109); + :_FillValue = 99999; // int + :actual_range = 34, 34; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=109, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=109, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=109); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 18.983, 18.983; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=109); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -58.11900000000003, -58.11900000000003; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=109, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=109, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=109); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2007.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2007.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=109, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=109, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 34.89f, 37.463f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 34.89f, 37.463f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=109, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=109, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.644f, 27.266f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.644f, 27.266f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=109, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=109, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=109); + :_CoordinateAxisType = "Time"; + :actual_range = 1.51375308E9, 1.51375308E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=109, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=109, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -58.11900000000003; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 18.983; // double + :geospatial_lat_min = 18.983; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -58.11900000000003; // double + :geospatial_lon_min = -58.11900000000003; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:42:35Z (local files) +2024-09-24T08:42:35Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%226902746%22&cycle_number=~%2234%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 18.983; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 18.983; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2017-12-20T06:58:00Z"; + :time_coverage_start = "2017-12-20T06:58:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -58.11900000000003; // double +} diff --git a/argopy/tests/test_data/17a9ded7322a3fda5ae7b0ed858a472e191a4d65d4425cb88f82e9fb3d847ad6.ncHeader b/argopy/tests/test_data/17a9ded7322a3fda5ae7b0ed858a472e191a4d65d4425cb88f82e9fb3d847ad6.ncHeader new file mode 100644 index 00000000..552e5be5 --- /dev/null +++ b/argopy/tests/test_data/17a9ded7322a3fda5ae7b0ed858a472e191a4d65d4425cb88f82e9fb3d847ad6.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_e948_42a5_eb80.nc { + dimensions: + row = 897; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=897); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 11; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=897); + :_FillValue = 99999; // int + :actual_range = 20, 166; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=897, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 263.075f, 329.7932f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 285.4363f, 315.0098f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.118873f, 18.80818f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=897, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=897, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=897); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.08429718017578, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=897); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.918479919433594, -47.331808333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=897, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=897); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=897); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.649095E-7f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.000125f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=897, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=897, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.033f, 34.673f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.404f, 34.67301f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=897, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=897, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.884f, 8.283f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.334f, 8.283f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=897, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=897, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=897); + :_CoordinateAxisType = "Time"; + :actual_range = 1.66633305E9, 1.67340576E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=897); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.331808333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.08429718017578; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.331808333333335; // double + :geospatial_lon_min = -53.918479919433594; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:48:30Z (local files) +2024-09-24T12:48:30Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1666085760.0&time%3C=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.08429718017578; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-01-11T02:56:00Z"; + :time_coverage_start = "2022-10-21T06:17:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.918479919433594; // double +} diff --git a/argopy/tests/test_data/18666bf00f9be91b8426d41cb086fc32a88c1c0c6316d52bcd316f53657d51e3.nc b/argopy/tests/test_data/18666bf00f9be91b8426d41cb086fc32a88c1c0c6316d52bcd316f53657d51e3.nc new file mode 100644 index 00000000..3004d8af Binary files /dev/null and b/argopy/tests/test_data/18666bf00f9be91b8426d41cb086fc32a88c1c0c6316d52bcd316f53657d51e3.nc differ diff --git a/argopy/tests/test_data/19979ec39369bdbec2168b3509d8ce1be0802f58df94bae47aabf79374941769.ncHeader b/argopy/tests/test_data/19979ec39369bdbec2168b3509d8ce1be0802f58df94bae47aabf79374941769.ncHeader new file mode 100644 index 00000000..326a8a1c --- /dev/null +++ b/argopy/tests/test_data/19979ec39369bdbec2168b3509d8ce1be0802f58df94bae47aabf79374941769.ncHeader @@ -0,0 +1,678 @@ +netcdf ArgoFloats-synthetic-BGC_2d72_88c2_ee76.nc { + dimensions: + row = 126044; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.193454E-5f, 0.04767596f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.193454E-5f, 0.04767596f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=126044, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=126044, bbp700_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.292f, 9.398142f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01644325f, 4.691771f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=126044, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=126044, chla_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=126044); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = -0.04620937f, 1.328981f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=126044, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=126044, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=126044); + :_FillValue = 99999; // int + :actual_range = 1, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=126044, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.547487E-4f, 0.8009f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=126044, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=126044, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.483982E-4f, 1.195713f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=126044, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=126044, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.47471E-4f, 1.752278f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=126044, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=126044, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.1310812f, 2315.559f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=126044, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=126044, downwelling_par_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = 217.6861f, 341.608f; // float + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :long_name = "Dissolved oxygen"; + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=126044); + :actual_range = 231.0956f, 99999.0f; // float + + float doxy_adjusted_error(row=126044); + :actual_range = 12.56249f, 99999.0f; // float + + char doxy_adjusted_qc(row=126044, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char doxy_qc(row=126044, doxy_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=126044); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 57.097543166666675, 63.18395183333334; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=126044); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -51.75795016666666, -30.635311333333334; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = 2.132518f, 20.6984f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=126044); + :actual_range = -0.05777724f, 99999.0f; // float + + float nitrate_adjusted_error(row=126044); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=126044, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=126044, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=126044); + :_FillValue = 99999.0f; // float + :actual_range = 5.56744f, 8.088566f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=126044); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=126044, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=126044, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=126044, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=126044); + :_ChunkSizes = 106, 787; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2011.203f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.181f, 2006.433f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=126044, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=126044, pres_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.488f, 35.137f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.13953f, 35.1359f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=126044, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=126044, psal_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.124f, 11.983f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.12f, 11.983f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=126044); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=126044, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=126044, temp_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=126044); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653144082985E9, 1.726927792036E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -30.635311333333334; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 63.18395183333334; // double + :geospatial_lat_min = 57.097543166666675; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -30.635311333333334; // double + :geospatial_lon_min = -51.75795016666666; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:48:34Z (local files) +2024-09-25T05:48:34Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904240%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 63.18395183333334; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 57.097543166666675; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-21T14:09:52Z"; + :time_coverage_start = "2022-05-21T14:41:22Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -51.75795016666666; // double +} diff --git a/argopy/tests/test_data/19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a.nc b/argopy/tests/test_data/19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a.nc new file mode 100644 index 00000000..6e99c2f4 Binary files /dev/null and b/argopy/tests/test_data/19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a.nc differ diff --git a/argopy/tests/test_data/1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29.js b/argopy/tests/test_data/1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29.js new file mode 100644 index 00000000..2b89d26c --- /dev/null +++ b/argopy/tests/test_data/1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29.js @@ -0,0 +1,237 @@ +[ +{"_id":"6902746_117","geolocation":{"type":"Point","coordinates":[-77.12599999999998,16.666]},"basin":1,"timestamp":"2020-01-09T07:31:00.000Z","date_updated_argovis":"2023-01-31T13:58:39.464Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_117.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":117,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,66,76,85,96,106,116,126,135,146,156,166,175,185,195,206,215,226,236,246,256,265,275,286,296,305,315,325,336,346,363,388,413,439,463,488,513,538,563,588,613,638,663,688,713,738,763,788,812,838,863,888,913,938,963,989,1013,1038,1063,1088,1114,1138,1163,1188,1213,1237,1263,1287,1313,1338,1363,1388,1413,1438,1463,1488,1514,1526],[28.054001,28.063999,28.065001,28.063999,28.066,28.068001,28.069,28.068001,28.07,28.072001,28.062,28.066,28.07,28.239,28.77,28.559,28.202999,27.941999,27.398001,26.823,25.974001,25.302,24.77,24.091999,23.653999,23.059999,22.655001,22.034,21.226999,20.554001,20.256001,19.791,19.184,18.948,18.658001,18.382,18.111,17.801001,17.483999,17.184,16.92,16.551001,16.142,15.503,14.591,13.761,13.08,12.361,11.574,11.032,10.511,9.796,9.232,8.721,8.152,7.623,7.253,6.93,6.662,6.594,6.415,6.197,6.032,5.913,5.813,5.664,5.536,5.434,5.303,5.191,5.105,5.02,4.956,4.893,4.791,4.712,4.655,4.631,4.595,4.558,4.516,4.481,4.431,4.396,4.362,4.342,4.322,4.299,4.254,4.238],[35.052834,35.053822,35.051826,35.052845,35.052845,35.052845,35.053822,35.053829,35.053822,35.052834,35.050838,35.050846,35.052845,35.227615,36.181522,36.405277,36.512146,36.508167,36.482204,36.628048,36.808849,36.9617,37.076572,37.025661,37.03265,37.046646,37.027672,36.950771,36.859901,36.808968,36.783001,36.72908,36.650181,36.613228,36.567303,36.524349,36.482407,36.437458,36.38652,36.33659,36.295639,36.23571,36.172798,36.065929,35.903137,35.763332,35.650463,35.536621,35.413784,35.331882,35.254993,35.150124,35.073235,35.008316,34.940414,34.890488,34.871521,34.843567,34.827587,34.837585,34.838596,34.840584,34.845589,34.858582,34.875565,34.893551,34.906548,34.917534,34.926517,34.934517,34.940517,34.947517,34.951508,34.955521,34.961506,34.966496,34.968498,34.969498,34.9725,34.976494,34.976501,34.976494,34.975502,34.975494,34.975494,34.975502,34.974518,34.973515,34.972519,34.974518]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_116","geolocation":{"type":"Point","coordinates":[-76.053,16.173]},"basin":1,"timestamp":"2019-12-30T07:14:00.000Z","date_updated_argovis":"2023-01-31T13:58:37.683Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_116.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":116,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,66,75,86,95,106,116,126,135,145,155,165,175,186,196,205,215,225,236,246,256,265,275,285,296,306,315,325,335,345,363,388,413,438,463,488,513,538,563,589,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,987,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1364,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1839,1863,1888,1913,1938,1963,1988,2013,2037],[28.107,28.108,28.113001,28.115999,28.115,28.115999,28.115999,28.114,28.118,28.121,28.139,28.171,28.433001,28.587,27.951,27.264,26.99,26.417,25.848,25.431999,24.938,24.506001,23.82,23.357,22.278,21.541,21.155001,20.773001,20.298,19.83,19.492001,19.181,18.788,18.507,18.200001,17.898001,17.57,17.336,17.139,16.754999,16.483999,16.212999,15.565,14.64,13.918,13.294,12.608,12.059,11.506,11.023,10.441,9.909,9.342,8.904,8.437,8.124,7.691,7.215,6.876,6.588,6.357,6.078,5.968,5.838,5.744,5.52,5.384,5.296,5.174,5.105,5.026,4.959,4.9,4.83,4.772,4.709,4.662,4.624,4.581,4.559,4.548,4.516,4.482,4.451,4.422,4.401,4.385,4.364,4.343,4.321,4.297,4.281,4.272,4.252,4.232,4.219,4.213,4.205,4.2,4.19,4.181,4.169,4.161,4.155,4.148,4.139,4.135,4.132,4.129,4.128],[35.083027,35.084026,35.083027,35.083027,35.083027,35.084026,35.084034,35.084026,35.083019,35.084026,35.10701,35.312763,35.741291,36.206776,36.509445,36.564384,36.737221,36.769188,36.865097,36.958984,37.013935,37.058903,37.083881,37.079899,36.961048,36.886147,36.850193,36.835232,36.775307,36.72736,36.687416,36.648464,36.597527,36.557571,36.514645,36.466698,36.417751,36.382805,36.351845,36.285923,36.238976,36.192036,36.084175,35.920383,35.790524,35.686665,35.574802,35.488914,35.40403,35.331123,35.243229,35.170326,35.090427,35.046494,34.991554,34.9566,34.911667,34.871727,34.850769,34.846771,34.85178,34.841797,34.846786,34.86079,34.893749,34.892761,34.903751,34.910751,34.921738,34.929737,34.93774,34.938728,34.943726,34.947739,34.951717,34.955727,34.957722,34.959724,34.962719,34.963726,34.968712,34.971706,34.97271,34.972706,34.972713,34.972706,34.972721,34.972713,34.972706,34.972717,34.972717,34.97271,34.971718,34.971718,34.971714,34.971722,34.971718,34.971722,34.971714,34.971722,34.971718,34.970722,34.970726,34.970726,34.970718,34.970726,34.970718,34.970718,34.970726,34.970718]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_115","geolocation":{"type":"Point","coordinates":[-76.06200000000001,15.158]},"basin":1,"timestamp":"2019-12-20T07:16:00.000Z","date_updated_argovis":"2023-01-31T13:58:35.987Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_115.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":115,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,56,66,76,85,96,105,116,126,135,145,155,166,176,186,195,206,216,225,235,246,255,265,275,285,296,306,316,325,336,346,363,388,414,438,463,488,513,538,563,588,613,638,663,688,714,737,763,788,814,838,863,888,913,937,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1913,1938,1963,1981],[28.275,28.275999,28.275999,28.275999,28.275999,28.277,28.278,28.275999,28.292999,28.362,28.481001,28.496,28.497,28.49,28.424,27.398001,26.104,25.389999,24.775,23.886,23.377001,22.815001,22.202999,21.396,20.768,20.183001,19.83,19.374001,18.944,18.496,18.09,17.802,17.528,17.153999,16.848,16.594,16.181999,15.987,15.721,15.395,15.004,14.615,13.927,12.851,12.087,11.764,11.313,10.83,10.303,9.817,9.443,9.045,8.715,8.357,7.92,7.476,7.261,6.975,6.854,6.584,6.355,6.122,5.885,5.75,5.638,5.522,5.354,5.215,5.13,5.076,4.988,4.927,4.889,4.826,4.775,4.736,4.693,4.654,4.629,4.593,4.567,4.547,4.525,4.496,4.453,4.421,4.39,4.369,4.35,4.34,4.318,4.297,4.275,4.258,4.244,4.23,4.214,4.189,4.174,4.163,4.154,4.146,4.139,4.133,4.129,4.125,4.122,4.118],[35.712585,35.712585,35.712585,35.711586,35.712585,35.711586,35.711575,35.713566,35.729553,35.883392,36.081184,36.11713,36.147102,36.175083,36.226017,36.538708,36.730511,36.778488,36.903351,36.989285,37.037231,37.019272,36.990311,36.914406,36.850491,36.782581,36.73365,36.678719,36.616787,36.55386,36.494934,36.452976,36.413036,36.357117,36.306168,36.260227,36.192299,36.160339,36.112389,36.051476,35.976562,35.901638,35.78878,35.589012,35.448196,35.421223,35.354301,35.279404,35.2015,35.136578,35.085636,35.038719,34.99575,34.95681,34.900879,34.854935,34.852947,34.841969,34.852966,34.844986,34.84798,34.856987,34.862984,34.86998,34.890957,34.907948,34.909962,34.918941,34.924942,34.929947,34.935944,34.940937,34.944939,34.948929,34.948933,34.950924,34.95393,34.95694,34.957924,34.959919,34.961918,34.964928,34.968918,34.968929,34.967926,34.968914,34.969925,34.969921,34.970928,34.973911,34.973923,34.973911,34.973911,34.973923,34.973911,34.972931,34.972919,34.971924,34.97192,34.971928,34.971931,34.971931,34.971928,34.971916,34.971931,34.971931,34.97192,34.971931]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_114","geolocation":{"type":"Point","coordinates":[-76.87299999999999,14.224]},"basin":1,"timestamp":"2019-12-10T07:19:00.000Z","date_updated_argovis":"2023-01-31T13:58:34.193Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_114.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":114,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,66,76,86,95,106,115,126,136,145,155,165,175,185,196,205,216,225,235,245,255,265,275,286,296,306,316,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,762,788,813,838,863,888,913,938,963,988,1013,1038,1062,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1414,1438,1463,1488,1513,1538,1564,1587,1613,1638,1663,1688,1713,1738,1763,1788,1814,1838,1863,1888,1913,1938,1963,1988,2013],[28.818001,28.819,28.819,28.82,28.82,28.82,28.819,28.82,28.82,28.822001,28.823999,28.826,28.826,28.82,28.136,27.065001,26.194,25.524,24.896,24.280001,23.556999,22.775,22.221001,21.660999,21.034,20.201,19.789,19.174999,18.544001,18.156,17.84,17.440001,17.01,16.627001,16.207001,15.735,15.518,15.288,15.05,14.646,14.243,13.872,13.085,12.261,11.581,10.988,10.488,10.086,9.836,9.473,9.134,8.586,8.08,7.758,7.399,7.111,6.926,6.716,6.515,6.336,6.21,6.023,5.907,5.823,5.74,5.64,5.441,5.229,5.11,5.018,4.921,4.846,4.784,4.74,4.693,4.654,4.619,4.587,4.561,4.533,4.512,4.491,4.468,4.426,4.398,4.382,4.354,4.329,4.313,4.297,4.281,4.271,4.254,4.239,4.224,4.209,4.199,4.192,4.185,4.177,4.169,4.154,4.149,4.149,4.144,4.141,4.139,4.137,4.136],[36.068447,36.06744,36.067463,36.067463,36.066456,36.067455,36.068447,36.067455,36.068447,36.068459,36.068447,36.068447,36.070446,36.076431,36.357159,36.595921,36.667866,36.844692,36.973579,37.003571,37.01556,36.992592,36.989613,36.94965,36.882744,36.785854,36.730923,36.654026,36.568127,36.510197,36.46225,36.401318,36.328392,36.26548,36.19556,36.11964,36.082687,36.042732,36.003788,35.927876,35.846966,35.778038,35.638195,35.487377,35.384506,35.291607,35.224682,35.182751,35.147774,35.088852,35.049904,34.980991,34.914078,34.871128,34.843151,34.82819,34.820206,34.815205,34.813229,34.820217,34.828201,34.842209,34.852196,34.860191,34.868179,34.890171,34.91515,34.917149,34.928143,34.935146,34.941143,34.94714,34.951138,34.954132,34.956127,34.95713,34.958138,34.959129,34.961124,34.962132,34.963131,34.96513,34.969124,34.968128,34.967125,34.969128,34.969135,34.969128,34.969131,34.969131,34.970131,34.970139,34.970139,34.970127,34.970127,34.970127,34.971142,34.971142,34.971142,34.971142,34.971138,34.971146,34.971142,34.971142,34.971149,34.971146,34.971146,34.971138,34.971146]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_113","geolocation":{"type":"Point","coordinates":[-77.39699999999999,13.91]},"basin":1,"timestamp":"2019-11-30T07:12:00.000Z","date_updated_argovis":"2023-01-31T13:58:32.488Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_113.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":113,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,65,75,86,95,105,115,125,136,145,156,166,175,185,196,205,215,226,236,246,256,265,275,285,296,306,315,325,335,346,363,388,413,437,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1312,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1814,1838,1863,1888,1913,1938,1963,1988,2012],[28.954,28.958,28.961,28.958,28.957001,28.957001,28.955,28.955999,28.973,28.976999,28.978001,28.975,28.917999,28.264999,27.679001,26.723,25.698999,24.568001,23.830999,23.195999,22.796,22.135,21.507999,20.806999,20.181999,19.724001,19.392,19.000999,18.51,18.165001,17.761999,17.416,17.115999,16.858,16.610001,16.162001,15.887,15.58,15.206,15.03,14.802,14.278,13.936,13.343,12.609,11.765,11.25,10.808,10.497,9.776,8.993,7.795,7.489,7.438,7.311,7.093,6.999,6.908,6.81,6.715,6.502,6.22,6.095,5.881,5.637,5.432,5.371,5.272,5.165,5.061,4.937,4.875,4.81,4.73,4.687,4.649,4.603,4.543,4.508,4.48,4.46,4.447,4.417,4.397,4.367,4.347,4.332,4.314,4.304,4.285,4.26,4.243,4.229,4.207,4.189,4.178,4.17,4.161,4.152,4.147,4.144,4.139,4.135,4.131,4.125,4.119,4.116,4.116,4.115],[35.972797,35.973812,35.973808,35.973804,35.972805,35.974808,35.975803,35.974808,35.978798,35.982796,35.990788,35.999767,36.207577,36.440342,36.459343,36.575249,36.787045,36.885971,36.971886,36.958916,36.945938,36.932964,36.883026,36.844078,36.766186,36.713226,36.677258,36.626331,36.556412,36.506462,36.447529,36.3936,36.345646,36.307697,36.264736,36.195812,36.149879,36.096928,36.034008,36.002041,35.961094,35.865192,35.806255,35.70536,35.589493,35.450661,35.373749,35.303825,35.252876,35.141018,35.036152,34.888313,34.880329,34.875332,34.865345,34.851364,34.849377,34.840385,34.834393,34.829407,34.839397,34.838413,34.859394,34.875374,34.884384,34.90136,34.915371,34.931347,34.935333,34.936348,34.943352,34.948341,34.952335,34.954346,34.95734,34.959339,34.960339,34.963333,34.964333,34.965343,34.966335,34.966335,34.966339,34.967342,34.968338,34.969337,34.969337,34.969337,34.970333,34.970341,34.970333,34.970337,34.970337,34.970337,34.971333,34.971336,34.971333,34.971336,34.971336,34.971336,34.971336,34.971336,34.971336,34.971336,34.971333,34.971336,34.971336,34.971344,34.97134]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_112","geolocation":{"type":"Point","coordinates":[-77.428,15.446]},"basin":1,"timestamp":"2019-11-20T07:13:00.000Z","date_updated_argovis":"2023-01-31T13:58:30.791Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_112.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":112,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,66,75,85,95,105,115,125,135,146,155,166,176,186,195,206,215,225,236,246,256,265,275,286,296,305,315,325,335,345,363,388,413,438,463,488,513,538,563,587,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1287,1313,1339,1363,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013,2032],[29.325001,29.332001,29.330999,29.337,29.334,29.337999,29.341,29.337999,29.274,29.211,29.243,29.17,29.083,28.879999,28.07,27.256001,26.549999,25.725,25.294001,24.846001,24.181,23.336,22.724001,22.129,21.528999,21.028,20.391001,19.813,19.291,18.844999,18.483,18.066,17.617001,17.309999,17.018,16.73,16.403,15.97,15.747,15.474,15.179,14.889,14.335,13.619,13.11,12.683,12.121,11.62,11.152,10.505,9.886,9.436,9.075,8.615,8.104,7.72,7.356,7.102,6.871,6.659,6.466,6.29,6.054,5.888,5.699,5.546,5.407,5.252,5.129,5.025,4.936,4.856,4.79,4.74,4.698,4.661,4.619,4.589,4.559,4.53,4.496,4.456,4.423,4.384,4.352,4.327,4.297,4.282,4.269,4.248,4.225,4.196,4.178,4.17,4.155,4.144,4.139,4.133,4.128,4.123,4.123,4.119,4.113,4.11,4.11,4.109,4.109,4.108,4.107,4.106],[35.850182,35.850185,35.852177,35.848186,35.850185,35.850185,35.851173,35.851189,35.828213,35.821224,35.893143,35.927109,35.928116,36.075974,36.343719,36.392693,36.545559,36.705421,36.867271,36.974174,37.026138,36.966202,36.993176,36.955238,36.926281,36.883327,36.807415,36.734497,36.665577,36.602654,36.551685,36.487762,36.420826,36.376888,36.332935,36.286991,36.23103,36.156124,36.118156,36.067215,36.012264,35.963329,35.864429,35.739563,35.662659,35.594727,35.503834,35.430901,35.363979,35.268093,35.179192,35.118259,35.071323,35.01239,34.950451,34.906502,34.874554,34.861553,34.850582,34.852585,34.854595,34.861588,34.872581,34.882584,34.89957,34.913555,34.924549,34.935547,34.943535,34.950542,34.956532,34.960537,34.963528,34.965534,34.967533,34.96954,34.970531,34.973537,34.973526,34.974525,34.975529,34.975525,34.974529,34.973537,34.972534,34.972534,34.973541,34.974552,34.974548,34.973541,34.973534,34.972546,34.972538,34.972546,34.972546,34.972538,34.972538,34.972538,34.972538,34.972549,34.972542,34.972557,34.97155,34.97155,34.97155,34.97155,34.971542,34.971542,34.971539,34.971542]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_111","geolocation":{"type":"Point","coordinates":[-77.30200000000002,16.099]},"basin":1,"timestamp":"2019-11-10T07:09:00.000Z","date_updated_argovis":"2023-01-31T13:58:29.094Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_111.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":111,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,65,75,85,95,105,115,125,136,145,155,165,176,186,195,205,215,225,236,245,255,265,275,285,295,306,316,325,335,345,363,388,413,438,463,488,514,538,563,588,613,638,663,688,713,737,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1914,1938,1963,1981],[29.089001,29.097,29.103001,29.103001,29.111,29.121,29.120001,29.121,29.134001,29.150999,29.142,29.097,29.089001,28.642,27.658001,27.098,26.701,26.082001,25.407,24.955,24.483,23.694,23.115999,22.392,21.698,21.086,20.507,19.983,19.559999,19.194,18.782,18.431999,18.037001,17.750999,17.503,17.239,16.983999,16.684999,16.344,16.162001,15.989,15.655,15.029,14.305,13.423,12.924,12.35,11.897,11.217,10.533,10.011,9.603,9.223,8.924,8.427,7.949,7.614,7.325,6.965,6.771,6.534,6.357,6.167,5.965,5.816,5.663,5.492,5.364,5.233,5.099,5.01,4.916,4.865,4.808,4.758,4.715,4.674,4.621,4.592,4.552,4.535,4.487,4.427,4.396,4.376,4.348,4.326,4.304,4.281,4.258,4.234,4.21,4.194,4.182,4.175,4.166,4.154,4.144,4.138,4.132,4.125,4.119,4.112,4.108,4.103,4.1,4.099,4.097],[35.76252,35.767521,35.770519,35.769531,35.776512,35.787495,35.792503,35.792503,35.820461,36.012283,36.142178,36.191135,36.197128,36.404934,36.577793,36.632748,36.689701,36.74567,36.818615,36.887539,36.962486,36.992474,37.037449,36.998482,36.94556,36.877617,36.81469,36.758743,36.703815,36.649864,36.594913,36.548988,36.492027,36.450081,36.41011,36.36916,36.326218,36.275269,36.208317,36.18335,36.163364,36.102448,35.98555,35.869671,35.713844,35.628933,35.54203,35.471096,35.364216,35.265324,35.192398,35.137455,35.086506,35.053555,34.996609,34.941669,34.907715,34.883739,34.854774,34.855774,34.853798,34.864788,34.870792,34.879776,34.892776,34.90477,34.913765,34.923759,34.934753,34.937752,34.944756,34.946758,34.953747,34.958752,34.959751,34.964745,34.971737,34.971729,34.973728,34.974743,34.976734,34.97673,34.971737,34.970741,34.971737,34.971748,34.971741,34.971756,34.97274,34.972736,34.972752,34.972744,34.97274,34.972744,34.972748,34.972748,34.972748,34.972744,34.972748,34.972748,34.972755,34.972755,34.972755,34.972748,34.972748,34.972744,34.972744,34.972744]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_110","geolocation":{"type":"Point","coordinates":[-76.96100000000001,16.246]},"basin":1,"timestamp":"2019-10-31T07:13:00.000Z","date_updated_argovis":"2023-01-31T13:58:27.385Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_110.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":110,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,65,76,86,95,105,115,126,136,145,155,165,175,185,196,205,215,226,235,245,255,266,276,286,296,305,315,325,335,346,363,388,413,438,463,488,513,538,564,588,612,638,663,688,713,738,763,788,814,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1389,1413,1438,1463,1488,1513,1538,1562,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1964,1988,2014,2027],[29.176001,29.181999,29.179001,29.179001,29.179001,29.181,29.179001,29.179001,29.18,29.187,29.197001,29.139999,28.156,27.427,26.618999,26.004999,25.457001,24.934,24.489,23.965,23.290001,22.684,22.110001,21.305,20.618,20.155001,19.795,19.410999,19.061001,18.700001,18.448,18.305,18.096001,17.745001,17.374001,17.033001,16.771999,16.545,16.259001,16.025,15.748,15.426,14.759,13.927,13.24,12.737,12.056,11.486,10.94,10.453,9.896,9.392,8.895,8.545,8.173,7.805,7.44,7.141,6.949,6.79,6.555,6.358,6.189,5.969,5.805,5.665,5.485,5.383,5.261,5.161,5.073,4.947,4.867,4.819,4.79,4.75,4.684,4.637,4.577,4.537,4.498,4.459,4.411,4.373,4.355,4.33,4.303,4.283,4.26,4.235,4.216,4.194,4.177,4.168,4.16,4.148,4.143,4.136,4.128,4.12,4.111,4.107,4.106,4.103,4.095,4.091,4.09,4.09,4.089,4.088],[36.172417,36.171417,36.172417,36.174404,36.173416,36.174412,36.173416,36.174412,36.173416,36.174412,36.190399,36.320286,36.448181,36.558102,36.668018,36.763935,36.856853,36.913818,37.01572,37.066692,36.996769,36.950798,37.000778,36.91787,36.830963,36.779018,36.734058,36.688103,36.644142,36.594204,36.564236,36.543255,36.51128,36.451347,36.391407,36.334465,36.292496,36.250561,36.200584,36.157639,36.108681,36.052731,35.932869,35.791004,35.679115,35.60218,35.495304,35.406399,35.325474,35.256557,35.181629,35.114704,35.051765,35.009804,34.965851,34.926899,34.891937,34.869965,34.857979,34.857983,34.852993,34.855,34.874985,34.880989,34.89397,34.906979,34.91198,34.924969,34.932968,34.938961,34.946953,34.955956,34.960945,34.964931,34.966938,34.967945,34.97094,34.972942,34.974945,34.974945,34.975937,34.976948,34.974953,34.973942,34.974941,34.975941,34.974953,34.974949,34.973946,34.972958,34.97295,34.972961,34.97295,34.972954,34.972958,34.972954,34.972961,34.97295,34.972961,34.972958,34.972958,34.972958,34.972961,34.972965,34.972946,34.972961,34.972958,34.972965,34.972958,34.972954]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_109","geolocation":{"type":"Point","coordinates":[-76.39699999999999,16.105]},"basin":1,"timestamp":"2019-10-21T07:14:00.000Z","date_updated_argovis":"2023-01-31T13:58:25.706Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_109.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":109,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,56,65,75,86,95,105,115,126,135,145,155,165,176,185,195,205,215,226,236,245,255,265,276,286,296,306,316,325,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,789,813,838,863,888,913,938,963,987,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2010],[29.462999,29.462999,29.462999,29.462999,29.462,29.462999,29.465,29.465,29.462,29.485001,29.407,29.153999,27.987,27.298,26.743,26.153,25.621,25.017,24.444,23.596001,22.903999,22.278,21.485001,20.947001,20.587,19.983999,19.356001,19.011999,18.805,18.5,18.194,17.879,17.657,17.462999,17.195,16.958,16.797001,16.511999,16.176001,15.826,15.412,15.07,14.567,13.872,13.223,12.513,11.893,11.349,10.864,10.254,9.79,9.32,8.87,8.422,8.063,7.763,7.467,7.208,6.973,6.71,6.51,6.301,6.092,5.9,5.745,5.596,5.442,5.306,5.205,5.081,5.02,4.939,4.877,4.791,4.722,4.685,4.659,4.613,4.579,4.532,4.489,4.457,4.449,4.422,4.393,4.357,4.322,4.295,4.282,4.258,4.242,4.227,4.216,4.206,4.185,4.171,4.159,4.146,4.138,4.129,4.121,4.115,4.111,4.107,4.102,4.1,4.098,4.094,4.095],[35.888916,35.888916,35.887928,35.890919,35.890919,35.889935,35.888924,35.888916,35.888924,35.968861,36.146706,36.330551,36.552372,36.606342,36.674278,36.736229,36.803204,36.885128,36.97607,37.005039,37.008049,37.001068,36.918156,36.862213,36.827255,36.75732,36.677399,36.630436,36.601482,36.567505,36.527534,36.476589,36.43663,36.407673,36.362717,36.322742,36.294773,36.244816,36.185875,36.12394,36.048996,35.988064,35.899158,35.780262,35.676369,35.569466,35.473564,35.390648,35.319714,35.225811,35.160858,35.098927,35.042992,34.992043,34.95108,34.924114,34.901138,34.883152,34.87318,34.867184,34.866188,34.870197,34.879177,34.893185,34.904171,34.914169,34.923172,34.932159,34.938171,34.94117,34.950153,34.957161,34.962154,34.96315,34.966148,34.967144,34.970146,34.970154,34.971161,34.969154,34.970158,34.971169,34.975151,34.976147,34.976151,34.975151,34.974155,34.973164,34.973156,34.973152,34.974159,34.973156,34.973156,34.973152,34.97316,34.973167,34.97316,34.97316,34.973156,34.973156,34.973156,34.973156,34.97316,34.973152,34.973156,34.973156,34.973156,34.973156,34.973156]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_108","geolocation":{"type":"Point","coordinates":[-75.94099999999997,15.983]},"basin":1,"timestamp":"2019-10-11T07:14:00.000Z","date_updated_argovis":"2023-01-31T13:58:23.994Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_108.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":108,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,55,65,76,85,96,105,115,125,136,145,155,166,176,185,195,205,215,226,236,246,256,266,276,286,295,305,316,326,335,345,363,388,413,438,463,488,513,538,564,588,612,637,663,688,713,737,763,788,813,838,863,888,913,939,963,988,1013,1038,1062,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1389,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1887,1912,1938,1963,1988,2013,2027],[29.615999,29.608999,29.612,29.625,29.624001,29.622,29.629999,29.628,29.628,29.739,29.684,28.857,28.072001,27.533001,27.135,26.427,25.83,25.169001,24.365,23.707001,23.011,22.424,21.813999,20.865999,20.315001,19.962,19.549,19.087999,18.738001,18.507,18.204,17.924,17.768999,17.572001,17.35,17.075001,16.757999,16.426001,16.205,15.994,15.674,15.278,14.865,14.195,13.6,12.961,12.216,11.741,11.223,10.751,10.18,9.682,9.247,8.771,8.243,7.915,7.584,7.305,7.01,6.779,6.548,6.33,6.117,5.93,5.842,5.704,5.583,5.445,5.303,5.192,5.063,4.975,4.901,4.838,4.782,4.719,4.651,4.604,4.551,4.502,4.458,4.426,4.398,4.364,4.334,4.305,4.284,4.26,4.245,4.231,4.213,4.197,4.181,4.168,4.159,4.15,4.143,4.135,4.129,4.124,4.119,4.118,4.116,4.113,4.11,4.109,4.109,4.107,4.106,4.106],[35.66637,35.669357,35.667358,35.666355,35.667362,35.668362,35.667362,35.668362,35.667351,35.896194,36.301842,36.409763,36.490707,36.540665,36.597633,36.724537,36.863426,36.93639,36.980354,37.009338,37.017345,36.992386,36.942432,36.843525,36.788586,36.751606,36.700661,36.64072,36.597744,36.567791,36.524818,36.482872,36.456894,36.424934,36.390957,36.35099,36.296036,36.231098,36.192131,36.158161,36.101223,36.031269,35.95335,35.834457,35.735546,35.638626,35.524734,35.458805,35.372883,35.303955,35.221024,35.154091,35.099144,35.036198,34.968277,34.93631,34.906338,34.886353,34.866394,34.856392,34.857403,34.858402,34.867405,34.879391,34.897381,34.905384,34.914383,34.924381,34.935368,34.943363,34.950356,34.955353,34.958351,34.963367,34.966362,34.971359,34.973354,34.974358,34.975346,34.976353,34.976357,34.977345,34.977364,34.977364,34.976353,34.97636,34.976364,34.975361,34.975361,34.975361,34.975361,34.975361,34.974365,34.974358,34.974358,34.97337,34.974365,34.974373,34.974373,34.974365,34.974365,34.974358,34.974365,34.97337,34.974373,34.97337,34.973366,34.973373,34.973366,34.974373]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_107","geolocation":{"type":"Point","coordinates":[-75.822,15.77]},"basin":1,"timestamp":"2019-10-01T07:16:00.000Z","date_updated_argovis":"2023-01-31T13:58:22.294Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_107.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":107,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,66,76,85,95,105,116,125,135,145,155,166,175,185,196,206,215,225,235,245,256,265,275,285,295,305,315,326,335,346,364,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1664,1688,1713,1738,1763,1788,1813,1838,1863,1889,1913,1938,1963,1979],[29.895,29.893,29.892,29.893999,29.892,29.889999,29.886999,29.886999,29.833,29.726,29.566,29.202,28.496,27.555,26.634001,25.985001,25.434999,24.639,24.105,23.576,22.948,22.263,21.555,20.797001,20.181999,19.462,18.992001,18.714001,18.408001,18.153999,17.839001,17.572001,17.372,17.143999,16.916,16.608999,16.334999,15.998,15.744,15.509,15.249,14.974,14.42,13.711,13.064,12.415,11.844,11.264,10.698,10.202,9.798,9.343,8.882,8.399,7.909,7.56,7.25,6.963,6.702,6.493,6.272,6.12,5.938,5.799,5.658,5.532,5.376,5.232,5.082,4.988,4.927,4.838,4.75,4.688,4.638,4.583,4.531,4.487,4.454,4.414,4.377,4.359,4.331,4.293,4.267,4.252,4.229,4.215,4.196,4.184,4.173,4.163,4.154,4.145,4.135,4.127,4.123,4.117,4.111,4.106,4.105,4.104,4.101,4.098,4.097,4.095,4.095,4.096],[36.09528,36.097275,36.096279,36.097275,36.096287,36.097275,36.097271,36.096275,36.096279,36.108265,36.14423,36.199203,36.464005,36.588917,36.68185,36.753799,36.779797,36.810783,36.894726,36.935703,36.991665,36.982681,36.934719,36.854797,36.780869,36.691959,36.63002,36.592045,36.545094,36.506107,36.462158,36.421188,36.388218,36.352249,36.312283,36.260319,36.216366,36.157413,36.111469,36.068489,36.023552,35.975578,35.878654,35.760765,35.654858,35.552952,35.461033,35.378105,35.29517,35.219242,35.163296,35.104362,35.047413,34.994469,34.936508,34.906532,34.885574,34.867596,34.858597,34.857597,34.859604,34.868614,34.877598,34.898594,34.909592,34.919571,34.93058,34.94157,34.949574,34.954559,34.959564,34.964569,34.969559,34.971558,34.973564,34.975555,34.977551,34.978558,34.979557,34.97855,34.978558,34.977566,34.977558,34.977558,34.976566,34.976562,34.976566,34.97657,34.975567,34.975567,34.975559,34.975559,34.975567,34.974571,34.974571,34.974567,34.974564,34.974575,34.974575,34.974583,34.974571,34.974567,34.974571,34.974571,34.974564,34.974567,34.974571,34.974571]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_106","geolocation":{"type":"Point","coordinates":[-75.40800000000002,15.951]},"basin":1,"timestamp":"2019-09-21T07:10:00.000Z","date_updated_argovis":"2023-01-31T13:58:20.590Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_106.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":106,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,55,65,76,85,95,106,115,125,136,146,156,166,175,185,196,206,215,225,235,246,256,265,275,285,295,305,315,325,335,345,363,388,413,438,463,488,512,538,563,588,613,638,663,688,713,738,764,788,813,838,863,889,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1981],[29.305,29.393999,29.429001,29.421,29.415001,29.4,29.393,29.391001,29.368999,29.316,29.037001,27.84,27.143999,26.780001,26.159,25.737,25.091,24.330999,23.562,22.773001,22.347,21.781,21.232,20.558001,20.041,19.384001,18.958,18.652,18.41,18.163,17.945999,17.749001,17.374001,17.073,16.858,16.548,16.156,15.951,15.756,15.433,15.208,15.003,14.569,13.621,12.989,12.423,11.807,11.132,10.664,10.178,9.772,9.308,8.901,8.591,8.068,7.644,7.28,7.121,6.859,6.635,6.425,6.243,6.07,5.904,5.722,5.583,5.477,5.386,5.234,5.133,5.007,4.909,4.844,4.78,4.728,4.688,4.609,4.571,4.549,4.494,4.447,4.406,4.375,4.354,4.335,4.31,4.29,4.267,4.233,4.204,4.187,4.178,4.174,4.163,4.153,4.143,4.133,4.124,4.118,4.113,4.109,4.106,4.102,4.101,4.099,4.097,4.094,4.094],[36.399323,36.449284,36.491253,36.492264,36.49025,36.489246,36.492245,36.495243,36.488255,36.491264,36.464283,36.417328,36.55125,36.670151,36.697147,36.761105,36.83205,36.892006,36.947987,37.003952,36.99897,36.952019,36.894051,36.833111,36.770172,36.666248,36.613293,36.580334,36.547348,36.512394,36.483414,36.455429,36.397469,36.342541,36.307541,36.255596,36.184662,36.149681,36.113716,36.054752,36.015804,35.979832,35.903893,35.737022,35.644108,35.563179,35.466259,35.357353,35.291416,35.222469,35.163525,35.10157,35.05661,35.024647,34.967697,34.917747,34.870785,34.869781,34.858799,34.853802,34.862816,34.874798,34.877789,34.891792,34.907784,34.916786,34.923779,34.93079,34.93578,34.944782,34.953777,34.95977,34.96777,34.971756,34.974758,34.976757,34.972771,34.97377,34.976761,34.97776,34.97876,34.97876,34.978756,34.977772,34.978771,34.978767,34.979767,34.978779,34.976776,34.975777,34.97578,34.975769,34.975769,34.97578,34.975769,34.974781,34.974781,34.974781,34.974777,34.974781,34.974781,34.974777,34.974777,34.974792,34.974781,34.974785,34.974781,34.974785]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_105","geolocation":{"type":"Point","coordinates":[-74.35300000000001,16.176]},"basin":1,"timestamp":"2019-09-11T07:04:00.000Z","date_updated_argovis":"2023-01-31T13:58:18.897Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_105.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":105,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,45,56,65,75,85,95,106,116,125,135,145,155,165,175,185,196,205,216,226,236,245,255,265,275,286,296,306,315,326,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,814,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1188,1214,1238,1263,1288,1313,1338,1363,1388,1413,1439,1463,1487,1513,1538,1563,1589,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1913,1938,1964,1988,2012,2029],[28.959,28.965,28.969,28.971001,28.965,29.002001,29.052999,29.075001,29.132,29.101,28.905001,27.922001,27.208,26.732,26.349001,25.603001,24.889999,24.448999,23.516001,23.006001,22.399,21.848,21.191,20.686001,20.191,19.614,19.052,18.625,18.32,18.047001,17.784,17.403999,17.121,16.954,16.783001,16.554001,16.142,15.818,15.591,15.358,15.045,14.666,14.126,13.445,12.865,12.386,11.587,10.935,10.389,9.902,9.511,9.124,8.557,8.099,7.789,7.448,7.18,6.944,6.718,6.519,6.345,6.237,6.093,5.939,5.78,5.598,5.433,5.33,5.265,5.18,5.104,5.041,4.962,4.888,4.846,4.8,4.751,4.709,4.658,4.602,4.565,4.53,4.489,4.456,4.413,4.373,4.34,4.319,4.295,4.276,4.26,4.244,4.224,4.207,4.194,4.183,4.167,4.156,4.148,4.144,4.137,4.13,4.126,4.123,4.119,4.114,4.112,4.11,4.108,4.107],[36.252705,36.254704,36.25771,36.258709,36.257706,36.272697,36.304668,36.316666,36.398602,36.419586,36.370621,36.520538,36.655445,36.679428,36.707409,36.74839,36.871319,37.0452,36.96627,36.99424,36.99527,36.97628,36.926331,36.870377,36.794441,36.707489,36.623566,36.56562,36.521656,36.479691,36.445717,36.378761,36.338791,36.312824,36.297821,36.261848,36.178917,36.117966,36.07901,36.044022,35.98708,35.919128,35.826191,35.706287,35.610371,35.540424,35.415531,35.319614,35.24366,35.177727,35.124756,35.073814,35.005863,34.952915,34.920948,34.886974,34.866982,34.853004,34.847008,34.847008,34.848015,34.865013,34.869007,34.879009,34.895988,34.901985,34.906998,34.917992,34.929981,34.93898,34.94698,34.950981,34.953972,34.956982,34.964966,34.970974,34.975971,34.977959,34.978966,34.978966,34.979973,34.981972,34.982971,34.982975,34.982971,34.98196,34.979965,34.979958,34.97897,34.97797,34.97797,34.97797,34.97797,34.976974,34.976982,34.975986,34.975986,34.974987,34.974979,34.974979,34.974979,34.974979,34.974979,34.974979,34.974987,34.974979,34.974987,34.974979,34.974979,34.974979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_104","geolocation":{"type":"Point","coordinates":[-73.09300000000002,16.907]},"basin":1,"timestamp":"2019-09-01T07:13:00.000Z","date_updated_argovis":"2023-01-31T13:58:17.199Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_104.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":104,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,66,76,85,95,105,115,126,135,146,156,165,175,185,195,206,216,226,236,246,256,266,276,285,295,306,315,325,335,345,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,763,789,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013,2027],[29.386,29.392,29.388,29.391001,29.393,29.392,29.393,29.391001,29.398001,29.290001,29.059999,28.659,28.016001,27.649,27.392,27.231001,26.783001,25.981001,25.211,24.392,23.938999,23.167999,22.683001,22.285999,21.881001,21.445,21.075001,20.531,19.988001,19.489,19.132999,18.768,18.379999,18.117001,17.804001,17.421,17.096001,16.822001,16.461,16.193001,15.925,15.571,14.981,14.228,13.491,12.985,12.395,11.913,11.193,10.594,10.119,9.558,9.117,8.668,8.209,7.756,7.516,7.23,6.914,6.573,6.421,6.261,6.096,5.956,5.799,5.63,5.495,5.388,5.264,5.177,5.098,5.03,4.963,4.888,4.796,4.731,4.674,4.621,4.587,4.551,4.51,4.468,4.441,4.409,4.381,4.356,4.335,4.306,4.287,4.272,4.255,4.241,4.229,4.214,4.198,4.188,4.179,4.169,4.161,4.157,4.149,4.142,4.139,4.136,4.131,4.127,4.125,4.122,4.121,4.121],[35.522449,35.522461,35.521461,35.523464,35.521477,35.524464,35.523479,35.525452,35.527454,35.693333,35.834267,35.922199,36.026134,36.138065,36.30896,36.416885,36.482834,36.598782,36.66774,36.867603,37.055496,37.054489,37.045525,37.006554,36.986572,36.946602,36.911644,36.820705,36.748741,36.694805,36.657822,36.604877,36.547909,36.50993,36.459984,36.400024,36.344063,36.298088,36.235142,36.189186,36.1492,36.083252,35.973324,35.841434,35.714531,35.639591,35.55265,35.483719,35.358803,35.273861,35.20892,35.136982,35.078022,35.023067,34.971111,34.911156,34.897163,34.879189,34.867199,34.85022,34.859215,34.865215,34.873219,34.883209,34.8922,34.898201,34.910202,34.919193,34.930195,34.939186,34.944183,34.949196,34.955181,34.960178,34.96418,34.968189,34.970181,34.972168,34.974178,34.974174,34.975182,34.975182,34.976177,34.977188,34.977188,34.977188,34.977188,34.976177,34.976185,34.976185,34.975174,34.975178,34.975178,34.975189,34.975185,34.975189,34.975189,34.974186,34.97419,34.974182,34.97419,34.974197,34.97419,34.974186,34.974194,34.97419,34.974194,34.974186,34.974197,34.97419]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_103","geolocation":{"type":"Point","coordinates":[-71.16899999999998,17.397]},"basin":1,"timestamp":"2019-08-22T07:10:00.000Z","date_updated_argovis":"2023-01-31T13:58:15.401Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_103.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":103,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,65,76,86,95,106,115,125,136,145,156,166,176,186,196,206,216,225,236,245,255,265,276,285,295,305,315,325,335,345,363,389,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,864,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1364,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1637,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2012],[28.948,28.947001,28.954,28.955,28.952999,28.958,28.959,28.964001,28.971001,29,28.837999,28.355,28.104,27.622999,27.030001,26.514,26.171,25.936001,25.528,24.997999,24.41,23.68,23.172001,22.799999,22.527,22.287001,22.080999,21.518,20.973,20.662001,19.955,19.391001,18.988001,18.642,18.048,17.723,17.547001,17.393999,16.9,16.472,16.239,15.974,15.452,14.601,13.797,13.16,12.59,11.886,11.26,10.739,10.284,9.689,9.597,9.419,8.857,8.144,7.594,7.355,7.164,6.994,6.826,6.656,6.408,6.173,5.999,5.87,5.748,5.634,5.527,5.373,5.236,5.143,5.066,4.97,4.871,4.81,4.742,4.662,4.608,4.576,4.538,4.494,4.475,4.456,4.415,4.382,4.354,4.311,4.283,4.265,4.248,4.235,4.227,4.214,4.202,4.195,4.183,4.177,4.172,4.167,4.159,4.154,4.147,4.136,4.131,4.13,4.13,4.129,4.128],[35.639629,35.641647,35.638626,35.640648,35.64064,35.64164,35.642643,35.642628,35.652622,35.776562,35.952446,36.029415,36.144314,36.22628,36.276249,36.401184,36.616047,36.730976,36.817921,36.929855,36.963844,37.022827,37.0588,37.058807,37.039829,37.027821,37.006836,36.954895,36.892933,36.851955,36.760029,36.68409,36.627117,36.576164,36.491222,36.445248,36.422264,36.400284,36.297359,36.225414,36.191441,36.15646,36.06052,35.90464,35.760742,35.650814,35.555882,35.43298,35.32605,35.240105,35.166157,35.070232,35.097206,35.110226,35.050255,34.961323,34.903366,34.884384,34.872402,34.858402,34.845428,34.845417,34.853424,34.869408,34.876415,34.886406,34.897415,34.909409,34.9174,34.926399,34.935394,34.938396,34.943398,34.948406,34.955383,34.957386,34.960388,34.966389,34.969391,34.970375,34.970387,34.969395,34.970387,34.972374,34.97438,34.974392,34.975384,34.973389,34.973381,34.973392,34.973392,34.973385,34.973392,34.973396,34.973396,34.973392,34.973396,34.9744,34.9744,34.974388,34.974388,34.974388,34.974384,34.974384,34.974384,34.974384,34.974388,34.975399,34.975399]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_102","geolocation":{"type":"Point","coordinates":[-69.48200000000003,17.595]},"basin":1,"timestamp":"2019-08-12T07:14:00.000Z","date_updated_argovis":"2023-01-31T13:58:13.815Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_102.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":102,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,66,75,85,95,106,115,125,136,145,155,165,176,186,196,205,215,225,235,245,255,265,275,285,296,306,315,325,335,345,363,388,412,438,463,488,514,538,563,588,613,638,663,688,713,739,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1687,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2007],[29.044001,29.042,29.048,29.049,29.049,29.048,29.048,29.045,29.046,28.938999,28.822001,28.497999,27.9,27.339001,26.983999,26.388,26.110001,25.77,25.277,24.823999,24.34,23.674999,23.157,22.566,21.804001,21.115999,20.698999,20.087999,19.785999,19.389,18.91,18.552999,18.329,18.08,17.822001,17.396999,17.007999,16.671,16.459,16.212999,15.962,15.65,15.037,14.156,13.394,12.731,12.265,11.744,11.124,10.515,9.9,9.528,9.169,9.035,8.867,8.473,8.098,7.858,7.587,7.242,7.013,6.803,6.575,6.419,6.201,5.911,5.863,5.774,5.617,5.509,5.363,5.235,5.138,5.032,4.969,4.88,4.797,4.73,4.642,4.59,4.564,4.539,4.511,4.471,4.439,4.418,4.4,4.376,4.354,4.334,4.319,4.307,4.286,4.269,4.254,4.243,4.234,4.227,4.221,4.21,4.199,4.191,4.181,4.179,4.171,4.164,4.16,4.153,4.153],[35.35006,35.351048,35.349049,35.350052,35.350052,35.350052,35.350037,35.351048,35.390038,35.56094,35.655876,36.01366,36.151604,36.178593,36.261536,36.430443,36.566364,36.693295,36.766254,36.836216,36.932159,36.987137,37.003128,37.056114,36.975159,36.885231,36.827263,36.766312,36.736332,36.686359,36.617405,36.576439,36.552448,36.516479,36.475506,36.385555,36.311615,36.25465,36.226665,36.191704,36.150742,36.098747,35.994843,35.829922,35.691029,35.581093,35.506149,35.422207,35.328266,35.223343,35.128403,35.07943,35.032482,35.044468,35.053474,34.999508,34.959541,34.937557,34.912567,34.886589,34.877605,34.877598,34.875614,34.880608,34.880619,34.863625,34.885612,34.901611,34.9146,34.922592,34.929604,34.939594,34.945591,34.949596,34.952602,34.957592,34.960587,34.963581,34.964603,34.966595,34.969585,34.970596,34.971588,34.971588,34.971588,34.971581,34.972595,34.972595,34.972599,34.972591,34.972599,34.972599,34.973595,34.973595,34.973583,34.973583,34.973583,34.973583,34.974594,34.974594,34.974594,34.974598,34.974594,34.974598,34.974598,34.975594,34.975594,34.975594,34.975586]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_101","geolocation":{"type":"Point","coordinates":[-68.16699999999997,17.625]},"basin":1,"timestamp":"2019-08-02T07:05:00.000Z","date_updated_argovis":"2023-01-31T13:58:12.089Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_101.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":101,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,55,65,76,85,95,105,115,125,135,145,156,165,175,185,196,205,215,225,235,245,255,265,275,285,295,305,315,325,336,345,362,387,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,912,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1214,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1639,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013,2027],[28.76,28.761,28.757999,28.759001,28.76,28.759001,28.763,28.763,28.761999,28.767,28.643999,28.545,27.823999,27.186001,26.794001,26.437,26.066999,25.863001,25.653,25.481001,25.363001,24.974001,24.535999,23.646,23.146,22.555,22.054001,21.058001,20.334999,19.666,18.916,18.570999,18.014,17.566,17.268999,17.099001,16.84,16.613001,16.402,16.136999,15.835,15.468,14.748,13.998,13.367,12.817,12.015,11.388,10.762,10.291,9.977,9.507,9.21,8.757,8.283,7.92,7.664,7.47,7.284,7.068,6.896,6.743,6.476,6.302,6.033,5.905,5.808,5.678,5.574,5.468,5.371,5.246,5.119,5.001,4.909,4.779,4.712,4.658,4.603,4.564,4.523,4.492,4.464,4.438,4.422,4.396,4.377,4.353,4.331,4.315,4.305,4.291,4.269,4.253,4.24,4.227,4.213,4.203,4.196,4.187,4.179,4.174,4.167,4.163,4.159,4.155,4.15,4.148,4.145,4.145],[35.43425,35.435249,35.435249,35.435249,35.435249,35.435249,35.437252,35.44025,35.436249,35.451248,35.686108,35.903996,36.023933,36.15786,36.191837,36.199833,36.211849,36.251823,36.303795,36.35376,36.479691,36.69957,36.866486,36.899475,36.956451,37.02742,37.034431,36.868519,36.786587,36.704632,36.595699,36.543728,36.456787,36.394821,36.37085,36.357857,36.309887,36.265919,36.231926,36.188953,36.131001,36.069035,35.945095,35.8092,35.697266,35.603329,35.471405,35.367477,35.268543,35.202576,35.162601,35.096645,35.053673,34.986721,34.925755,34.892792,34.882793,34.870796,34.865807,34.85981,34.869823,34.874805,34.87682,34.895813,34.882824,34.897812,34.905811,34.90781,34.913807,34.934795,34.953793,34.948788,34.949787,34.957802,34.959801,34.961792,34.963791,34.964794,34.964798,34.965797,34.966801,34.967793,34.9678,34.969799,34.972794,34.972801,34.972801,34.972794,34.972801,34.972794,34.972805,34.973801,34.973797,34.973804,34.973804,34.973804,34.973797,34.9748,34.9748,34.974804,34.975796,34.975803,34.975796,34.975803,34.975803,34.976807,34.976795,34.976807,34.976795,34.976799]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_100","geolocation":{"type":"Point","coordinates":[-67.065,17.377]},"basin":1,"timestamp":"2019-07-23T07:09:00.000Z","date_updated_argovis":"2023-01-31T13:58:10.296Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_100.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":100,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,65,75,86,95,105,115,126,135,145,155,166,176,185,196,205,215,225,235,246,255,265,276,286,296,305,315,326,336,346,363,388,413,439,463,488,513,538,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1889,1913,1938,1963,1988,2001],[28.570999,28.570999,28.573999,28.573,28.573,28.576,28.573999,28.573999,28.575001,28.504999,28.507,28.540001,28.391001,27.743,27.285999,26.927,26.41,26.113001,25.820999,25.549,24.871,24.247999,23.551001,22.863001,22.392,21.487,20.805,20.232,19.882999,19.371,19.106001,18.549999,17.943001,17.554001,17.381001,17.112,16.761,16.406,15.925,15.677,15.234,14.911,14.408,13.871,13.129,12.574,11.943,11.338,10.728,10.256,9.764,9.36,9.094,8.695,8.256,7.786,7.36,6.999,6.673,6.57,6.421,6.313,6.439,6.363,6.2,6.005,5.866,5.692,5.54,5.42,5.279,5.148,5.03,4.937,4.86,4.791,4.717,4.67,4.615,4.572,4.533,4.498,4.471,4.44,4.417,4.389,4.37,4.35,4.332,4.318,4.305,4.293,4.281,4.269,4.258,4.248,4.241,4.23,4.221,4.213,4.205,4.197,4.188,4.179,4.175,4.168,4.163,4.16,4.159],[35.446487,35.446487,35.445492,35.44548,35.447483,35.447483,35.447483,35.449478,35.448486,35.605408,35.666367,35.742329,35.88826,36.020203,36.128147,36.254074,36.271084,36.378029,36.501953,36.695873,36.79282,36.880764,37.044701,37.046711,37.074692,36.948765,36.861824,36.814846,36.774883,36.699928,36.661942,36.567993,36.470058,36.422085,36.400101,36.355129,36.30315,36.243179,36.158245,36.110268,36.024303,35.962349,35.8694,35.78846,35.664528,35.574574,35.46764,35.366695,35.273762,35.206787,35.13184,35.074879,35.046902,34.989933,34.936966,34.883999,34.844021,34.813042,34.785061,34.788059,34.786072,34.792068,34.847031,34.874023,34.889004,34.896,34.907013,34.911015,34.922016,34.933002,34.940998,34.949001,34.952,34.955997,34.958,34.959995,34.962006,34.964005,34.965,34.966,34.967007,34.968014,34.969006,34.969006,34.970009,34.970997,34.970997,34.971992,34.972,34.973003,34.973007,34.973003,34.973007,34.974007,34.974007,34.973988,34.974007,34.975002,34.975002,34.974998,34.975014,34.975998,34.976006,34.975998,34.976006,34.975998,34.975998,34.975998,34.976006]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_099","geolocation":{"type":"Point","coordinates":[-66.346,16.791]},"basin":1,"timestamp":"2019-07-13T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:58:08.503Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_099.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":99,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,66,75,86,96,106,116,126,135,145,156,165,175,185,195,205,215,225,236,246,255,265,275,285,295,306,316,326,335,345,363,388,413,438,463,488,513,538,562,588,614,638,663,688,713,738,763,788,814,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1137,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1814,1838,1863,1888,1913,1938,1963,1988,2013,2032],[28.375999,28.368999,28.371,28.374001,28.375999,28.378,28.378,28.379999,28.379999,28.381001,28.379,28.149,27.743999,27.482,27.094,26.715,26.313999,25.931999,25.579,25.184,24.320999,23.767,23.007,22.479,21.872999,21.093,20.434999,20.028,19.496,18.962,18.181999,17.388,17.056,16.787001,16.487,16.209,15.829,15.389,14.957,14.665,14.44,14.074,13.69,13.369,12.843,11.821,11.016,10.528,10.109,9.732,9.207,8.993,8.515,8.007,7.88,7.733,7.14,6.876,6.791,6.583,6.309,6.103,5.962,5.857,5.79,5.682,5.575,5.437,5.307,5.234,5.082,4.955,4.863,4.779,4.703,4.656,4.617,4.573,4.537,4.507,4.469,4.44,4.42,4.399,4.379,4.362,4.345,4.324,4.305,4.289,4.274,4.26,4.245,4.228,4.216,4.205,4.195,4.184,4.176,4.167,4.162,4.157,4.149,4.144,4.14,4.134,4.133,4.129,4.127,4.126],[35.131882,35.133881,35.132881,35.132881,35.133881,35.13287,35.133888,35.13187,35.132893,35.132893,35.133869,35.254822,35.523689,35.850536,36.099422,36.273338,36.362305,36.489246,36.626171,36.728123,36.862087,36.997002,37.041996,37.051006,36.996025,36.902092,36.830124,36.794144,36.724194,36.644253,36.511303,36.37936,36.334408,36.287441,36.238449,36.192486,36.122505,36.042568,35.958599,35.909626,35.874645,35.814686,35.778702,35.728725,35.628777,35.448879,35.326935,35.248993,35.189026,35.136051,35.068092,35.051109,34.991135,34.918179,34.912186,34.916191,34.827229,34.802238,34.817253,34.818245,34.814247,34.811249,34.820259,34.837242,34.869228,34.886227,34.906219,34.918213,34.929226,34.942207,34.944206,34.946213,34.951214,34.954208,34.957211,34.961205,34.962204,34.963203,34.964218,34.967209,34.969215,34.970211,34.970203,34.971207,34.97121,34.972198,34.972202,34.973202,34.974209,34.974209,34.974209,34.975208,34.975204,34.976212,34.976208,34.976212,34.976212,34.976219,34.9772,34.977203,34.977211,34.977211,34.977203,34.977203,34.977211,34.977203,34.977203,34.977203,34.977203,34.977211]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_098","geolocation":{"type":"Point","coordinates":[-66.15199999999999,15.824]},"basin":1,"timestamp":"2019-07-03T07:10:00.000Z","date_updated_argovis":"2023-01-31T13:58:06.700Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_098.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":98,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,46,55,65,76,86,95,105,116,126,135,145,155,165,175,185,195,206,215,225,236,246,256,266,275,285,295,305,315,325,335,345,363,388,413,437,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1387,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2014],[28.396999,28.399,28.392,28.393,28.389999,28.389,28.391001,28.393999,28.437,28.493,28.482,28.436001,28.284,27.740999,27.415001,27.129999,26.913,26.714001,26.502001,26.191,25.815001,25.250999,24.358999,23.479,22.867001,22.105,21.01,19.975,19.523001,18.983999,18.771999,18.343,18.101999,17.722,17.242001,16.768,16.181,15.852,15.569,15.324,14.949,14.804,14.163,13.349,12.68,12.036,11.578,10.878,10.341,9.797,9.271,8.902,8.535,8.121,7.812,7.5,7.326,7.192,6.948,6.746,6.541,6.289,6.158,5.999,5.969,5.833,5.668,5.497,5.353,5.215,5.076,4.946,4.886,4.821,4.763,4.705,4.656,4.597,4.559,4.511,4.47,4.441,4.415,4.392,4.37,4.352,4.323,4.302,4.285,4.272,4.259,4.245,4.233,4.223,4.212,4.203,4.195,4.186,4.179,4.172,4.166,4.159,4.154,4.149,4.147,4.142,4.139,4.138,4.137],[35.583912,35.58091,35.58091,35.579903,35.58091,35.58091,35.579903,35.579914,35.613899,35.692852,35.714836,35.761822,35.905769,35.985733,36.046711,36.057713,36.11068,36.251621,36.298607,36.395569,36.5415,36.732418,36.869362,36.888363,36.981327,36.963341,36.808418,36.709476,36.687489,36.601528,36.606529,36.544559,36.519577,36.466587,36.379642,36.287678,36.183735,36.130779,36.082787,36.035801,35.968853,35.943855,35.825935,35.677998,35.566055,35.468098,35.397133,35.278198,35.201237,35.12627,35.053314,35.011341,34.973351,34.926388,34.891403,34.86541,34.857422,34.849422,34.836433,34.83744,34.831448,34.81646,34.84444,34.857441,34.904415,34.913414,34.934402,34.942406,34.943417,34.948414,34.950413,34.951405,34.954426,34.957409,34.9594,34.961414,34.963409,34.966408,34.966412,34.968422,34.96941,34.970421,34.97142,34.971416,34.972412,34.972412,34.973404,34.974407,34.974411,34.974403,34.975414,34.975414,34.975414,34.975414,34.975422,34.97641,34.97641,34.976402,34.976414,34.976414,34.976414,34.977421,34.977417,34.977413,34.977413,34.977421,34.977413,34.977417,34.977406]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_097","geolocation":{"type":"Point","coordinates":[-67.40199999999999,14.804]},"basin":1,"timestamp":"2019-06-23T07:07:00.000Z","date_updated_argovis":"2023-01-31T13:58:04.995Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_097.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":97,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,55,65,76,85,95,105,115,125,135,145,155,165,175,185,195,206,215,225,235,245,255,265,275,286,296,306,316,325,335,345,363,388,413,438,463,488,514,538,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1414,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1687,1714,1738,1763,1788,1813,1838,1864,1888,1913,1938,1963,1988,2006],[28.190001,28.187,28.188999,28.188999,28.190001,28.188999,28.191999,28.191999,28.191999,28.132999,27.813,27.396999,27.201,27.000999,26.672001,26.455,25.997,25.752001,24.399,22.278999,20.982,20.412001,20.111,19.444,18.973,18.601,18.089001,17.465,17.079,16.773001,16.424999,16.118999,15.717,15.298,15.015,14.638,14.197,13.85,13.398,13.077,12.759,12.571,12.091,11.424,10.91,10.493,9.973,9.565,9.212,8.809,8.465,8.224,8.065,7.802,7.414,7.181,6.92,6.743,6.552,6.382,6.245,6.121,5.966,5.888,5.755,5.633,5.516,5.414,5.308,5.212,5.131,5.059,4.991,4.938,4.884,4.834,4.779,4.73,4.689,4.647,4.602,4.561,4.522,4.492,4.458,4.43,4.407,4.382,4.361,4.337,4.316,4.3,4.282,4.265,4.253,4.241,4.23,4.22,4.207,4.198,4.19,4.183,4.176,4.17,4.165,4.162,4.157,4.154,4.151],[35.794071,35.795071,35.79406,35.795063,35.794071,35.79406,35.793072,35.793072,35.795071,35.816074,35.959003,36.113949,36.227901,36.278885,36.306866,36.590752,36.713715,36.847664,36.761707,36.723732,36.656765,36.699753,36.743752,36.659782,36.598801,36.548836,36.46788,36.364914,36.314945,36.264961,36.204987,36.156025,36.085037,36.012074,35.961098,35.895138,35.815166,35.750195,35.672237,35.616257,35.563274,35.535297,35.44735,35.330399,35.248428,35.183453,35.106491,35.050518,35.006546,34.952564,34.910603,34.88961,34.883606,34.858616,34.810646,34.79166,34.772659,34.773659,34.76767,34.773678,34.782673,34.793659,34.801666,34.827648,34.844646,34.860641,34.879646,34.891636,34.904633,34.914623,34.923626,34.930626,34.937618,34.941624,34.945614,34.949623,34.953629,34.956619,34.959625,34.961609,34.963619,34.966614,34.967613,34.968609,34.96962,34.97163,34.972626,34.973614,34.973625,34.974613,34.975613,34.975613,34.975613,34.975613,34.976616,34.976616,34.976616,34.977608,34.977615,34.977615,34.977608,34.977608,34.978615,34.978622,34.978622,34.978622,34.978615,34.978615,34.978615]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_096","geolocation":{"type":"Point","coordinates":[-68.01600000000002,14.219]},"basin":1,"timestamp":"2019-06-13T07:09:00.000Z","date_updated_argovis":"2023-01-31T13:58:03.294Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_096.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":96,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,9,10,15,25,36,45,56,65,76,85,96,106,115,125,135,145,155,166,176,186,195,205,215,226,235,245,255,265,276,285,295,306,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1912,1938,1963,1988,2014,2027],[28.086,28.084,28.086,28.086,28.087,28.086,28.087,28.087,28.087,28.083,27.610001,26.438,26.118,25.768999,25.273001,24.819,23.844999,23.045,22.497999,21.818001,21.070999,20.271999,19.649,19.291,18.721001,18.271,17.813,17.400999,17,16.704,16.385,16.027,15.635,15.269,14.73,14.303,14.011,13.656,13.37,13.152,12.962,12.508,11.692,10.975,10.471,10.002,9.584,9.101,8.582,8.229,7.917,7.666,7.334,7.067,6.853,6.598,6.426,6.312,6.202,6.057,5.965,5.84,5.721,5.613,5.504,5.394,5.302,5.218,5.13,5.066,4.997,4.927,4.878,4.817,4.767,4.749,4.719,4.679,4.636,4.591,4.555,4.522,4.488,4.455,4.429,4.405,4.383,4.357,4.342,4.327,4.308,4.289,4.274,4.264,4.252,4.242,4.231,4.22,4.21,4.201,4.191,4.183,4.175,4.169,4.162,4.158,4.154,4.15,4.149],[36.149193,36.151188,36.149185,36.149193,36.149185,36.149193,36.149185,36.149204,36.151196,36.151199,36.170197,36.340137,36.537048,36.786987,36.834957,37.043873,37.080872,37.08287,37.096867,37.019905,36.911949,36.799995,36.708031,36.691051,36.602085,36.534103,36.466137,36.397175,36.331196,36.289211,36.232258,36.170254,36.099293,36.030323,35.930359,35.857399,35.802425,35.738445,35.692474,35.653477,35.626488,35.547531,35.406582,35.289631,35.211674,35.1437,35.086704,35.022751,34.946781,34.908794,34.871819,34.847832,34.81184,34.791859,34.776863,34.768875,34.770878,34.782867,34.789852,34.797871,34.818859,34.830845,34.846855,34.859848,34.874844,34.890835,34.903843,34.91383,34.922821,34.93082,34.935825,34.939823,34.94783,34.951824,34.954826,34.955822,34.957813,34.960819,34.962822,34.964825,34.966816,34.968826,34.969826,34.970818,34.971817,34.972824,34.97282,34.973835,34.974831,34.974819,34.975819,34.975822,34.975819,34.976822,34.976822,34.976822,34.977821,34.977818,34.977821,34.977821,34.977825,34.978821,34.978821,34.978825,34.978825,34.978821,34.978825,34.978821,34.978825]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_095","geolocation":{"type":"Point","coordinates":[-67.81700000000001,14.317]},"basin":1,"timestamp":"2019-06-03T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:58:01.383Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_095.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":95,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,55,66,75,86,95,105,115,125,135,145,155,166,176,185,196,205,215,225,236,246,256,266,275,285,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,837,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1464,1488,1513,1538,1563,1588,1614,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1887,1913,1938,1963,1988,2012],[27.968,27.971001,27.972,27.968,27.968,27.969,27.974001,27.969999,27.971001,27.944,27.625,27.466,27.212,26.601,26.080999,25.809999,25.306999,24.332001,23.285,22.847,22.256001,21.896,21.354,20.806999,20.215,19.705,19.309,18.819,18.408001,18.014,17.707001,17.334,16.868,16.437,16.077999,15.771,15.478,15.068,14.695,14.475,14.146,13.775,13.205,12.411,11.54,10.877,10.27,9.783,9.297,8.847,8.432,7.992,7.58,7.265,6.98,6.82,6.698,6.513,6.443,6.123,5.963,5.791,5.672,5.59,5.487,5.407,5.323,5.219,5.149,5.068,4.989,4.919,4.847,4.792,4.749,4.712,4.682,4.644,4.608,4.578,4.547,4.514,4.482,4.457,4.429,4.406,4.383,4.358,4.337,4.317,4.297,4.279,4.263,4.247,4.234,4.224,4.213,4.204,4.195,4.186,4.179,4.174,4.167,4.163,4.159,4.156,4.151,4.148,4.147],[36.07148,36.069492,36.070488,36.072483,36.07148,36.07148,36.070488,36.070492,36.070492,36.070484,36.052475,36.049484,36.139469,36.275414,36.476364,36.777267,37.029175,36.967205,36.941219,37.082176,37.06918,37.043201,36.977215,36.923244,36.838272,36.761299,36.703316,36.639366,36.576374,36.506405,36.450436,36.388466,36.307484,36.229507,36.171532,36.119541,36.069576,35.997593,35.927616,35.886631,35.825668,35.762669,35.662716,35.528763,35.384823,35.283859,35.184898,35.117916,35.052963,34.994972,34.942993,34.886017,34.836044,34.807053,34.784054,34.776062,34.788067,34.790054,34.814056,34.793072,34.809059,34.825058,34.847054,34.86504,34.884045,34.895042,34.905037,34.915028,34.924034,34.932041,34.938034,34.944027,34.950027,34.95303,34.956013,34.959023,34.960022,34.962025,34.964016,34.966019,34.96703,34.969032,34.970016,34.971024,34.972027,34.973019,34.97403,34.97403,34.975021,34.975029,34.976025,34.976025,34.97702,34.97702,34.978031,34.978024,34.978031,34.978024,34.978024,34.979027,34.979023,34.979023,34.979019,34.979023,34.979023,34.979023,34.979023,34.979031,34.98003]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_094","geolocation":{"type":"Point","coordinates":[-67.209,14.758]},"basin":1,"timestamp":"2019-05-24T07:08:00.000Z","date_updated_argovis":"2023-01-31T13:57:59.471Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_094.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":94,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,55,66,76,85,95,106,116,126,135,145,156,166,176,186,195,205,215,226,235,245,256,265,275,285,296,305,315,325,335,345,363,388,413,438,462,488,513,538,563,588,613,638,663,688,712,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1263,1287,1312,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2011],[27.757999,27.757,27.756001,27.757999,27.757,27.761,27.761,27.761,27.747,27.639999,27.569,27.134001,27.024,26.958,26.677999,26.368,25.893999,25.304001,25.075001,24.35,23.422001,22.812,22.254999,21.43,20.518,19.76,19.072001,18.788,18.441,18.035,17.584999,17.237,16.879,16.618999,16.405001,15.898,15.433,15.132,14.834,14.543,14.243,13.894,13.28,12.506,11.841,11.158,10.582,10.094,9.708,9.187,8.755,8.373,7.969,7.598,7.339,6.946,6.825,6.742,6.506,6.373,6.202,6.073,5.86,5.659,5.55,5.43,5.32,5.225,5.148,5.083,5.012,4.944,4.877,4.837,4.79,4.743,4.701,4.664,4.641,4.616,4.58,4.553,4.531,4.5,4.474,4.447,4.42,4.39,4.365,4.345,4.33,4.313,4.292,4.278,4.263,4.251,4.239,4.229,4.217,4.208,4.199,4.19,4.182,4.174,4.168,4.165,4.162,4.158,4.157],[36.184711,36.183716,36.184704,36.183708,36.184711,36.184708,36.18372,36.18372,36.182713,36.178734,36.172714,36.128738,36.143726,36.147747,36.231689,36.43166,36.658562,36.725559,37.032482,37.174431,37.149452,37.13047,37.093468,36.987522,36.865547,36.75058,36.646618,36.632637,36.578648,36.514664,36.434711,36.374706,36.307732,36.26775,36.233768,36.128807,36.044811,35.994843,35.953857,35.911858,35.858894,35.793911,35.686951,35.550995,35.437031,35.327065,35.249088,35.178123,35.131138,35.057163,34.993191,34.943211,34.902214,34.870232,34.857235,34.812256,34.813251,34.822243,34.814251,34.828262,34.82925,34.846241,34.859241,34.859249,34.876255,34.892246,34.902241,34.914242,34.922234,34.928234,34.936241,34.942223,34.947227,34.950222,34.953224,34.95723,34.959232,34.961235,34.96323,34.964233,34.966232,34.967224,34.968227,34.969223,34.970226,34.972225,34.973236,34.974228,34.974228,34.975235,34.976238,34.976227,34.977234,34.977234,34.978226,34.978226,34.978226,34.978233,34.978226,34.979229,34.979229,34.979225,34.979225,34.979225,34.980236,34.980225,34.980236,34.980228,34.980225]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_093","geolocation":{"type":"Point","coordinates":[-66.44099999999997,15.228]},"basin":1,"timestamp":"2019-05-14T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:57:57.727Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_093.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":93,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,46,56,65,75,86,95,106,116,125,135,145,156,166,175,186,195,205,215,225,235,245,256,266,275,285,295,305,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,712,738,763,788,813,838,863,888,914,937,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2006],[27.253,27.254,27.252001,27.254,27.254,27.252001,27.254,27.254,27.252001,27.253,27.207001,26.997999,26.957001,26.68,26.573999,26.5,26.384001,26.235001,25.767,25.534,25.046,24.556,23.801001,23.025999,22.261999,22.021999,21.082001,19.757,19.575001,19.176001,18.708,18.181,17.737,17.288,17.110001,16.736,16.288,16.032,15.624,15.143,14.616,14.325,13.892,13.073,12.338,11.75,11.306,10.828,10.378,10.029,9.14,8.578,8.301,7.963,7.702,7.316,7.056,6.834,6.663,6.526,6.342,6.13,5.921,5.77,5.668,5.469,5.343,5.283,5.159,5.044,4.945,4.867,4.791,4.723,4.654,4.587,4.546,4.515,4.481,4.453,4.431,4.409,4.385,4.362,4.345,4.328,4.314,4.301,4.286,4.271,4.255,4.244,4.232,4.22,4.21,4.198,4.192,4.185,4.178,4.174,4.167,4.16,4.155,4.151,4.149,4.146,4.142,4.139,4.137],[36.176003,36.17598,36.176998,36.175995,36.176003,36.176987,36.176003,36.176998,36.175991,36.175999,36.174992,36.176987,36.181988,36.171997,36.176991,36.214977,36.309959,36.368942,36.492912,36.779846,36.794834,36.920815,36.953796,36.890823,36.846836,36.998806,36.832836,36.625919,36.738873,36.688892,36.623901,36.533928,36.451946,36.383968,36.36499,36.297997,36.219036,36.176037,36.107052,36.015091,35.92112,35.868134,35.794155,35.645195,35.515236,35.422249,35.351273,35.26931,35.202335,35.161343,35.03838,34.968403,34.939415,34.899429,34.88443,34.847431,34.824455,34.81546,34.823463,34.835445,34.836456,34.842445,34.85146,34.867451,34.894444,34.898449,34.910431,34.930439,34.943432,34.950428,34.955437,34.958439,34.962437,34.965416,34.967438,34.968426,34.96944,34.971439,34.971432,34.972435,34.973438,34.973427,34.974442,34.974442,34.975426,34.975437,34.97644,34.976437,34.977436,34.977428,34.977428,34.978428,34.978436,34.978436,34.979439,34.979431,34.979431,34.979431,34.97942,34.97942,34.979431,34.980434,34.980434,34.980427,34.980423,34.980434,34.980434,34.980434,34.980434]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_092","geolocation":{"type":"Point","coordinates":[-65.61000000000001,15.794]},"basin":1,"timestamp":"2019-05-04T07:09:00.000Z","date_updated_argovis":"2023-01-31T13:57:55.986Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_092.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":92,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,45,55,65,76,85,95,105,115,125,135,145,156,165,175,185,195,206,216,226,236,246,256,265,276,286,296,305,315,326,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,814,838,862,888,914,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1339,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2009],[26.951,26.959999,26.968,26.968,26.969,26.968,26.969999,26.972,26.969999,26.968,26.969999,26.645,26.447001,26.309,26.223,26.018999,25.582001,25.521999,25.287001,24.976,24.677,23.608999,22.146,20.958,20.370001,19.974001,19.514,19.025999,18.594,18.252001,18.003,17.792,17.391001,16.999001,16.569,16.124001,15.736,15.367,14.99,14.647,14.426,14.093,13.624,12.788,12.206,11.706,11.355,11.105,10.821,10.408,9.755,9.181,8.483,7.876,7.616,7.333,7.054,6.906,6.743,6.578,6.356,6.089,6.059,6.014,5.83,5.667,5.542,5.33,5.13,5.002,4.931,4.87,4.792,4.712,4.661,4.615,4.576,4.544,4.496,4.465,4.435,4.406,4.376,4.359,4.344,4.325,4.305,4.287,4.266,4.253,4.24,4.229,4.221,4.215,4.208,4.2,4.191,4.18,4.171,4.163,4.156,4.151,4.146,4.142,4.138,4.134,4.13,4.128,4.126],[36.211254,36.213245,36.209248,36.20924,36.208241,36.209248,36.20924,36.208241,36.20924,36.209259,36.207245,36.248238,36.280231,36.310226,36.344223,36.433208,36.524181,36.664146,36.715141,36.866112,36.937088,36.924103,36.821125,36.635181,36.734165,36.800148,36.745159,36.672157,36.607193,36.556206,36.522205,36.494232,36.42424,36.354252,36.275272,36.195293,36.124306,36.061325,35.992352,35.932365,35.90337,35.841389,35.754398,35.601456,35.49847,35.415493,35.358509,35.318523,35.272526,35.212555,35.130562,35.061596,34.963612,34.877636,34.861633,34.842648,34.820648,34.817646,34.820644,34.827652,34.829659,34.826653,34.874649,34.908634,34.912628,34.923641,34.934639,34.936638,34.936642,34.942638,34.952633,34.957642,34.957638,34.96064,34.963642,34.966637,34.969635,34.970634,34.972645,34.97364,34.974644,34.974632,34.975647,34.975647,34.976639,34.976646,34.977642,34.977642,34.97765,34.977642,34.978642,34.978642,34.979633,34.979641,34.979641,34.979637,34.980621,34.98064,34.980625,34.980625,34.980633,34.981636,34.981647,34.981636,34.981636,34.98164,34.98164,34.981625,34.981632]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_091","geolocation":{"type":"Point","coordinates":[-64.606,16.085]},"basin":1,"timestamp":"2019-04-24T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:57:54.290Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_091.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":91,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,66,75,85,96,106,116,125,135,145,155,166,176,185,196,206,216,225,236,246,256,265,275,285,295,305,315,325,335,346,363,388,413,437,462,488,513,538,563,588,614,638,663,688,713,738,764,788,813,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1138,1163,1189,1213,1238,1263,1288,1313,1338,1364,1388,1413,1438,1463,1488,1513,1538,1562,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1839,1863,1888,1913,1938,1963,1988,2014,2030],[26.931999,26.931999,26.927999,26.929001,26.924999,26.93,26.924999,26.926001,26.900999,26.802999,26.771,26.655001,26.558001,26.388,26.094999,25.861,25.407,25.181999,24.875,24.344999,23.545,23.087,22.204,21.246,21.098,20.650999,19.917,19.195,18.639,18.135,17.868,17.538,17.162001,16.645,16.327,15.99,15.689,15.432,15.226,14.71,14.528,14.365,13.954,13.27,12.561,11.75,11.013,10.422,9.952,9.462,8.727,8.254,7.906,7.576,7.201,6.768,6.523,6.425,6.307,6.237,6.177,6.136,6.047,5.963,5.981,5.813,5.689,5.581,5.425,5.271,5.144,5.016,4.924,4.834,4.762,4.692,4.641,4.589,4.554,4.523,4.484,4.443,4.401,4.376,4.353,4.334,4.316,4.301,4.286,4.277,4.261,4.25,4.237,4.227,4.216,4.209,4.202,4.193,4.184,4.178,4.171,4.164,4.161,4.153,4.148,4.143,4.138,4.134,4.131,4.13],[36.04554,36.044556,36.046555,36.04356,36.044544,36.044544,36.046528,36.045547,36.040539,36.042534,36.089531,36.123535,36.188522,36.252499,36.382481,36.527462,36.543457,36.601448,36.661438,36.693436,36.69244,36.747429,36.647449,36.810417,36.967384,36.90741,36.805428,36.701462,36.621464,36.54248,36.499493,36.44751,36.388508,36.289539,36.23354,36.175568,36.118587,36.077579,36.043583,35.928604,35.892624,35.866627,35.811649,35.686665,35.559692,35.42971,35.317757,35.225765,35.159771,35.094784,34.97681,34.911819,34.871845,34.844852,34.812855,34.772861,34.753868,34.750877,34.746868,34.749878,34.757874,34.77087,34.795856,34.81786,34.863857,34.882843,34.90086,34.926838,34.940842,34.948845,34.951843,34.953835,34.959846,34.962841,34.962845,34.964836,34.967838,34.969845,34.971851,34.972847,34.974842,34.975849,34.975842,34.974834,34.975842,34.976841,34.977848,34.977848,34.977848,34.978851,34.979843,34.979843,34.979843,34.979843,34.979839,34.979851,34.980839,34.981842,34.981842,34.981834,34.981831,34.981834,34.981834,34.982841,34.982841,34.982838,34.982834,34.982853,34.982838,34.982838]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_090","geolocation":{"type":"Point","coordinates":[-63.995000000000005,16.363]},"basin":1,"timestamp":"2019-04-14T07:01:00.000Z","date_updated_argovis":"2023-01-31T13:57:52.665Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_090.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":90,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,66,76,85,96,106,116,125,135,146,155,165,175,186,195,205,216,225,236,246,256,265,275,286,296,305,315,325,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1212,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1964,1988,2007],[26.718,26.716,26.716999,26.715,26.716,26.716999,26.716,26.716,26.723,26.724001,26.726,26.738001,26.709,26.268999,25.521,24.577999,23.533001,23.666,23.667999,23.051001,22.49,22.107,21.764999,21.440001,20.584,19.857,19.299,18.759001,18.163,17.948,17.700001,17.436001,17.305,17.162001,16.933001,16.576,16.386,16.212,15.849,15.508,15.099,14.794,14.183,13.236,12.597,12.088,11.569,10.749,9.937,9.54,9.084,8.932,8.511,8.212,8.01,7.651,7.211,6.85,6.565,6.388,6.283,6.166,5.974,5.805,5.675,5.505,5.384,5.32,5.217,5.124,4.98,4.874,4.829,4.76,4.717,4.673,4.604,4.554,4.505,4.479,4.457,4.413,4.348,4.299,4.289,4.285,4.284,4.283,4.269,4.25,4.228,4.218,4.215,4.21,4.205,4.201,4.19,4.183,4.178,4.17,4.166,4.161,4.156,4.147,4.138,4.137,4.133,4.135,4.137],[36.054001,36.055,36.053001,36.055,36.055,36.054001,36.055,36.054001,36.055,36.056,36.055,36.068001,36.118,36.299999,36.466,36.501999,36.474998,36.952,37.209999,37.167,37.141998,37.102001,37.058998,37.018002,36.898998,36.800999,36.720001,36.644001,36.556,36.522999,36.484001,36.442001,36.418999,36.396,36.359001,36.291,36.249001,36.230999,36.166,36.098999,36.028,35.973,35.867001,35.683998,35.573002,35.495998,35.424,35.286999,35.139,35.089001,35.019001,35.021999,34.977001,34.942001,34.929001,34.893002,34.848,34.812,34.793999,34.805,34.831001,34.846001,34.851002,34.858002,34.868999,34.889,34.908001,34.916,34.923,34.935001,34.945,34.952999,34.955002,34.959,34.962002,34.964001,34.966999,34.970001,34.972,34.973,34.973999,34.976002,34.978001,34.98,34.980999,34.980999,34.980999,34.980999,34.981998,34.981998,34.981998,34.983002,34.983002,34.983002,34.983002,34.984001,34.984001,34.985001,34.985001,34.985001,34.985001,34.986,34.986,34.986,34.986,34.987,34.987,34.987,34.987]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_089","geolocation":{"type":"Point","coordinates":[-63.35500000000002,16.761]},"basin":1,"timestamp":"2019-04-04T07:12:59.999Z","date_updated_argovis":"2023-01-31T13:57:50.887Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_089.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":89,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,65,76,85,95,105,116,125,135,145,156,166,176,186,196,206,215,225,235,245,256,266,275,285,295,305,316,326,336,345,363,388,413,438,463,488,513,538,563,588,613,638,664,688,713,738,763,788,813,838,863,888,913,937,963,988,1013,1038,1064,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1353],[26.459,26.458,26.458,26.458,26.466999,26.468,26.459999,26.459,26.466999,26.448,26.329,26.298,26.263,26.197001,26.136999,26.101,25.671,25.219,24.790001,24.253,23.816,23.316,22.834,22.388,21.926001,21.451,20.610001,20.037001,19.551001,19.382,19.111,18.841999,18.596001,18.187,17.805,17.358,17.114,16.822001,16.615999,16.209999,15.857,15.611,15.236,14.408,13.518,12.587,12.165,11.697,11.065,10.55,10.036,9.621,9.047,8.716,8.18,7.762,7.39,7.014,6.698,6.382,6.154,5.997,5.879,5.787,5.731,5.637,5.509,5.355,5.253,5.069,4.988,4.925,4.885,4.83,4.741,4.657,4.605,4.558,4.502,4.487,4.481,4.47,4.456],[36.124001,36.124001,36.124001,36.125,36.123001,36.123001,36.124001,36.125999,36.124001,36.130001,36.157001,36.159,36.157001,36.169998,36.257,36.715,37.005001,37.125999,37.207001,37.242001,37.257,37.229,37.195999,37.132999,37.076,37.013,36.904999,36.823002,36.752998,36.729,36.692001,36.653,36.619999,36.557999,36.498001,36.429001,36.388,36.339001,36.299999,36.233002,36.173,36.126999,36.049999,35.888,35.723999,35.561001,35.493,35.418999,35.321999,35.252998,35.181999,35.118,35.037998,35.007999,34.948002,34.907001,34.868999,34.834999,34.806999,34.785999,34.796001,34.799999,34.812,34.841999,34.866001,34.887001,34.898998,34.918999,34.93,34.926998,34.937,34.950001,34.955002,34.956001,34.958,34.962002,34.966,34.966999,34.966999,34.967999,34.967999,34.969002,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_088","geolocation":{"type":"Point","coordinates":[-63.21199999999999,16.889]},"basin":1,"timestamp":"2019-03-25T07:17:00.000Z","date_updated_argovis":"2023-01-31T13:57:49.205Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_088.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":88,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,65,75,85,95,105,116,126,135,145,155,165,175,186,196,205,215,225,235,245,255,265,275,286,295,305,316,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1235],[26.245001,26.249001,26.254,26.250999,26.256001,26.253,26.257,26.257,26.259001,26.263,26.264999,26.267,26.268,26.27,26.232,26.200001,26.261999,26.058001,25.458,24.798,24.358,23.834,22.849001,22.188999,21.664,21.131001,20.628,20.113001,19.662001,19.289,19.087999,18.875999,18.653999,18.424,18.073,17.652,17.381001,17.115,16.813,16.606001,16.281,16.056,15.168,14.322,13.676,13.164,12.201,11.754,11.388,10.769,10.275,9.478,8.804,8.488,7.894,7.472,6.96,6.819,6.494,6.353,6.141,6.006,5.895,5.784,5.585,5.432,5.304,5.202,5.115,4.997,4.929,4.881,4.802,4.702,4.649,4.605,4.55,4.516],[36.132999,36.130001,36.131001,36.132999,36.132,36.131001,36.131001,36.132,36.131001,36.131001,36.131001,36.131001,36.132,36.132,36.179001,36.323002,36.564999,36.839001,37.084,37.154999,37.223,37.249001,37.176998,37.118,37.049,36.973,36.904999,36.832001,36.765999,36.714001,36.688999,36.66,36.629002,36.602001,36.543999,36.470001,36.428001,36.389999,36.334,36.300999,36.233002,36.198002,36.018002,35.855,35.743999,35.673,35.487,35.438,35.408001,35.312,35.238998,35.108002,35,34.986,34.919998,34.877998,34.816002,34.823002,34.797001,34.799999,34.801998,34.819,34.839001,34.874001,34.888,34.897999,34.921001,34.935001,34.942001,34.948002,34.952,34.952999,34.953999,34.955002,34.958,34.959999,34.964001,34.966]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_087","geolocation":{"type":"Point","coordinates":[-63.512,16.461]},"basin":1,"timestamp":"2019-03-15T07:14:00.000Z","date_updated_argovis":"2023-01-31T13:57:47.393Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_087.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":87,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,65,76,86,95,105,115,125,135,145,155,165,175,185,195,206,216,226,235,246,256,266,276,285,295,305,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,887,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1514,1527],[26.437,26.438999,26.438999,26.438,26.438,26.438999,26.438,26.438999,26.438999,26.437,26.375,26.327,26.319,26.315001,26.43,26.121,25.507999,24.712999,24.239,23.775,23.298,22.709,22.299,21.847,21.046,20.298,19.872,19.212999,18.856001,18.523001,18.218,17.905001,17.542999,17.118999,16.777,16.511,16.122,15.768,15.383,14.866,14.496,14.216,13.82,13.164,12.583,12.066,11.622,11.265,10.787,10.328,9.681,9.107,8.674,8.355,8.096,7.757,7.284,6.769,6.516,6.168,6.112,6.03,5.952,5.801,5.677,5.603,5.453,5.274,5.093,4.977,4.894,4.801,4.701,4.64,4.594,4.559,4.504,4.479,4.455,4.426,4.399,4.376,4.369,4.347,4.334,4.32,4.298,4.278,4.267,4.26],[36.063999,36.063,36.063999,36.066002,36.064999,36.064999,36.066002,36.064999,36.064999,36.070999,36.091,36.098,36.098999,36.101002,36.407001,36.786999,36.990002,37.097,37.216,37.166,37.168999,37.132999,37.070999,37.035,36.902,36.786999,36.727001,36.637001,36.632,36.584999,36.539001,36.493999,36.429001,36.359001,36.304001,36.255001,36.181,36.116001,36.048,35.953999,35.889999,35.842999,35.775002,35.664001,35.567001,35.48,35.407001,35.348999,35.271999,35.202,35.117001,35.043999,34.985001,34.960999,34.942001,34.907001,34.847,34.792999,34.793999,34.768002,34.789001,34.806999,34.830002,34.859001,34.881001,34.893002,34.904999,34.921001,34.938,34.949001,34.952999,34.955002,34.959999,34.963001,34.965,34.966,34.966999,34.971001,34.972,34.973,34.973999,34.974998,34.974998,34.974998,34.974998,34.976002,34.977001,34.978001,34.979,34.979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_086","geolocation":{"type":"Point","coordinates":[-63.97399999999999,16.743]},"basin":1,"timestamp":"2019-03-05T07:16:00.000Z","date_updated_argovis":"2023-01-31T13:57:45.691Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_086.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":86,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,65,76,85,95,106,115,125,136,145,156,166,176,186,195,205,215,225,235,245,255,265,276,286,296,305,315,325,335,345,363,388,413,438,463,488,513,538,562,588,614,638,663,688,713,738,763,788,812,838,863,888,913,937,963,988,1013,1038,1062,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1364,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1639,1663,1688,1713,1738,1763,1788,1814,1838,1863,1888,1913,1938,1955],[26.306,26.306999,26.308001,26.308001,26.309,26.309,26.306,26.306,26.308001,26.312,26.309999,26.313,26.315001,26.316999,26.327,26.354,25.990999,25.749001,25.205999,24.454,23.961,23.443001,22.827,22.311001,21.771,21.184999,20.527,20.018,19.542,19.249001,18.907,18.629,18.318001,18.139,17.829,17.473,17.163,16.878,16.511999,16.002001,15.709,15.487,14.773,13.693,12.721,12.172,11.699,11.017,10.54,10.005,9.494,9.101,8.428,8.269,8.039,7.75,7.452,7.088,6.806,6.621,6.391,6.204,6.005,5.871,5.837,5.693,5.557,5.438,5.412,5.245,5.101,4.998,4.906,4.753,4.664,4.592,4.528,4.482,4.429,4.412,4.376,4.346,4.314,4.293,4.276,4.26,4.248,4.242,4.23,4.217,4.208,4.193,4.186,4.181,4.17,4.143,4.112,4.096,4.091,4.087,4.085,4.085,4.085,4.084,4.084,4.084,4.085],[36.049,36.049999,36.049999,36.049999,36.049999,36.049,36.050999,36.050999,36.049999,36.049999,36.050999,36.050999,36.050999,36.050999,36.088001,36.441002,36.900002,37.007,37.075001,37.071999,37.099998,37.091999,37.049999,37.007,36.952999,36.887001,36.798,36.727001,36.672001,36.640999,36.592999,36.577,36.527,36.514,36.472,36.405998,36.351002,36.310001,36.262001,36.159,36.113998,36.071999,35.944,35.743,35.57,35.490002,35.417,35.304001,35.236,35.155998,35.09,35.042,34.952,34.956001,34.932999,34.901001,34.875,34.839001,34.819,34.825001,34.82,34.823002,34.827999,34.837002,34.865002,34.877998,34.890999,34.907001,34.928001,34.935001,34.943001,34.959999,34.962002,34.959,34.965,34.966999,34.971001,34.973999,34.971001,34.974998,34.976002,34.977001,34.978001,34.979,34.979,34.98,34.98,34.98,34.980999,34.981998,34.983002,34.984001,34.984001,34.984001,34.984001,34.984001,34.985001,34.985001,34.985001,34.985001,34.985001,34.986,34.986,34.986,34.986,34.986,34.986]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_085","geolocation":{"type":"Point","coordinates":[-63.54599999999999,16.539]},"basin":1,"timestamp":"2019-02-23T07:27:00.000Z","date_updated_argovis":"2023-01-31T13:57:44.066Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_085.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":85,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,15,25,35,46,56,66,75,86,95,106,116,126,136,145,155,165,175,185,196,206,216,226,235,245,255,265,275,285,296,305,315,325,336,346,363,388,413,438,464,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1112,1138,1163,1188,1213,1238,1263,1288,1313,1338,1364,1377],[26.357,26.363001,26.363001,26.364,26.362,26.361,26.361,26.362,26.367001,26.368999,26.371,26.371,26.367001,26.398001,26.431,26.481001,26.363001,26.158001,25.479,24.684999,24.082001,23.348,22.650999,21.875999,21.188999,20.809999,20.438,20.042999,19.691999,19.187,18.789,18.438999,18.186001,17.975,17.719,17.429001,17.101,16.691999,16.204,15.692,15.101,14.405,13.691,12.736,12.061,11.361,10.941,10.452,10.045,9.613,9.223,8.749,8.158,8.067,7.864,7.33,7.027,6.659,6.374,6.211,6.053,5.984,5.785,5.652,5.546,5.403,5.195,5.09,5,4.922,4.838,4.706,4.65,4.601,4.557,4.506,4.485,4.45,4.428,4.38,4.34,4.298,4.287],[35.991001,35.991001,35.991001,35.990002,35.990002,35.990002,35.990002,35.990002,35.991001,35.991001,35.990002,35.993,36.009998,36.043999,36.085999,36.285,36.761002,37.103001,37.108002,37.186001,37.207001,37.18,37.138,37.062,36.983002,36.911999,36.865002,36.806,36.757,36.688,36.631001,36.577999,36.535999,36.511002,36.484001,36.432999,36.373001,36.299,36.205002,36.103001,35.973999,35.844002,35.715,35.553001,35.445,35.337002,35.285,35.214001,35.182999,35.138,35.077999,35.014999,34.916,34.924,34.909,34.845001,34.82,34.794998,34.791,34.799999,34.805,34.831001,34.853001,34.880001,34.901001,34.917,34.935001,34.941002,34.945,34.948002,34.952999,34.959,34.963001,34.964001,34.965,34.966,34.966,34.967999,34.969002,34.972,34.973,34.974998,34.976002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_084","geolocation":{"type":"Point","coordinates":[-62.63900000000001,16.305]},"basin":1,"timestamp":"2019-02-13T07:20:00.000Z","date_updated_argovis":"2023-01-31T13:57:42.372Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_084.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":84,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,66,76,85,95,105,115,126,135,146,156,165,175,185,195,205,215,226,236,245,255,265,275,286,295,305,315,325,335,345,363,388,413,439,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1237,1263,1288,1313,1338,1364,1388,1413,1438,1463,1488,1509],[26.426001,26.429001,26.429001,26.427999,26.431,26.429001,26.431,26.436001,26.43,26.472,26.544001,26.48,26.462999,26.457001,26.429001,26.389999,25.884001,25.267,24.879999,24.427,24.166,23.702999,23.080999,22.76,22.451,21.716,21.059999,20.52,19.847,19.316,18.74,18.275,17.892,17.462999,16.899,16.48,16.025999,15.803,15.415,14.985,14.519,14.134,13.646,12.896,12.204,11.61,10.758,10.169,9.644,9.29,9.002,8.623,8.162,7.823,7.554,7.311,7.051,6.812,6.684,6.497,6.293,6.173,6.038,5.89,5.772,5.658,5.524,5.398,5.273,5.094,4.942,4.88,4.862,4.787,4.719,4.665,4.615,4.571,4.517,4.434,4.386,4.372,4.353,4.324,4.296,4.293,4.286,4.281,4.277],[35.973999,35.973,35.973999,35.974998,35.973999,35.976002,35.973999,35.974998,35.973999,35.999001,36.077999,36.061001,36.056999,36.055,36.097,36.630001,37.019001,37.188999,37.23,37.247002,37.245998,37.249001,37.192001,37.185001,37.161999,37.063,36.967999,36.867001,36.765999,36.686001,36.609001,36.57,36.504002,36.401001,36.291,36.210999,36.123001,36.088001,36.033001,35.951,35.859001,35.792999,35.716,35.591,35.470001,35.374001,35.234001,35.153,35.071999,35.034,34.997002,34.949001,34.902,34.862,34.84,34.818001,34.797001,34.780998,34.792999,34.791,34.777,34.785,34.792999,34.801998,34.82,34.845001,34.869999,34.889999,34.909,34.924999,34.933998,34.938,34.939999,34.945999,34.950001,34.953999,34.957001,34.959999,34.962002,34.966999,34.970001,34.971001,34.972,34.973,34.974998,34.974998,34.974998,34.976002,34.976002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_083","geolocation":{"type":"Point","coordinates":[-62.53899999999999,15.933]},"basin":1,"timestamp":"2019-02-03T07:26:00.000Z","date_updated_argovis":"2023-01-31T13:57:40.579Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_083.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,55,66,75,86,95,106,115,125,135,146,155,165,175,185,196,205,215,226,236,246,255,265,275,286,296,306,316,326,335,345,363,388,413,438,463,488,513,538,563,588,614,638,663,688,713,738,763,788,813,838,864,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1439,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1737,1763,1781],[26.135,26.135,26.135,26.132999,26.145,26.143,26.146,26.143999,26.143,26.139999,26.146,26.150999,26.138,26.129,26.139,26.200001,26.533001,26.076,25.363001,24.056,23.641001,23.354,22.849001,22.214001,21.663,21.052,20.356001,19.938999,19.283001,18.528999,17.891001,17.844,17.572001,17.219,16.805,16.466,16.225,15.849,15.459,14.888,14.479,14.234,13.676,13.053,12.089,11.416,10.92,10.415,10.014,9.563,8.987,8.544,8.046,7.711,7.148,7.056,6.582,6.471,6.361,6.214,6.069,5.971,5.833,5.71,5.592,5.477,5.363,5.256,5.151,5.055,4.904,4.774,4.692,4.624,4.572,4.534,4.499,4.482,4.461,4.431,4.408,4.398,4.388,4.363,4.342,4.318,4.305,4.296,4.288,4.283,4.27,4.264,4.257,4.251,4.238,4.229,4.221,4.21,4.194,4.19],[36.007,36.007999,36.007999,36.008999,36.009998,36.007,36.007999,36.007999,36.007,36.007,36.007999,36.008999,36.013,36.014999,36.026001,36.105999,36.824001,37.077999,37.148998,37.028999,37.118,37.181999,37.153,37.089001,37.025002,36.946999,36.826,36.790001,36.681,36.528,36.403,36.429001,36.422001,36.367001,36.292,36.223999,36.189999,36.120998,36.060001,35.941002,35.848,35.806999,35.716999,35.619999,35.450001,35.349998,35.284,35.219002,35.166,35.102001,35.02,34.974998,34.918999,34.882,34.806999,34.819,34.771999,34.764999,34.771,34.776001,34.785999,34.804001,34.823002,34.839001,34.861,34.879002,34.891998,34.91,34.916,34.93,34.938999,34.945999,34.952,34.956001,34.960999,34.964001,34.966999,34.967999,34.969002,34.969002,34.969002,34.970001,34.970001,34.971001,34.972,34.973,34.973999,34.974998,34.974998,34.974998,34.976002,34.977001,34.977001,34.977001,34.978001,34.978001,34.979,34.979,34.98,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_082","geolocation":{"type":"Point","coordinates":[-62.88499999999999,15.057]},"basin":1,"timestamp":"2019-01-24T07:04:00.000Z","date_updated_argovis":"2023-01-31T13:57:38.781Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_082.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,55,66,75,85,95,105,115,125,135,146,155,165,175,186,195,205,215,225,236,245,255,265,275,285,295,306,316,326,335,345,363,388,413,439,463,488,513,538,563,587,613,638,663,688,713,738,763,788,813,838,863,888,912,938,963,988,1013,1038,1063,1088,1113,1138,1164,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1487,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1985],[26.725,26.726999,26.728001,26.728001,26.728001,26.725,26.73,26.73,26.726999,26.733,26.785999,26.823,26.794001,26.716999,26.695999,26.361,25.518999,24.423,23.886,23.507,23.103001,22.589001,21.951,21.160999,20.429001,19.950001,19.441999,18.847,18.089001,17.51,16.771,16.292,15.944,15.784,15.801,15.595,14.958,14.518,14.17,13.688,13.396,13.02,12.576,11.911,11.303,11.001,10.669,10.26,9.877,9.369,9.047,8.445,8.036,7.693,7.299,7.022,6.812,6.642,6.51,6.302,6.086,5.967,5.88,5.809,5.727,5.532,5.396,5.248,5.097,5.015,4.911,4.848,4.746,4.68,4.613,4.557,4.505,4.473,4.453,4.417,4.396,4.379,4.363,4.343,4.327,4.31,4.29,4.272,4.26,4.25,4.243,4.233,4.223,4.218,4.215,4.195,4.19,4.182,4.176,4.173,4.168,4.168,4.157,4.149,4.146,4.144,4.14,4.141],[36.021,36.02,36.018002,36.021,36.02,36.021999,36.021,36.021,36.02,36.026001,36.076,36.120998,36.123001,36.194,36.463001,36.798,36.907001,36.841,37.021999,37.147999,37.123001,37.073002,37,36.896,36.804001,36.733002,36.661999,36.580002,36.476002,36.379002,36.237,36.157001,36.105999,36.095001,36.119999,36.081001,35.939999,35.845001,35.783001,35.702,35.650002,35.595001,35.52,35.412998,35.32,35.279999,35.245998,35.187,35.130001,35.058998,35.030998,34.942001,34.890999,34.852001,34.807999,34.779999,34.77,34.768002,34.784,34.775002,34.771,34.787998,34.808998,34.834,34.872002,34.877998,34.893002,34.917,34.931,34.942001,34.949001,34.950001,34.955002,34.959,34.963001,34.965,34.967999,34.969002,34.970001,34.971001,34.972,34.973,34.973999,34.974998,34.974998,34.976002,34.976002,34.977001,34.977001,34.978001,34.978001,34.979,34.979,34.98,34.98,34.98,34.980999,34.980999,34.980999,34.980999,34.980999,34.980999,34.981998,34.981998,34.981998,34.981998,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_081","geolocation":{"type":"Point","coordinates":[-62.90699999999998,14.22]},"basin":1,"timestamp":"2019-01-14T07:17:00.000Z","date_updated_argovis":"2023-01-31T13:57:37.087Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_081.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,65,75,85,95,106,116,125,136,146,155,165,176,186,196,205,216,226,236,246,255,265,275,285,295,306,316,325,336,346,363,388,413,438,464,488,513,538,563,588,613,638,664,688,713,738,763,788,812,839,863,888,913,938,963,988,1012,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1437,1463,1488,1513,1538,1563,1588,1613,1639,1653],[26.797001,26.796,26.798,26.804001,26.805,26.802,26.802999,26.801001,26.805,26.812,26.809999,26.813999,26.785999,26.648001,26.184,25.459,24.583,23.009001,22.346001,21.783001,21.041,20.412001,19.677999,19.226999,18.795,17.721001,17.393,16.951,16.382999,15.946,15.569,15.141,14.777,14.429,14.28,14.238,13.953,13.615,13.128,12.773,12.489,12.3,11.663,10.974,10.358,10.369,9.89,9.332,8.924,8.712,8.418,8.001,7.752,7.369,6.94,6.869,6.632,6.541,6.308,6.128,6.003,5.899,5.822,5.777,5.725,5.671,5.561,5.321,5.217,5.141,5.083,4.994,4.915,4.834,4.773,4.713,4.67,4.61,4.552,4.512,4.464,4.426,4.404,4.383,4.357,4.342,4.327,4.302,4.276,4.252,4.235,4.226,4.218,4.209,4.204],[36.099998,36.102001,36.099998,36.099998,36.099998,36.102001,36.099998,36.102001,36.099998,36.099998,36.099998,36.101002,36.160999,36.421001,36.736,37.002998,37.076,36.904999,36.833,36.785999,36.737,36.691002,36.633999,36.605999,36.591999,36.446999,36.401001,36.324001,36.216999,36.125999,36.049,35.971001,35.901001,35.842999,35.841,35.834999,35.784,35.721001,35.633999,35.570999,35.522999,35.488998,35.373001,35.265999,35.165001,35.195,35.123001,35.041,34.986,34.969002,34.939999,34.887001,34.859001,34.819,34.778999,34.786999,34.77,34.778,34.769001,34.773998,34.778999,34.792999,34.806999,34.821999,34.834,34.842999,34.861,34.901001,34.917,34.924,34.93,34.936001,34.943001,34.949001,34.952999,34.957001,34.959,34.963001,34.965,34.966999,34.970001,34.971001,34.972,34.973,34.974998,34.974998,34.974998,34.976002,34.977001,34.978001,34.979,34.979,34.979,34.979,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_080","geolocation":{"type":"Point","coordinates":[-62.947,14.494]},"basin":1,"timestamp":"2019-01-04T07:16:00.000Z","date_updated_argovis":"2023-01-31T13:57:35.473Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_080.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":80,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,65,75,85,96,105,116,125,136,145,155,165,175,185,195,205,215,226,236,246,255,265,275,285,295,305,315,325,335,345,363,389,413,438,463,488,513,537,562,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1562,1588,1613,1638,1663,1686],[26.971001,26.969,26.964001,26.966999,26.969,26.969,26.966,26.964001,26.962999,26.968,26.976,26.989,27.021,26.971001,26.618999,26.118,25.41,24.686001,24.011999,23.299,22.705,21.893,21.531,20.605,19.913,19.357,18.995001,18.468,17.802999,17.136,16.525999,15.941,15.512,15.229,14.96,14.583,14.245,13.871,13.612,13.319,13.068,12.727,12.372,11.817,11.274,10.592,10.076,9.584,9.553,9.16,8.757,8.371,8.016,7.711,7.413,6.989,6.769,6.574,6.473,6.297,6.225,6.132,5.959,5.802,5.693,5.516,5.371,5.275,5.144,5.077,4.934,4.856,4.81,4.748,4.689,4.661,4.637,4.593,4.553,4.505,4.484,4.457,4.428,4.411,4.398,4.383,4.359,4.345,4.326,4.307,4.286,4.258,4.236,4.216,4.209,4.209],[35.941002,35.943001,35.943001,35.942001,35.941002,35.943001,35.943001,35.942001,35.942001,35.942001,35.941002,35.953999,36.081001,36.241001,36.616001,36.805,37.098,37.216999,37.238998,37.202999,37.158001,37.060001,37.009998,36.841,36.726002,36.637001,36.576,36.505001,36.408001,36.318001,36.216999,36.116001,36.054001,35.994999,35.938999,35.856998,35.803001,35.742001,35.694,35.645,35.597,35.535999,35.477001,35.403,35.345001,35.236,35.157001,35.078999,35.098999,35.049999,34.988998,34.941002,34.900002,34.866001,34.831001,34.789001,34.771,34.757999,34.757,34.743999,34.756001,34.764,34.779999,34.804001,34.832001,34.869999,34.889,34.902,34.918999,34.926998,34.939999,34.945,34.950001,34.953999,34.958,34.959,34.960999,34.963001,34.964001,34.966,34.966999,34.967999,34.970001,34.971001,34.972,34.973,34.973999,34.973999,34.974998,34.976002,34.977001,34.977001,34.978001,34.978001,34.979,34.979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_079","geolocation":{"type":"Point","coordinates":[-63.468999999999994,14.641]},"basin":1,"timestamp":"2018-12-25T07:12:00.000Z","date_updated_argovis":"2023-01-31T13:57:33.793Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_079.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":79,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,8,10,16,25,35,46,56,66,76,86,95,105,115,126,135,145,156,166,176,186,195,205,215,225,235,245,256,266,276,286,296,306,316,325,335,346,363,388,413,438,463,488,513,538,563,589,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1339,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1687],[27.332001,27.332001,27.334,27.330999,27.329,27.332001,27.33,27.332001,27.337999,27.34,27.341,27.343,27.360001,27.458,27.173,26.434,25.643999,25.045,24.166,23.414,22.659,21.802,20.708,20.049,19.725,19.136,18.813,18.558001,18.093,17.767,17.290001,16.885,16.48,16.26,15.909,15.641,15.332,15.133,14.934,14.533,14.015,13.083,12.443,11.901,11.387,10.668,10.347,9.583,8.868,8.429,8.149,7.713,7.466,7.386,7.255,7.156,6.919,6.721,6.508,6.337,6.226,6.043,5.889,5.748,5.568,5.377,5.231,5.14,5.054,4.993,4.937,4.896,4.831,4.793,4.752,4.709,4.648,4.599,4.552,4.506,4.46,4.433,4.401,4.373,4.354,4.327,4.311,4.297,4.275,4.258,4.241,4.234,4.233,4.226],[35.527,35.527,35.525002,35.527,35.526001,35.525002,35.526001,35.525002,35.525002,35.525002,35.525002,35.526001,35.541,35.737,36.529999,36.803001,36.955002,37.029999,37.077,37.070999,37.042999,36.995998,36.792999,36.740002,36.685001,36.591,36.556999,36.539001,36.483002,36.455002,36.367001,36.307999,36.243999,36.206001,36.143002,36.092999,36.043999,36.012001,35.976002,35.907001,35.810001,35.629002,35.513,35.431999,35.359001,35.234001,35.205002,35.077999,34.966,34.912998,34.883999,34.837002,34.823002,34.827999,34.825001,34.817001,34.789001,34.778,34.761002,34.757,34.762001,34.766998,34.784,34.810001,34.855,34.890999,34.905998,34.917,34.928001,34.933998,34.941002,34.944,34.950001,34.952,34.955002,34.958,34.959,34.962002,34.964001,34.966,34.967999,34.969002,34.971001,34.972,34.972,34.973999,34.974998,34.974998,34.976002,34.977001,34.978001,34.978001,34.978001,34.979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_078","geolocation":{"type":"Point","coordinates":[-62.533000000000015,14.907]},"basin":1,"timestamp":"2018-12-15T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:57:32.098Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_078.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":78,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,10,15,25,35,46,56,65,76,86,95,106,116,125,136,145,156,166,175,185,195,205,216,226,236,246,255,265,275,285,296,305,315,325,335,345,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1138,1163,1189,1213,1238,1263,1288,1313,1339,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1914,1938,1963,1988,2007],[27.554001,27.561001,27.566,27.566999,27.565001,27.566,27.565001,27.568001,27.57,27.577,27.587,27.562,27.615,26.893,26.283001,25.610001,25.082001,24.433001,23.750999,23.421,22.917,22.326,21.436001,20.819,20.031,19.271999,18.806,18.391001,17.909,17.448,16.907,16.497999,16.181999,15.593,15.182,14.649,14.351,13.91,13.588,13.115,12.913,12.693,12.331,11.753,10.877,10.213,9.759,9.531,8.983,8.537,8.136,7.828,7.441,7.351,7.241,6.87,6.747,6.481,6.287,6.088,6.087,6.076,5.964,5.9,5.767,5.634,5.515,5.411,5.292,5.204,5.066,4.964,4.883,4.813,4.742,4.699,4.619,4.557,4.513,4.478,4.449,4.43,4.408,4.39,4.367,4.344,4.331,4.306,4.29,4.274,4.262,4.251,4.237,4.228,4.219,4.208,4.199,4.191,4.184,4.182,4.176,4.166,4.162,4.159,4.159,4.16,4.159,4.157],[35.488998,35.488998,35.492001,35.491001,35.490002,35.490002,35.492001,35.491001,35.491001,35.493999,35.504002,35.583,35.949001,36.535,36.848,36.908001,36.977001,37.041,37.056,37.193001,37.176998,37.105999,36.992001,36.903999,36.816002,36.707001,36.638,36.556,36.449001,36.368,36.265999,36.198002,36.152,36.047001,36.014999,35.931,35.872002,35.782001,35.716999,35.629002,35.597,35.567001,35.519001,35.419998,35.258999,35.140999,35.085999,35.07,34.986,34.928001,34.881001,34.844002,34.796001,34.794998,34.804001,34.761002,34.757,34.733002,34.720001,34.710999,34.743,34.773998,34.787998,34.813,34.827,34.848999,34.868,34.889,34.905998,34.919998,34.929001,34.932999,34.938,34.945999,34.952999,34.956001,34.958,34.960999,34.964001,34.966999,34.969002,34.970001,34.971001,34.971001,34.972,34.973,34.973,34.973999,34.973999,34.974998,34.974998,34.976002,34.977001,34.977001,34.977001,34.978001,34.978001,34.978001,34.978001,34.979,34.979,34.979,34.979,34.979,34.98,34.98,34.98,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_077","geolocation":{"type":"Point","coordinates":[-63.19900000000001,15.573]},"basin":1,"timestamp":"2018-12-05T07:13:00.000Z","date_updated_argovis":"2023-01-31T13:57:30.388Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_077.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":77,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,55,65,75,85,95,105,115,125,135,146,156,165,175,186,195,205,216,225,235,245,255,265,275,285,296,306,316,326,336,345,363,388,413,438,463,489,513,538,563,588,613,638,663,688,713,738,764,788,812,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1362,1388,1413,1438,1462,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2003],[27.650999,27.648001,27.649,27.65,27.650999,27.652,27.652,27.663,27.667,27.812,28.091999,28.238001,28.025999,27.379,26.667,26.135,25.909,25.214001,24.660999,24.073,23.209,22.408001,21.761,21.197001,20.816999,20.612,20.212999,19.812,19.250999,18.716,18.330999,18.002001,17.445999,17.158001,16.98,16.611,16.146999,15.578,15.211,14.701,14.177,13.723,13.5,12.858,11.9,11.141,10.515,10.14,9.723,9.342,9.054,8.684,8.191,7.749,7.44,7.146,6.945,6.74,6.551,6.377,6.117,5.909,5.905,5.963,5.888,5.768,5.662,5.54,5.395,5.291,5.163,5.027,4.882,4.805,4.733,4.654,4.601,4.553,4.493,4.438,4.402,4.381,4.362,4.336,4.32,4.301,4.284,4.272,4.26,4.25,4.244,4.231,4.219,4.207,4.204,4.203,4.196,4.191,4.191,4.188,4.18,4.172,4.165,4.161,4.16,4.16,4.159,4.158,4.156],[34.556999,34.558998,34.556999,34.558998,34.557999,34.557999,34.556999,34.561001,34.594002,34.918999,35.352001,35.882999,36.313999,36.653,36.681999,36.755001,37.014,37.158001,37.154999,37.206001,37.172001,37.118999,37.037998,36.952999,36.896999,36.869999,36.828999,36.792999,36.712002,36.630001,36.577,36.52,36.419998,36.375999,36.341,36.27,36.189999,36.092999,36.023998,35.923,35.813,35.721001,35.696999,35.584999,35.401001,35.27,35.174,35.122002,35.071999,35.022999,34.993,34.945999,34.883999,34.827999,34.797001,34.765999,34.749001,34.737999,34.729,34.723,34.709999,34.707001,34.728001,34.772999,34.799999,34.820999,34.846001,34.868999,34.888,34.902,34.918999,34.933998,34.944,34.949001,34.955002,34.955002,34.957001,34.960999,34.963001,34.965,34.966,34.967999,34.967999,34.971001,34.973,34.973999,34.973999,34.974998,34.974998,34.976002,34.976002,34.976002,34.977001,34.977001,34.977001,34.977001,34.978001,34.978001,34.978001,34.979,34.978001,34.978001,34.978001,34.979,34.979,34.979,34.979,34.979,34.979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_076","geolocation":{"type":"Point","coordinates":[-62.999000000000024,15.588]},"basin":1,"timestamp":"2018-11-25T07:05:00.000Z","date_updated_argovis":"2023-01-31T13:57:28.671Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_076.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":76,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,55,65,75,85,95,105,116,126,136,145,155,165,175,185,196,205,215,226,236,246,256,265,275,286,295,305,316,325,335,345,363,388,413,438,463,488,513,538,564,588,613,638,663,688,713,738,764,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1137,1163,1188,1213,1238,1263,1288,1313,1338,1363,1389,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2008],[27.895,27.900999,27.903,27.906,27.903,27.9,27.900999,27.905001,27.915001,27.927,27.906,28.038,27.690001,27.198,26.493999,26.125999,25.632,25.021,24.754999,24.521999,24.191,23.573,23.063,22.683001,22.232,21.628,20.774,19.938999,19.431,19.138,18.85,18.357,18.042,17.847,17.337,16.771,16.27,16.009001,15.847,15.552,15.283,14.709,13.853,12.835,11.944,11.38,11.039,10.666,10.545,9.96,9.154,8.696,8.403,8.027,7.771,7.458,7.134,6.847,6.604,6.463,6.326,6.223,6.085,5.946,5.786,5.607,5.452,5.353,5.252,5.048,4.933,4.863,4.781,4.721,4.664,4.609,4.54,4.48,4.446,4.424,4.396,4.37,4.349,4.327,4.304,4.285,4.274,4.269,4.256,4.248,4.236,4.224,4.217,4.214,4.211,4.203,4.188,4.178,4.172,4.166,4.163,4.161,4.159,4.16,4.156,4.154,4.155,4.153,4.154],[34.868999,34.869999,34.867001,34.868,34.869999,34.868999,34.869999,34.868,34.870998,34.882999,34.907001,35.346001,36.25,36.575001,36.785999,37.005001,37.202,37.251999,37.269001,37.266998,37.318001,37.271,37.257,37.212002,37.153999,37.056,36.917999,36.789001,36.716999,36.679001,36.647999,36.57,36.515999,36.491001,36.400002,36.285999,36.202,36.166,36.139,36.084,36.030998,35.924,35.789001,35.603001,35.436001,35.351002,35.299,35.244999,35.249001,35.168999,35.042999,34.98,34.958,34.91,34.890999,34.862,34.830002,34.805,34.786999,34.782001,34.786999,34.796001,34.804001,34.826,34.846001,34.866001,34.889999,34.903,34.910999,34.923,34.932999,34.938,34.944,34.948002,34.952999,34.956001,34.959,34.962002,34.964001,34.965,34.966,34.967999,34.969002,34.970001,34.971001,34.972,34.972,34.973999,34.974998,34.976002,34.976002,34.976002,34.977001,34.977001,34.977001,34.977001,34.978001,34.978001,34.978001,34.978001,34.978001,34.978001,34.978001,34.978001,34.978001,34.979,34.979,34.979,34.979]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_075","geolocation":{"type":"Point","coordinates":[-62.750999999999976,16.181]},"basin":1,"timestamp":"2018-11-15T07:16:00.000Z","date_updated_argovis":"2023-01-31T13:57:26.701Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_075.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":75,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,56,76,95,115,135,156,165,175,185,195,205,215,225,236,246,255,265,275,286,295,305,315,326,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1138,1164,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1789,1813,1838,1863,1885],[28.42,28.421,28.422001,28.422001,28.423,28.423,28.422001,28.422001,28.423,28.423,28.455999,27.580999,26.763,25.806,25.066,23.608999,22.325001,21.628,21.129,20.721001,20.042,19.388,19.07,18.777,18.532,18.431,18.302999,17.868999,17.389,16.882,16.740999,16.562,16.191999,15.688,15.181,14.414,13.872,13.384,13.099,12.073,11.277,11.069,10.746,10.308,10.071,9.596,9.243,8.846,8.292,7.482,7.195,6.9,6.572,6.337,6.101,5.902,5.783,5.669,5.519,5.353,5.209,5.135,5.034,4.945,4.839,4.764,4.693,4.621,4.564,4.513,4.485,4.453,4.424,4.405,4.379,4.354,4.337,4.322,4.306,4.286,4.27,4.263,4.247,4.241,4.229,4.223,4.218,4.212,4.208,4.208,4.207,4.201,4.194,4.19,4.186,4.175,4.166,4.166],[34.702999,34.702,34.702,34.702999,34.701,34.702,34.702999,34.702999,34.702,34.702999,35.066002,36.462002,36.979,37.219002,37.313999,37.178001,37.139999,37.042,36.960999,36.91,36.806,36.720001,36.675999,36.638,36.615002,36.602001,36.578999,36.513,36.423,36.319,36.298,36.265999,36.198002,36.098,35.990002,35.851002,35.776001,35.712002,35.682999,35.474998,35.328999,35.326,35.292999,35.229,35.209,35.132,35.089001,35.037998,34.973999,34.854,34.831001,34.811001,34.787998,34.785,34.792,34.811001,34.831001,34.852001,34.875,34.896999,34.905998,34.917999,34.926998,34.931999,34.938999,34.945,34.949001,34.953999,34.958,34.960999,34.963001,34.964001,34.965,34.966,34.966999,34.967999,34.969002,34.970001,34.971001,34.972,34.972,34.973,34.973,34.973999,34.973999,34.973999,34.974998,34.974998,34.974998,34.974998,34.974998,34.976002,34.976002,34.976002,34.977001,34.977001,34.978001,34.978001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_074","geolocation":{"type":"Point","coordinates":[-61.821000000000026,16.779]},"basin":1,"timestamp":"2018-11-05T07:22:00.000Z","date_updated_argovis":"2023-01-31T13:57:24.999Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_074.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":74,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,65,75,85,95,105,115,125,135,145,155,165,176,185,196,205,215,225,236,245,255,265,276,286,296,306,316,326,336,345,363,388,413,438,463,488,513,539,563,588,612,637,663,688,705],[28.625,28.621,28.624001,28.622,28.622999,28.624001,28.621,28.624001,28.627001,28.642,28.657,28.450001,27.466999,26.403999,25.836,25.167,25.056,24.695999,24.280001,24.309999,23.693001,23.479,23.094,22.531,21.798,21.157,20.795,20.733,20.018999,19.399,18.846001,18.487,18.202,18.148001,17.733,17.613001,17.514999,17.000999,16.601,15.906,15.806,15.329,14.971,14.253,13.584,13.155,12.22,11.06,10.155,9.646,10.063,9.775,9.44,9.194,8.75,8.35,8.097],[34.514999,34.515999,34.514999,34.514,34.513,34.511002,34.513,34.512001,34.514,34.521999,34.558998,35.112999,36.146999,36.646,36.889999,37.122002,37.227001,37.217999,37.210999,37.265999,37.181,37.153999,37.139,37.098999,37.019001,36.912998,36.866001,36.868,36.778999,36.683998,36.591999,36.553001,36.544998,36.534,36.466999,36.438999,36.410999,36.301998,36.227001,36.103001,36.134998,36.02,35.98,35.890999,35.789001,35.700001,35.535,35.306999,35.155998,35.084,35.215,35.176998,35.131001,35.103001,35.077999,35.011002,34.966]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_073","geolocation":{"type":"Point","coordinates":[-61.44499999999999,17.554]},"basin":1,"timestamp":"2018-10-26T07:02:00.000Z","date_updated_argovis":"2023-01-31T13:57:23.291Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_073.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":73,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,65,75,85,95,106,116,126,136,145,155,165,175,185,196,205,215,225,235,246,256,265,275,285,295,305,315,326,336,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,814,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1439,1463,1488,1513,1538,1562,1588,1613,1638,1663,1688,1713,1738,1763,1789,1813,1838,1863,1888,1913,1938,1963,1988,2009],[28.738001,28.743,28.737,28.612,28.587999,28.565001,28.552999,28.534,28.523001,28.516001,28.618,29.110001,28.361,27.789,27.163,26.882,26.329,25.801001,25.018,24.495001,24.075001,23.518999,22.952999,22.385,21.965,21.268,20.653,20.073,19.705,19.368,19.094,18.856001,18.614,18.364,18.253,18.018999,17.688999,17.575001,17.333,16.990999,16.739,16.445,15.967,15.32,14.462,13.816,13.002,12.353,11.889,11.669,11.134,10.635,10.035,9.665,9.089,8.49,8.059,7.541,7.166,7.07,6.744,6.601,6.436,6.369,6.229,6.063,5.936,5.865,5.779,5.652,5.47,5.322,5.219,5.166,4.979,4.827,4.787,4.71,4.68,4.627,4.577,4.564,4.541,4.493,4.456,4.388,4.347,4.314,4.286,4.236,4.194,4.169,4.132,4.043,3.985,3.955,3.932,3.901,3.867,3.794,3.765,3.748,3.729,3.729,3.729,3.717,3.666,3.658,3.651],[34.508999,34.506001,34.505001,34.477001,34.48,34.480999,34.473999,34.471001,34.479,34.493999,34.620998,35.386002,36.157001,36.469002,36.736,36.963001,37.066002,37.124001,37.146999,37.202999,37.242001,37.217999,37.181999,37.122002,37.063999,36.963001,36.866001,36.780998,36.729,36.691002,36.660999,36.637001,36.618,36.581001,36.578999,36.549,36.495998,36.476002,36.435001,36.377998,36.335999,36.290001,36.208,36.098999,35.948002,35.848,35.701,35.59,35.540001,35.530998,35.456001,35.390999,35.307999,35.256001,35.176998,35.09,35.035,34.971001,34.93,34.931999,34.900002,34.918999,34.931,34.948002,34.953999,34.959999,34.964001,34.985001,35.012001,35.025002,35.027,35.022999,35.027,35.028999,35.028,35.016998,35.015999,35.013,35.013,35.008999,35.007999,35.007999,35.007999,35.008999,35.011002,35.007999,35.006001,35.002998,35.002998,35.000999,35,34.999001,34.997002,34.993999,34.991001,34.990002,34.987999,34.987,34.985001,34.981998,34.98,34.979,34.978001,34.978001,34.978001,34.977001,34.974998,34.974998,34.973999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_072","geolocation":{"type":"Point","coordinates":[-61.285000000000025,17.981]},"basin":1,"timestamp":"2018-10-16T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:57:21.527Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_072.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":72,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,55,65,76,86,95,105,115,125,135,145,156,166,176,186,195,205,216,225,235,245,255,265,276,286,296,305,315,325,335,346,363,387,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,814,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1189,1213,1238,1263,1288,1313,1337,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2013,2028],[28.681999,28.68,28.681999,28.684,28.677,28.681,28.677999,28.679001,28.681,28.694,28.864,29.01,28.775999,28.308001,27.547001,26.798,26.209,25.615999,25.099001,24.612,24.289,23.827999,23.275,22.611,22.132999,21.378,20.871,20.344999,19.995001,19.870001,19.655001,19.347,19.152,18.896999,18.632,18.413,18.216999,18.011,17.808001,17.625,17.396,17.171,16.709999,16.049999,15.277,14.448,13.828,13.339,12.774,11.962,11.27,10.782,10.166,9.708,9.102,8.476,8.064,7.705,7.394,7.574,7.562,7.248,6.968,6.726,6.619,6.522,6.242,6.074,5.967,5.841,5.753,5.706,5.614,5.498,5.335,5.264,5.215,5.098,5.001,4.948,4.872,4.754,4.677,4.614,4.522,4.439,4.359,4.32,4.286,4.23,4.171,4.1,4.057,4.005,3.965,3.942,3.921,3.874,3.845,3.809,3.769,3.738,3.699,3.657,3.632,3.611,3.579,3.549,3.514,3.495],[34.285999,34.285999,34.286999,34.285999,34.286999,34.286999,34.285,34.286999,34.286999,34.314999,34.641998,35.384998,35.813999,36.570999,36.747002,36.838001,36.945999,37.049,37.123001,37.153,37.231998,37.242001,37.193001,37.118999,37.069,36.973999,36.898998,36.816002,36.771,36.758999,36.736,36.707001,36.691002,36.664001,36.630001,36.605,36.577,36.546001,36.513,36.483002,36.448002,36.410999,36.334999,36.223,36.091,35.941002,35.84,35.773998,35.68,35.535999,35.423,35.362,35.27,35.202999,35.111,35.021,34.974998,34.938999,34.911999,34.973999,34.999001,34.967999,34.949001,34.938999,34.946999,34.962002,34.938,34.938,34.952999,34.964001,34.990002,35.012001,35.019001,35.016998,35.013,35.018002,35.026001,35.029999,35.028999,35.028999,35.032001,35.028999,35.026001,35.023998,35.02,35.015999,35.012001,35.011002,35.009998,35.006001,35.001999,34.999001,34.997002,34.993999,34.992001,34.991001,34.990002,34.987,34.986,34.983002,34.980999,34.979,34.977001,34.976002,34.974998,34.973999,34.973,34.971001,34.970001,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_071","geolocation":{"type":"Point","coordinates":[-61.15899999999999,18.364]},"basin":1,"timestamp":"2018-10-06T07:12:00.000Z","date_updated_argovis":"2023-01-31T13:57:19.799Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_071.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":71,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,56,65,76,86,95,106,116,125,135,146,156,165,175,185,195,206,216,225,236,246,256,265,275,285,296,306,315,325,335,345,363,388,414,438,463,488,513,538,563,588,613,638,663,688,713,737,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1337,1363,1388,1413,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1989,2014,2026],[28.934999,28.937,28.937,28.943001,28.940001,28.938,28.937,28.938,28.944,28.954,29,28.941999,28.722,27.691999,26.719999,26.003,25.673,25.302,24.872,24.476999,24.153999,23.771999,23.417999,22.724001,22.316999,21.906,21.358,20.868999,20.433001,20.169001,19.815001,19.472,19.257999,19.056,18.899,18.628,18.336,18.068001,17.868999,17.743,17.504,17.275999,16.787001,15.963,15.284,14.482,14.111,13.57,12.75,11.823,11.015,10.961,10.583,9.869,9.11,8.454,8.16,7.844,7.594,7.377,7.17,7.018,6.891,6.668,6.493,6.31,6.24,6.185,6.127,6.058,5.944,5.866,5.77,5.649,5.538,5.456,5.326,5.188,5.05,4.933,4.838,4.782,4.748,4.627,4.606,4.542,4.491,4.421,4.372,4.305,4.243,4.189,4.131,4.07,4.027,3.989,3.942,3.898,3.87,3.841,3.799,3.769,3.739,3.701,3.662,3.629,3.6,3.57,3.539,3.525],[34.359001,34.358002,34.359001,34.359001,34.359001,34.360001,34.361,34.360001,34.359001,34.361,34.622002,35.355,36.252998,36.75,36.82,36.964001,37.030998,37.104,37.132,37.174,37.235001,37.229,37.210999,37.133999,37.098999,37.061001,36.978001,36.903,36.827,36.787998,36.749001,36.702999,36.683998,36.661999,36.666,36.634998,36.595001,36.549999,36.515999,36.505001,36.466999,36.43,36.348,36.209,36.09,35.945999,35.893002,35.804001,35.652,35.484001,35.335999,35.375999,35.341,35.228001,35.112,35.019001,34.990002,34.956001,34.931,34.910999,34.896,34.889999,34.887001,34.872002,34.870998,34.862999,34.873001,34.884998,34.907001,34.931,34.945,34.973,34.990002,35.011002,35.015999,35.021999,35.025002,35.022999,35.019001,35.019001,35.018002,35.02,35.023998,35.014,35.02,35.019001,35.016998,35.014,35.012001,35.008999,35.006001,35.002998,35,34.995998,34.993,34.991001,34.988998,34.986,34.985001,34.984001,34.981998,34.98,34.979,34.977001,34.974998,34.973999,34.973,34.972,34.970001,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_070","geolocation":{"type":"Point","coordinates":[-60.96300000000002,18.331]},"basin":1,"timestamp":"2018-09-26T07:04:00.000Z","date_updated_argovis":"2023-01-31T13:57:18.092Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_070.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,45,56,65,76,85,95,106,116,126,135,145,156,165,176,185,195,206,216,225,235,245,255,266,275,285,296,305,316,326,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,714,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1138,1164,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2002],[28.780001,28.785,28.783001,28.784,28.790001,28.787001,28.788,28.787001,28.787001,28.809,28.827999,28.514,27.736,27.089001,26.750999,26.167,25.639,25.288,24.926001,24.629999,24.32,23.948,23.403999,22.636999,21.997,21.466,20.915001,20.288,19.959999,19.686001,19.417999,19.15,18.999001,18.787001,18.587,18.412001,18.17,18.013,17.794001,17.521999,17.291,17.002001,16.653999,16.038,15.296,14.598,13.911,13.234,12.52,11.664,11.574,11.145,10.557,9.826,9.428,9.008,8.577,8.115,7.806,7.49,7.235,6.993,6.746,6.489,6.426,6.372,6.279,6.154,6.036,6.065,5.997,5.973,5.841,5.655,5.495,5.308,5.175,5.057,4.954,4.914,4.82,4.745,4.698,4.64,4.58,4.519,4.441,4.403,4.366,4.336,4.301,4.257,4.198,4.111,4.018,3.987,3.951,3.911,3.869,3.833,3.8,3.77,3.736,3.698,3.66,3.631,3.604,3.579,3.567],[34.130001,34.130001,34.132,34.130001,34.130001,34.131001,34.130001,34.130001,34.130001,34.213001,35.022999,35.994999,36.466999,36.751999,36.903999,36.966,37.054001,37.125,37.181999,37.224998,37.268002,37.278999,37.220001,37.132999,37.049,36.970001,36.884998,36.791,36.743999,36.710999,36.678001,36.654999,36.651001,36.629002,36.606998,36.584999,36.550999,36.528,36.495998,36.453999,36.415001,36.376999,36.323002,36.221001,36.094002,35.963001,35.858002,35.737999,35.619999,35.456001,35.478001,35.426998,35.323002,35.202999,35.168999,35.112999,35.063999,35.002998,34.963001,34.924999,34.896999,34.875999,34.855,34.838001,34.848999,34.869999,34.875,34.876999,34.882999,34.915001,34.936001,34.969002,34.990002,35.005001,35.014999,35.021,35.02,35.021999,35.015999,35.019001,35.016998,35.013,35.012001,35.011002,35.011002,35.011002,35.005001,35.005001,35.004002,35.005001,35.005001,35.002998,35,34.995998,34.992001,34.990002,34.987999,34.987,34.984001,34.983002,34.980999,34.98,34.978001,34.976002,34.974998,34.973999,34.972,34.971001,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_069","geolocation":{"type":"Point","coordinates":[-60.41699999999997,18.394]},"basin":1,"timestamp":"2018-09-16T07:08:00.000Z","date_updated_argovis":"2023-01-31T13:57:16.404Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_069.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,65,76,85,95,105,116,125,135,145,155,165,175,185,195,206,215,225,235,245,255,265,276,285,295,305,315,326,336,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1889,1913,1938,1963,1988,2012],[28.766001,28.771,28.768,28.754999,28.756001,28.712,28.677999,28.674,28.674999,28.660999,28.643999,28.471001,27.815001,27.152,26.846001,26.367001,25.813,25.330999,24.864,24.556,24.101999,23.556,23.070999,22.462,21.722,21.25,20.513,19.899,19.598,19.368,19.136999,18.802999,18.629,18.493999,18.343,18.205999,18.049999,17.865,17.642,17.492001,17.247999,16.985001,16.528,16.047001,15.46,14.862,14.148,13.576,13.202,12.632,12.088,11.487,10.667,9.874,9.466,9.066,8.749,8.422,7.973,7.665,7.454,7.175,6.948,6.777,6.563,6.394,6.152,6.083,6.091,6.005,6.002,5.879,5.723,5.633,5.502,5.396,5.257,5.185,5.035,4.921,4.814,4.829,4.663,4.507,4.555,4.53,4.47,4.417,4.353,4.294,4.244,4.202,4.156,4.101,4.04,3.998,3.955,3.908,3.864,3.823,3.782,3.749,3.712,3.683,3.655,3.626,3.592,3.567,3.541],[34.152,34.150002,34.150002,34.151001,34.151001,34.157001,34.157001,34.159,34.166,34.188,34.356998,35.473999,36.259998,36.564999,36.943001,36.966,37.028,37.073002,37.141998,37.185001,37.195,37.186001,37.165001,37.098,36.998001,36.938,36.838001,36.748001,36.710999,36.691002,36.666,36.622002,36.605,36.59,36.573002,36.555,36.535,36.507,36.472,36.448002,36.409,36.366001,36.290001,36.210999,36.117001,36.016998,35.884998,35.798,35.759998,35.674,35.597,35.500999,35.368,35.234001,35.173,35.125,35.096001,35.057999,35.005001,34.967999,34.959,34.931999,34.911999,34.908001,34.893002,34.886002,34.869999,34.884998,34.915001,34.936001,34.970001,34.985001,34.994999,35.002998,35.012001,35.021999,35.02,35.025002,35.018002,35.012001,35.009998,35.029999,35.015999,34.995998,35.012001,35.014999,35.014,35.012001,35.007999,35.006001,35.001999,35.000999,34.998001,34.995998,34.993,34.991001,34.987999,34.986,34.983002,34.980999,34.979,34.978001,34.976002,34.974998,34.974998,34.973999,34.973,34.972,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_068","geolocation":{"type":"Point","coordinates":[-60.43599999999998,18.353]},"basin":1,"timestamp":"2018-09-06T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:57:14.583Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_068.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,56,65,76,85,95,106,115,125,136,146,155,165,175,186,195,206,216,225,235,245,255,266,275,285,296,305,316,326,336,346,363,388,413,439,463,488,513,538,563,588,613,638,662,688,713,739,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2014],[28.167999,28.167999,28.167,28.167999,28.174,28.169001,28.174999,28.176001,28.187,28.204,28.459,28.572001,28.309999,27.527,26.573,25.865999,25.375999,24.976999,24.653,24.42,24.054001,23.504,23.184999,22.497999,21.657,21.058001,20.443001,20.066,19.693001,19.500999,19.287001,19.114,18.919001,18.674999,18.504,18.327,18.139999,17.938999,17.716,17.552999,17.327999,17.106001,16.777,16.201,15.459,14.716,14.268,13.752,13.135,12.497,12.109,11.488,10.856,10.336,9.495,8.844,8.348,7.902,7.523,7.268,6.966,6.958,6.891,6.685,6.552,6.485,6.292,5.853,5.888,5.854,5.898,5.848,5.755,5.59,5.448,5.294,5.194,5.11,5.044,5.038,4.953,4.889,4.843,4.75,4.675,4.617,4.543,4.476,4.41,4.31,4.248,4.185,4.117,4.068,4.015,3.966,3.915,3.877,3.846,3.815,3.781,3.749,3.713,3.682,3.662,3.633,3.606,3.573,3.551],[34.354,34.353001,34.354,34.356998,34.355,34.355,34.359001,34.355,34.394001,34.511002,35.116001,36.09,36.716,36.933998,36.946999,37.012001,37.062,37.094002,37.154999,37.25,37.255001,37.196999,37.209,37.126999,36.997002,36.910999,36.825001,36.768002,36.716999,36.693001,36.667999,36.655998,36.637001,36.606998,36.591,36.57,36.544998,36.516998,36.483002,36.458,36.424,36.389,36.335999,36.243999,36.116001,35.993,35.922001,35.844002,35.744999,35.644001,35.591,35.497002,35.404999,35.323002,35.187,35.088001,35.015999,34.963001,34.917,34.890999,34.862,34.893002,34.912998,34.908001,34.910999,34.925999,34.921001,34.873001,34.907001,34.932999,34.974998,35.002998,35.019001,35.018002,35.014,35.008999,35.016998,35.015999,35.021999,35.030998,35.027,35.028999,35.028,35.025002,35.021999,35.02,35.016998,35.014,35.006001,35.000999,35,34.998001,34.995998,34.993999,34.990002,34.987999,34.985001,34.984001,34.981998,34.98,34.979,34.977001,34.974998,34.973999,34.973,34.972,34.970001,34.970001,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_067","geolocation":{"type":"Point","coordinates":[-60.50400000000002,18.315]},"basin":1,"timestamp":"2018-08-27T07:04:00.000Z","date_updated_argovis":"2023-01-31T13:57:12.788Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_067.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":67,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,55,66,75,86,95,106,115,125,135,145,155,165,175,185,196,206,215,225,236,246,256,265,275,285,295,305,315,326,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1389,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1737,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2010],[28.315001,28.316,28.315001,28.313,28.313,28.316,28.318001,28.318001,28.323,28.483,28.527,28.146,27.200001,26.511,25.885,25.507,25.277,24.948,24.587999,24.332001,23.931999,23.511999,22.885,21.986,21.608999,21.171,20.747999,20.219,19.775999,19.469,19.070999,18.912001,18.719999,18.541,18.361,18.195,18.014,17.804001,17.591999,17.349001,17.124001,16.875999,16.575001,15.94,15.145,14.571,13.873,13.196,12.894,12.386,11.668,10.892,10.282,9.747,9.309,8.585,8.19,7.596,7.195,7.098,6.724,6.502,6.35,6.344,6.329,6.267,6.181,5.944,5.805,5.642,5.607,5.51,5.448,5.45,5.5,5.338,5.215,5.038,5.038,5.078,4.964,4.851,4.784,4.708,4.627,4.566,4.503,4.439,4.355,4.306,4.249,4.192,4.139,4.102,4.065,4.034,3.993,3.942,3.887,3.846,3.796,3.765,3.734,3.694,3.666,3.638,3.607,3.583,3.569],[34.528,34.528,34.528,34.529999,34.528,34.530998,34.528999,34.530998,34.534,35.094002,36.050999,36.712002,36.881001,36.966999,36.963001,37.032001,37.092999,37.131001,37.178001,37.247002,37.234001,37.200001,37.147999,37.026001,36.979,36.922001,36.855,36.778,36.716,36.668999,36.631001,36.630001,36.617001,36.597,36.571999,36.549,36.528,36.497002,36.465,36.423,36.386002,36.345001,36.293999,36.189999,36.061001,35.966999,35.856998,35.744999,35.723,35.650002,35.522999,35.396,35.310001,35.231998,35.171001,35.062,35.015999,34.936001,34.889,34.897999,34.851002,34.841,34.849998,34.879002,34.904999,34.912998,34.917,34.902,34.907001,34.909,34.931,34.941002,34.952999,34.977001,35.014999,35.011002,35.007,34.991001,35.005001,35.028999,35.026001,35.02,35.02,35.021,35.018002,35.018002,35.015999,35.014,35.007999,35.006001,35.001999,35,34.997002,34.994999,34.993,34.992001,34.990002,34.987,34.984001,34.981998,34.98,34.979,34.977001,34.974998,34.974998,34.973999,34.973,34.972,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_066","geolocation":{"type":"Point","coordinates":[-60.557000000000016,18.544]},"basin":1,"timestamp":"2018-08-17T07:00:00.000Z","date_updated_argovis":"2023-01-31T13:57:11.184Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_066.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,65,75,85,96,105,115,125,136,146,156,165,175,185,195,206,216,225,236,246,255,265,275,285,296,306,316,326,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1138,1162,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2006],[28.26,28.261999,28.261,28.264,28.264,28.264,28.264,28.263,28.294001,28.396999,28.360001,28.285,27.464001,26.405001,25.864,25.466,25.167,24.782,24.565001,24.191,23.879999,23.587999,23.101,22.379,21.886,21.389,20.716,20.044001,19.625,19.462,19.289,19.142,18.893,18.705999,18.497999,18.312,18.107,17.872999,17.577,17.313,17.073,16.832001,16.478001,16.032,15.404,14.676,14.069,13.657,12.962,12.525,12.163,11.775,11.196,10.353,9.355,8.88,8.392,7.981,7.426,7.092,6.724,6.502,6.376,6.189,6.009,5.855,5.815,5.759,5.741,5.757,5.612,5.468,5.422,5.473,5.409,5.332,5.21,5.126,5.046,4.965,4.895,4.841,4.776,4.706,4.65,4.599,4.534,4.484,4.41,4.342,4.284,4.23,4.162,4.123,4.086,4.04,3.998,3.948,3.909,3.876,3.844,3.807,3.777,3.746,3.704,3.663,3.627,3.573,3.539],[34.507999,34.507,34.507,34.507999,34.506001,34.507999,34.506001,34.507999,34.734001,35.777,36.074001,36.507999,36.980999,37.002998,37.021,37.080002,37.130001,37.097,37.187,37.18,37.205002,37.187,37.173,37.088001,37.029999,36.948002,36.852001,36.745998,36.673,36.648998,36.639,36.629002,36.612,36.603001,36.59,36.57,36.544998,36.512001,36.463001,36.417,36.376999,36.338001,36.280998,36.213001,36.105999,35.983002,35.882999,35.823002,35.701,35.637001,35.606998,35.568001,35.484001,35.335999,35.158001,35.108002,35.056,35.013,34.93,34.889999,34.848,34.84,34.834999,34.823002,34.817001,34.816002,34.837002,34.859001,34.881001,34.910999,34.917,34.915001,34.926998,34.963001,34.987,35.004002,35.001999,35.004002,35.007999,35.008999,35.012001,35.016998,35.016998,35.014999,35.014,35.013,35.011002,35.009998,35.007999,35.005001,35.002998,35.000999,34.998001,34.995998,34.993999,34.992001,34.990002,34.987999,34.987,34.986,34.985001,34.983002,34.981998,34.981998,34.98,34.978001,34.976002,34.971001,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_065","geolocation":{"type":"Point","coordinates":[-60.557000000000016,18.993]},"basin":1,"timestamp":"2018-08-07T06:57:00.000Z","date_updated_argovis":"2023-01-31T13:57:09.569Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_065.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,56,65,76,86,96,105,115,125,135,146,155,166,176,185,195,205,215,225,235,246,255,265,276,286,296,306,316,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,739,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1412,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013],[28.152,28.153,28.155001,28.152,28.153999,28.153999,28.153,28.155001,28.191999,28.209999,28.259001,27.865999,26.750999,26.290001,25.73,25.423,25.142,24.952,24.528,24.023001,23.634001,22.934999,22.372,21.778999,21.278,20.893999,20.514999,20.038,19.746,19.548,19.323999,19.125,18.934999,18.777,18.587,18.424999,18.233999,18.089001,17.888,17.764,17.568001,17.212,16.683001,16.084999,15.346,14.719,14.138,13.639,13.013,12.318,11.667,11.134,10.62,10.334,10.153,9.668,9.2,8.631,8.408,8.043,7.342,7.12,6.889,6.741,6.512,6.326,6.148,6.028,5.94,5.844,5.767,5.764,5.646,5.546,5.454,5.358,5.323,5.236,5.167,5.102,5.046,4.942,4.861,4.786,4.726,4.665,4.596,4.528,4.469,4.407,4.327,4.264,4.198,4.134,4.077,4.024,3.987,3.951,3.91,3.865,3.838,3.796,3.763,3.732,3.699,3.664,3.631,3.598,3.573],[35.269001,35.268002,35.269001,35.269001,35.269001,35.27,35.27,35.269001,35.521,36.056,36.528,37.008999,36.967999,37.026001,37.035999,37.095001,37.116001,37.16,37.194,37.235001,37.25,37.173,37.098,37.014999,36.955002,36.909,36.865002,36.777,36.734001,36.710999,36.686001,36.661999,36.637001,36.617001,36.597,36.578999,36.555,36.534,36.507,36.492001,36.465,36.414001,36.326,36.224998,36.095001,35.987,35.893002,35.824001,35.729,35.611,35.506001,35.424999,35.347,35.32,35.326,35.252998,35.182999,35.097,35.081001,35.042,34.938,34.918999,34.907001,34.909,34.900002,34.896999,34.900002,34.905998,34.917999,34.931999,34.945,34.973,34.981998,34.992001,34.997002,35.001999,35.014999,35.016998,35.021,35.025002,35.028,35.027,35.026001,35.023998,35.021999,35.02,35.016998,35.014999,35.012001,35.008999,35.006001,35.002998,34.999001,34.995998,34.993999,34.991001,34.990002,34.987999,34.986,34.983002,34.981998,34.98,34.978001,34.976002,34.973999,34.973,34.972,34.971001,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_064","geolocation":{"type":"Point","coordinates":[-60.262,19.442]},"basin":1,"timestamp":"2018-07-28T07:05:00.000Z","date_updated_argovis":"2023-01-31T13:57:07.883Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_064.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,55,65,75,85,95,105,115,125,135,146,156,165,175,185,195,205,216,226,235,245,255,265,275,285,295,305,315,326,336,345,364,388,413,438,463,488,513,538,563,588,613,638,663,689,713,738,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1737,1764,1788,1813,1838,1863,1888,1913,1938,1963,1989,2013],[27.863001,27.868,27.872999,27.875,27.872,27.875,27.878,27.879,27.882999,27.952999,27.785,26.797001,26.32,25.757999,25.457001,25.15,24.653,24.240999,23.955999,23.677,23.476999,23.167999,22.468,21.865999,21.570999,21.132,20.631001,20.094,19.673,19.427999,19.122999,18.981001,18.753,18.539,18.292999,18.139999,18.021999,17.886999,17.732,17.641001,17.421,17.146,16.624001,15.978,15.338,14.828,14.304,13.734,13.24,12.73,12.207,11.931,11.414,10.873,10.26,9.767,9.436,8.907,8.491,8.229,7.854,7.557,7.206,6.668,6.422,6.436,6.479,6.399,6.304,6.182,6.106,5.96,5.859,5.744,5.665,5.531,5.422,5.31,5.193,5.089,5.017,4.941,4.847,4.774,4.702,4.623,4.553,4.48,4.411,4.36,4.307,4.266,4.208,4.167,4.115,4.054,4.008,3.971,3.909,3.856,3.814,3.789,3.746,3.738,3.695,3.663,3.628,3.575,3.527],[35.522999,35.521999,35.518002,35.521999,35.522999,35.521999,35.521999,35.521999,35.521999,35.773998,36.52,36.789001,36.916,36.944,37.042,37.069,37.084999,37.134998,37.172001,37.178001,37.182999,37.174,37.105999,37.006001,36.959,36.890999,36.849998,36.794998,36.714001,36.68,36.632999,36.623001,36.599998,36.581001,36.558998,36.547001,36.534,36.515999,36.494999,36.477001,36.441002,36.394001,36.306999,36.205002,36.099998,36.014,35.936001,35.839001,35.761002,35.678001,35.598999,35.568001,35.490002,35.401001,35.305,35.242001,35.209,35.137001,35.082001,35.069,35.02,34.992001,34.943001,34.859001,34.837002,34.873001,34.924,34.938,34.950001,34.963001,34.993999,35.000999,35.008999,35.02,35.027,35.023998,35.028,35.028,35.023998,35.023998,35.026001,35.026001,35.025002,35.025002,35.022999,35.021,35.02,35.016998,35.014999,35.012001,35.008999,35.007,35.005001,35.002998,35.000999,34.998001,34.999001,34.997002,34.991001,34.985001,34.983002,34.984001,34.98,34.983002,34.981998,34.980999,34.98,34.974998,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_063","geolocation":{"type":"Point","coordinates":[-59.791,19.918]},"basin":1,"timestamp":"2018-07-18T07:02:00.000Z","date_updated_argovis":"2023-01-31T13:57:06.168Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_063.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":63,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,55,66,75,85,95,106,115,125,136,146,155,165,175,186,195,205,215,225,236,246,255,266,276,286,295,305,316,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1562,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1979],[27.861,27.864,27.863001,27.864,27.863001,27.863001,27.865999,27.862,27.865,27.868,27.639999,26.827,26.334,25.857,25.309,25.201,24.756001,24.271999,24.049,23.912001,23.606001,23.351,22.987,22.223,21.646999,20.919001,20.479,19.816999,19.382999,19.224001,19.093,18.952999,18.802,18.667,18.500999,18.285,18.129999,17.971001,17.724001,17.407,17.17,17.035999,16.629999,16.288,15.78,15.201,14.607,14.06,13.555,13.086,12.778,12.464,11.899,11.35,10.979,10.538,9.922,9.384,8.996,8.51,8.016,7.572,7.248,7.006,6.775,6.606,6.45,6.293,6.106,5.931,5.884,5.82,5.747,5.672,5.599,5.533,5.488,5.463,5.369,5.265,5.186,5.08,4.958,4.89,4.818,4.73,4.665,4.597,4.554,4.504,4.41,4.349,4.292,4.242,4.19,4.134,4.076,4.015,3.957,3.916,3.884,3.838,3.79,3.737,3.691,3.651,3.614,3.603],[36.502998,36.501999,36.501999,36.500999,36.501999,36.502998,36.500999,36.502998,36.501999,36.501999,36.688,36.924,36.933998,36.922001,36.895,37.073002,37.127998,37.138,37.223999,37.285,37.265999,37.237,37.207001,37.094002,37.002998,36.900002,36.84,36.728001,36.664001,36.643002,36.630001,36.618,36.606998,36.595001,36.581001,36.567001,36.558998,36.542,36.501999,36.449001,36.41,36.387001,36.313999,36.255001,36.176998,36.082001,35.987,35.900002,35.819,35.744999,35.695999,35.646,35.564999,35.492001,35.450001,35.398998,35.317001,35.243999,35.191002,35.127998,35.063,35.011002,34.977001,34.952999,34.931,34.919998,34.914001,34.909,34.908001,34.908001,34.922001,34.937,34.950001,34.963001,34.973999,34.990002,35.002998,35.021,35.029999,35.030998,35.036999,35.035,35.033001,35.030998,35.028999,35.026001,35.022999,35.019001,35.016998,35.015999,35.011002,35.007999,35.005001,35.001999,34.999001,34.997002,34.993999,34.991001,34.987999,34.986,34.984001,34.981998,34.980999,34.98,34.978001,34.974998,34.973999,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_062","geolocation":{"type":"Point","coordinates":[-59.480999999999995,20.104]},"basin":1,"timestamp":"2018-07-08T07:00:00.000Z","date_updated_argovis":"2023-01-31T13:57:04.498Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_062.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":62,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,55,65,75,85,96,105,115,125,136,146,155,165,175,186,195,205,215,226,236,246,256,266,275,285,296,306,315,325,335,346,363,388,414,438,463,488,513,538,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1263,1287,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1889,1913,1938,1963,1988,2014,2026],[27.631001,27.635,27.634001,27.634001,27.638,27.635,27.638,27.636999,27.636999,27.639,27.643,27.18,26.389999,26.145,25.726999,25.097,24.509001,24.496,24.274,23.962,23.77,23.226,22.629,21.972,21.451,21.216,20.913,20.607,20.339001,19.931,19.627001,19.368999,19.066,18.687,18.499001,18.263,18.07,17.816,17.639999,17.431,17.257,17.080999,16.686001,16.033001,15.44,14.917,14.328,13.846,13.361,12.915,12.299,11.624,11.123,10.586,10.153,9.639,9.28,8.824,8.123,7.831,7.576,7.263,7.116,6.811,6.738,6.576,6.361,6.258,6.118,5.97,5.873,5.784,5.697,5.606,5.546,5.47,5.401,5.318,5.234,5.168,5.097,5.044,4.979,4.921,4.851,4.798,4.737,4.672,4.632,4.587,4.505,4.445,4.39,4.327,4.259,4.213,4.162,4.105,4.066,4.023,3.982,3.932,3.885,3.849,3.807,3.755,3.735,3.705,3.665,3.661],[36.299,36.306,36.306999,36.306,36.305,36.307999,36.305,36.306,36.306,36.307999,36.444,37.041,37.046001,37.115002,37.164001,37.131001,37.083,37.240002,37.257,37.223999,37.258999,37.220001,37.136002,37.050999,36.973999,36.967999,36.952999,36.911999,36.888,36.831001,36.797001,36.759998,36.716999,36.662998,36.632999,36.598,36.566002,36.523998,36.494999,36.459999,36.43,36.398998,36.331001,36.220001,36.119999,36.035,35.941002,35.862999,35.792999,35.721001,35.626999,35.527,35.463001,35.387001,35.331001,35.259998,35.216,35.151001,35.037998,35.011002,34.981998,34.945999,34.948002,34.912998,34.926998,34.917999,34.905998,34.908001,34.91,34.917,34.932999,34.941002,34.952999,34.959999,34.974998,34.988998,35,35.007,35.011002,35.014999,35.019001,35.02,35.022999,35.023998,35.025002,35.026001,35.027,35.027,35.027,35.025002,35.022999,35.021999,35.02,35.018002,35.016998,35.016998,35.015999,35.013,35.012001,35.009998,35.008999,35.006001,35.004002,35.001999,35,34.997002,34.995998,34.994999,34.993,34.993]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_061","geolocation":{"type":"Point","coordinates":[-59.367999999999995,20.241]},"basin":1,"timestamp":"2018-06-28T07:06:00.000Z","date_updated_argovis":"2023-01-31T13:57:02.713Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_061.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":61,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,65,75,85,96,105,115,126,136,146,155,165,175,185,195,206,216,226,236,245,256,266,275,285,295,305,315,325,335,346,363,388,414,438,463,488,513,538,563,588,613,638,663,688,713,739,763,788,813,838,863,888,913,938,963,989,1013,1038,1063,1088,1113,1138,1163,1188,1214,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013,2027],[27.356001,27.355,27.360001,27.358999,27.360001,27.360001,27.361,27.362,27.363001,27.363001,27.354,26.815001,26.521999,26.087999,25.804001,25.274,24.806,24.391001,23.934999,23.483,23.101,22.726,22.252001,21.816999,21.459999,21.01,20.513,20.181,19.948,19.579,19.291,19.021999,18.795,18.596001,18.35,17.945,17.701,17.437,17.266001,17.101999,16.834,16.559,16.216,15.713,15.176,14.71,14.182,13.576,13.1,12.677,12.278,11.635,10.902,10.336,9.723,9.025,8.488,8.139,7.848,7.549,7.247,7.052,6.882,6.752,6.614,6.454,6.287,6.149,6.047,5.956,5.862,5.77,5.701,5.632,5.562,5.478,5.407,5.348,5.273,5.19,5.116,5.06,5.008,4.932,4.878,4.811,4.745,4.675,4.58,4.536,4.465,4.408,4.36,4.314,4.271,4.218,4.164,4.103,4.067,4.021,3.968,3.922,3.879,3.855,3.808,3.756,3.707,3.657,3.615,3.589],[36.459999,36.463001,36.462002,36.463001,36.463001,36.463001,36.462002,36.460999,36.460999,36.460999,36.464001,36.583,36.796001,37.111,37.188999,37.198002,37.261002,37.297001,37.304001,37.284,37.25,37.212002,37.157001,37.102001,37.054001,36.994999,36.922001,36.875999,36.839001,36.776001,36.731998,36.712002,36.676998,36.646,36.609001,36.543999,36.502998,36.459,36.43,36.402,36.356998,36.310001,36.250999,36.166,36.078999,36.001999,35.916,35.816002,35.743999,35.681,35.623001,35.528999,35.414001,35.330002,35.240002,35.138,35.061001,35.015999,34.980999,34.945,34.909,34.895,34.887001,34.896999,34.903,34.904999,34.907001,34.908001,34.915001,34.921001,34.931,34.941002,34.952,34.962002,34.972,34.985001,34.998001,35.005001,35.011002,35.014999,35.016998,35.021,35.021999,35.023998,35.025002,35.025002,35.025002,35.026001,35.025002,35.025002,35.021999,35.021,35.019001,35.02,35.018002,35.016998,35.014,35.012001,35.009998,35.007,35.006001,35.004002,35.001999,35.000999,34.999001,34.998001,34.994999,34.993,34.991001,34.988998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_060","geolocation":{"type":"Point","coordinates":[-59.524,20.459]},"basin":1,"timestamp":"2018-06-18T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:57:01.083Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_060.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":60,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,55,66,75,85,96,106,116,126,135,145,155,165,175,185,196,206,216,225,235,245,255,265,275,286,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1164,1188,1212,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1512,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1989,2001],[27.43,27.429001,27.43,27.433001,27.43,27.434,27.431,27.426001,27.294001,27.003,26.636,26.511999,26.419001,26.216,26.038,25.6,25.164,24.684,24.315001,23.865,23.483,23.021999,22.617001,22.145,21.648001,21.105,20.518,20.098,19.684999,19.393999,19.149,18.927,18.747,18.506001,18.250999,18.009001,17.764,17.589001,17.393999,17.238001,16.971001,16.726,16.253,15.753,15.269,14.798,14.445,13.981,13.42,12.875,12.287,11.793,11.215,10.632,10.222,9.755,9.269,8.777,8.196,7.771,7.515,7.161,6.906,6.738,6.739,6.681,6.461,6.291,6.115,6.031,5.918,5.842,5.769,5.697,5.616,5.533,5.464,5.395,5.329,5.279,5.22,5.15,5.076,4.997,4.937,4.871,4.817,4.758,4.682,4.601,4.551,4.509,4.448,4.371,4.305,4.26,4.2,4.125,4.087,4.058,4.017,3.96,3.911,3.858,3.816,3.774,3.739,3.706,3.692],[36.470001,36.472,36.470001,36.470001,36.471001,36.470001,36.471001,36.470001,36.466999,36.490002,36.568001,36.612999,36.828999,37.014,37.108002,37.153999,37.245998,37.304001,37.313999,37.306,37.285,37.247002,37.199001,37.143002,37.082001,37.009998,36.924999,36.856998,36.785,36.741001,36.714001,36.693001,36.667999,36.632999,36.591,36.550999,36.512001,36.484001,36.450001,36.424,36.381001,36.338001,36.256001,36.169998,36.089001,36.014999,35.956001,35.882,35.792,35.712002,35.627998,35.554001,35.464001,35.382,35.328999,35.257,35.181999,35.106998,35.029999,34.976002,34.946999,34.904999,34.884998,34.884998,34.914001,34.921001,34.908001,34.907001,34.905998,34.914001,34.924,34.937,34.945999,34.953999,34.964001,34.974998,34.985001,34.993999,35.000999,35.007999,35.014,35.016998,35.02,35.021999,35.022999,35.023998,35.025002,35.025002,35.025002,35.021999,35.021999,35.022999,35.022999,35.02,35.016998,35.016998,35.014999,35.011002,35.007999,35.009998,35.008999,35.007,35.004002,35.000999,35,34.999001,34.997002,34.994999,34.995998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_059","geolocation":{"type":"Point","coordinates":[-59.80799999999999,20.893]},"basin":1,"timestamp":"2018-06-08T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:59.394Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_059.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":59,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,45,55,66,75,86,96,105,115,125,135,145,155,165,175,186,196,206,215,226,236,245,255,265,276,286,296,306,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,789,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1913,1938,1963,1988,2012],[27.361,27.363001,27.372,27.368,27.379999,27.379999,27.381001,27.364,26.908001,26.694,26.485001,26.434,26.267,25.899,25.645,25.382,25.114,24.822001,24.384001,24.016001,23.605,23.066,22.714001,22.363001,21.802,21.393,21.014999,20.649,20.295,19.937,19.399,19.15,19.014999,18.804001,18.530001,18.323,18.035,17.728001,17.531,17.296,17.004,16.799,16.434999,15.897,15.318,14.86,14.386,13.828,13.338,12.914,12.508,12.003,11.523,11.046,10.578,10.067,9.409,8.867,8.296,7.955,7.771,7.379,7.186,6.979,6.761,6.596,6.392,6.245,6.124,6.023,5.93,5.85,5.774,5.712,5.636,5.571,5.515,5.455,5.385,5.327,5.254,5.187,5.107,5.005,4.919,4.854,4.796,4.729,4.666,4.624,4.563,4.504,4.455,4.404,4.338,4.28,4.222,4.186,4.121,4.074,4.025,3.984,3.949,3.919,3.888,3.846,3.803,3.755,3.711],[36.280998,36.278999,36.278999,36.280998,36.279999,36.278,36.276001,36.278999,36.390999,36.463001,36.533001,36.722,36.923,37.009998,37.077,37.154999,37.188,37.255001,37.289001,37.299,37.286999,37.248001,37.214001,37.171001,37.101002,37.047001,36.993999,36.941002,36.890999,36.834999,36.728001,36.68,36.667,36.658001,36.625999,36.602001,36.556,36.504002,36.472,36.432999,36.382999,36.348999,36.285999,36.194,36.096001,36.022999,35.945999,35.855,35.777,35.710999,35.652,35.580002,35.508999,35.437,35.379002,35.308998,35.209,35.127998,35.047001,35.019001,35.019001,34.973999,34.964001,34.946999,34.926998,34.919998,34.907001,34.903,34.903999,34.911999,34.923,34.935001,34.943001,34.952,34.962002,34.971001,34.980999,34.988998,34.994999,35.007999,35.011002,35.015999,35.019001,35.021,35.022999,35.022999,35.022999,35.022999,35.022999,35.025002,35.025002,35.025002,35.023998,35.022999,35.018002,35.014999,35.013,35.013,35.011002,35.011002,35.009998,35.008999,35.008999,35.007999,35.007999,35.006001,35.004002,35.000999,34.998001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_058","geolocation":{"type":"Point","coordinates":[-60.14699999999999,21.17]},"basin":1,"timestamp":"2018-05-29T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:57.700Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_058.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":58,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,65,75,86,95,106,115,125,136,145,155,166,176,186,195,205,215,226,236,245,255,265,275,285,296,306,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,987,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1364,1388,1413,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1937,1963,1988,2013,2027],[26.5,26.499001,26.497,26.499001,26.499001,26.499001,26.500999,26.497999,26.500999,26.504,26.490999,26.320999,26.291,26.225,25.974001,25.724001,25.462999,25.141001,24.697001,24.191999,23.556,22.962,22.573,22.271,21.864,21.400999,21.004999,20.606001,20.007,19.674999,19.382999,19.176001,19.021999,18.780001,18.495001,18.225,18.047001,17.813,17.542999,17.353001,17.162001,16.865,16.400999,15.874,15.373,14.893,14.34,13.838,13.464,12.977,12.765,12.334,11.9,11.191,10.404,9.728,9.048,8.451,8.09,7.764,7.655,7.436,7.18,7.033,6.821,6.62,6.433,6.255,6.043,5.936,5.838,5.834,5.818,5.755,5.703,5.613,5.533,5.464,5.385,5.329,5.257,5.17,5.105,5.056,5,4.924,4.86,4.789,4.725,4.643,4.556,4.496,4.439,4.387,4.337,4.284,4.236,4.188,4.136,4.081,4.034,4,3.941,3.902,3.868,3.839,3.789,3.739,3.713,3.707],[36.324001,36.324001,36.325001,36.324001,36.325001,36.324001,36.323002,36.325001,36.324001,36.326,36.341,36.506001,36.736,36.962002,37.023998,37.07,37.174,37.241001,37.278,37.313999,37.291,37.238998,37.195999,37.153999,37.09,37.030998,36.980999,36.917999,36.808998,36.756001,36.719002,36.702999,36.702,36.671001,36.627998,36.585999,36.556,36.518002,36.473,36.441002,36.409,36.359001,36.280998,36.191002,36.106998,36.025002,35.938,35.853001,35.792,35.709999,35.702999,35.638,35.587002,35.483002,35.341999,35.237999,35.143002,35.061001,35.018002,34.984001,34.995998,34.981998,34.953999,34.945999,34.923,34.903,34.896,34.890999,34.880001,34.883999,34.891998,34.916,34.935001,34.944,34.956001,34.969002,34.983002,34.990002,34.997002,35.002998,35.007999,35.014,35.018002,35.02,35.021,35.022999,35.022999,35.022999,35.023998,35.025002,35.023998,35.022999,35.021,35.018002,35.015999,35.014999,35.013,35.012001,35.009998,35.007,35.004002,35.004002,35.000999,35,35,35.001999,34.999001,34.995998,34.994999,34.995998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_057","geolocation":{"type":"Point","coordinates":[-60.16500000000002,21.064]},"basin":1,"timestamp":"2018-05-19T07:01:00.000Z","date_updated_argovis":"2023-01-31T13:56:55.908Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_057.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":57,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,36,46,55,65,75,86,95,105,116,125,135,145,155,165,175,185,196,205,215,225,235,245,255,265,275,285,295,306,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,964,988,1013,1038,1063,1088,1113,1138,1163,1189,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1688,1712,1739,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2014,2026],[26.117001,26.112,26.111,26.118,26.118999,26.120001,26.113001,26.114,26.117001,26.115999,26.138,26.153,26.039,26.027,25.844,25.605,25.330999,25.098,24.983,24.879999,24.594999,24.079,23.485001,23.011999,22.466,22.138,21.709999,21.421,21.183001,20.797001,20.354,19.964001,19.733,19.48,19.080999,18.658001,18.358999,18.127001,17.899,17.667999,17.384001,17.18,16.739,16.136999,15.541,14.848,14.346,13.95,13.636,13.342,12.705,12.056,11.566,11.028,10.644,10.583,10.106,9.277,8.814,8.495,8.119,7.767,7.355,7.028,6.61,6.412,6.302,6.324,6.179,6.075,5.983,5.884,5.793,5.738,5.672,5.599,5.518,5.442,5.378,5.3,5.228,5.15,5.087,5.023,4.943,4.88,4.821,4.75,4.682,4.612,4.548,4.486,4.422,4.343,4.281,4.241,4.207,4.183,4.157,4.13,4.092,4.046,4.015,3.978,3.926,3.88,3.824,3.773,3.704,3.658],[36.446999,36.446999,36.445999,36.445999,36.445999,36.445999,36.448002,36.448002,36.446999,36.445,36.459999,36.765999,36.904999,36.981998,37.014,37.089001,37.089001,37.101002,37.171001,37.202999,37.27,37.299999,37.269001,37.226002,37.161999,37.116001,37.062,37.029999,37.004002,36.957001,36.903,36.848,36.813999,36.777,36.720001,36.654999,36.605999,36.568001,36.530998,36.493,36.445999,36.410999,36.335999,36.235001,36.134998,36.019001,35.939999,35.875,35.837002,35.796001,35.695,35.597,35.515999,35.433998,35.381001,35.409,35.34,35.199001,35.146,35.113998,35.070999,35.028999,34.972,34.938,34.888,34.876999,34.873001,34.903,34.903,34.907001,34.912998,34.919998,34.933998,34.948002,34.960999,34.974998,34.985001,34.991001,34.997002,35.004002,35.009998,35.014,35.016998,35.02,35.021999,35.022999,35.022999,35.022999,35.022999,35.022999,35.023998,35.022999,35.02,35.014999,35.011002,35.009998,35.009998,35.009998,35.009998,35.011002,35.008999,35.007999,35.009998,35.009998,35.007,35.006001,35.002998,35.000999,34.994999,34.991001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_056","geolocation":{"type":"Point","coordinates":[-60.12900000000002,20.851]},"basin":1,"timestamp":"2018-05-09T06:59:00.000Z","date_updated_argovis":"2023-01-31T13:56:54.089Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_056.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":56,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,65,75,85,95,105,115,126,136,146,156,166,176,186,195,205,216,226,235,245,256,265,275,285,296,306,316,326,335,345,363,389,413,438,463,488,513,538,562,588,613,638,663,688,713,738,763,788,813,838,863,888,913,937,964,988,1012,1038,1063,1088,1113,1138,1162,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1713,1739,1762,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013],[26.025,26.035,26.035,26.034,26.034,26.034,26.035,26.038,26.037001,26.045,26.014,25.933001,25.830999,25.424999,25.283001,25.033001,24.885,24.757999,24.615,24.441999,24.25,23.729,23.334,22.955,22.288,21.729,21.403999,21.083,20.566999,20.138,19.796,19.312,18.868,18.457001,18.254,18.066999,17.834,17.625999,17.466,17.339001,17.080999,16.802,16.290001,15.848,15.369,14.782,14.223,13.754,13.269,12.769,12.153,11.7,11.065,10.625,10.36,9.827,9.225,8.664,8.302,8.262,8.04,7.725,7.477,7.285,7.036,6.727,6.407,6.19,6.084,6.01,5.957,5.877,5.78,5.688,5.604,5.556,5.492,5.434,5.37,5.287,5.195,5.13,5.069,5.008,4.93,4.857,4.764,4.691,4.641,4.61,4.551,4.492,4.431,4.365,4.327,4.274,4.206,4.151,4.113,4.072,4.033,3.998,3.965,3.925,3.873,3.822,3.782,3.745,3.712],[36.799,36.799,36.801998,36.799999,36.800999,36.799,36.801998,36.799,36.800999,36.805,36.897999,36.979,36.986,37.049999,37.110001,37.105999,37.120998,37.125999,37.154999,37.226002,37.297001,37.285,37.250999,37.213001,37.144001,37.058998,37.018002,36.993999,36.931999,36.874001,36.824001,36.752998,36.688,36.625999,36.591999,36.562,36.521,36.485001,36.459,36.438,36.395,36.347,36.261002,36.185001,36.102001,36.001999,35.917999,35.837002,35.744999,35.664001,35.569,35.501999,35.402,35.342999,35.313999,35.247002,35.161999,35.088001,35.047001,35.076,35.061001,35.02,35,34.987,34.964001,34.937,34.905998,34.895,34.894001,34.905998,34.917999,34.925999,34.939999,34.955002,34.966,34.973,34.983002,34.992001,34.998001,35.004002,35.011002,35.014999,35.018002,35.02,35.021999,35.022999,35.021999,35.022999,35.022999,35.022999,35.021999,35.021,35.019001,35.015999,35.014999,35.012001,35.009998,35.007,35.007,35.007,35.006001,35.007,35.007999,35.007,35.004002,35.002998,35,34.998001,34.995998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_055","geolocation":{"type":"Point","coordinates":[-59.95800000000003,20.577]},"basin":1,"timestamp":"2018-04-29T06:56:59.999Z","date_updated_argovis":"2023-01-31T13:56:52.386Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_055.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":55,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,45,55,66,76,86,96,105,115,126,136,145,155,165,176,185,195,206,216,226,236,246,255,265,275,285,296,306,316,326,336,346,363,387,413,438,463,489,513,538,563,588,613,638,663,689,713,738,763,788,813,838,863,888,913,938,963,988,1014,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1662,1687,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1983],[25.990999,25.993999,25.995001,25.990999,25.996,25.999001,25.996,25.996,26.002001,26.002001,25.892,25.531,25.419001,25.337,25.274,25.124001,25.063999,24.993,24.791,24.274,23.832001,23.563999,23.221001,22.768,22.43,22.039,21.628,21.305,20.737,20.207001,19.826,19.504999,19.035,18.784,18.514999,18.302,18.132999,17.931999,17.702999,17.527,17.26,17.054001,16.594,16.122999,15.587,14.975,14.444,13.89,13.255,12.716,12.197,11.812,11.344,10.729,10.313,9.783,9.154,8.822,8.271,7.855,7.766,7.405,7.435,7.239,6.945,6.69,6.354,6.238,6.08,5.929,5.819,5.743,5.699,5.637,5.57,5.52,5.475,5.411,5.34,5.242,5.144,5.083,5.012,4.952,4.901,4.841,4.772,4.704,4.639,4.553,4.482,4.442,4.38,4.312,4.279,4.232,4.176,4.136,4.095,4.056,3.997,3.948,3.901,3.865,3.829,3.787,3.76,3.732],[36.908001,36.908001,36.908001,36.909,36.907001,36.909,36.908001,36.909,36.907001,36.907001,36.914001,36.973999,37.014999,37.080002,37.138,37.182999,37.217999,37.257999,37.275002,37.283001,37.287998,37.277,37.249001,37.209,37.165001,37.118,37.069,37.023998,36.956001,36.882,36.827999,36.782001,36.713001,36.674,36.632,36.597,36.568001,36.535,36.498001,36.470001,36.424999,36.389999,36.312,36.230999,36.140999,36.037998,35.949001,35.855999,35.740002,35.655998,35.576,35.512001,35.433998,35.342999,35.296001,35.236,35.143002,35.098,35.023998,34.974998,34.991001,34.964001,35.000999,34.987,34.955002,34.925999,34.895,34.901001,34.902,34.915001,34.924999,34.942001,34.955002,34.965,34.971001,34.977001,34.984001,34.991001,35.000999,35.007999,35.013,35.015999,35.019001,35.02,35.021999,35.022999,35.022999,35.021999,35.021999,35.019001,35.016998,35.02,35.02,35.016998,35.015999,35.013,35.011002,35.009998,35.007999,35.007999,35.004002,35,34.999001,34.997002,34.997002,34.994999,34.994999,34.994999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_054","geolocation":{"type":"Point","coordinates":[-59.56200000000001,20.336]},"basin":1,"timestamp":"2018-04-19T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:56:50.601Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_054.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,56,65,75,86,96,105,115,125,135,146,155,165,176,186,195,205,216,226,235,245,256,266,275,285,296,305,316,325,336,346,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,764,788,813,838,863,888,913,938,962,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1439,1463,1488,1513,1538,1563,1589,1613,1638,1663,1688,1713,1738,1762,1788,1813,1838,1863,1888,1913,1939,1963,1988,2013,2032],[25.92,25.917,25.915001,25.917999,25.917,25.922001,25.92,25.922001,25.927999,25.909,25.834,25.799,25.671,25.191,24.962,25.011999,24.787001,24.681,24.537001,24.056,23.562,23.039,22.403999,21.875999,21.483,21.114,20.83,20.402,19.976999,19.643,19.385,19.118999,18.875999,18.603001,18.309,17.987,17.750999,17.495001,17.267,17.052,16.806999,16.591,16.222,15.71,15.12,14.691,14.287,13.636,12.887,12.357,11.949,11.381,10.771,10.245,10.11,9.53,9.197,8.549,7.969,7.549,7.372,7.275,7.052,6.688,6.444,6.3,6.207,6.146,6.043,5.952,5.866,5.813,5.748,5.658,5.6,5.503,5.428,5.347,5.264,5.189,5.131,5.066,4.996,4.943,4.889,4.8,4.719,4.639,4.565,4.516,4.482,4.429,4.369,4.305,4.223,4.168,4.139,4.091,4.04,4.007,3.978,3.937,3.901,3.865,3.824,3.788,3.748,3.709,3.67,3.648],[36.959,36.960999,36.960999,36.960999,36.960999,36.959999,36.960999,36.959999,36.959999,36.964001,36.971001,36.969002,36.959,36.936001,36.986,37.081001,37.088001,37.199001,37.275002,37.291,37.265999,37.223,37.144001,37.077,37.035999,36.998001,36.963001,36.909,36.848999,36.800999,36.763,36.723,36.688,36.646,36.598,36.547001,36.506001,36.463001,36.425999,36.389999,36.348,36.310001,36.247002,36.161999,36.061001,35.992001,35.93,35.813999,35.673,35.584999,35.526001,35.444,35.345001,35.265999,35.280998,35.189999,35.153,35.060001,34.977001,34.931,34.925999,34.935001,34.924,34.889,34.879002,34.881001,34.893002,34.904999,34.91,34.917,34.923,34.938999,34.949001,34.962002,34.970001,34.983002,34.990002,34.998001,35.006001,35.011002,35.014999,35.018002,35.019001,35.02,35.021,35.021999,35.022999,35.022999,35.022999,35.021999,35.021999,35.021,35.019001,35.014999,35.008999,35.006001,35.005001,35.004002,35.000999,35,34.999001,34.998001,34.997002,34.995998,34.994999,34.994999,34.993999,34.992001,34.990002,34.987999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_053","geolocation":{"type":"Point","coordinates":[-59.15699999999998,20.056]},"basin":1,"timestamp":"2018-04-09T06:56:59.999Z","date_updated_argovis":"2023-01-31T13:56:48.966Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_053.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,56,65,76,86,95,106,115,125,135,145,155,165,175,186,196,205,215,225,235,245,255,266,275,285,295,305,315,326,336,345,363,388,413,439,463,488,513,538,563,588,613,638,663,688,713,738,763,789,813,838,863,887,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2007],[25.972,25.98,25.983999,25.974001,25.978001,25.982,25.981001,25.981001,25.985001,25.948,25.85,25.75,25.656,25.472,25.343,25.253,25.191999,25.056999,24.846001,24.356001,23.830999,23.479,23.266001,22.601999,21.777,21.427,21.169001,20.961,20.695,20.117001,19.524,19.002001,18.612,18.316,18.034,17.858,17.693001,17.554001,17.34,17.011999,16.705,16.452,16.114,15.609,15.091,14.524,14.015,13.213,12.514,11.963,11.555,11.034,10.491,10.065,9.614,9.025,8.498,8.191,8.112,7.722,7.336,7.006,6.752,6.602,6.54,6.298,6.204,6.141,6.028,5.94,5.899,5.823,5.746,5.676,5.607,5.529,5.457,5.364,5.282,5.237,5.171,5.108,5.049,4.972,4.908,4.831,4.758,4.682,4.611,4.563,4.493,4.403,4.353,4.295,4.263,4.229,4.163,4.111,4.057,4.024,3.983,3.966,3.893,3.852,3.807,3.775,3.74,3.703,3.676],[36.917,36.915001,36.914001,36.916,36.915001,36.915001,36.915001,36.915001,36.914001,36.918999,36.935001,36.990002,37.039001,37.084999,37.092999,37.106998,37.134998,37.220001,37.311001,37.324001,37.297001,37.275002,37.250999,37.193001,37.080002,37.035999,37.000999,36.980999,36.950001,36.868,36.783001,36.703999,36.639999,36.596001,36.550999,36.52,36.493999,36.471001,36.437,36.382999,36.331001,36.285,36.23,36.139999,36.050999,35.962002,35.890999,35.741001,35.617001,35.526001,35.460999,35.382999,35.306999,35.250999,35.187,35.098999,35.026001,34.999001,35.021999,34.978001,34.933998,34.898998,34.882999,34.876999,34.886002,34.866001,34.877998,34.898998,34.903999,34.912998,34.924999,34.936001,34.948002,34.958,34.969002,34.980999,34.990002,34.994999,35.002998,35.007,35.012001,35.015999,35.016998,35.019001,35.02,35.021,35.021,35.019001,35.016998,35.019001,35.014999,35.013,35.014999,35.012001,35.013,35.014,35.011002,35.007,35.002998,35.002998,35.000999,35.004002,34.997002,34.997002,34.995998,34.997002,34.994999,34.993999,34.993]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_052","geolocation":{"type":"Point","coordinates":[-58.742999999999995,19.984]},"basin":1,"timestamp":"2018-03-30T07:01:59.999Z","date_updated_argovis":"2023-01-31T13:56:47.267Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_052.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":52,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,66,76,86,95,105,115,126,135,145,156,165,176,186,195,205,216,225,236,245,255,266,276,285,295,305,316,325,335,346,362,388,413,438,463,488,513,538,563,588,613,638,663,688,712,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1437,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2011],[25.671,25.671,25.677999,25.677,25.674999,25.674999,25.677,25.674999,25.677,25.684,25.700001,25.591999,25.489,25.408001,25.233,25.082001,24.929001,24.958,24.979,24.6,23.966999,23.396999,22.879999,22.499001,22.146,21.702999,21.416,20.957001,20.441999,20.045,19.497,19.148001,18.882,18.613001,18.327999,18.127001,17.836,17.51,17.33,17.122999,16.903,16.738001,16.32,15.752,15.219,14.81,14.241,13.725,13.206,12.667,12.319,11.968,11.588,11.173,10.645,10.167,9.652,9.005,8.517,8.043,7.691,7.457,7.162,6.774,6.489,6.343,6.234,6.11,6.011,5.901,5.804,5.734,5.671,5.624,5.577,5.517,5.467,5.417,5.332,5.246,5.149,5.07,5.008,4.935,4.874,4.796,4.729,4.639,4.561,4.505,4.442,4.392,4.341,4.293,4.26,4.197,4.143,4.091,4.034,3.981,3.95,3.905,3.868,3.812,3.778,3.74,3.703,3.659,3.615],[36.877998,36.876999,36.875999,36.875,36.875999,36.875999,36.875999,36.876999,36.875999,36.877998,36.898998,37.011002,37.041,37.050999,37.026001,37.018002,37.018002,37.057999,37.189999,37.258999,37.297001,37.276001,37.227001,37.185001,37.147999,37.091,37.053001,36.984001,36.914001,36.855999,36.772999,36.716999,36.679001,36.639999,36.597,36.567001,36.519001,36.464001,36.433998,36.398998,36.362999,36.334,36.263,36.167999,36.080002,36.014999,35.925999,35.848,35.771999,35.691002,35.645,35.598,35.547001,35.492001,35.418999,35.353001,35.283001,35.195,35.130001,35.069,35.026001,35,34.973999,34.93,34.907001,34.903999,34.904999,34.903999,34.910999,34.919998,34.936001,34.945,34.955002,34.962002,34.967999,34.977001,34.983002,34.990002,35,35.006001,35.014999,35.018002,35.021999,35.023998,35.026001,35.026001,35.023998,35.023998,35.021999,35.02,35.019001,35.016998,35.014999,35.013,35.014,35.014,35.012001,35.007999,35.004002,35,34.998001,34.997002,34.997002,34.993999,34.994999,34.994999,34.993,34.990002,34.987]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_051","geolocation":{"type":"Point","coordinates":[-58.293000000000006,19.84]},"basin":1,"timestamp":"2018-03-20T06:59:00.000Z","date_updated_argovis":"2023-01-31T13:56:45.427Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_051.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":51,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,46,56,65,75,85,96,106,115,125,135,145,155,166,176,186,196,205,215,225,236,246,255,266,276,285,296,306,316,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1339,1363,1388,1413,1438,1463,1488,1513,1538,1563,1589,1612,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2013,2026],[25.757999,25.76,25.757,25.761,25.757999,25.76,25.76,25.759001,25.715,25.608,25.486,25.408001,25.329,25.252001,25.157,25.122,24.974001,24.919001,24.724001,24.101999,23.573,23.232,22.596001,22.049,21.656,21.360001,21.042,20.568001,20.274,19.792,19.544001,19.200001,18.964001,18.802999,18.605,18.375999,18.146999,17.974001,17.82,17.568001,17.309,17.039,16.681,16.138,15.536,14.964,14.441,13.966,13.547,13,12.552,12.039,11.683,11.271,10.803,10.331,9.754,9.245,8.613,8.02,7.585,7.288,6.819,6.727,6.528,6.426,6.326,6.164,6.025,5.945,5.888,5.822,5.674,5.664,5.619,5.556,5.461,5.392,5.309,5.241,5.15,5.067,4.992,4.943,4.89,4.826,4.747,4.686,4.617,4.55,4.48,4.416,4.364,4.315,4.265,4.199,4.143,4.106,4.058,3.995,3.947,3.913,3.873,3.827,3.79,3.744,3.702,3.667,3.624,3.605],[36.875999,36.876999,36.875,36.875999,36.877998,36.877998,36.876999,36.880001,36.926998,36.978001,37.016998,37.035,37.042999,37.053001,37.068001,37.146,37.172001,37.188,37.247002,37.297001,37.277,37.271999,37.206001,37.134998,37.084,37.042999,36.998001,36.93,36.888,36.818001,36.782001,36.730999,36.694,36.668999,36.639999,36.605,36.569,36.541,36.519001,36.478001,36.431999,36.383999,36.321999,36.23,36.130001,36.036999,35.956001,35.882999,35.824001,35.745998,35.676998,35.598,35.562,35.505001,35.442001,35.377998,35.298,35.223999,35.130001,35.051998,34.999001,34.964001,34.903999,34.911999,34.904999,34.902,34.901001,34.893002,34.896999,34.907001,34.929001,34.942001,34.943001,34.966999,34.980999,34.988998,34.993999,35.001999,35.007999,35.013,35.014999,35.018002,35.021,35.022999,35.023998,35.025002,35.026001,35.025002,35.023998,35.021999,35.019001,35.018002,35.015999,35.014,35.013,35.008999,35.004002,35.001999,35.000999,34.998001,34.994999,34.993999,34.993,34.991001,34.990002,34.987999,34.986,34.985001,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_050","geolocation":{"type":"Point","coordinates":[-57.766999999999996,19.65]},"basin":1,"timestamp":"2018-03-10T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:56:43.602Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_050.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":50,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,66,76,86,96,105,116,125,135,146,156,166,175,186,196,206,215,225,236,245,255,265,275,285,295,305,315,325,336,346,363,388,414,438,462,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1862,1888,1913,1938,1963,1988,2013,2030],[25.436001,25.438,25.434999,25.431,25.431999,25.445,25.462999,25.459999,25.368,25.370001,25.313,25.297001,25.249001,25.172001,25.159,25.101999,25.062,25.042999,25.006001,24.645,24.051001,23.429001,22.879,22.245001,22.003,21.527,20.879,20.386,19.997,19.556,19.183001,18.823999,18.614,18.275,18.017,17.75,17.450001,17.209999,17.025,16.816,16.607,16.378,16.055,15.485,14.938,14.592,14.23,13.772,13.329,12.844,12.303,11.77,11.246,10.703,10.242,9.657,9.011,8.499,8.096,7.747,7.457,7.147,6.866,6.557,6.44,6.312,6.197,6.059,5.955,5.88,5.816,5.741,5.674,5.589,5.521,5.465,5.398,5.333,5.274,5.2,5.13,5.045,4.952,4.906,4.845,4.785,4.719,4.659,4.589,4.522,4.457,4.391,4.336,4.285,4.237,4.191,4.146,4.093,4.042,3.988,3.944,3.907,3.867,3.831,3.79,3.755,3.721,3.672,3.634,3.618],[36.583,36.584,36.584999,36.581001,36.584,36.592999,36.637001,36.716,36.834,36.976002,37.021999,37.054001,37.063,37.057999,37.073002,37.098999,37.116001,37.126999,37.139999,37.269001,37.319,37.277,37.223999,37.152,37.136002,37.070999,36.98,36.907001,36.851002,36.789001,36.737,36.683998,36.651001,36.599998,36.556,36.511002,36.458,36.416,36.382999,36.348,36.308998,36.266998,36.210999,36.115002,36.026001,35.98,35.925999,35.855,35.789001,35.720001,35.643002,35.57,35.501999,35.43,35.367001,35.284,35.194,35.124001,35.073002,35.028,34.994999,34.963001,34.932999,34.905998,34.901001,34.900002,34.901001,34.897999,34.905998,34.914001,34.928001,34.943001,34.952999,34.966,34.974998,34.984001,34.993999,35.000999,35.008999,35.014999,35.019001,35.021999,35.021999,35.022999,35.025002,35.026001,35.025002,35.025002,35.021999,35.02,35.018002,35.015999,35.013,35.011002,35.007999,35.005001,35.004002,35.001999,34.999001,34.997002,34.994999,34.993999,34.993,34.991001,34.988998,34.987999,34.987,34.985001,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_049","geolocation":{"type":"Point","coordinates":[-57.51299999999998,19.417]},"basin":1,"timestamp":"2018-03-05T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:41.981Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_049.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":49,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,6,7,8,9,10,16,25,35,46,56,66,75,85,95,105,116,125,136,146,155,165,175,186,196,205,216,226,236,246,255,265,275,285,296,306,315,325,335,346,363,388,413,438,463,488,513,538,562,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,963,988,1013,1038,1063,1087,1112,1138,1163,1188,1213,1238,1263,1288,1313,1339,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1762,1789,1813,1838,1863,1888,1913,1938,1963,1988,2005],[25.167999,25.167,25.166,25.165001,25.165001,25.164,25.163,25.167,25.17,25.194,25.224001,25.247999,25.254,25.231001,25.204,25.190001,25.174999,24.999001,23.975,23.419001,23.211,22.855,22.426001,21.83,21.322001,20.931,20.299,19.959,19.606001,19.320999,19.142,18.929001,18.582001,18.257999,17.929001,17.681,17.493,17.181999,16.892,16.643,16.427999,16.054001,15.541,15.17,14.635,14.138,13.629,13.164,12.664,12.173,11.813,11.389,11.015,10.557,10.119,9.425,8.787,8.275,7.869,7.584,7.313,7.04,6.755,6.549,6.409,6.245,6.083,5.966,5.859,5.79,5.72,5.653,5.573,5.495,5.433,5.386,5.315,5.249,5.178,5.113,5.005,4.936,4.847,4.775,4.73,4.649,4.586,4.521,4.43,4.374,4.305,4.242,4.185,4.149,4.096,4.046,4.006,3.972,3.935,3.899,3.838,3.794,3.768,3.708,3.667,3.64,3.602,3.581],[36.922001,36.923,36.922001,36.922001,36.922001,36.923,36.923,36.921001,36.921001,36.931,36.951,37.027,37.061001,37.061001,37.062,37.063,37.066002,37.208,37.319,37.279999,37.262001,37.217999,37.181,37.096001,36.994999,36.945,36.854,36.827,36.778,36.738998,36.716,36.691002,36.640999,36.591,36.537998,36.494999,36.463001,36.410999,36.359001,36.317001,36.280998,36.217999,36.132,36.070999,35.987,35.910999,35.834,35.765999,35.693001,35.625,35.576,35.521,35.469002,35.405998,35.347,35.247002,35.155998,35.085999,35.034,34.999001,34.976002,34.951,34.926998,34.915001,34.91,34.904999,34.903,34.909,34.924,34.933998,34.945999,34.957001,34.967999,34.978001,34.986,34.995998,35.002998,35.006001,35.012001,35.016998,35.021,35.022999,35.022999,35.021999,35.021999,35.02,35.018002,35.015999,35.012001,35.011002,35.005001,35.001999,34.999001,34.999001,34.997002,34.993,34.991001,34.988998,34.987,34.987999,34.986,34.984001,34.984001,34.98,34.977001,34.976002,34.973999,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_048","geolocation":{"type":"Point","coordinates":[-57.23000000000002,19.22]},"basin":1,"timestamp":"2018-02-28T07:03:00.000Z","date_updated_argovis":"2023-01-31T13:56:40.238Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_048.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":48,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,66,76,85,96,106,116,126,135,146,155,166,175,185,195,205,215,226,236,246,256,266,275,286,295,305,316,325,336,346,363,388,413,438,463,488,513,538,563,588,614,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1888,1914,1938,1963,1988,2008],[25.211,25.215,25.212,25.218,25.221001,25.218,25.219,25.219999,25.224001,25.225,25.223,25.219999,25.216,25.198999,25.198999,25.208,25.156,24.875,24.191,23.864,23.726999,23.249001,22.658001,22.132,21.726999,21.232,20.698,20.261,19.886999,19.511,19.212,18.877001,18.563999,18.285,18.041,17.784,17.591,17.375999,17.173,16.931,16.674,16.455999,16.054001,15.428,14.891,14.489,13.936,13.433,12.951,12.444,11.886,11.3,10.657,10.165,9.552,9.065,8.255,8.242,7.78,7.323,6.916,7.023,6.847,6.773,6.613,6.407,6.203,6.019,5.952,5.898,5.822,5.761,5.685,5.604,5.522,5.428,5.362,5.301,5.214,5.143,5.078,5.003,4.941,4.864,4.772,4.706,4.651,4.582,4.51,4.442,4.385,4.335,4.278,4.218,4.157,4.106,4.061,4.017,3.984,3.943,3.896,3.854,3.808,3.769,3.732,3.682,3.645,3.618,3.577],[36.967999,36.969002,36.965,36.966,36.966999,36.969002,36.967999,36.966999,36.966999,36.970001,37.007999,37.021999,37.026001,37.028999,37.037998,37.092999,37.173,37.255001,37.300999,37.304001,37.321999,37.289001,37.220001,37.146,37.091,37.023998,36.951,36.888,36.834999,36.780998,36.740002,36.688999,36.639,36.597,36.557999,36.515999,36.483002,36.445999,36.408001,36.365002,36.323002,36.286999,36.217999,36.113998,36.027,35.966,35.879002,35.804001,35.728001,35.657001,35.577,35.497002,35.41,35.325001,35.213001,35.139,35.015999,35.047001,34.993999,34.931,34.875,34.925999,34.923,34.932999,34.921001,34.903999,34.895,34.889999,34.905998,34.914001,34.923,34.936001,34.950001,34.964001,34.976002,34.987,34.993999,35,35.006001,35.009998,35.013,35.015999,35.02,35.021999,35.021,35.021999,35.019001,35.015999,35.014,35.013,35.011002,35.008999,35.007,35.002998,35,34.997002,34.994999,34.993,34.992001,34.991001,34.988998,34.987999,34.987,34.985001,34.981998,34.979,34.979,34.978001,34.977001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_047","geolocation":{"type":"Point","coordinates":[-57,18.958]},"basin":1,"timestamp":"2018-02-23T07:00:00.000Z","date_updated_argovis":"2023-01-31T13:56:38.516Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_047.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":47,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,66,75,86,96,105,115,125,136,146,155,165,175,186,196,205,215,225,235,245,255,265,275,285,296,305,315,326,336,346,363,388,413,438,462,488,513,538,563,588,613,638,663,688,713,737,762,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2008],[25.197001,25.198999,25.197001,25.198,25.198999,25.198999,25.198,25.195999,25.198999,25.202999,25.207001,25.202999,25.204,25.208,25.209,25.181,25.132,24.677,24.281,23.816999,23.149,22.525,22.172001,21.6,21.056,20.524,19.987,19.708,19.389,18.98,18.868,18.695999,18.537001,18.339001,18.118999,17.92,17.728001,17.465,17.242001,16.950001,16.737,16.513,16.08,15.514,15.082,14.44,13.933,13.543,13.267,12.73,12.187,11.645,10.975,10.295,9.317,8.643,8.578,8.088,7.353,6.979,6.926,6.803,6.563,6.345,6.243,6.162,6.09,5.959,5.857,5.8,5.755,5.654,5.596,5.58,5.528,5.458,5.4,5.309,5.224,5.134,5.059,4.963,4.878,4.797,4.748,4.704,4.639,4.585,4.521,4.451,4.387,4.328,4.273,4.229,4.173,4.128,4.087,4.049,4.005,3.955,3.902,3.829,3.777,3.751,3.734,3.705,3.67,3.617,3.583],[37.037998,37.037998,37.037998,37.039001,37.037998,37.037998,37.039001,37.037998,37.037998,37.037998,37.037998,37.037998,37.036999,37.037998,37.040001,37.056999,37.105,37.244999,37.284,37.271,37.221001,37.152,37.102001,37.019001,36.942001,36.882,36.800999,36.764,36.734001,36.675999,36.66,36.638,36.618,36.591999,36.560001,36.530998,36.500999,36.458,36.421001,36.372002,36.334,36.297001,36.223,36.126999,36.057999,35.957001,35.879002,35.82,35.777,35.688,35.618,35.537998,35.429001,35.319,35.151001,35.043999,35.062,34.994999,34.883999,34.845001,34.855,34.853001,34.841999,34.833,34.846001,34.868999,34.889,34.895,34.909,34.926998,34.943001,34.953999,34.963001,34.977001,34.987999,34.994999,35.004002,35.008999,35.013,35.015999,35.018002,35.021,35.021,35.019001,35.02,35.02,35.016998,35.016998,35.014,35.011002,35.008999,35.007,35.005001,35.005001,35.002998,35,34.998001,34.994999,34.993,34.988998,34.985001,34.98,34.978001,34.977001,34.977001,34.976002,34.974998,34.972,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_046","geolocation":{"type":"Point","coordinates":[-56.85899999999998,18.726]},"basin":1,"timestamp":"2018-02-18T06:46:00.000Z","date_updated_argovis":"2023-01-31T13:56:36.867Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_046.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":46,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,65,75,85,95,105,115,125,136,145,156,166,175,185,195,205,215,225,235,246,256,266,276,286,295,305,315,325,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,739,762,787,813,838,863,888,914,937,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1214,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1887,1913,1938,1963,1988],[25.396,25.398001,25.396999,25.396999,25.396,25.398001,25.4,25.400999,25.403,25.403999,25.403999,25.409,25.414,25.417,25.426001,25.429001,25.461,25.198,24.263,23.854,23.396,22.965,22.412001,21.858,21.582001,21.285999,20.825001,20.290001,19.886,19.396,19.188999,18.973,18.694,18.466999,18.167,17.855,17.679001,17.346001,17.084999,16.872999,16.650999,16.440001,16.087,15.551,14.878,14.318,13.724,13.214,12.666,12.164,11.462,11.067,10.293,9.559,8.98,8.296,7.749,7.273,7.242,7.074,6.828,6.575,6.396,6.29,6.18,6.017,5.792,5.733,5.658,5.65,5.635,5.603,5.574,5.532,5.479,5.415,5.323,5.253,5.182,5.117,5.039,4.95,4.861,4.791,4.718,4.646,4.584,4.507,4.441,4.373,4.323,4.271,4.208,4.163,4.111,4.084,4.054,3.999,3.952,3.917,3.896,3.844,3.808,3.761,3.73,3.696,3.686,3.656],[37.066002,37.064999,37.063999,37.064999,37.064999,37.063999,37.066002,37.063999,37.066002,37.064999,37.064999,37.066002,37.066002,37.067001,37.073002,37.075001,37.094002,37.214001,37.282001,37.278999,37.243,37.195999,37.123001,37.040001,37.013,36.993,36.931999,36.860001,36.801998,36.728001,36.702,36.678001,36.644001,36.612999,36.568001,36.518002,36.493,36.438,36.393002,36.358002,36.320999,36.284,36.223999,36.136002,36.027,35.938999,35.847,35.768002,35.688999,35.617001,35.509998,35.460999,35.325001,35.195999,35.108002,35.001999,34.922001,34.862999,34.888,34.879002,34.860001,34.841,34.832001,34.837002,34.855,34.851002,34.838001,34.848,34.854,34.877998,34.900002,34.917,34.944,34.963001,34.978001,34.991001,34.994999,34.999001,35.002998,35.009998,35.012001,35.013,35.014,35.019001,35.016998,35.014999,35.012001,35.008999,35.006001,35.002998,35.000999,34.998001,34.994999,34.993999,34.992001,34.993,34.991001,34.987,34.985001,34.984001,34.983002,34.98,34.979,34.977001,34.976002,34.976002,34.979,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_045","geolocation":{"type":"Point","coordinates":[-56.839999999999975,18.534]},"basin":1,"timestamp":"2018-02-13T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:56:35.114Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_045.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":45,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,34,45,55,65,75,85,95,105,116,126,135,146,156,165,175,186,195,205,215,226,236,246,255,265,275,285,296,306,316,326,336,346,363,388,413,438,463,488,513,538,563,588,613,639,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1237,1263,1288,1313,1338,1363,1388,1413,1439,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1912,1938,1963,1984],[25.417999,25.42,25.424,25.429001,25.431,25.427999,25.427,25.427999,25.427,25.431,25.438,25.447001,25.448999,25.458,25.476,25.493,25.5,25.5,25.402,24.358999,23.740999,23.285,22.856001,22.235001,21.705999,21.297001,20.604,19.849001,19.548,19.33,19.193001,19.01,18.875999,18.606001,18.364,18.101,17.771999,17.5,17.327999,17.042999,16.788,16.465,16.09,15.551,15.042,14.437,13.804,13.264,12.729,11.799,11.506,10.725,9.829,9.18,8.613,7.934,7.59,7.391,7.335,7.174,6.888,6.602,6.484,6.359,6.163,5.981,5.895,5.809,5.748,5.698,5.641,5.609,5.586,5.551,5.463,5.377,5.32,5.245,5.168,5.069,4.981,4.907,4.838,4.773,4.717,4.637,4.591,4.538,4.472,4.42,4.351,4.288,4.233,4.175,4.133,4.096,4.038,3.984,3.935,3.902,3.881,3.839,3.804,3.765,3.767,3.738,3.701,3.667],[37.009998,37.014,37.013,37.011002,37.009998,37.011002,37.012001,37.009998,37.009998,37.009998,37.009998,37.009998,37.009998,37.018002,37.033001,37.063999,37.092999,37.105,37.130001,37.280998,37.259998,37.229,37.183998,37.105,37.025002,36.967999,36.867001,36.728001,36.695,36.688,36.713001,36.693001,36.675999,36.639,36.605,36.563,36.509998,36.465,36.435001,36.388,36.342999,36.290001,36.226002,36.137001,36.053001,35.956001,35.848,35.764,35.679001,35.511002,35.481998,35.352001,35.200001,35.105999,35.022999,34.925999,34.887001,34.876999,34.889999,34.884998,34.862,34.835999,34.837002,34.841999,34.827,34.808998,34.817001,34.827999,34.844002,34.865002,34.882999,34.916,34.938,34.952999,34.972,34.987,35,35.002998,35.006001,35.009998,35.012001,35.013,35.013,35.014,35.012001,35.009998,35.009998,35.008999,35.006001,35.004002,35.000999,34.998001,34.995998,34.993,34.991001,34.988998,34.987,34.985001,34.983002,34.981998,34.981998,34.98,34.979,34.979,34.985001,34.985001,34.983002,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_044","geolocation":{"type":"Point","coordinates":[-56.899,18.535]},"basin":1,"timestamp":"2018-02-08T06:46:00.000Z","date_updated_argovis":"2023-01-31T13:56:33.470Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_044.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":44,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,65,75,85,95,106,115,125,135,146,155,165,175,185,195,205,215,226,235,245,255,265,276,286,295,305,315,326,336,346,363,388,413,438,463,487,513,538,563,588,613,638,663,689,713,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1464,1488,1513,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1987],[25.868999,25.865999,25.865999,25.865999,25.862,25.861,25.864,25.865999,25.868999,25.872999,25.875,25.878,25.882,25.885,25.898001,25.756001,25.229,24.684999,24.08,23.788,23.365,22.867001,22.273001,21.945999,21.549999,20.945999,20.240999,19.813,19.659,19.417,19.228001,18.927999,18.629,18.35,18.136999,17.93,17.718,17.41,17.135,16.910999,16.653999,16.424,16.101999,15.598,15.099,14.526,13.994,13.404,12.926,12.308,11.683,10.956,10.249,9.744,9.03,8.289,7.804,7.594,7.305,7.203,6.928,6.668,6.444,6.312,6.07,5.835,5.745,5.698,5.67,5.641,5.62,5.599,5.562,5.506,5.459,5.38,5.308,5.211,5.142,5.059,5,4.952,4.887,4.835,4.765,4.696,4.628,4.566,4.488,4.41,4.35,4.291,4.225,4.17,4.114,4.073,4.039,4.006,3.969,3.941,3.894,3.857,3.821,3.784,3.752,3.722,3.698,3.675],[36.866001,36.866001,36.866001,36.867001,36.867001,36.868,36.867001,36.866001,36.868,36.867001,36.867001,36.868,36.869999,36.872002,36.886002,37.188999,37.285999,37.285999,37.277,37.289001,37.258999,37.200001,37.123001,37.091999,37.022999,36.911999,36.785,36.745998,36.77,36.748001,36.726002,36.681999,36.641998,36.602001,36.569,36.535999,36.500999,36.450001,36.403,36.365002,36.321999,36.283001,36.228001,36.145,36.063,35.972,35.889,35.790001,35.709999,35.601002,35.493999,35.384998,35.271999,35.206001,35.094002,34.984001,34.928001,34.916,34.888,34.893002,34.868,34.848999,34.84,34.839001,34.827999,34.818001,34.834999,34.849998,34.862,34.889999,34.914001,34.924999,34.945,34.965,34.98,34.990002,34.998001,35.002998,35.007999,35.011002,35.014,35.014,35.014,35.014,35.012001,35.013,35.011002,35.009998,35.007999,35.004002,35.001999,34.999001,34.995998,34.993,34.990002,34.987999,34.987,34.986,34.984001,34.983002,34.980999,34.98,34.979,34.978001,34.977001,34.977001,34.979,34.980999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_043","geolocation":{"type":"Point","coordinates":[-57.08100000000002,18.612]},"basin":1,"timestamp":"2018-02-03T06:57:00.000Z","date_updated_argovis":"2023-01-31T13:56:31.603Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_043.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":43,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,65,76,86,95,105,115,125,135,145,156,166,175,185,196,206,215,225,235,245,256,266,276,286,295,305,316,325,335,345,363,388,412,437,463,488,513,538,563,588,613,638,664,687,713,738,763,788,813,838,863,889,912,938,963,988,1013,1038,1063,1088,1113,1139,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1712,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2006],[25.981001,25.979,25.976,25.973,25.976999,25.976,25.985001,25.986,25.986,25.987,25.988001,25.986,25.976999,25.961,25.968,25.990999,25.792,24.881001,24.280001,23.812,23.392,22.777,22.243,21.783001,21.136,20.606001,20.177999,19.802,19.370001,19.052999,18.844999,18.625,18.43,18.177999,17.940001,17.753,17.487,17.313,17.158001,16.976,16.839001,16.591999,16.056,15.467,15.096,14.736,14.296,13.815,13.331,12.389,11.76,11.3,10.508,9.922,9.268,8.975,8.444,7.951,7.57,7.365,7.08,6.793,6.604,6.489,6.256,6.176,6.052,5.959,5.831,5.733,5.661,5.64,5.587,5.529,5.466,5.369,5.3,5.232,5.143,5.064,4.98,4.912,4.856,4.773,4.687,4.611,4.537,4.473,4.398,4.346,4.295,4.231,4.185,4.152,4.115,4.06,4.012,3.966,3.919,3.874,3.833,3.798,3.755,3.719,3.681,3.644,3.622,3.596,3.581],[36.821999,36.820999,36.821999,36.817001,36.818001,36.82,36.824001,36.823002,36.823002,36.821999,36.823002,36.821999,36.82,36.833,36.865002,36.938,37.188999,37.269001,37.25,37.255001,37.257,37.173,37.125999,37.063,36.967999,36.897999,36.844002,36.793999,36.737999,36.695,36.669998,36.633999,36.602001,36.566002,36.535,36.504002,36.464001,36.433998,36.407001,36.375999,36.351002,36.311001,36.219002,36.122002,36.062,36.000999,35.933998,35.860001,35.783001,35.618,35.514,35.436001,35.305,35.214001,35.118,35.102001,35.028,34.963001,34.918999,34.919998,34.894001,34.866001,34.854,34.858002,34.839001,34.853001,34.855999,34.865002,34.869999,34.874001,34.887001,34.910999,34.936001,34.956001,34.971001,34.985001,34.997002,35.001999,35.005001,35.008999,35.013,35.019001,35.021,35.019001,35.016998,35.014,35.009998,35.007,35.002998,35.000999,34.999001,34.995998,34.993999,34.992001,34.990002,34.987999,34.986,34.984001,34.981998,34.980999,34.979,34.978001,34.976002,34.974998,34.973999,34.973,34.973,34.972,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_042","geolocation":{"type":"Point","coordinates":[-57.358000000000004,18.764]},"basin":1,"timestamp":"2018-01-29T07:00:00.000Z","date_updated_argovis":"2023-01-31T13:56:29.888Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_042.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":42,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,56,65,75,86,96,106,115,125,135,145,155,165,176,186,196,205,215,225,236,246,255,265,275,286,296,306,316,325,335,346,363,388,413,438,463,488,513,538,563,588,614,638,663,688,713,738,763,788,813,838,863,889,912,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1664,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1981],[26.077,26.082001,26.08,26.080999,26.094999,26.094999,26.097,26.094999,26.094999,26.099001,26.104,26.106001,26.108999,26.125,26.194,26.077,26.014999,25.691999,24.981001,24.483999,23.809,23.313,22.743999,21.75,21.049,20.575001,20.242001,19.851,19.482,19.155001,18.900999,18.705999,18.586,18.330999,18.045,17.855,17.693001,17.493999,17.181999,17.018999,16.865999,16.624001,16.280001,15.75,15.221,14.592,14.068,13.443,13.039,12.488,12.036,11.621,10.893,10.16,9.272,8.553,8.456,8.447,8.307,7.773,7.289,6.976,7.032,6.624,6.321,6.221,6.164,5.928,5.875,5.848,5.808,5.759,5.656,5.567,5.52,5.425,5.298,5.278,5.187,5.102,5.011,4.914,4.836,4.751,4.663,4.562,4.508,4.441,4.383,4.332,4.277,4.228,4.183,4.133,4.111,4.058,4.004,3.962,3.915,3.87,3.835,3.797,3.755,3.708,3.677,3.657,3.625,3.591],[36.771999,36.765999,36.771,36.773998,36.771999,36.771999,36.771,36.771999,36.77,36.772999,36.776001,36.775002,36.778999,36.817001,37.074001,37.215,37.223999,37.256001,37.301998,37.286999,37.305,37.27,37.182999,36.998001,36.902,36.877998,36.851002,36.798,36.745998,36.710999,36.68,36.653999,36.633999,36.594002,36.553001,36.52,36.494999,36.464001,36.41,36.382999,36.355999,36.314999,36.257,36.167999,36.081001,35.977001,35.898998,35.799999,35.737999,35.653999,35.585999,35.532001,35.408001,35.279999,35.122002,35.019001,35.027,35.063999,35.084,34.999001,34.932999,34.901001,34.941002,34.891998,34.861,34.870998,34.888,34.867001,34.882,34.901001,34.919998,34.937,34.944,34.966,34.984001,34.992001,34.994999,35.012001,35.016998,35.02,35.021,35.021,35.021,35.018002,35.014999,35.012001,35.009998,35.006001,35.002998,35,34.997002,34.995998,34.993999,34.991001,34.991001,34.987999,34.985001,34.983002,34.981998,34.98,34.979,34.978001,34.976002,34.973999,34.973,34.973999,34.973999,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_041","geolocation":{"type":"Point","coordinates":[-57.58100000000002,18.966]},"basin":1,"timestamp":"2018-01-24T06:57:00.000Z","date_updated_argovis":"2023-01-31T13:56:28.125Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_041.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,66,76,85,96,105,115,125,135,145,155,166,176,185,195,205,215,226,236,245,255,265,275,285,296,305,315,325,335,345,363,388,413,438,463,488,513,538,564,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1462,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1939,1963,1988,2006],[26.195,26.190001,26.195999,26.197001,26.198,26.195,26.195,26.202,26.193001,26.198,26.226999,26.198,26.195999,26.202,26.306,26.329,25.754999,25.077,24.743999,24.334,24.058001,23.561001,22.927999,22.351,21.959,21.233999,20.707001,20.457001,20.209,19.916,19.610001,19.218,18.875999,18.603001,18.417,18.167,17.899,17.704,17.502001,17.299,17.01,16.777,16.421,15.914,15.36,14.784,14.27,13.815,13.395,12.859,12.223,11.822,11.43,10.98,10.398,9.795,9.275,8.724,8.315,7.899,7.643,7.295,6.971,6.728,6.503,6.34,6.12,6.015,5.902,5.814,5.76,5.706,5.644,5.58,5.511,5.441,5.322,5.22,5.147,5.097,5.032,4.958,4.874,4.791,4.699,4.636,4.573,4.506,4.444,4.401,4.354,4.283,4.221,4.159,4.099,4.048,4,3.966,3.925,3.88,3.836,3.788,3.745,3.71,3.669,3.64,3.614,3.582,3.564],[36.695,36.695999,36.695999,36.695999,36.696999,36.696999,36.696999,36.709999,36.716,36.733002,36.754002,36.813999,36.82,36.837002,36.933998,37.104,37.223999,37.286999,37.310001,37.320999,37.292,37.237,37.145,37.050999,37.014,36.915001,36.837002,36.838001,36.830002,36.806999,36.765999,36.715,36.672001,36.634998,36.608002,36.570999,36.527,36.494999,36.464001,36.429001,36.379002,36.34,36.280998,36.195999,36.104,36.011002,35.93,35.860001,35.798,35.724998,35.623001,35.571999,35.526001,35.466999,35.382999,35.299,35.226002,35.146,35.094002,35.046001,35.014999,34.973,34.937,34.923,34.908001,34.911999,34.903,34.917999,34.922001,34.929001,34.941002,34.952999,34.965,34.976002,34.986,34.994999,35.004002,35.008999,35.015999,35.018002,35.02,35.02,35.02,35.019001,35.018002,35.015999,35.013,35.009998,35.006001,35.004002,35.001999,34.999001,34.994999,34.992001,34.990002,34.987,34.985001,34.984001,34.981998,34.98,34.978001,34.976002,34.974998,34.973999,34.973,34.972,34.971001,34.970001,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_040","geolocation":{"type":"Point","coordinates":[-57.69499999999999,19.023]},"basin":1,"timestamp":"2018-01-19T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:56:26.397Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_040.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,9,10,15,25,35,46,55,66,75,86,95,106,116,126,136,146,156,166,176,186,195,205,215,226,236,245,255,266,276,286,296,305,315,325,335,346,363,388,413,437,463,488,513,538,563,589,613,638,663,688,713,738,763,788,813,838,863,889,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1264,1288,1312,1338,1363,1388,1413,1438,1463,1488,1513,1537,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1984],[26.357,26.358999,26.358999,26.356001,26.358,26.358999,26.358999,26.362,26.386999,26.374001,26.367001,26.356001,26.351,26.511,25.896,25.218,24.625,24.218,23.82,23.59,23.436001,22.965,22.392,21.893,21.51,21.000999,20.603001,20.344,20.01,19.740999,19.325001,19.028,18.896999,18.608999,18.405001,18.205999,17.992001,17.764,17.566,17.358,17.120001,16.646,16.084,15.489,14.877,14.328,13.832,13.359,12.955,12.543,11.983,11.514,11.146,10.815,10.362,9.837,9.36,9.003,8.399,7.909,7.569,7.222,6.848,6.547,6.404,6.255,6.189,6.043,5.876,5.784,5.719,5.65,5.578,5.485,5.393,5.298,5.222,5.129,5.06,4.981,4.916,4.832,4.755,4.671,4.601,4.529,4.478,4.432,4.379,4.324,4.255,4.2,4.141,4.094,4.035,4.002,3.956,3.911,3.863,3.806,3.772,3.749,3.71,3.684,3.659,3.619,3.582],[36.509998,36.508999,36.507999,36.509998,36.508999,36.507999,36.507,36.513,36.571999,36.632,36.633999,36.637001,36.643002,37.074001,37.278999,37.269001,37.249001,37.255001,37.227001,37.248001,37.268002,37.227001,37.146999,37.078999,37.026001,36.956001,36.907001,36.875999,36.828999,36.793999,36.736,36.699001,36.681,36.636002,36.605999,36.580002,36.548,36.508999,36.476002,36.441002,36.397999,36.317001,36.223,36.125,36.025002,35.938999,35.862999,35.792,35.738998,35.682999,35.605,35.541,35.493,35.448002,35.386002,35.308998,35.241001,35.196999,35.116001,35.056999,35.015999,34.971001,34.926998,34.898998,34.908001,34.91,34.919998,34.917999,34.918999,34.936001,34.951,34.965,34.976002,34.991001,35.000999,35.007999,35.014,35.016998,35.019001,35.019001,35.02,35.019001,35.016998,35.014999,35.013,35.008999,35.007999,35.006001,35.002998,35.000999,34.997002,34.993999,34.992001,34.988998,34.987,34.985001,34.983002,34.981998,34.979,34.977001,34.976002,34.974998,34.973,34.973,34.972,34.971001,34.970001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_039","geolocation":{"type":"Point","coordinates":[-57.76999999999998,19.014]},"basin":1,"timestamp":"2018-01-14T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:24.620Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_039.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,55,66,75,85,95,106,115,125,135,146,156,165,176,185,195,205,215,225,235,246,255,266,275,286,296,306,316,325,335,346,363,388,413,438,463,488,513,538,562,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,963,988,1012,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1764,1788,1813,1838,1863,1889,1913,1938,1963,1985],[26.434999,26.434999,26.438,26.437,26.438,26.437,26.440001,26.438,26.441,26.444,26.444,26.445999,26.454,26.461,26.351999,25.851,25.368,25.09,24.820999,24.636,24.41,24.240999,24.018999,23.746,23.247999,22.502001,22.041,21.379,20.917999,20.370001,19.999001,19.612,19.277,18.945999,18.645,18.504999,18.371,18.263,18.01,17.855,17.601,17.400999,17.014,16.532,15.844,15.132,14.487,13.926,13.472,13.017,12.455,11.977,11.539,11.108,10.505,10.001,9.605,8.953,8.334,8.067,7.657,7.234,6.871,6.762,6.562,6.397,6.234,6.028,5.903,5.822,5.764,5.7,5.634,5.58,5.506,5.464,5.371,5.25,5.193,5.139,5.08,5.028,4.94,4.851,4.751,4.648,4.563,4.503,4.422,4.339,4.256,4.196,4.144,4.084,4.046,4.011,3.964,3.914,3.87,3.843,3.8,3.763,3.725,3.697,3.666,3.631,3.595,3.572],[36.502998,36.502998,36.505001,36.505001,36.504002,36.504002,36.502998,36.504002,36.502998,36.502998,36.502998,36.504002,36.507,36.513,37.094002,37.303001,37.356998,37.456001,37.453999,37.449001,37.429001,37.408001,37.387001,37.356998,37.277,37.167999,37.095001,37.006001,36.933998,36.860001,36.808998,36.758999,36.716999,36.662998,36.606998,36.587002,36.577999,36.577999,36.542,36.516998,36.476002,36.443001,36.380001,36.298,36.182999,36.066002,35.963001,35.875999,35.810001,35.745998,35.671001,35.605,35.549999,35.493,35.41,35.339001,35.283001,35.189999,35.101002,35.074001,35.027,34.978001,34.938,34.938,34.923,34.915001,34.912998,34.91,34.917,34.932999,34.943001,34.955002,34.966999,34.974998,34.986,34.992001,35.001999,35.007999,35.013,35.014999,35.016998,35.019001,35.02,35.02,35.018002,35.014,35.009998,35.007999,35.005001,35.000999,34.997002,34.993999,34.991001,34.987999,34.987,34.985001,34.983002,34.980999,34.98,34.978001,34.977001,34.974998,34.973999,34.973,34.972,34.972,34.970001,34.969002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_038","geolocation":{"type":"Point","coordinates":[-57.81700000000001,18.98]},"basin":1,"timestamp":"2018-01-09T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:56:22.908Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_038.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":38,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,56,66,75,85,95,105,115,126,135,145,155,166,175,185,195,205,215,225,235,245,256,265,275,286,296,305,316,326,335,345,363,388,413,438,463,488,513,538,563,589,613,638,663,688,713,738,763,788,813,838,863,889,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1212,1238,1263,1288,1313,1338,1363,1388,1413,1437,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1714,1738,1763,1788,1813,1838,1863,1888,1912,1938,1963,1988,2002],[26.556999,26.561001,26.570999,26.576,26.573,26.570999,26.57,26.570999,26.58,26.577999,26.580999,26.584,26.608,26.695,26.379,25.782,25.393,25.031,24.778999,24.531,24.35,24.09,23.801001,23.378,22.638,22.066999,21.257999,20.868999,20.327,19.917999,19.545,19.202999,18.879999,18.586,18.365,18.205999,18.040001,17.916,17.729,17.504,17.296,16.976999,16.438999,15.867,15.384,14.997,14.501,14.147,13.714,13.199,12.598,12.088,11.681,11.219,10.86,10.445,10.012,9.523,9.05,8.465,8.012,7.557,7.059,6.802,6.594,6.431,6.302,6.15,5.991,5.89,5.804,5.735,5.651,5.567,5.478,5.397,5.31,5.201,5.111,4.999,4.895,4.838,4.756,4.69,4.623,4.546,4.478,4.419,4.388,4.317,4.286,4.242,4.185,4.131,4.076,4.027,3.977,3.941,3.9,3.856,3.821,3.789,3.759,3.726,3.695,3.666,3.625,3.608,3.598],[36.455002,36.455002,36.453999,36.455002,36.452999,36.455002,36.452999,36.455002,36.455002,36.455002,36.453999,36.455002,36.487999,36.708,37.214001,37.370998,37.456001,37.459999,37.456001,37.442001,37.428001,37.407001,37.372002,37.308998,37.191002,37.101002,36.98,36.924,36.852001,36.799999,36.75,36.709,36.662998,36.611,36.567001,36.553001,36.537998,36.523998,36.498001,36.460999,36.425999,36.374001,36.283001,36.187,36.108002,36.043999,35.965,35.909,35.842999,35.768002,35.686001,35.619999,35.566002,35.501999,35.455002,35.396999,35.338001,35.272999,35.206001,35.131001,35.073002,35.016998,34.955002,34.933998,34.922001,34.916,34.914001,34.921001,34.917999,34.924999,34.936001,34.951,34.970001,34.983002,34.992001,35.001999,35.008999,35.014,35.016998,35.019001,35.02,35.019001,35.016998,35.014999,35.013,35.009998,35.007,35.004002,35.001999,35,34.998001,34.995998,34.993,34.990002,34.987999,34.985001,34.983002,34.981998,34.980999,34.979,34.978001,34.976002,34.974998,34.974998,34.973,34.972,34.971001,34.973999,34.973999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_037","geolocation":{"type":"Point","coordinates":[-57.84899999999999,18.933]},"basin":1,"timestamp":"2018-01-04T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:21.119Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_037.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":37,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,15,25,36,45,56,66,75,85,95,105,115,125,135,145,156,166,175,186,195,205,215,225,235,245,255,265,275,286,296,306,316,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1789,1813,1838,1863,1888,1913,1938,1963,1989,2001],[26.708,26.712,26.712,26.711,26.708,26.709,26.711,26.709999,26.711,26.716999,26.719999,26.742001,26.778,26.629,26.033001,25.632999,25.413,25.136999,24.791,24.445999,24.075001,23.605,23.045,22.579,21.851,21.419001,20.905001,20.4,19.993,19.622,19.282,19.01,18.781,18.559999,18.378,18.237,18.047001,17.849001,17.492001,17.285,17.056999,16.684,16.087,15.515,15.075,14.604,14.084,13.524,12.917,12.378,11.701,11.166,10.645,10.363,9.968,9.42,8.683,8.248,7.931,7.516,7.211,6.996,6.529,6.434,6.297,6.125,5.992,5.913,5.859,5.814,5.757,5.691,5.629,5.55,5.478,5.376,5.282,5.189,5.122,5.064,4.989,4.895,4.835,4.756,4.66,4.556,4.494,4.423,4.375,4.315,4.246,4.194,4.141,4.095,4.031,3.981,3.929,3.885,3.832,3.801,3.777,3.766,3.72,3.694,3.672,3.649,3.624,3.614],[36.414001,36.411999,36.412998,36.414001,36.411999,36.411999,36.411999,36.410999,36.411999,36.410999,36.414001,36.435001,36.52,37,37.223999,37.311001,37.360001,37.431999,37.435001,37.403,37.384998,37.32,37.233002,37.152,37.047001,37,36.945,36.870998,36.807999,36.761002,36.716999,36.671001,36.633999,36.604,36.588001,36.574001,36.549,36.519001,36.459999,36.424999,36.387001,36.324001,36.223,36.129002,36.056999,35.981998,35.900002,35.806999,35.708,35.645,35.527,35.444,35.373001,35.368999,35.318001,35.235001,35.120998,35.067001,35.036999,34.993,34.964001,34.946999,34.887001,34.890999,34.895,34.890999,34.902,34.917,34.931,34.942001,34.957001,34.971001,34.98,34.991001,34.998001,35.006001,35.013,35.016998,35.019001,35.02,35.02,35.02,35.019001,35.016998,35.014999,35.009998,35.006001,35.002998,35.000999,34.999001,34.995998,34.993,34.991001,34.988998,34.986,34.984001,34.981998,34.98,34.979,34.98,34.98,34.983002,34.983002,34.981998,34.981998,34.981998,34.980999,34.980999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_036","geolocation":{"type":"Point","coordinates":[-57.90899999999999,18.88]},"basin":1,"timestamp":"2017-12-30T06:51:00.000Z","date_updated_argovis":"2023-01-31T13:56:19.391Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_036.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":36,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,45,55,65,76,85,95,105,115,126,136,145,155,165,176,186,196,206,216,226,236,246,256,265,276,285,295,305,315,325,335,345,363,388,414,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,987,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1263,1288,1314,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2003],[26.789,26.787001,26.789,26.790001,26.787001,26.788,26.790001,26.789,26.790001,26.796,26.801001,26.806,26.896,26.580999,25.98,25.558001,25.209,24.660999,24.218,23.992001,23.691999,23.42,23.153,22.482,21.84,21.280001,20.896,20.450001,20.218,19.827,19.364,19.142,18.886,18.684,18.507999,18.301001,18.110001,17.899,17.636,17.502001,17.247999,17.034,16.65,15.957,15.371,14.855,14.414,13.828,13.287,12.567,12.299,11.689,10.742,10.129,9.842,9.519,9.203,8.763,8.114,7.674,7.365,7.11,6.931,6.719,6.396,6.254,6.2,6.006,5.829,5.759,5.719,5.716,5.644,5.588,5.527,5.438,5.341,5.244,5.134,5.061,5.006,4.93,4.835,4.742,4.653,4.586,4.552,4.494,4.458,4.404,4.336,4.267,4.222,4.164,4.113,4.05,4.001,3.961,3.926,3.897,3.876,3.861,3.842,3.811,3.779,3.738,3.713,3.682,3.647],[36.462002,36.464001,36.463001,36.463001,36.464001,36.463001,36.462002,36.463001,36.462002,36.464001,36.466999,36.469002,36.716,37.152,37.240002,37.310001,37.341,37.276001,37.268002,37.296001,37.257,37.238998,37.234001,37.123001,37.064999,36.992001,36.929001,36.868,36.841,36.784,36.695,36.681,36.641998,36.627998,36.615002,36.591,36.558998,36.525002,36.484001,36.460999,36.419998,36.384998,36.319,36.202999,36.105999,36.021999,35.952999,35.862,35.766998,35.634998,35.625,35.535999,35.365002,35.264999,35.247002,35.215,35.176998,35.122002,35.036999,34.984001,34.950001,34.928001,34.917999,34.903999,34.868999,34.868,34.890999,34.886002,34.889999,34.904999,34.925999,34.948002,34.963001,34.978001,34.993,35.000999,35.008999,35.014999,35.018002,35.02,35.02,35.021,35.019001,35.016998,35.012001,35.007999,35.007999,35.006001,35.005001,35.004002,35.000999,34.997002,34.995998,34.992001,34.990002,34.987,34.985001,34.983002,34.981998,34.980999,34.981998,34.985001,34.987999,34.987,34.987,34.986,34.986,34.986,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_035","geolocation":{"type":"Point","coordinates":[-58.00999999999999,18.927]},"basin":1,"timestamp":"2017-12-25T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:56:17.598Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_035.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":35,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,65,76,85,96,105,115,125,135,145,155,165,176,186,196,205,215,226,235,245,256,266,276,286,296,305,315,326,336,346,363,388,413,437,463,488,513,538,563,588,614,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1112,1138,1163,1188,1213,1238,1263,1288,1314,1337,1363,1388,1413,1438,1463,1488,1513,1538,1564,1588,1613,1638,1663,1687,1713,1738,1763,1788,1813,1838,1864,1888,1913,1938,1963,1988],[27.065001,27.066,27.063999,27.066,27.063999,27.066,27.066999,27.065001,27.073999,27.083,27.087,27.084999,27.069,27.094,26.596001,26.028,25.714001,25.371,24.943001,24.628,24.351999,24.089001,23.816,23.606001,23.181,22.610001,21.561001,20.851,20.323999,19.816999,19.597,19.433001,19.295,18.986,18.695,18.280001,18.041,17.91,17.683001,17.445,17.159,16.923,16.545,15.995,15.436,14.819,14.269,13.811,13.355,12.429,12.109,11.423,10.659,10.056,9.691,9.323,8.835,8.409,8.037,7.747,7.269,6.961,6.782,6.61,6.529,6.417,6.27,5.988,5.978,5.904,5.842,5.752,5.682,5.616,5.557,5.474,5.378,5.3,5.243,5.153,5.07,4.992,4.882,4.803,4.708,4.62,4.568,4.515,4.467,4.39,4.318,4.259,4.202,4.161,4.121,4.069,4.018,3.974,3.933,3.893,3.854,3.814,3.783,3.775,3.739,3.704,3.684,3.664],[36.320999,36.32,36.320999,36.32,36.32,36.320999,36.32,36.320999,36.320999,36.324001,36.328999,36.351002,36.438999,36.823002,37.223999,37.320999,37.355,37.438999,37.464001,37.444,37.423,37.400002,37.372002,37.34,37.275002,37.195999,37.030998,36.922001,36.848999,36.775002,36.748001,36.73,36.728001,36.685001,36.655998,36.597,36.556999,36.535,36.498001,36.458,36.408001,36.366001,36.301998,36.208,36.117001,36.014999,35.928001,35.858002,35.782001,35.604,35.584999,35.478001,35.356998,35.264,35.222,35.188,35.124001,35.07,35.026001,34.995998,34.938999,34.911999,34.897999,34.889,34.903,34.919998,34.912998,34.890999,34.919998,34.933998,34.943001,34.959,34.971001,34.981998,34.988998,34.998001,35.006001,35.011002,35.014999,35.018002,35.019001,35.02,35.02,35.018002,35.014,35.009998,35.007999,35.006001,35.005001,35.001999,34.999001,34.995998,34.993,34.991001,34.990002,34.987999,34.985001,34.983002,34.981998,34.98,34.979,34.979,34.980999,34.983002,34.983002,34.981998,34.981998,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_034","geolocation":{"type":"Point","coordinates":[-58.11900000000003,18.983]},"basin":1,"timestamp":"2017-12-20T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:56:15.906Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_034.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,66,76,85,96,105,115,125,135,145,155,166,175,186,196,206,216,225,236,246,256,266,275,285,296,306,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1964,1988,2007],[27.212,27.212,27.212999,27.212,27.214001,27.212,27.216,27.216,27.216999,27.219,27.228001,27.233999,27.25,27.266001,26.614,25.837999,25.334,25.042999,24.820999,24.533001,24.082001,23.830999,23.540001,23.038,22.361,21.820999,21.400999,20.996,20.554001,20.195999,19.638,19.35,19.091,18.902,18.707001,18.413,18.155001,17.885,17.627001,17.382999,17.054001,16.837,16.528999,15.904,15.37,14.917,14.48,13.899,13.157,12.211,11.929,11.424,11.225,10.642,9.792,9.194,8.83,8.369,7.98,7.676,7.463,7.148,6.879,6.674,6.521,6.383,6.225,6.063,5.968,5.901,5.837,5.783,5.73,5.658,5.593,5.511,5.427,5.322,5.217,5.124,5.042,4.992,4.912,4.809,4.745,4.673,4.601,4.539,4.472,4.431,4.387,4.352,4.306,4.238,4.185,4.135,4.072,4.015,3.966,3.92,3.867,3.828,3.786,3.741,3.71,3.718,3.698,3.668,3.644],[36.262001,36.262001,36.263,36.262001,36.262001,36.263,36.263,36.262001,36.262001,36.262001,36.275002,36.314999,36.375999,36.477001,37.16,37.408001,37.453999,37.463001,37.460999,37.435001,37.390999,37.362999,37.324001,37.234001,37.123001,37.049999,37.016998,36.963001,36.902,36.862999,36.778,36.734001,36.709999,36.681999,36.654999,36.612999,36.57,36.526001,36.483002,36.441002,36.384998,36.346001,36.296001,36.193001,36.105,36.030998,35.962002,35.872002,35.744999,35.556999,35.521999,35.465,35.471001,35.389999,35.251999,35.161999,35.130001,35.068001,35.02,34.984001,34.959999,34.929001,34.905998,34.890999,34.891998,34.889999,34.891998,34.890999,34.900002,34.917999,34.932999,34.949001,34.960999,34.974998,34.985001,34.995998,35.004002,35.011002,35.014999,35.018002,35.02,35.021,35.02,35.018002,35.014999,35.011002,35.008999,35.007,35.005001,35.004002,35.001999,35.000999,34.999001,34.994999,34.992001,34.990002,34.987,34.985001,34.983002,34.980999,34.979,34.978001,34.976002,34.974998,34.976002,34.980999,34.984001,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_033","geolocation":{"type":"Point","coordinates":[-58.297000000000025,19.118]},"basin":1,"timestamp":"2017-12-15T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:14.087Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_033.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,66,76,85,95,106,116,125,136,146,156,166,175,185,195,206,215,225,236,245,255,265,275,286,295,306,316,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,762,788,812,838,863,888,913,938,964,987,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1513,1537,1563,1588,1613,1638,1664,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988,2003],[27.525,27.532,27.533001,27.534,27.534,27.534,27.533001,27.535,27.533001,27.539,27.554001,27.563999,27.562,27.523001,27.649,26.886,25.723,25.135,24.636,24.017,23.535,23.125999,22.788,22.408001,21.957001,21.549999,21.047001,20.502001,20.141001,19.775999,19.497,19.243999,19.061001,18.889,18.634001,18.285,18.011999,17.806,17.580999,17.409,17.216999,17.023001,16.666,16.082001,15.433,14.889,14.316,13.812,12.937,12.132,12.106,11.54,11.049,10.531,10.002,9.352,9.155,8.735,8.184,7.763,7.415,7.077,6.867,6.626,6.451,6.287,6.145,6.03,5.953,5.884,5.817,5.761,5.69,5.612,5.565,5.484,5.369,5.294,5.218,5.126,5.069,5.002,4.883,4.777,4.678,4.629,4.57,4.49,4.429,4.38,4.334,4.286,4.225,4.179,4.113,4.067,4.029,3.982,3.944,3.902,3.871,3.814,3.77,3.734,3.698,3.68,3.641,3.6,3.577],[36.012001,36.013,36.013,36.012001,36.012001,36.013,36.014999,36.014999,36.013,36.015999,36.027,36.041,36.057999,36.118999,36.868999,37.27,37.278,37.264,37.272999,37.292,37.276001,37.238998,37.205002,37.152,37.087002,37.035999,36.965,36.901001,36.849998,36.799999,36.763,36.728001,36.713001,36.688999,36.647999,36.588001,36.541,36.507999,36.472,36.444,36.41,36.379002,36.32,36.222,36.113998,36.026001,35.935001,35.859001,35.695,35.532001,35.556999,35.478001,35.425999,35.361,35.285,35.178001,35.167,35.118,35.049,35,34.960999,34.926998,34.909,34.890999,34.879002,34.876999,34.886002,34.896999,34.909,34.923,34.939999,34.959,34.973,34.986,34.993,35,35.004002,35.011002,35.014,35.016998,35.019001,35.02,35.019001,35.016998,35.014999,35.013,35.011002,35.006001,35.004002,35.001999,35,34.997002,34.994999,34.993,34.990002,34.987999,34.986,34.984001,34.981998,34.98,34.979,34.976002,34.974998,34.973,34.972,34.972,34.970001,34.970001,34.969002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_032","geolocation":{"type":"Point","coordinates":[-58.557000000000016,19.234]},"basin":1,"timestamp":"2017-12-10T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:56:12.384Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_032.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,66,76,85,96,105,115,125,135,146,156,166,176,186,196,206,216,225,235,245,256,266,276,286,295,305,315,326,335,346,363,388,413,438,463,488,513,538,562,588,613,639,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1639,1663,1688,1713,1738,1763,1788,1813,1838,1862,1888,1913,1938,1963,1988,2005],[27.604,27.605,27.601999,27.603001,27.603001,27.605,27.604,27.604,27.608,27.612,27.613001,27.615999,27.615999,27.483999,26.702999,26.098,25.725,25.360001,24.868,24.361,23.957001,23.549,22.948999,22.429001,21.639999,21.007999,20.492001,20.080999,19.660999,19.326,19.093,18.858,18.656,18.507,18.268999,18.028,17.868999,17.671,17.413,17.191,16.927,16.733,16.361,15.769,15.227,14.681,14.18,13.497,12.621,12.167,11.95,11.078,10.627,10.095,9.714,9.467,9.166,8.803,8.58,8.16,7.718,7.36,6.998,6.726,6.452,6.238,6.154,6.056,6.006,5.93,5.863,5.785,5.737,5.657,5.59,5.496,5.424,5.317,5.222,5.111,5.05,4.978,4.874,4.779,4.722,4.643,4.58,4.506,4.442,4.365,4.301,4.238,4.171,4.124,4.089,4.067,4.038,3.997,3.945,3.911,3.877,3.825,3.781,3.744,3.704,3.665,3.632,3.609,3.593],[36.015999,36.014999,36.014999,36.015999,36.015999,36.014,36.014999,36.014999,36.014999,36.014999,36.014999,36.015999,36.015999,36.303001,36.839001,37.008999,37.245998,37.283001,37.338001,37.344002,37.325001,37.304001,37.235001,37.151001,37.030998,36.938999,36.868999,36.818001,36.777,36.737999,36.708,36.674999,36.640999,36.619999,36.587002,36.548,36.521999,36.491001,36.446999,36.410999,36.365002,36.332001,36.268002,36.169998,36.081001,35.993999,35.915001,35.793999,35.619999,35.544998,35.542,35.393002,35.326,35.251999,35.210999,35.192001,35.154999,35.102001,35.091999,35.044998,34.991001,34.952999,34.916,34.893002,34.872002,34.862999,34.868,34.875,34.897999,34.919998,34.938,34.950001,34.966,34.98,34.988998,34.992001,35.001999,35.008999,35.011002,35.016998,35.019001,35.02,35.019001,35.015999,35.015999,35.014,35.011002,35.007999,35.005001,35.001999,34.999001,34.995998,34.993,34.991001,34.988998,34.987999,34.986,34.985001,34.983002,34.981998,34.98,34.979,34.978001,34.976002,34.973999,34.973,34.972,34.971001,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_031","geolocation":{"type":"Point","coordinates":[-58.86900000000003,19.371]},"basin":1,"timestamp":"2017-12-05T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:56:10.715Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_031.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,66,76,85,96,105,116,126,136,146,155,166,175,185,195,206,215,225,236,245,255,265,275,286,295,305,316,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1986],[27.971001,27.968,27.969,27.962999,27.968,27.968,27.969,27.968,27.976,27.983,27.99,27.990999,28.174999,28.072001,26.684,26.028,25.419001,25.017,24.632,24.292,23.983999,23.539,23.048,22.503,21.711,21.25,20.719999,20.216,19.851,19.534,19.275999,19.021,18.673,18.379999,18.195999,18.048,17.782,17.594,17.427,17.231001,17.035999,16.872999,16.459,15.819,15.386,14.989,14.353,13.559,12.697,12.208,12.063,11.428,10.728,10.193,9.555,9.163,8.797,8.351,8.238,7.905,7.624,7.316,7.089,6.829,6.574,6.349,6.113,6.023,5.984,5.951,5.885,5.784,5.729,5.661,5.567,5.466,5.378,5.308,5.25,5.167,5.106,5.038,4.96,4.899,4.813,4.728,4.66,4.573,4.503,4.417,4.363,4.326,4.275,4.233,4.193,4.156,4.126,4.078,4.032,3.993,3.944,3.895,3.85,3.767,3.694,3.69,3.646,3.625],[35.759998,35.759998,35.761002,35.761002,35.759998,35.762001,35.759998,35.763,35.759998,35.759998,35.759998,35.761002,35.962002,36.477001,36.806,37.014999,37.123001,37.296001,37.348999,37.355,37.344002,37.298,37.241001,37.167999,37.051998,36.983002,36.921001,36.841,36.779999,36.729,36.709,36.682999,36.638,36.596001,36.569,36.548,36.507,36.476002,36.448002,36.416,36.382999,36.355999,36.285999,36.176998,36.105999,36.041,35.938,35.792,35.631001,35.558998,35.568001,35.463001,35.341999,35.266998,35.166,35.130001,35.089001,35.035999,35.049,35.013,34.979,34.945,34.921001,34.898998,34.879002,34.872002,34.866001,34.879002,34.897999,34.917,34.928001,34.944,34.962002,34.978001,34.992001,34.995998,34.999001,35.005001,35.009998,35.014999,35.018002,35.019001,35.019001,35.02,35.019001,35.018002,35.018002,35.014999,35.014,35.009998,35.007999,35.007999,35.006001,35.004002,35.002998,35.001999,35.000999,34.999001,34.998001,34.997002,34.994999,34.992001,34.992001,34.985001,34.98,34.985001,34.981998,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_030","geolocation":{"type":"Point","coordinates":[-59.160000000000025,19.438]},"basin":1,"timestamp":"2017-11-30T06:48:00.000Z","date_updated_argovis":"2023-01-31T13:56:09.024Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_030.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,56,65,75,86,96,106,115,125,135,146,156,166,175,185,196,206,216,226,236,245,256,266,276,285,296,305,315,325,336,346,363,388,412,438,463,488,513,538,563,588,613,638,663,688,713,738,764,788,813,838,863,889,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1988],[27.896,27.9,27.900999,27.896,27.903999,27.903999,27.903,27.903,27.905001,27.900999,27.910999,27.938,28.24,27.886,26.801001,26.049999,25.332001,24.649,24.421,24.007999,23.766001,23.391001,23.134001,22.754,22.235001,21.636,20.992001,20.478001,20.094,19.635,19.349001,19.087999,18.903,18.620001,18.379,18.139,17.962999,17.688999,17.443001,17.205,16.973,16.798,16.334,15.683,15.039,14.55,14.108,13.643,13.219,12.347,11.832,11.195,10.374,9.894,9.645,9.266,9.013,8.515,8.01,7.816,7.681,7.349,7.028,6.742,6.53,6.346,6.22,6.131,6.043,5.956,5.89,5.826,5.763,5.698,5.622,5.535,5.454,5.378,5.309,5.239,5.133,5.037,4.958,4.896,4.84,4.78,4.724,4.647,4.564,4.473,4.442,4.389,4.334,4.294,4.249,4.204,4.175,4.116,4.078,4.037,3.995,3.935,3.904,3.852,3.808,3.78,3.757,3.721],[35.773998,35.77,35.766998,35.768002,35.765999,35.769001,35.768002,35.769001,35.768002,35.768002,35.769001,35.786999,36.32,36.862999,36.962002,37.112999,37.278999,37.360001,37.376999,37.341,37.312,37.268002,37.241001,37.193001,37.132999,37.054001,36.971001,36.903999,36.858002,36.800999,36.754002,36.709999,36.686001,36.650002,36.605999,36.569,36.536999,36.494999,36.453999,36.415001,36.373001,36.344002,36.263,36.153999,36.049999,35.972,35.894001,35.813,35.744999,35.583,35.514999,35.410999,35.276001,35.199001,35.181999,35.127998,35.108002,35.050999,34.990002,34.981998,34.984001,34.948002,34.916,34.895,34.882,34.876999,34.881001,34.889,34.903,34.919998,34.932999,34.945999,34.958,34.970001,34.98,34.990002,34.995998,35.002998,35.008999,35.014,35.018002,35.019001,35.019001,35.021,35.02,35.019001,35.016998,35.015999,35.012001,35.007999,35.012001,35.011002,35.008999,35.007999,35.006001,35.004002,35.004002,35.001999,35,34.999001,34.998001,34.992001,34.991001,34.986,34.985001,34.987,34.987999,34.986]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_029","geolocation":{"type":"Point","coordinates":[-59.411,19.409]},"basin":1,"timestamp":"2017-11-25T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:56:07.297Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_029.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":29,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,46,56,65,75,85,96,106,116,126,136,145,155,165,175,186,196,206,216,226,236,245,256,265,276,286,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,812,838,863,888,913,938,964,987,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1986],[28.035999,28.035,28.035999,28.037001,28.038,28.038,28.037001,28.037001,28.038,28.045,28.084999,28.26,28.370001,27.305,26.093,25.473,24.862,24.681999,24.32,23.952,23.586,23.040001,22.343,21.653999,21.167999,20.797001,20.33,20.01,19.540001,19.313,19.052999,18.915001,18.712999,18.499001,18.362,18.143,17.978001,17.724001,17.476999,17.195,16.965,16.688999,16.296,15.723,15.175,14.709,14.077,13.548,13.067,12.575,12.011,11.505,10.768,10.123,9.612,8.986,8.544,8.163,7.83,7.525,7.181,6.901,6.627,6.382,6.423,6.409,6.248,6.124,6.04,5.942,5.881,5.8,5.716,5.653,5.585,5.48,5.399,5.337,5.274,5.196,5.11,5.019,4.947,4.836,4.767,4.695,4.627,4.561,4.503,4.454,4.391,4.334,4.288,4.245,4.192,4.14,4.102,4.065,4.014,3.958,3.92,3.89,3.861,3.822,3.781,3.742,3.707,3.672],[35.855,35.856998,35.856998,35.855999,35.856998,35.856998,35.856998,35.856998,35.855999,35.861,35.901001,36.164001,37.067001,37.195999,37.259998,37.297001,37.301998,37.339001,37.355,37.348999,37.313,37.257999,37.158001,37.050999,36.973999,36.916,36.848999,36.807999,36.737,36.723,36.688,36.68,36.66,36.629002,36.608002,36.573002,36.547001,36.504002,36.459999,36.41,36.368,36.323002,36.257999,36.164001,36.070999,35.995998,35.896,35.811001,35.737999,35.666,35.577,35.498001,35.384998,35.280998,35.198002,35.097,35.041,34.993999,34.956001,34.922001,34.888,34.861,34.841,34.824001,34.848999,34.875,34.876999,34.888,34.900002,34.918999,34.933998,34.952999,34.965,34.976002,34.985001,34.995998,35.005001,35.008999,35.012001,35.015999,35.019001,35.02,35.02,35.019001,35.016998,35.015999,35.013,35.011002,35.008999,35.006001,35.002998,35,34.997002,34.994999,34.993,34.990002,34.987999,34.987,34.984001,34.983002,34.980999,34.980999,34.98,34.978001,34.976002,34.974998,34.973999,34.972]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_028","geolocation":{"type":"Point","coordinates":[-59.601999999999975,19.324]},"basin":1,"timestamp":"2017-11-20T06:46:00.000Z","date_updated_argovis":"2023-01-31T13:56:05.589Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_028.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,66,75,85,96,106,115,126,135,145,155,165,176,185,195,205,215,225,235,245,256,266,275,286,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1288,1312,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1737,1763,1788,1813,1838,1863,1888,1914,1938,1963,1989,2001],[28.160999,28.160999,28.163,28.163,28.162001,28.160999,28.160999,28.157,28.139,28.122,28.118,28.295,27.666,26.226999,25.405001,24.780001,24.388,24.091,23.673,23.281,22.861,22.481001,21.974001,21.349001,21.086,20.530001,19.964001,19.575001,19.289,19.202999,18.913,18.521999,18.221001,17.943001,17.735001,17.499001,17.221001,16.941999,16.582001,16.497999,16.289,15.962,15.652,15.243,14.87,14.397,13.872,13.319,12.624,12.029,11.612,11.189,10.676,10.027,9.328,8.907,8.434,7.872,7.45,7.135,6.97,6.771,6.56,6.378,6.202,6.088,5.978,5.884,5.812,5.739,5.674,5.644,5.617,5.591,5.594,5.467,5.417,5.325,5.211,5.15,5.085,4.98,4.9,4.801,4.749,4.684,4.617,4.576,4.537,4.488,4.414,4.332,4.28,4.226,4.159,4.09,4.052,4.013,3.967,3.926,3.89,3.851,3.816,3.777,3.731,3.705,3.677,3.654,3.647],[36.004002,36.004002,36.004002,36.002998,36.004002,36.004002,36.001999,36.001999,36.000999,35.998001,36.000999,36.659,37.297001,37.335999,37.355999,37.355999,37.348,37.323002,37.272999,37.268002,37.238998,37.185001,37.110001,36.981998,36.956001,36.882,36.798,36.749001,36.73,36.741001,36.696999,36.636002,36.584,36.534,36.499001,36.465,36.419998,36.373001,36.310001,36.292,36.257,36.202,36.152,36.084,36.021999,35.945999,35.862,35.776001,35.667999,35.577999,35.514,35.448002,35.370998,35.269001,35.153999,35.104,35.042999,34.960999,34.908001,34.872002,34.862999,34.855999,34.841999,34.832001,34.825001,34.830002,34.838001,34.844002,34.855999,34.868999,34.882999,34.894001,34.911999,34.93,34.960999,34.963001,34.985001,34.993,34.993999,35,35.002998,35.007999,35.013,35.014,35.013,35.009998,35.007999,35.007,35.006001,35.005001,35.002998,34.999001,34.997002,34.993999,34.991001,34.987999,34.986,34.984001,34.981998,34.980999,34.980999,34.98,34.978001,34.977001,34.973999,34.973999,34.973999,34.973,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_027","geolocation":{"type":"Point","coordinates":[-59.757000000000005,19.242]},"basin":1,"timestamp":"2017-11-15T06:56:00.000Z","date_updated_argovis":"2023-01-31T13:56:03.685Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_027.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,36,46,55,65,76,85,95,105,115,125,135,146,155,166,176,185,195,205,215,225,236,246,255,265,276,285,295,305,316,326,336,345,363,388,413,438,462,488,513,538,563,588,613,638,663,687,713,738,763,788,813,838,863,887,913,939,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1964,1988,2006],[28.025999,28.018,28.018,28.023001,28.021,28.025,28.025999,28.030001,28.037001,28.042,28.047001,28.211,27.903,26.929001,26.127001,25.457001,24.865999,24.523001,24.174,23.923,23.555,23.142,22.495001,21.679001,20.952999,20.459999,20.239,20.028999,19.806999,19.541,19.229,19.042,18.788,18.629,18.525999,18.114,17.764999,17.570999,17.239,17.049,16.808001,16.57,16.104,15.464,14.991,14.522,13.976,13.346,12.854,12.263,11.776,11.196,10.342,9.929,9.144,8.71,8.299,7.95,7.578,7.263,6.888,6.717,6.544,6.408,6.285,6.213,6.174,6.084,5.999,5.96,5.808,5.69,5.528,5.514,5.43,5.374,5.293,5.249,5.182,5.109,5.042,4.967,4.911,4.846,4.783,4.703,4.647,4.586,4.523,4.459,4.384,4.324,4.264,4.206,4.16,4.106,4.055,4.011,3.971,3.935,3.9,3.859,3.815,3.783,3.748,3.728,3.696,3.659,3.634],[35.988998,35.988998,35.988998,35.987,35.987,35.985001,35.985001,35.987,35.990002,35.992001,35.993999,36.494999,37.296001,37.319,37.339001,37.362,37.355999,37.361,37.354,37.360001,37.34,37.292999,37.171001,37.027,36.945,36.867001,36.841999,36.830002,36.816002,36.789001,36.734001,36.707001,36.671001,36.654999,36.643002,36.567001,36.505001,36.473999,36.417,36.386002,36.345001,36.304001,36.23,36.120998,36.042999,35.966,35.880001,35.777,35.702,35.612,35.539001,35.448002,35.301998,35.251999,35.118,35.056999,35.007999,34.962002,34.922001,34.889,34.848999,34.848,34.839001,34.837002,34.838001,34.848,34.865002,34.882999,34.891998,34.919998,34.926998,34.938999,34.943001,34.966,34.969002,34.98,34.984001,34.993,34.997002,35.001999,35.006001,35.009998,35.013,35.014999,35.014,35.009998,35.007999,35.007,35.007,35.005001,35.000999,34.998001,34.995998,34.993,34.991001,34.988998,34.987,34.985001,34.984001,34.981998,34.980999,34.979,34.978001,34.977001,34.976002,34.974998,34.973999,34.973,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_026","geolocation":{"type":"Point","coordinates":[-59.769000000000005,19.091]},"basin":1,"timestamp":"2017-11-10T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:56:02.011Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_026.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[4,5,6,7,9,10,15,25,36,46,56,66,75,85,96,106,116,125,136,146,155,165,175,186,196,206,215,225,236,245,255,265,275,286,295,305,315,325,336,346,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,962,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1984],[28.176001,28.177,28.177999,28.179001,28.173,28.179001,28.179001,28.181999,28.184999,28.422001,28.441,27.35,26.216,25.785,25.278999,24.782,24.518999,23.976999,23.697001,23.315001,22.618999,22.014999,21.627001,21.181,20.959,20.538,20.061001,19.700001,19.322001,19.075001,18.785999,18.392,18.142,18.042999,17.841999,17.650999,17.524,17.299,17.103001,16.827999,16.5,15.81,15.25,14.732,14.211,13.546,12.968,12.277,11.891,11.385,10.798,10.169,9.466,8.949,8.553,7.94,7.497,7.261,7.01,6.704,6.445,6.221,6.101,5.949,5.863,5.791,5.73,5.718,5.662,5.638,5.6,5.586,5.544,5.412,5.39,5.305,5.234,5.167,5.075,4.987,4.935,4.851,4.767,4.697,4.634,4.574,4.505,4.436,4.384,4.331,4.26,4.204,4.158,4.096,4.055,4.04,3.997,3.947,3.895,3.845,3.804,3.763,3.739,3.717,3.676,3.656],[35.931999,35.931999,35.932999,35.931999,35.931999,35.931999,35.931999,35.932999,35.932999,36.384998,37.174999,37.307999,37.278,37.27,37.273998,37.265999,37.313,37.261002,37.285,37.27,37.192001,37.105999,37.048,36.980999,36.951,36.901001,36.847,36.813999,36.764,36.729,36.681999,36.603001,36.553001,36.542,36.507,36.476002,36.458,36.417999,36.382,36.334999,36.291,36.179001,36.084999,36,35.916,35.807999,35.719002,35.615002,35.566002,35.487999,35.394001,35.294998,35.181,35.099998,35.051998,34.967999,34.915001,34.897999,34.873001,34.84,34.82,34.812,34.82,34.824001,34.834,34.841999,34.861,34.881001,34.898998,34.921001,34.935001,34.955002,34.973,34.976002,34.990002,34.991001,35.000999,35.006001,35.014,35.016998,35.018002,35.015999,35.014,35.012001,35.009998,35.008999,35.007,35.004002,35.001999,35,34.995998,34.993999,34.992001,34.987999,34.987,34.986,34.984001,34.981998,34.98,34.978001,34.977001,34.974998,34.974998,34.974998,34.972,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_025","geolocation":{"type":"Point","coordinates":[-59.65199999999999,18.887]},"basin":1,"timestamp":"2017-11-05T07:03:00.000Z","date_updated_argovis":"2023-01-31T13:56:00.199Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_025.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,66,75,85,95,105,116,125,136,146,156,165,176,185,195,205,216,225,236,246,256,266,276,286,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,889,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1413,1438,1464,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1837,1863,1888,1913,1938,1963,1983],[28.143,28.15,28.150999,28.152,28.15,28.149,28.148001,28.148001,28.15,28.153,28.167,28.233,28.216999,27.837999,27.219999,26.042,25.475,24.809,24.556,24.382,24.044001,23.709,23.143999,22.546,21.929001,21.247,20.614,20.267,19.868,19.391001,19.097,18.885,18.569,18.294001,17.952,17.673,17.472,17.237,17.114,16.926001,16.726999,16.41,16.011,15.382,14.847,14.279,13.755,13.194,12.573,11.928,11.525,10.968,10.385,9.852,9.179,8.665,8.099,7.559,7.045,6.743,6.582,6.491,6.311,6.153,6.004,5.922,5.849,5.767,5.684,5.656,5.615,5.576,5.588,5.581,5.528,5.437,5.361,5.301,5.238,5.137,5.069,5.005,4.941,4.885,4.823,4.769,4.695,4.641,4.583,4.522,4.479,4.427,4.368,4.323,4.269,4.216,4.177,4.131,4.075,4.041,4.004,3.959,3.896,3.854,3.841,3.824,3.793,3.766],[35.793999,35.793999,35.792999,35.792999,35.794998,35.793999,35.794998,35.794998,35.793999,35.792999,35.807999,35.876999,36.070999,36.724998,37.014,37.264,37.310001,37.335999,37.348999,37.370998,37.347,37.330002,37.280998,37.201,37.113998,37.030998,36.945,36.895,36.833,36.777,36.731998,36.696999,36.647999,36.604,36.548,36.500999,36.465,36.424999,36.403999,36.372002,36.337002,36.284,36.215,36.108002,36.019001,35.929001,35.842999,35.752998,35.659,35.561001,35.498001,35.414001,35.326,35.244999,35.147999,35.076,34.993999,34.917,34.848999,34.816002,34.810001,34.820999,34.817001,34.811001,34.806,34.811001,34.827,34.845001,34.856998,34.875999,34.890999,34.902,34.924999,34.951,34.965,34.978001,34.985001,34.997002,35.002998,35.000999,35.002998,35.007999,35.009998,35.011002,35.012001,35.012001,35.011002,35.009998,35.008999,35.007999,35.006001,35.005001,35.002998,35.001999,35,34.998001,34.997002,34.994999,34.992001,34.991001,34.992001,34.991001,34.987999,34.986,34.987999,34.991001,34.991001,34.991001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_024","geolocation":{"type":"Point","coordinates":[-59.565,18.699]},"basin":1,"timestamp":"2017-10-31T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:55:58.411Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_024.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":24,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,65,75,85,95,105,115,126,135,145,155,165,176,186,196,206,216,226,236,245,256,265,275,286,295,305,315,325,336,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,914,938,963,987,1013,1038,1063,1088,1113,1138,1163,1187,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1986],[28.246,28.249001,28.247,28.254,28.256001,28.249001,28.254999,28.257999,28.250999,28.231001,28.228001,28.26,28.232,27.982,27.250999,26.143999,25.485001,24.860001,24.386,23.780001,23.031,22.618999,22.247,21.629,21.347,21.111,20.66,20.202999,19.875,19.538,19.209,18.981001,18.718,18.402,18.072001,17.768,17.579,17.471001,17.167,16.823,16.523001,16.261999,15.807,15.211,14.796,14.271,13.768,13.229,12.772,12.066,11.287,10.678,10.063,9.426,8.916,8.469,8.09,7.662,7.118,6.919,6.642,6.393,6.237,6.138,5.98,5.875,5.766,5.716,5.665,5.63,5.596,5.553,5.542,5.496,5.433,5.367,5.293,5.257,5.243,5.17,5.086,5.004,4.943,4.883,4.801,4.735,4.654,4.596,4.55,4.491,4.413,4.322,4.263,4.22,4.2,4.168,4.109,4.067,4.016,3.97,3.948,3.891,3.859,3.825,3.796,3.754,3.728,3.686],[35.832001,35.832001,35.833,35.833,35.830002,35.834,35.833,35.833,35.852001,35.863998,35.870998,35.893002,35.898998,36.412998,37.076,37.233002,37.292999,37.310001,37.292,37.266998,37.201,37.179001,37.138,37.058998,37.046001,37.02,36.958,36.890999,36.835999,36.787998,36.743,36.709,36.669998,36.619999,36.566002,36.515999,36.483002,36.465,36.411999,36.352001,36.300999,36.254002,36.176998,36.077999,36.007999,35.928001,35.846001,35.761002,35.696999,35.589001,35.464001,35.375,35.279999,35.181999,35.105999,35.042,34.992001,34.939999,34.867001,34.860001,34.833,34.806,34.800999,34.805,34.806,34.82,34.833,34.845001,34.858002,34.877998,34.896,34.909,34.937,34.960999,34.976002,34.987999,34.991001,34.999001,35.005001,35.007,35.009998,35.008999,35.009998,35.012001,35.011002,35.012001,35.009998,35.008999,35.007999,35.006001,35.002998,35,34.998001,34.997002,34.997002,34.995998,34.994999,34.992001,34.988998,34.988998,34.990002,34.987,34.987,34.987999,34.987999,34.986,34.986,34.984001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_023","geolocation":{"type":"Point","coordinates":[-59.367999999999995,18.536]},"basin":1,"timestamp":"2017-10-26T06:54:00.000Z","date_updated_argovis":"2023-01-31T13:55:56.609Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_023.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":23,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,45,55,65,75,86,95,105,115,125,135,145,156,166,176,185,196,205,215,226,236,246,255,266,276,285,296,306,315,325,336,345,363,388,413,438,463,488,513,538,563,588,613,638,664,688,713,738,763,788,813,838,864,887,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1288,1312,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1637,1663,1689,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1983],[28.066,28.072001,28.072001,28.068001,28.075001,28.072001,28.068001,28.073999,28.068001,28.082001,28.084999,28.094,28.080999,27.746,27.294001,26.405001,25.674999,25.35,25.002001,24.344,23.836,23.311001,22.993999,22.533001,21.826,21.315001,20.650999,20.087,19.733999,19.451,19.122,18.708,18.302,18.040001,17.816999,17.656,17.497999,17.243,17.066999,16.878,16.653,16.406,16.08,15.46,14.934,14.306,13.665,12.939,12.311,11.674,11.145,10.42,9.713,9.016,8.61,8.162,7.608,7.107,6.724,6.568,6.42,6.264,6.166,6.109,5.98,5.866,5.792,5.729,5.677,5.645,5.598,5.551,5.516,5.482,5.462,5.432,5.36,5.313,5.264,5.192,5.115,5.038,4.944,4.872,4.802,4.739,4.692,4.624,4.559,4.488,4.445,4.387,4.308,4.256,4.209,4.159,4.124,4.08,4.041,3.997,3.951,3.921,3.879,3.849,3.817,3.786,3.743,3.716],[35.875,35.874001,35.873001,35.875999,35.872002,35.875,35.875,35.875999,35.874001,35.874001,35.875,35.886002,35.981998,36.368,36.916,37.012001,37.161999,37.285999,37.341,37.268002,37.241001,37.214001,37.192001,37.159,37.087002,37.039001,36.958,36.867001,36.813999,36.776001,36.73,36.671001,36.605999,36.562,36.526001,36.498001,36.469002,36.426998,36.395,36.362,36.320999,36.279999,36.223,36.118,36.032001,35.931999,35.831001,35.715,35.619999,35.521,35.439999,35.331001,35.223999,35.123001,35.07,35.006001,34.928001,34.856998,34.813,34.800999,34.793999,34.787998,34.792,34.803001,34.804001,34.806999,34.82,34.835999,34.844002,34.869999,34.890999,34.91,34.922001,34.93,34.939999,34.952999,34.959999,34.971001,34.983002,34.997002,35.000999,35.005001,35.009998,35.011002,35.011002,35.011002,35.011002,35.008999,35.007999,35.006001,35.005001,35.002998,35,34.998001,34.997002,34.994999,34.993999,34.992001,34.991001,34.990002,34.988998,34.988998,34.987999,34.987999,34.987999,34.987,34.985001,34.984001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_022","geolocation":{"type":"Point","coordinates":[-59.170000000000016,18.427]},"basin":1,"timestamp":"2017-10-21T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:55:55.018Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_022.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":22,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,65,76,85,95,106,115,125,136,146,155,165,175,185,195,205,215,226,236,246,256,266,276,285,295,305,315,325,335,346,363,388,413,438,463,488,513,538,563,588,614,638,663,688,713,738,763,788,813,838,863,888,913,939,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1862,1888,1913,1938,1962,1988,2003],[28.164,28.167999,28.166,28.166,28.167,28.167999,28.171,28.172001,28.173,28.174,28.174999,28.059,27.657,27.129,26.830999,26.200001,25.632,25.264999,24.705,23.983999,23.301001,22.768,22.392,21.797001,21.275,20.849001,20.225,19.773001,19.552,19.239,18.841,18.500999,18.209,17.898001,17.681999,17.507999,17.295,17.136999,16.906,16.700001,16.458,16.292,15.749,15.149,14.641,14.156,13.496,12.963,12.257,11.766,11.136,10.468,9.914,9.364,8.875,8.282,7.786,7.323,6.986,6.67,6.474,6.3,6.129,5.964,5.878,5.836,5.797,5.734,5.666,5.634,5.598,5.579,5.494,5.449,5.396,5.332,5.293,5.289,5.234,5.153,5.1,5.046,4.944,4.872,4.817,4.729,4.672,4.625,4.568,4.516,4.448,4.393,4.324,4.274,4.228,4.169,4.115,4.068,4.014,3.966,3.933,3.903,3.875,3.849,3.819,3.779,3.742,3.69,3.666],[35.856998,35.855,35.855999,35.855999,35.855999,35.855,35.855,35.855,35.855,35.855999,35.855999,36.029999,36.448002,36.729,36.867001,37.005001,37.140999,37.314999,37.280998,37.268002,37.216,37.186001,37.157001,37.074001,37.025002,36.992001,36.887001,36.813,36.785999,36.747002,36.688999,36.633999,36.587002,36.536999,36.498001,36.470001,36.433998,36.408001,36.368,36.330002,36.289001,36.257999,36.166,36.067001,35.985001,35.903999,35.797001,35.723999,35.615002,35.536999,35.438999,35.34,35.261002,35.181999,35.116001,35.028,34.958,34.896,34.855,34.813999,34.798,34.794998,34.801998,34.797001,34.797001,34.814999,34.828999,34.84,34.856998,34.884998,34.902,34.917999,34.924,34.937,34.952,34.964001,34.969002,34.980999,34.988998,34.994999,35.002998,35.006001,35.007,35.009998,35.011002,35.009998,35.009998,35.009998,35.008999,35.007,35.005001,35.002998,35,34.999001,34.998001,34.994999,34.993,34.992001,34.990002,34.990002,34.988998,34.988998,34.988998,34.987999,34.987999,34.987,34.986,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_021","geolocation":{"type":"Point","coordinates":[-59.093999999999994,18.265]},"basin":1,"timestamp":"2017-10-16T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:55:53.212Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_021.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":21,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,55,65,75,86,96,106,116,125,136,146,155,165,176,186,196,206,216,225,235,245,255,265,275,285,295,306,316,326,336,346,364,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1012,1037,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1437,1463,1488,1513,1538,1563,1588,1613,1638,1662,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1985],[28.466,28.466,28.468,28.466999,28.466999,28.469999,28.471001,28.473,28.476999,28.476,28.361,27.851999,27.59,26.794001,26.091,25.419001,24.858,24.410999,23.951,23.233999,22.686001,22.155001,21.663,21.257,20.830999,20.395,20.167999,19.856001,19.454,19.216999,18.955,18.535,18.157,17.808001,17.52,17.176001,16.993,16.812,16.636,16.427,16.232,16.080999,15.675,15.109,14.485,13.784,13.279,12.637,12.126,11.535,10.999,10.366,9.766,9.389,8.811,8.262,7.594,7.161,6.814,6.594,6.378,6.222,6.191,6.077,5.907,5.81,5.77,5.726,5.684,5.643,5.596,5.545,5.514,5.45,5.405,5.356,5.307,5.247,5.195,5.147,5.08,4.985,4.92,4.865,4.81,4.747,4.678,4.623,4.546,4.487,4.416,4.345,4.274,4.209,4.147,4.096,4.057,4.021,3.98,3.953,3.919,3.886,3.851,3.796,3.755,3.728,3.688,3.657],[35.576,35.575001,35.574001,35.577,35.575001,35.575001,35.574001,35.575001,35.575001,35.589001,35.784,36.416,36.805,37.157001,37.292,37.34,37.334,37.327999,37.285,37.200001,37.164001,37.098,37.042999,36.999001,36.962002,36.917999,36.886002,36.845001,36.789001,36.751999,36.715,36.645,36.584,36.523998,36.473999,36.405998,36.377998,36.352001,36.320999,36.286999,36.251999,36.227001,36.158001,36.063,35.966,35.851002,35.768002,35.668999,35.591,35.500999,35.416,35.318001,35.234001,35.186001,35.103001,35.021999,34.923,34.863998,34.821999,34.799999,34.789001,34.784,34.805,34.806,34.798,34.800999,34.823002,34.833,34.846001,34.872002,34.894001,34.91,34.928001,34.939999,34.952,34.966999,34.978001,34.984001,34.990002,34.997002,35.004002,35.006001,35.007,35.008999,35.011002,35.011002,35.009998,35.009998,35.007999,35.006001,35.004002,35.001999,34.999001,34.997002,34.994999,34.993,34.991001,34.990002,34.988998,34.988998,34.988998,34.988998,34.987999,34.987,34.986,34.985001,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_020","geolocation":{"type":"Point","coordinates":[-59.05099999999999,18.213]},"basin":1,"timestamp":"2017-10-11T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:55:51.506Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_020.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":20,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,65,76,85,95,106,116,125,135,145,156,165,175,186,195,205,216,226,235,246,255,265,275,285,295,306,316,326,335,345,363,388,413,438,463,488,513,538,563,588,613,638,664,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1789,1813,1838,1862,1888,1914,1938,1963,1988],[28.462,28.468,28.468,28.471001,28.469,28.472,28.475,28.474001,28.469,28.336,28.305,28.274,28.058001,26.731001,25.533001,24.937,24.455,23.839001,23.355,22.809999,22.469999,22.037001,21.566,21.003,20.655001,20.222,19.773001,19.489,19.215,19.014,18.829,18.542,18.284,17.961,17.804001,17.528999,17.346001,17.129999,16.882,16.636999,16.407,16.183001,15.8,15.329,14.84,14.346,13.824,13.145,12.52,11.894,11.102,10.395,9.565,9.007,8.507,8.034,7.343,7.067,6.873,6.582,6.453,6.276,6.152,6.078,5.958,5.858,5.755,5.727,5.685,5.617,5.599,5.579,5.565,5.523,5.466,5.396,5.339,5.283,5.252,5.226,5.2,5.137,5.052,4.976,4.923,4.872,4.774,4.668,4.588,4.524,4.477,4.433,4.39,4.348,4.306,4.269,4.228,4.178,4.104,4.031,3.972,3.918,3.869,3.82,3.767,3.722,3.694,3.661],[35.160999,35.166,35.165001,35.167,35.166,35.169998,35.173,35.187,35.483002,35.915001,35.962002,36.112999,36.831001,37.063,37.082001,37.25,37.285,37.248001,37.243,37.207001,37.172001,37.133999,37.083,37.016998,36.970001,36.901001,36.799999,36.761002,36.724998,36.700001,36.667999,36.620998,36.588001,36.535999,36.511002,36.466,36.435001,36.400002,36.356998,36.314999,36.277,36.238998,36.174999,36.098,36.018002,35.942001,35.863998,35.757999,35.660999,35.567001,35.438,35.327999,35.202999,35.119999,35.054001,34.993999,34.884998,34.859001,34.847,34.816002,34.808998,34.808998,34.810001,34.820999,34.820999,34.824001,34.827999,34.846001,34.859001,34.873001,34.890999,34.907001,34.926998,34.945999,34.962002,34.966999,34.973999,34.978001,34.983002,34.993,35.002998,35.007999,35.007999,35.008999,35.012001,35.016998,35.014999,35.012001,35.009998,35.007999,35.006001,35.005001,35.002998,35.001999,35,34.999001,34.997002,34.994999,34.993,34.991001,34.988998,34.987999,34.987999,34.987999,34.986,34.985001,34.984001,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_019","geolocation":{"type":"Point","coordinates":[-58.886000000000024,18.202]},"basin":1,"timestamp":"2017-10-06T06:49:00.000Z","date_updated_argovis":"2023-01-31T13:55:49.712Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_019.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":19,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,36,46,56,65,75,86,96,106,115,126,135,145,155,166,175,185,196,206,216,226,235,246,255,266,276,286,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,937,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1989,2002],[28.459,28.457001,28.459,28.465,28.472,28.475,28.474001,28.474001,28.471001,28.481001,28.527,28.483999,27.761,27.107,26.577,25.624001,25.009001,24.486,23.903,23.466999,23.073999,22.535,21.986,21.403,20.846001,20.417999,20.083,19.806,19.538,19.152,18.833,18.504999,18.229,17.961,17.688999,17.528999,17.355,17.139,16.841,16.603001,16.386,16.108,15.735,15.171,14.673,14.093,13.542,12.929,12.289,11.727,11.159,10.515,9.681,8.96,8.418,7.773,7.244,6.887,6.662,6.48,6.223,6.188,6.172,6.07,5.963,5.801,5.753,5.709,5.65,5.63,5.591,5.557,5.553,5.473,5.393,5.322,5.233,5.178,5.125,5.078,5.012,4.96,4.898,4.83,4.752,4.692,4.626,4.567,4.51,4.452,4.367,4.314,4.254,4.208,4.149,4.092,4.049,4.012,3.986,3.956,3.901,3.871,3.846,3.821,3.793,3.759,3.72,3.664,3.641],[36.021,36.021,36.021,36.019001,36.021999,36.02,36.021,36.015999,36.019001,36.025002,36.084,36.240002,36.896,37.103001,37.296001,37.231998,37.319,37.316002,37.292999,37.264999,37.221001,37.179001,37.115002,37.039001,36.941002,36.880001,36.853001,36.812,36.782001,36.728001,36.688,36.631001,36.589001,36.542,36.500999,36.474998,36.446999,36.407001,36.358002,36.316002,36.278,36.231998,36.166,36.074001,35.997002,35.901001,35.810001,35.714001,35.612,35.530998,35.445999,35.353001,35.228001,35.119999,35.048,34.950001,34.874001,34.832001,34.810001,34.797001,34.776001,34.785999,34.803001,34.806,34.813999,34.813,34.830002,34.847,34.869999,34.882,34.896999,34.909,34.932999,34.942001,34.958,34.976002,34.985001,34.993,35,35.004002,35.006001,35.009998,35.011002,35.012001,35.012001,35.011002,35.009998,35.008999,35.007999,35.006001,35.001999,35.000999,34.999001,34.998001,34.994999,34.993,34.992001,34.990002,34.991001,34.991001,34.988998,34.988998,34.988998,34.988998,34.987999,34.987,34.986,34.983002,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_018","geolocation":{"type":"Point","coordinates":[-58.92399999999998,18.22]},"basin":1,"timestamp":"2017-10-01T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:55:47.984Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_018.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":18,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,55,66,75,86,96,106,115,125,136,146,155,165,175,186,195,205,215,226,235,245,255,265,275,285,295,305,315,326,335,345,363,388,413,438,463,488,513,538,563,588,613,639,663,688,713,738,763,788,813,838,863,889,913,938,963,988,1013,1037,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1362,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1914,1938,1963,1988,2001],[28.299999,28.299,28.297001,28.298,28.298,28.298,28.301001,28.299999,28.301001,28.312,28.277,28.148001,27.177,26.259001,25.903999,25.490999,24.98,24.612,24.049,23.629999,23.066999,22.662001,21.893999,21.198,20.475,20.040001,19.780001,19.472,19.024,18.719999,18.587999,18.375999,18.188999,17.903999,17.646999,17.414,17.153,16.958,16.666,16.437,16.223,16.084999,15.755,15.186,14.637,14.153,13.58,13.09,12.501,12.113,11.526,10.684,9.982,9.321,8.711,8.358,7.987,7.449,6.938,6.802,6.512,6.33,6.287,6.23,6.082,5.97,5.873,5.793,5.754,5.701,5.62,5.589,5.524,5.495,5.436,5.404,5.368,5.332,5.285,5.206,5.132,5.027,4.918,4.816,4.747,4.68,4.619,4.551,4.481,4.428,4.369,4.314,4.262,4.206,4.163,4.129,4.1,4.031,3.995,3.945,3.896,3.86,3.821,3.781,3.747,3.715,3.676,3.634,3.612],[35.977001,35.977001,35.978001,35.978001,35.979,35.977001,35.976002,35.977001,35.978001,36.074001,36.171001,36.286999,36.918999,37.008999,37.238998,37.327999,37.326,37.323002,37.294998,37.264,37.224998,37.179001,37.050999,36.965,36.875,36.799999,36.785,36.758999,36.671001,36.618,36.624001,36.591999,36.574001,36.532001,36.487999,36.446999,36.401001,36.368,36.319,36.279999,36.243999,36.221001,36.167999,36.075001,35.986,35.912998,35.82,35.743,35.655998,35.605999,35.512001,35.372002,35.262001,35.165001,35.078999,35.036999,34.988998,34.91,34.841999,34.844002,34.816002,34.812,34.828999,34.837002,34.834999,34.838001,34.841999,34.847,34.859001,34.869999,34.881001,34.901001,34.911999,34.929001,34.943001,34.953999,34.966,34.977001,34.987,34.998001,35.004002,35.006001,35.007999,35.011002,35.013,35.012001,35.011002,35.009998,35.007999,35.006001,35.004002,35.001999,35.000999,34.999001,34.999001,34.999001,34.998001,34.992001,34.992001,34.990002,34.988998,34.987,34.986,34.985001,34.985001,34.983002,34.981998,34.980999,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_017","geolocation":{"type":"Point","coordinates":[-58.90300000000002,18.263]},"basin":1,"timestamp":"2017-09-26T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:55:46.230Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_017.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":17,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,46,56,65,76,85,96,106,116,126,136,145,156,166,176,186,196,206,215,225,235,245,255,266,276,286,296,305,315,325,335,345,363,388,413,438,463,488,513,537,563,588,613,638,664,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1062,1088,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1989,2002],[28.284,28.290001,28.290001,28.291,28.291,28.289,28.292,28.291,28.290001,28.263,28.159,27.959,27.209,26.614,25.805,25.469999,25.009001,24.655001,24.169001,23.594,22.836,22.243,21.714001,21.253,20.950001,20.540001,20.091999,19.618,19.246,19.035999,18.860001,18.687,18.503,18.261,18.035999,17.695,17.452,17.181999,16.995001,16.783001,16.459,16.145,15.796,15.415,14.968,14.257,13.585,12.9,12.34,11.597,10.833,10.303,9.816,9.235,8.747,8.214,7.917,7.746,7.421,6.93,6.757,6.506,6.437,6.378,6.144,6.021,5.931,5.849,5.791,5.713,5.631,5.569,5.519,5.497,5.462,5.403,5.352,5.291,5.25,5.206,5.126,5.049,4.987,4.95,4.878,4.815,4.779,4.734,4.661,4.58,4.496,4.418,4.369,4.316,4.264,4.21,4.159,4.112,4.078,4.033,3.999,3.964,3.91,3.861,3.825,3.797,3.754,3.708,3.695],[36.125,36.125,36.125,36.125,36.125,36.125999,36.125,36.125999,36.126999,36.140999,36.161999,36.733002,37.355999,37.374001,37.358002,37.351002,37.348999,37.342999,37.326,37.271999,37.172001,37.137001,37.067001,37.005001,36.98,36.926998,36.853001,36.785999,36.728001,36.707001,36.683998,36.657001,36.631001,36.591999,36.553001,36.497002,36.452,36.404999,36.373001,36.337002,36.284,36.231998,36.174999,36.110001,36.037998,35.925999,35.816002,35.713001,35.636002,35.521999,35.391998,35.308998,35.237999,35.153999,35.087002,35.015999,34.98,34.970001,34.926998,34.858002,34.846001,34.828999,34.839001,34.853001,34.834,34.831001,34.84,34.848,34.860001,34.870998,34.884998,34.900002,34.916,34.939999,34.960999,34.966,34.969002,34.979,34.992001,35.002998,35.006001,35.007999,35.007999,35.014,35.012001,35.012001,35.014,35.014,35.012001,35.011002,35.009998,35.006001,35.004002,35.001999,35,34.998001,34.997002,34.995998,34.995998,34.994999,34.995998,34.995998,34.994999,34.993999,34.993,34.993,34.990002,34.987999,34.987]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_016","geolocation":{"type":"Point","coordinates":[-58.82900000000001,18.298]},"basin":1,"timestamp":"2017-09-21T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:55:44.568Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_016.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":16,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,55,66,75,85,95,105,115,126,136,146,156,165,175,185,196,205,216,226,236,245,255,265,275,286,295,305,315,325,336,346,363,388,413,438,463,488,513,538,563,588,613,638,664,688,713,738,763,788,813,838,863,888,914,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1463,1488,1512,1538,1563,1588,1613,1638,1663,1687,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1989],[28.027,28.030001,28.030001,28.025999,28.032,28.032,28.034,28.037001,28.039,28.049999,28.054001,28.063,28.112,27.666,26.989,26.009001,25.223,24.709999,24.162001,23.631001,22.823,22.267,21.721001,21.323999,20.686001,20.35,20.209,19.777,19.365,18.903,18.556,18.459999,18.436001,18.200001,17.945,17.790001,17.596001,17.35,17.111,16.843,16.532,16.17,15.768,15.359,14.768,14.152,13.481,13.071,12.518,11.882,11.235,10.669,9.875,9.216,8.704,8.424,7.776,7.251,6.826,6.722,6.447,6.397,6.343,6.218,6.07,5.964,5.877,5.797,5.739,5.691,5.637,5.592,5.538,5.488,5.457,5.415,5.359,5.33,5.249,5.183,5.105,5.036,4.957,4.908,4.831,4.761,4.685,4.616,4.548,4.493,4.428,4.377,4.33,4.288,4.249,4.197,4.142,4.078,4.055,4.012,3.968,3.945,3.896,3.842,3.805,3.772,3.745,3.702],[36.157001,36.154999,36.154999,36.155998,36.159,36.155998,36.159,36.159,36.158001,36.167,36.18,36.188999,36.493999,37.220001,37.341,37.368999,37.334,37.326,37.305,37.261002,37.178001,37.112999,37.056999,37.015999,36.924999,36.875,36.854,36.811001,36.759998,36.673,36.602001,36.584,36.606998,36.577,36.534,36.509998,36.479,36.438,36.396999,36.351002,36.299,36.242001,36.174999,36.106998,36.007999,35.903999,35.792,35.735001,35.653,35.553001,35.452,35.361,35.238998,35.144001,35.078999,35.060001,34.970001,34.896,34.845001,34.847,34.821999,34.834999,34.848999,34.841999,34.834999,34.838001,34.848999,34.856998,34.863998,34.870998,34.881001,34.894001,34.91,34.931,34.949001,34.965,34.979,34.997002,35.000999,35.005001,35.005001,35.007999,35.007999,35.014,35.014999,35.015999,35.013,35.013,35.012001,35.008999,35.006001,35.005001,35.002998,35.001999,35,34.999001,34.995998,34.993,34.997002,34.994999,34.993,34.997002,34.995998,34.993999,34.993,34.992001,34.991001,34.988998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_015","geolocation":{"type":"Point","coordinates":[-58.74599999999998,18.332]},"basin":1,"timestamp":"2017-09-16T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:55:42.810Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_015.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":15,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,66,76,85,96,105,115,125,136,145,155,165,176,185,196,206,215,225,235,245,255,265,276,285,295,305,315,325,336,346,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,763,788,814,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1412,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1839,1863,1888,1913,1938,1963,1983],[28.040001,28.041,28.041,28.041,28.038,28.038,28.037001,28.039,28.044001,28.047001,28.051001,28.056,28.066999,27.287001,26.429001,25.243999,24.732,24.370001,24.115999,23.611,23.535999,23.108999,22.503,21.679001,20.881001,20.208,19.896999,19.743999,19.424,19.093,18.903999,18.708,18.475,18.302999,18.105,17.861,17.52,17.156,16.912001,16.749001,16.559,16.403,16.017,15.445,14.719,14.207,13.568,13.046,12.43,11.852,11.31,10.666,10.104,9.477,9.116,8.66,7.791,7.323,6.972,6.745,6.711,6.643,6.578,6.316,5.967,6.001,5.937,5.879,5.775,5.702,5.637,5.561,5.503,5.474,5.441,5.402,5.337,5.28,5.207,5.125,5.078,5.027,4.998,4.932,4.853,4.769,4.686,4.634,4.566,4.52,4.47,4.404,4.354,4.285,4.211,4.155,4.094,4.065,4.042,3.996,3.953,3.908,3.886,3.851,3.818,3.774,3.727,3.692],[36.082001,36.081001,36.081001,36.082001,36.082001,36.082001,36.083,36.083,36.082001,36.082001,36.083,36.085999,36.155998,36.749001,37.102001,37.355999,37.338001,37.327,37.319,37.285,37.326,37.264999,37.159,37.030998,36.903,36.797001,36.762001,36.796001,36.752998,36.701,36.68,36.658001,36.619999,36.589001,36.554001,36.516998,36.467999,36.402,36.368,36.341,36.308998,36.280998,36.216999,36.119999,35.999001,35.917,35.814999,35.73,35.637001,35.549999,35.473,35.375999,35.292999,35.194,35.146999,35.089001,34.958,34.894001,34.849998,34.823002,34.84,34.844002,34.853001,34.833,34.792999,34.819,34.833,34.845001,34.851002,34.867001,34.882999,34.903,34.922001,34.939999,34.959,34.974998,34.985001,34.992001,35.000999,35.002998,35.007,35.012001,35.015999,35.019001,35.018002,35.015999,35.014999,35.014,35.012001,35.011002,35.008999,35.007,35.007,35.004002,34.999001,34.997002,34.993,34.993999,34.995998,34.993999,34.993,34.992001,34.995998,34.994999,34.993,34.992001,34.990002,34.988998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_014","geolocation":{"type":"Point","coordinates":[-58.77999999999997,18.515]},"basin":1,"timestamp":"2017-09-11T06:49:00.000Z","date_updated_argovis":"2023-01-31T13:55:41.098Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_014.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":14,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,46,55,66,75,86,96,105,115,126,135,145,155,166,175,185,195,205,215,225,235,245,256,265,276,285,295,306,316,326,336,345,363,387,413,438,462,488,513,538,563,588,613,638,663,688,713,739,763,788,813,838,863,889,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1289,1313,1338,1363,1388,1413,1438,1464,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1887,1913,1938,1963,1987,2005],[28.034,28.028999,28.027,28.032,28.030001,28.032,28.033001,28.033001,28.034,28.035999,28.007999,27.597,26.645,25.556,24.923,24.555,24.277,23.811001,23.542999,23.188999,22.386,21.871,21.412001,20.834999,20.209,19.785,19.534,19.468,19.287001,19.007999,18.870001,18.586,18.167999,17.987,17.788,17.722,17.537001,17.233,16.966999,16.802,16.52,16.292,15.964,15.411,14.95,14.367,13.746,13.185,12.575,11.96,11.499,10.931,10.209,9.564,9.068,8.532,8.13,7.62,7.225,7.018,6.559,6.281,6.162,5.991,5.951,5.824,5.742,5.714,5.678,5.678,5.633,5.572,5.525,5.487,5.433,5.401,5.362,5.317,5.263,5.202,5.146,5.1,5.037,4.982,4.918,4.856,4.788,4.732,4.646,4.567,4.505,4.45,4.395,4.32,4.257,4.225,4.187,4.117,4.068,4.005,3.963,3.926,3.892,3.836,3.81,3.792,3.754,3.719,3.688],[36.125999,36.127998,36.130001,36.129002,36.129002,36.127998,36.127998,36.126999,36.126999,36.126999,36.174999,36.521,37.021999,37.323002,37.310001,37.314999,37.323002,37.301998,37.330002,37.312,37.148998,37.060001,37,36.911999,36.810001,36.731998,36.705002,36.748001,36.729,36.691002,36.686001,36.648998,36.560001,36.528999,36.506001,36.508999,36.479,36.424999,36.375999,36.344002,36.298,36.258999,36.205002,36.116001,36.041,35.943001,35.828999,35.750999,35.667999,35.566002,35.494999,35.407001,35.291,35.191002,35.122002,35.054001,35.018002,34.957001,34.91,34.897999,34.835999,34.811001,34.805,34.799999,34.806999,34.801998,34.812,34.832001,34.848,34.873001,34.884998,34.900002,34.912998,34.924,34.941002,34.951,34.962002,34.972,34.981998,34.991001,34.997002,35.000999,35.007,35.008999,35.011002,35.012001,35.013,35.013,35.012001,35.009998,35.007,35.005001,35.002998,35.000999,34.998001,34.997002,34.995998,34.995998,34.994999,34.993,34.992001,34.992001,34.991001,34.987999,34.988998,34.992001,34.991001,34.990002,34.988998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_013","geolocation":{"type":"Point","coordinates":[-59.124000000000024,18.593]},"basin":1,"timestamp":"2017-09-06T06:48:00.000Z","date_updated_argovis":"2023-01-31T13:55:39.294Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_013.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":13,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,7,8,9,10,15,26,35,46,55,66,76,85,95,106,115,125,135,146,155,166,176,185,195,206,216,225,235,245,256,266,276,285,296,306,315,325,335,345,363,388,413,438,463,488,512,538,563,589,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1612,1639,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1981],[28.422001,28.424,28.426001,28.427999,28.43,28.431,28.43,28.421,28.403,28.242001,28.202999,27.275999,26.093,25.566999,25.037001,24.667,24.488001,24.105,23.653,23.115,22.32,21.555,20.938,20.375999,20.17,19.837,19.503,19.284,19.069,18.865999,18.617001,18.417999,18.194,17.976,17.809999,17.542999,17.322001,17.108,16.858999,16.645,16.360001,15.961,15.37,14.743,14.196,13.405,12.569,11.315,11.14,10.497,9.894,9.588,9.344,9.009,8.627,8.224,8.096,7.785,7.406,7.059,6.726,6.635,6.592,6.49,6.384,6.314,6.208,6.122,6.002,5.905,5.841,5.773,5.654,5.526,5.432,5.321,5.26,5.167,5.104,5.067,5.024,4.97,4.914,4.841,4.778,4.718,4.642,4.578,4.521,4.455,4.396,4.342,4.281,4.23,4.18,4.142,4.109,4.076,4.036,3.997,3.964,3.926,3.885,3.85,3.813,3.781,3.768],[35.776001,35.773998,35.772999,35.771,35.769001,35.769001,35.77,35.782001,35.808998,35.978001,36.019001,36.721001,37.200001,37.188999,37.222,37.223,37.32,37.299999,37.257,37.188999,37.037998,36.902,36.830002,36.758999,36.778,36.759998,36.716999,36.692001,36.668999,36.646,36.613998,36.592999,36.568001,36.540001,36.509998,36.467999,36.431999,36.397999,36.355,36.320999,36.272999,36.207001,36.108002,36.001999,35.908001,35.763,35.613998,35.361,35.358002,35.258999,35.176998,35.150002,35.132,35.091,35.039001,34.993,35,34.976002,34.931,34.886002,34.848999,34.856998,34.872002,34.875999,34.880001,34.898998,34.908001,34.926998,34.945,34.959,34.966999,34.979,34.986,34.986,34.987,34.986,34.993,34.993,34.993999,35.002998,35.009998,35.016998,35.016998,35.016998,35.015999,35.015999,35.014,35.012001,35.011002,35.007999,35.006001,35.005001,35.002998,35.001999,35.000999,35,34.999001,34.998001,34.997002,34.994999,34.994999,34.993999,34.993,34.992001,34.992001,34.992001,34.992001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_012","geolocation":{"type":"Point","coordinates":[-59.238,18.804]},"basin":1,"timestamp":"2017-09-01T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:55:37.520Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_012.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":12,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,45,55,66,75,86,95,105,115,126,135,146,155,165,176,186,195,206,216,226,236,245,255,266,276,285,295,306,316,326,336,346,363,388,413,438,463,488,513,538,563,588,613,639,663,688,713,738,763,788,813,838,864,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1914,1938,1963,1989],[28.898001,28.898001,28.896,28.893,28.892,28.896,28.902,28.900999,28.907,28.858999,28.882,28.374001,27.079,26.228001,25.722,25.299,25.033001,24.636999,24.198,23.351,22.698999,22.211,21.721001,21.035,20.636,20.278999,19.900999,19.518,19.278,19.031,18.702,18.544001,18.355,18.226,18.040001,17.91,17.677999,17.368,17.136999,16.955999,16.74,16.511,16.162001,15.58,15.029,14.405,13.713,13.163,11.876,11.537,11.03,10.53,10.135,9.876,9.278,9.161,8.985,8.427,7.927,7.663,7.271,6.801,6.623,6.442,6.344,6.208,5.921,5.869,5.792,5.774,5.748,5.727,5.707,5.653,5.563,5.404,5.374,5.332,5.259,5.203,5.134,5.116,5.075,4.993,4.912,4.824,4.746,4.679,4.619,4.548,4.481,4.437,4.388,4.312,4.255,4.203,4.149,4.095,4.055,4.003,3.957,3.925,3.876,3.838,3.802,3.771,3.734,3.693],[35.025002,35.026001,35.026001,35.025002,35.025002,35.027,35.025002,35.026001,35.027,35.549999,36.282001,36.972,37.098999,37.161999,37.213001,37.273998,37.285999,37.290001,37.25,37.140999,37.076,37.004002,36.924999,36.847,36.84,36.820999,36.772999,36.724998,36.706001,36.676998,36.625999,36.611,36.59,36.570999,36.544998,36.530998,36.491001,36.437,36.402,36.372002,36.34,36.299,36.242001,36.141998,36.049,35.948002,35.834,35.75,35.470001,35.437,35.353001,35.265999,35.226002,35.220001,35.132999,35.151001,35.140999,35.056999,34.980999,34.960999,34.918999,34.858002,34.847,34.847,34.852001,34.842999,34.817001,34.831001,34.839001,34.861,34.890999,34.922001,34.943001,34.964001,34.974998,34.964001,34.973999,34.986,34.993,34.998001,35.004002,35.009998,35.016998,35.016998,35.018002,35.015999,35.014999,35.014,35.013,35.011002,35.009998,35.008999,35.007999,35.005001,35.002998,35.000999,34.999001,34.997002,34.994999,34.993,34.992001,34.992001,34.991001,34.990002,34.988998,34.988998,34.987999,34.987999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_011","geolocation":{"type":"Point","coordinates":[-59.38299999999998,19.046]},"basin":1,"timestamp":"2017-08-27T06:57:00.000Z","date_updated_argovis":"2023-01-31T13:55:35.809Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_011.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":11,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,36,46,56,66,75,86,96,105,115,125,135,146,156,165,175,185,195,205,216,226,236,245,255,265,275,286,296,305,315,326,335,345,363,388,413,438,463,488,513,538,563,588,614,638,663,688,713,738,763,788,812,838,863,888,913,939,963,988,1013,1038,1063,1088,1114,1137,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1738,1762,1788,1813,1838,1864,1888,1913,1938,1963,1988,2006],[28.775,28.785,28.785999,28.785999,28.788,28.789,28.785999,28.785,28.785,28.863001,28.219999,27.650999,26.725,25.83,25.528999,25.233999,25.034,24.584,24.076,23.775,23.355,22.882999,22.424999,21.52,20.862,20.848,20.27,19.910999,19.705,19.374001,19.129,18.915001,18.712999,18.462999,18.174999,17.993999,17.875999,17.618,17.287001,17.1,16.892,16.716999,16.361,15.8,15.201,14.556,13.81,13.259,12.742,12.088,11.481,10.978,10.506,10.346,9.781,9.399,8.956,8.439,8.042,7.663,7.208,6.857,6.598,6.371,6.144,6.005,5.928,5.86,5.831,5.773,5.778,5.778,5.717,5.597,5.588,5.507,5.411,5.334,5.277,5.225,5.137,5.053,4.961,4.879,4.836,4.783,4.727,4.671,4.613,4.543,4.482,4.409,4.333,4.276,4.233,4.186,4.153,4.117,4.08,4.044,4,3.962,3.918,3.889,3.848,3.805,3.734,3.689,3.663],[34.863998,34.862999,34.862999,34.862999,34.862,34.861,34.862999,34.862999,34.862,36.407001,36.911999,36.915001,36.990002,36.995998,37.148998,37.208,37.209,37.206001,37.212002,37.223999,37.148998,37.134998,37.115002,36.931,36.819,36.928001,36.849998,36.783001,36.758999,36.716,36.688,36.666,36.640999,36.605999,36.563,36.539001,36.525002,36.484001,36.429001,36.401001,36.368,36.338001,36.275002,36.18,36.077999,35.973,35.852001,35.769001,35.683998,35.57,35.465,35.390999,35.320999,35.327,35.242001,35.195,35.139,35.071999,35.021999,34.971001,34.911999,34.873001,34.847,34.826,34.807999,34.806999,34.813999,34.827999,34.846001,34.856998,34.889,34.917,34.938999,34.946999,34.974998,34.985001,34.987,34.987,34.997002,35.002998,35.005001,35.007999,35.009998,35.009998,35.011002,35.012001,35.013,35.012001,35.011002,35.008999,35.007999,35.005001,35.001999,35.000999,35,35,35,35,35,34.999001,34.997002,34.997002,34.994999,34.994999,34.993999,34.991001,34.984001,34.981998,34.980999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_010","geolocation":{"type":"Point","coordinates":[-59.53399999999999,19.242]},"basin":1,"timestamp":"2017-08-22T06:55:00.000Z","date_updated_argovis":"2023-01-31T13:55:34.102Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_010.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":10,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,16,26,35,46,55,65,76,85,96,105,115,126,135,145,156,165,175,186,196,206,215,226,236,245,256,266,276,286,295,306,316,325,335,345,362,388,413,437,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,837,863,888,913,938,963,988,1013,1037,1063,1088,1114,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1889,1913,1938,1963,1983],[28.636999,28.638,28.636999,28.636,28.639,28.639,28.639999,28.642,28.771999,28.259001,27.284,26.593,26.195,25.809999,25.478001,24.777,24.375,24.004999,23.615999,23.061001,22.486,22.225,21.737,21.159,20.688,20.202,19.722,19.424,19.245001,18.992001,18.764999,18.528,18.198999,18.040001,17.857,17.646,17.459,17.344,17.176001,16.957001,16.577999,16.066,15.414,14.895,14.36,13.699,13.069,12.527,12.034,11.549,11.032,10.444,9.908,9.19,8.766,8.327,7.842,7.561,7.29,6.988,6.732,6.485,6.313,6.136,5.982,5.891,5.831,5.75,5.685,5.645,5.596,5.609,5.613,5.538,5.449,5.389,5.275,5.192,5.149,5.094,5.015,4.938,4.854,4.764,4.711,4.612,4.559,4.505,4.423,4.369,4.309,4.256,4.214,4.159,4.1,4.05,4.002,3.96,3.912,3.867,3.831,3.805,3.765,3.737,3.689,3.65],[35.085999,35.084999,35.085999,35.087002,35.085999,35.085999,35.085999,35.088001,35.937,36.806999,36.980999,37.077999,37.171001,37.230999,37.269001,37.209,37.213001,37.186001,37.179001,37.139,37.09,37.085999,37.043999,36.994999,36.938999,36.846001,36.758999,36.729,36.708,36.681999,36.654999,36.623001,36.570999,36.542,36.519001,36.485001,36.453999,36.436001,36.409,36.373001,36.308998,36.223,36.111,36.027,35.942001,35.833,35.733002,35.652,35.578999,35.505001,35.425999,35.333,35.248001,35.132,35.078999,35.019001,34.951,34.924,34.898998,34.869999,34.851002,34.832001,34.825001,34.814999,34.816002,34.824001,34.832001,34.845001,34.862999,34.887001,34.909,34.932999,34.964001,34.979,34.986,34.993999,35,35.004002,35.005001,35.007999,35.013,35.016998,35.02,35.018002,35.016998,35.012001,35.009998,35.007999,35.002998,35.000999,34.998001,34.995998,34.994999,34.992001,34.988998,34.987,34.985001,34.983002,34.980999,34.98,34.978001,34.978001,34.976002,34.974998,34.973999,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_009","geolocation":{"type":"Point","coordinates":[-59.73200000000003,19.347]},"basin":1,"timestamp":"2017-08-17T06:52:00.000Z","date_updated_argovis":"2023-01-31T13:55:32.319Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_009.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,45,55,65,75,85,95,105,116,125,135,146,155,165,176,186,195,206,216,226,236,246,255,265,276,285,295,305,316,326,335,346,363,388,413,438,463,487,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1937,1963,1981],[28.594,28.594,28.594,28.594999,28.594,28.594999,28.594999,28.596001,28.6,28.613001,28.688999,28.059999,27.054001,26.468,26.035999,25.781,25.389999,25.121,24.816,24.285999,23.855,23.485001,22.945,22.431,21.834,21.098,20.497999,20.101,19.855,19.489,19.232,19.011,18.74,18.587,18.434,18.261999,18.042999,17.844,17.643,17.422001,17.216,16.951,16.549,15.996,15.569,15.042,14.374,13.653,13.071,12.619,12.129,11.558,11.025,10.381,9.627,9.109,8.644,8.069,7.742,7.399,7.149,6.767,6.377,6.131,5.954,5.911,5.847,5.772,5.762,5.71,5.634,5.607,5.595,5.579,5.561,5.539,5.484,5.398,5.292,5.211,5.157,5.072,4.979,4.897,4.835,4.775,4.726,4.655,4.567,4.476,4.396,4.333,4.27,4.223,4.172,4.114,4.064,4.026,3.988,3.959,3.915,3.887,3.861,3.818,3.795,3.762,3.729,3.711],[35.271999,35.271999,35.271999,35.271,35.271999,35.271999,35.271999,35.271999,35.275002,35.299,36.196999,36.828999,36.897999,37.001999,37.096001,37.215,37.265999,37.269001,37.284,37.228001,37.181,37.154999,37.136002,37.094002,37.029999,36.933998,36.852001,36.798,36.779999,36.745998,36.706001,36.683998,36.644001,36.622002,36.604,36.580002,36.544998,36.515999,36.485001,36.448002,36.415001,36.370998,36.305,36.213001,36.139999,36.050999,35.943001,35.826,35.733002,35.664001,35.592999,35.506001,35.419998,35.32,35.194,35.115002,35.056,34.987,34.956001,34.917,34.888,34.838001,34.793999,34.778,34.775002,34.785,34.793999,34.805,34.831001,34.851002,34.867001,34.888,34.908001,34.931999,34.952,34.974998,34.990002,34.995998,35,35.005001,35.008999,35.013,35.014,35.014,35.014999,35.015999,35.018002,35.015999,35.013,35.008999,35.006001,35.004002,34.999001,34.997002,34.993999,34.991001,34.987999,34.986,34.985001,34.984001,34.983002,34.981998,34.980999,34.98,34.979,34.979,34.977001,34.977001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_008","geolocation":{"type":"Point","coordinates":[-59.81700000000001,19.37]},"basin":1,"timestamp":"2017-08-12T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:55:30.682Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_008.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":8,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,35,46,55,65,76,86,95,105,115,126,136,145,156,165,175,185,195,205,215,226,235,245,255,265,275,285,295,305,315,325,335,345,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,864,888,913,938,963,988,1013,1038,1063,1088,1114,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1937,1963,1987,2003],[28.924,28.926001,28.926001,28.923,28.924,28.919001,28.921,28.921,28.854,28.716999,28.544001,27.745001,27.076,26.364,25.988001,25.712,25.327,25.030001,24.652,24.302999,24.048,23.813999,23.25,22.415001,21.667999,21.252001,20.771999,20.305,19.937,19.721001,19.431999,19.16,18.948,18.750999,18.476999,18.226999,17.969999,17.683001,17.497,17.323,17.048,16.836,16.417999,15.964,15.392,14.767,14.163,13.539,12.939,12.454,11.992,11.487,10.806,10.218,9.387,8.785,8.392,8.076,7.677,7.318,7.081,6.701,6.299,6.135,6.019,5.93,5.92,5.87,5.782,5.727,5.693,5.661,5.596,5.566,5.572,5.575,5.501,5.444,5.362,5.283,5.204,5.131,5.04,4.943,4.891,4.822,4.739,4.64,4.577,4.505,4.45,4.395,4.332,4.263,4.225,4.183,4.125,4.084,4.034,3.973,3.937,3.887,3.85,3.819,3.79,3.761,3.708,3.658,3.627],[34.312,34.311001,34.311001,34.312,34.310001,34.312,34.312,34.311001,35.081001,35.962002,36.380001,36.762001,36.893002,36.967999,37.032001,37.084999,37.143002,37.212002,37.236,37.210999,37.181,37.175999,37.126999,37.095001,37.013,36.963001,36.891998,36.821999,36.771999,36.771999,36.734001,36.698002,36.672001,36.648998,36.612,36.573002,36.535,36.487999,36.455002,36.425999,36.386002,36.349998,36.283001,36.206001,36.112999,36.013,35.911999,35.804001,35.709999,35.640999,35.574001,35.494999,35.389999,35.297001,35.159,35.068001,35.023998,34.992001,34.942001,34.898998,34.875999,34.828999,34.784,34.778,34.779999,34.782001,34.804001,34.823002,34.839001,34.851002,34.870998,34.889,34.904999,34.923,34.945999,34.969002,34.984001,34.991001,34.995998,35,35.007,35.009998,35.012001,35.013,35.018002,35.02,35.018002,35.015999,35.014,35.009998,35.007999,35.006001,35.004002,34.999001,34.997002,34.994999,34.992001,34.988998,34.987,34.984001,34.983002,34.981998,34.980999,34.98,34.979,34.978001,34.976002,34.974998,34.973999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_007","geolocation":{"type":"Point","coordinates":[-59.83800000000002,19.395]},"basin":1,"timestamp":"2017-08-07T06:50:00.000Z","date_updated_argovis":"2023-01-31T13:55:28.838Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_007.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":7,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,46,55,65,75,85,95,105,116,125,135,146,156,166,176,186,196,205,216,225,235,245,256,266,276,285,295,305,315,326,335,345,363,388,413,438,463,488,514,538,563,588,613,638,663,688,713,738,763,788,814,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1983],[28.766001,28.77,28.768,28.761999,28.764999,28.761999,28.778999,28.791,28.750999,28.559,28.465,28.299,27.735001,26.870001,26.389999,25.687,25.121,24.855,24.544001,24.257,24.09,23.652,23.160999,22.690001,22.283001,21.524,20.778999,20.289,19.792,19.358999,19.167,18.979,18.875999,18.757999,18.507,18.247,18.055,17.851999,17.627001,17.458,17.098,16.784,16.461,15.867,15.353,14.875,14.155,13.554,12.975,12.414,11.895,11.507,10.896,10.267,9.689,9.165,8.625,8.213,7.785,7.279,7.033,6.764,6.554,6.452,6.239,6.112,5.985,5.913,5.815,5.79,5.76,5.748,5.726,5.683,5.612,5.545,5.474,5.394,5.326,5.273,5.213,5.129,5.055,4.96,4.894,4.8,4.732,4.662,4.579,4.511,4.433,4.345,4.292,4.235,4.187,4.152,4.107,4.074,4.031,4.006,3.983,3.946,3.901,3.87,3.833,3.785,3.748,3.731],[34.341999,34.345001,34.345001,34.342999,34.342999,34.341999,34.353001,34.360001,35.112999,36.366001,36.929001,36.938,36.977001,36.998001,37.049999,37.087002,37.194,37.230999,37.222,37.205002,37.202999,37.158001,37.129002,37.108002,37.076,36.990002,36.891998,36.828999,36.763,36.705002,36.694,36.675999,36.669998,36.653,36.609001,36.577999,36.546001,36.509998,36.472,36.446999,36.389999,36.338001,36.285999,36.191002,36.109001,36.029999,35.91,35.808998,35.722,35.637001,35.558998,35.500999,35.403999,35.299999,35.209999,35.139,35.057999,35.005001,34.958,34.889999,34.866001,34.84,34.827999,34.827,34.819,34.816002,34.813999,34.82,34.831001,34.848999,34.866001,34.894001,34.917,34.943001,34.956001,34.970001,34.981998,34.988998,34.994999,35,35.002998,35.006001,35.008999,35.011002,35.014999,35.018002,35.018002,35.016998,35.013,35.009998,35.005001,35.000999,34.999001,34.997002,34.993999,34.993,34.992001,34.990002,34.987,34.986,34.985001,34.983002,34.981998,34.980999,34.98,34.979,34.978001,34.977001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_006","geolocation":{"type":"Point","coordinates":[-59.747000000000014,19.469]},"basin":1,"timestamp":"2017-08-02T06:49:00.000Z","date_updated_argovis":"2023-01-31T13:55:27.100Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_006.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":6,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,45,55,65,76,86,95,105,116,125,136,146,156,166,175,185,195,206,216,225,235,246,256,266,275,285,295,306,315,325,335,345,363,388,413,438,463,488,513,539,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1837,1863,1888,1913,1938,1963,1985],[28.736,28.735001,28.733999,28.733,28.733999,28.733999,28.738001,28.737,28.643999,28.368999,28.233999,28.033001,27.478001,26.742001,26.264,25.816999,25.441999,24.947001,24.738001,24.544001,24.413,24.132,23.462999,22.649,21.976999,21.306,20.711,20.038,19.625999,19.389999,19.136999,18.938,18.694,18.506001,18.327,17.952999,17.712999,17.537001,17.268,17.142,16.941999,16.729,16.433001,15.892,15.271,14.77,14.162,13.44,12.982,12.484,11.96,11.553,11.07,10.615,9.94,9.434,8.842,8.376,7.916,7.621,7.362,6.932,6.745,6.555,6.354,6.185,6.04,5.872,5.769,5.738,5.722,5.683,5.657,5.624,5.571,5.528,5.475,5.388,5.288,5.224,5.13,5.056,5.013,4.957,4.88,4.779,4.713,4.615,4.546,4.497,4.434,4.382,4.312,4.264,4.213,4.182,4.136,4.093,4.042,4.004,3.95,3.918,3.885,3.848,3.812,3.775,3.733,3.698],[34.237999,34.237,34.236,34.236,34.237,34.237,34.237,34.237999,35.393002,36.647999,36.884998,36.896999,36.903999,36.935001,37.004002,37.060001,37.105,37.169998,37.238998,37.233002,37.264999,37.273998,37.208,37.126999,37.049,36.966,36.889999,36.799999,36.73,36.696999,36.678001,36.668999,36.632,36.613998,36.598,36.536999,36.497002,36.462002,36.417,36.396999,36.361,36.325001,36.279999,36.195,36.095001,36.014999,35.914001,35.794998,35.724998,35.646,35.568001,35.507999,35.438,35.369999,35.261002,35.183998,35.089001,35.026001,34.964001,34.936001,34.917,34.862999,34.854,34.841,34.827,34.821999,34.824001,34.828999,34.834999,34.851002,34.874001,34.895,34.918999,34.941002,34.959,34.974998,34.980999,34.992001,34.994999,34.999001,35.006001,35.011002,35.016998,35.02,35.02,35.019001,35.016998,35.013,35.008999,35.007999,35.006001,35.002998,34.998001,34.995998,34.993999,34.993,34.992001,34.988998,34.986,34.985001,34.981998,34.981998,34.980999,34.98,34.979,34.978001,34.976002,34.973999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_005","geolocation":{"type":"Point","coordinates":[-59.72300000000001,19.652]},"basin":1,"timestamp":"2017-07-28T06:47:00.000Z","date_updated_argovis":"2023-01-31T13:55:25.433Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_005.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":5,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,65,76,85,95,106,115,125,135,146,156,165,176,185,196,206,215,226,236,246,255,265,275,285,295,305,316,325,335,346,363,388,413,437,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1264,1288,1312,1337,1362,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1839,1863,1888,1913,1938,1963,1987],[28.576,28.576,28.580999,28.580999,28.577999,28.625,28.649,28.618999,28.462999,28.365999,28.171,27.698999,26.649,26.267,25.969999,25.724001,25.384001,25.048,24.665001,24.242001,23.806,23.327,22.794001,22.386,21.652,20.981001,20.228001,19.790001,19.547001,19.221001,18.899,18.674999,18.5,18.319,18.135,18.011,17.885,17.721001,17.594999,17.424999,17.194,16.961,16.636999,16.129999,15.615,15.135,14.705,13.976,13.255,12.718,12.132,11.649,11.137,10.547,9.962,9.349,8.907,8.559,7.693,7.122,7.027,7.079,6.886,6.702,6.371,6.287,6.046,5.972,5.954,5.862,5.839,5.716,5.648,5.598,5.584,5.549,5.466,5.367,5.298,5.21,5.127,5.043,5.002,4.946,4.896,4.838,4.759,4.683,4.614,4.53,4.47,4.405,4.352,4.286,4.223,4.181,4.131,4.087,4.016,3.979,3.925,3.884,3.853,3.831,3.79,3.748,3.718,3.693],[35.609001,35.608002,35.606998,35.606998,35.612,35.639999,35.665001,35.765999,36.262001,36.675999,36.859001,36.895,37.064999,37.16,37.216,37.250999,37.278999,37.286999,37.287998,37.301998,37.291,37.243999,37.208,37.183998,37.062,36.956001,36.833,36.751999,36.730999,36.693001,36.644001,36.618999,36.599998,36.576,36.549999,36.533001,36.514999,36.492001,36.473999,36.446999,36.409,36.372002,36.317001,36.231998,36.151001,36.074001,36.002998,35.876999,35.755001,35.678001,35.592999,35.521999,35.448002,35.358002,35.264,35.167,35.108002,35.063,34.925999,34.852001,34.855999,34.891998,34.880001,34.867001,34.830002,34.835999,34.818001,34.828999,34.855,34.866001,34.891998,34.902,34.922001,34.938,34.957001,34.979,34.986,34.993999,34.995998,35.000999,35.009998,35.016998,35.02,35.021,35.021,35.019001,35.016998,35.015999,35.013,35.009998,35.007999,35.005001,35.001999,34.998001,34.993999,34.992001,34.990002,34.987999,34.985001,34.984001,34.980999,34.98,34.979,34.979,34.977001,34.974998,34.973999,34.973]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_004","geolocation":{"type":"Point","coordinates":[-59.69900000000001,19.923]},"basin":1,"timestamp":"2017-07-23T06:49:00.000Z","date_updated_argovis":"2023-01-31T13:55:23.602Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_004.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":4,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,25,35,46,55,65,75,85,95,106,116,125,136,145,155,165,175,185,196,206,215,225,236,246,256,265,275,285,295,305,315,325,335,345,363,388,413,438,463,488,513,538,562,587,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1037,1062,1088,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1413,1438,1463,1489,1513,1538,1563,1588,1613,1638,1664,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1983],[28.313,28.311001,28.311001,28.315001,28.316,28.318001,28.318001,28.318001,28.32,28.337999,27.753,26.808001,26.556,26.253,25.938999,25.554001,25.319,25.049999,24.723,24.209999,23.783001,23.344,22.849001,22.351,21.775999,21.305,20.708,20.132999,19.788,19.531,19.204,18.962,18.726999,18.495001,18.257,18.155001,18.040001,17.913,17.740999,17.608999,17.400999,17.181999,16.719999,16.200001,15.626,15.074,14.602,14.165,13.561,13.087,12.591,12,11.55,11.128,10.582,9.888,9.124,8.591,8.417,7.872,7.546,7.128,6.859,6.813,6.515,6.334,6.163,6.136,6.077,6.024,5.949,5.877,5.811,5.683,5.624,5.584,5.507,5.418,5.34,5.288,5.239,5.153,5.056,4.976,4.895,4.815,4.741,4.666,4.609,4.521,4.434,4.387,4.339,4.283,4.235,4.172,4.131,4.089,4.045,4.014,3.977,3.921,3.868,3.836,3.802,3.762,3.737,3.699],[35.594002,35.594002,35.594002,35.592999,35.597,35.596001,35.601002,35.599998,35.609001,36.257999,36.895,36.93,36.973,37.138,37.222,37.237999,37.271999,37.311001,37.314999,37.298,37.264,37.223,37.206001,37.167,37.075001,37.015999,36.938999,36.820999,36.778,36.754002,36.696999,36.665001,36.638,36.604,36.563999,36.549,36.535,36.516998,36.492001,36.473999,36.441002,36.408001,36.331001,36.243999,36.152,36.064999,35.986,35.909,35.804001,35.729,35.66,35.573002,35.507999,35.446999,35.365002,35.251999,35.124001,35.043999,35.051998,34.98,34.937,34.882,34.852001,34.875,34.849998,34.837002,34.833,34.860001,34.879002,34.903999,34.923,34.938,34.945999,34.956001,34.970001,34.979,34.988998,35,35.006001,35.011002,35.014999,35.019001,35.02,35.02,35.02,35.019001,35.016998,35.014999,35.013,35.009998,35.007,35.004002,35.002998,34.999001,34.997002,34.993999,34.993,34.991001,34.990002,34.990002,34.988998,34.987,34.984001,34.983002,34.983002,34.981998,34.983002,34.981998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_003","geolocation":{"type":"Point","coordinates":[-59.803999999999974,20.16]},"basin":1,"timestamp":"2017-07-18T06:49:00.000Z","date_updated_argovis":"2023-01-31T13:55:21.910Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_003.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,36,45,56,65,75,85,95,105,115,125,135,146,155,165,175,186,196,206,216,225,235,245,255,265,276,285,295,306,316,325,335,345,363,388,413,438,463,488,513,538,563,589,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1064,1088,1113,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1413,1438,1462,1488,1513,1538,1563,1588,1613,1638,1664,1688,1713,1738,1763,1788,1813,1838,1862,1887,1913,1939,1963,1988,2013],[28.197001,28.197001,28.198999,28.198,28.198,28.195999,28.198,28.198,28.139,28.218,28.099001,27.311001,26.577999,26.309,26.122999,25.877001,25.614,25.362,25.124001,24.898001,24.525999,23.683001,23.049,22.386,21.891001,21.424,21.059999,20.688999,20.304001,19.870001,19.375,18.995001,18.83,18.677999,18.469999,18.319,18.054001,17.788,17.582001,17.42,17.235001,17.08,16.757999,16.249001,15.691,15.243,14.638,14.152,13.412,13.002,12.514,11.946,11.377,10.689,10.308,9.63,8.959,8.555,8.179,7.899,7.592,7.126,6.847,6.589,6.378,6.322,6.111,6.079,6.092,6.052,5.96,5.806,5.745,5.702,5.631,5.569,5.518,5.445,5.371,5.31,5.253,5.16,5.093,5.001,4.92,4.844,4.773,4.694,4.626,4.574,4.509,4.441,4.397,4.326,4.269,4.219,4.165,4.127,4.087,4.045,3.996,3.954,3.92,3.89,3.854,3.816,3.775,3.733,3.674],[35.334,35.333,35.333,35.333,35.333,35.334,35.333,35.335999,35.660999,36.530998,36.880001,36.925999,37.007999,37.068001,37.214001,37.262001,37.264,37.296001,37.300999,37.325001,37.320999,37.278999,37.244999,37.185001,37.130001,37.053001,37.021999,36.970001,36.904999,36.817001,36.710999,36.659,36.646999,36.626999,36.598999,36.578999,36.535,36.498001,36.469002,36.443001,36.414001,36.389999,36.338001,36.251999,36.162998,36.091999,35.991001,35.904999,35.777,35.717999,35.647999,35.563999,35.476002,35.355999,35.303001,35.198002,35.091,35.036999,35,34.98,34.956001,34.889,34.861,34.834,34.816002,34.834999,34.825001,34.842999,34.879002,34.910999,34.924999,34.925999,34.944,34.959,34.969002,34.978001,34.985001,34.994999,35.001999,35.007,35.013,35.016998,35.019001,35.021,35.022999,35.022999,35.021,35.019001,35.016998,35.014999,35.013,35.009998,35.007999,35.005001,35.002998,35.000999,34.999001,34.998001,34.997002,34.994999,34.992001,34.991001,34.988998,34.988998,34.987999,34.987,34.985001,34.983002,34.98]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_002","geolocation":{"type":"Point","coordinates":[-59.99200000000002,20.212]},"basin":1,"timestamp":"2017-07-13T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:55:20.206Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_002.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":2,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,25,35,45,56,65,75,86,96,105,115,126,135,145,155,165,175,185,196,205,215,226,236,245,256,266,275,285,296,306,316,326,336,346,363,388,413,437,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1262,1287,1313,1338,1363,1387,1413,1438,1462,1488,1513,1538,1563,1588,1613,1639,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1986],[27.966999,27.966999,27.969999,27.968,27.971001,27.969999,27.971001,27.968,27.969,28.021,28.006001,27.648001,26.787001,26.398001,26.136,25.763,25.398001,25.165001,24.955,24.659,24.357,23.848,23.250999,22.545,22.145,21.698,21.132999,20.809,20.250999,19.823999,19.378,19.104,18.924,18.653,18.403,18.139999,17.997999,17.867001,17.736,17.576,17.396999,17.250999,16.806999,16.204,15.707,15.231,14.68,14.237,13.465,12.812,12.205,11.803,11.347,10.706,9.927,9.212,8.586,8.143,7.831,7.44,7.096,6.911,7.036,6.915,6.901,6.689,6.469,6.257,5.918,6.054,6.029,5.954,5.864,5.797,5.734,5.646,5.577,5.488,5.376,5.288,5.197,5.13,5.055,4.976,4.912,4.855,4.795,4.731,4.672,4.613,4.541,4.463,4.393,4.339,4.29,4.252,4.196,4.14,4.085,4.035,3.987,3.958,3.934,3.894,3.863,3.819,3.792,3.767],[35.179001,35.18,35.18,35.18,35.179001,35.18,35.18,35.18,35.308998,35.831001,36.007999,36.648998,37.063,37.132,37.223,37.255001,37.286999,37.311001,37.324001,37.333,37.339001,37.299,37.266998,37.194,37.144001,37.075001,37.007,36.987,36.908001,36.824001,36.737999,36.693001,36.675999,36.632,36.587002,36.547001,36.528999,36.513,36.502998,36.478001,36.445999,36.418999,36.346001,36.245998,36.166,36.089001,35.999001,35.919998,35.786999,35.687,35.601002,35.543999,35.472,35.375999,35.238998,35.124001,35.025002,34.959,34.919998,34.869999,34.827999,34.813,34.862999,34.865002,34.896,34.879002,34.868999,34.862,34.832001,34.888,34.912998,34.932999,34.941002,34.948002,34.959,34.971001,34.981998,34.993,35.005001,35.011002,35.015999,35.02,35.02,35.021999,35.022999,35.021999,35.021999,35.021,35.02,35.019001,35.016998,35.013,35.008999,35.005001,35.002998,35.000999,34.999001,34.995998,34.993,34.991001,34.988998,34.988998,34.991001,34.990002,34.987999,34.986,34.986,34.985001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_001","geolocation":{"type":"Point","coordinates":[-60.139999999999986,20.13]},"basin":1,"timestamp":"2017-07-08T06:48:59.999Z","date_updated_argovis":"2023-01-31T13:55:16.864Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_001.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,55,65,75,85,96,106,115,125,136,145,155,166,176,185,196,205,215,226,235,246,256,265,275,285,295,305,315,325,335,345,363,388,413,438,463,489,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1039,1063,1088,1113,1137,1162,1188,1214,1238,1262,1287,1313,1338,1363,1388,1413,1438,1464,1488,1512,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1864,1888,1913,1938,1963,1989,2001],[27.965,27.965,27.966999,27.968,27.966999,27.968,27.966,27.968,27.968,27.993,27.771999,26.938999,26.357,26.041,25.739,25.459999,25.194,25.004999,24.555,24.146,23.445,22.885,22.462,21.993,21.370001,20.834999,20.516001,20.167999,19.792,19.393999,19.157,18.881001,18.615999,18.354,18.163,18.040001,17.813,17.698,17.500999,17.311001,17.028,16.757999,16.417,16.056999,15.459,14.946,14.473,13.765,13.25,12.754,12.32,11.874,11.357,10.893,10.367,9.622,8.925,8.141,7.681,7.281,7.098,6.836,6.683,6.53,6.478,6.188,6.025,6.12,6.137,5.933,5.808,5.821,5.786,5.705,5.657,5.582,5.519,5.439,5.351,5.286,5.223,5.159,5.085,4.995,4.874,4.768,4.661,4.615,4.55,4.508,4.471,4.404,4.343,4.288,4.242,4.194,4.147,4.094,4.035,3.986,3.929,3.882,3.84,3.807,3.769,3.744,3.713,3.692,3.672],[35.889999,35.889999,35.889,35.889,35.889999,35.888,35.889999,35.888,35.888,35.942001,36.424999,37.008999,37.096001,37.188999,37.221001,37.244999,37.251999,37.261002,37.251999,37.264999,37.221001,37.168999,37.134998,37.09,37.004002,36.938999,36.883999,36.826,36.766998,36.723,36.702999,36.659,36.618999,36.580002,36.551998,36.535999,36.502998,36.486,36.456001,36.426998,36.382,36.34,36.283001,36.223999,36.125999,36.042999,35.963001,35.838001,35.755001,35.682999,35.617001,35.550999,35.478001,35.409,35.335999,35.219002,35.099998,34.972,34.904999,34.848,34.839001,34.813,34.810001,34.808998,34.828999,34.808998,34.807999,34.845001,34.872002,34.867001,34.880001,34.911999,34.942001,34.952999,34.970001,34.984001,34.997002,35.005001,35.006001,35.011002,35.015999,35.019001,35.019001,35.02,35.019001,35.016998,35.013,35.011002,35.008999,35.007999,35.006001,35.002998,35.000999,34.998001,34.995998,34.993,34.991001,34.987999,34.985001,34.981998,34.98,34.977001,34.976002,34.973999,34.973,34.972,34.971001,34.972,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +, +{"_id":"6902746_001D","geolocation":{"type":"Point","coordinates":[-60.173,20.079]},"basin":1,"timestamp":"2017-07-06T14:48:59.999Z","date_updated_argovis":"2023-01-31T13:55:18.511Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_001D.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"D","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 1 dbar average from surface to 10 dbar; 10 sec sampling, 10 dbar average from 10 dbar to 350 dbar; 10 sec sampling, 25 dbar average from 350 dbar to 600 dbar]","data":[[9,14,24,34,45,55,64,74,84,95,104,114,125,134,145,154,164,174,184,194,204,215,225,234,245,254,264,275,284,294,304,314,324,334,344,362,388,412,437,462,487,512,537,562,587,612,629],[28.038,28.034,28.018999,27.701,26.867001,26.539,26.365999,26.165001,25.788,25.466999,25.183001,24.908001,24.445,24.089001,23.482,22.77,22.193001,21.671,21.341,20.830999,20.356001,19.839001,19.584999,19.360001,19.07,18.813999,18.490999,18.250999,18.08,17.896999,17.75,17.646,17.465,17.214001,16.993,16.563,15.94,15.282,14.774,14.165,13.651,13.187,12.743,12.169,11.764,11.297,11.001],[36.056,36.056,36.057999,36.507,36.928001,36.946999,37.095001,37.214001,37.240002,37.266998,37.285,37.293999,37.303001,37.291,37.223999,37.141998,37.069,37.02,37.019001,36.949001,36.855,36.763,36.757999,36.726002,36.681,36.652,36.610001,36.573002,36.548,36.519001,36.499001,36.481998,36.455002,36.417,36.381001,36.306999,36.205002,36.098999,36.014999,35.909,35.816002,35.737,35.682999,35.598,35.536999,35.472,35.428001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +] diff --git a/argopy/tests/test_data/1bdabcd873e5df4cc55467bcb9eda0323f3b1181d20a75281cb08118ec4a698d.nc b/argopy/tests/test_data/1bdabcd873e5df4cc55467bcb9eda0323f3b1181d20a75281cb08118ec4a698d.nc new file mode 100644 index 00000000..f954c9fc Binary files /dev/null and b/argopy/tests/test_data/1bdabcd873e5df4cc55467bcb9eda0323f3b1181d20a75281cb08118ec4a698d.nc differ diff --git a/argopy/tests/test_data/1cd3f4906c02ed6f576989fdaa1b742fc607f453caac8d3a5af387603003f0fe.nc b/argopy/tests/test_data/1cd3f4906c02ed6f576989fdaa1b742fc607f453caac8d3a5af387603003f0fe.nc new file mode 100644 index 00000000..f9addc88 Binary files /dev/null and b/argopy/tests/test_data/1cd3f4906c02ed6f576989fdaa1b742fc607f453caac8d3a5af387603003f0fe.nc differ diff --git a/argopy/tests/test_data/1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b.png b/argopy/tests/test_data/1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b.png new file mode 100644 index 00000000..fa2fd038 Binary files /dev/null and b/argopy/tests/test_data/1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b.png differ diff --git a/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc b/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc new file mode 100644 index 00000000..c70e1e2a Binary files /dev/null and b/argopy/tests/test_data/1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68.nc differ diff --git a/argopy/tests/test_data/1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a.nc b/argopy/tests/test_data/1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a.nc new file mode 100644 index 00000000..d49142ee Binary files /dev/null and b/argopy/tests/test_data/1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a.nc differ diff --git a/argopy/tests/test_data/1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee.nc b/argopy/tests/test_data/1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee.nc new file mode 100644 index 00000000..23b8ed0a Binary files /dev/null and b/argopy/tests/test_data/1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee.nc differ diff --git a/argopy/tests/test_data/206dc5d4e36abfa7cab56b1bc7b615cad696d02702faef0e1bdb024248817dbe.ncHeader b/argopy/tests/test_data/206dc5d4e36abfa7cab56b1bc7b615cad696d02702faef0e1bdb024248817dbe.ncHeader new file mode 100644 index 00000000..21382591 --- /dev/null +++ b/argopy/tests/test_data/206dc5d4e36abfa7cab56b1bc7b615cad696d02702faef0e1bdb024248817dbe.ncHeader @@ -0,0 +1,242 @@ +netcdf ArgoFloats-synthetic-BGC_b999_d55c_0e84.nc { + dimensions: + row = 125371; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=125371); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=125371); + :_FillValue = 99999; // int + :actual_range = 1, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=125371, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=125371); + :actual_range = 231.0956f, 99999.0f; // float + + float doxy_adjusted_error(row=125371); + :actual_range = 12.56249f, 99999.0f; // float + + char doxy_adjusted_qc(row=125371, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=125371); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 57.097543166666675, 63.18395183333334; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=125371); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -51.75795016666666, -30.635311333333334; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=125371, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=125371); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.181f, 2006.433f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=125371, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.13953f, 35.1359f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=125371, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.12f, 11.983f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=125371); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=125371, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=125371); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653204770059E9, 1.726927792036E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=125371); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -30.635311333333334; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 63.18395183333334; // double + :geospatial_lat_min = 57.097543166666675; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -30.635311333333334; // double + :geospatial_lon_min = -51.75795016666666; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:52:11Z (local files) +2024-09-25T05:52:11Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%226904240%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 63.18395183333334; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 57.097543166666675; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-21T14:09:52Z"; + :time_coverage_start = "2022-05-22T07:32:50Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -51.75795016666666; // double +} diff --git a/argopy/tests/test_data/208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7.json b/argopy/tests/test_data/208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7.json new file mode 100644 index 00000000..e8132b08 --- /dev/null +++ b/argopy/tests/test_data/208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7.json @@ -0,0 +1,252 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/1/" + }, + "dce:identifier": "SDN:R19::4", + "pav:version": "1", + "skos:notation": "SDN:R19::4", + "skos:altLabel": "4", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value determined by satellite" + }, + "dc:identifier": "SDN:R19::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is determined by satellite" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/1/" + }, + "dce:identifier": "SDN:R19::3", + "pav:version": "1", + "skos:notation": "SDN:R19::3", + "skos:altLabel": "3", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value computed directly from transmitted float information" + }, + "dc:identifier": "SDN:R19::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is directly computed from relevant, transmitted float information" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/1/" + }, + "dce:identifier": "SDN:R19::0", + "pav:version": "1", + "skos:notation": "SDN:R19::0", + "skos:altLabel": "0", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from pre-deployment metadata information" + }, + "dc:identifier": "SDN:R19::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated from pre-deployment information found in the metadata" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/1/" + }, + "dce:identifier": "SDN:R19::1", + "pav:version": "1", + "skos:notation": "SDN:R19::1", + "skos:altLabel": "1", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value from information not transmitted by the float and/or reliant on typical float behaviour" + }, + "dc:identifier": "SDN:R19::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is estimated using information not transmitted by the float or by procedures that rely on typical float behaviour" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/1/" + }, + "dce:identifier": "SDN:R19::9", + "pav:version": "1", + "skos:notation": "SDN:R19::9", + "skos:altLabel": "9", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value not yet known" + }, + "dc:identifier": "SDN:R19::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is not immediately known, but believe it can be estimated later" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/", + "pav:authoredOn": "2020-05-03 20:29:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/1/" + }, + "dce:identifier": "SDN:R19::2", + "pav:version": "1", + "skos:notation": "SDN:R19::2", + "skos:altLabel": "2", + "dc:date": "2020-05-03 20:29:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value transmitted by the float" + }, + "dc:identifier": "SDN:R19::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value is transmitted by the float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R19/current/9/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Flag scale for values in all Argo netCDF cycle timing variables. Argo netCDF cycle timing variables JULD__STATUS are populated by R19 altLabel.", + "dc:title": "Argo STATUS flags", + "skos:prefLabel": "Argo STATUS flags", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "STATUS", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "STATUS", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R19" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a.nc b/argopy/tests/test_data/20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a.nc new file mode 100644 index 00000000..30c1889e Binary files /dev/null and b/argopy/tests/test_data/20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a.nc differ diff --git a/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html b/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html new file mode 100644 index 00000000..bb56f5df --- /dev/null +++ b/argopy/tests/test_data/210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5.html @@ -0,0 +1,19 @@ + + + Description of the Argo GDAC File Merge Process + + + + + + +

Description of the Argo GDAC File Merge Process

This document describes the process of creating “merge files” – a merged core-argo/bio-argo file.  The core-file and bio-file are submitted to the GDACs by the DACs.  The merge-file is created at the GDACs.

+ +
    +
  • Argo GDAC : Global Data Assembly Centre
  • +
  • Argo DAC : Data Assembly Centre
  • +

Full Text

FilePagesSizeAccess
Publisher's official version
13833 Ko
How to cite
Ignaszewski Mark (2017). Description of the Argo GDAC File Merge Process. Ifremer. https://doi.org/10.13155/52154

Copy this text

+ + + diff --git a/argopy/tests/test_data/2191bb2c378531f7490e89fd3026828c65f3be71ae9018514bf11e5aeab370d0.ncHeader b/argopy/tests/test_data/2191bb2c378531f7490e89fd3026828c65f3be71ae9018514bf11e5aeab370d0.ncHeader new file mode 100644 index 00000000..aef6be0f --- /dev/null +++ b/argopy/tests/test_data/2191bb2c378531f7490e89fd3026828c65f3be71ae9018514bf11e5aeab370d0.ncHeader @@ -0,0 +1,426 @@ +netcdf ArgoFloats-synthetic-BGC_f853_36ab_95db.nc { + dimensions: + row = 125413; + bbp700_adjusted_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + float bbp700_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.193454E-5f, 0.04767596f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=125413, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01644325f, 4.691771f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=125413, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=125413); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660_adjusted(row=125413); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=125413); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=125413, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=125413); + :_FillValue = 99999; // int + :actual_range = 1, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=125413, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=125413, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=125413, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=125413, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=125413, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy_adjusted(row=125413); + :actual_range = 231.0956f, 99999.0f; // float + + float doxy_adjusted_error(row=125413); + :actual_range = 12.56249f, 99999.0f; // float + + char doxy_adjusted_qc(row=125413, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=125413); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 57.097543166666675, 63.18395183333334; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=125413); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -51.75795016666666, -30.635311333333334; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate_adjusted(row=125413); + :actual_range = -0.05777724f, 99999.0f; // float + + float nitrate_adjusted_error(row=125413); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=125413, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total_adjusted(row=125413); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=125413); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=125413, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=125413, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=125413); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.181f, 2006.433f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=125413, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.13953f, 35.1359f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=125413, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.12f, 11.983f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=125413); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=125413, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=125413); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653204770059E9, 1.726927792036E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=125413); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -30.635311333333334; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 63.18395183333334; // double + :geospatial_lat_min = 57.097543166666675; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -30.635311333333334; // double + :geospatial_lon_min = -51.75795016666666; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:45Z (local files) +2024-09-25T05:50:45Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%226904240%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 63.18395183333334; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 57.097543166666675; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-21T14:09:52Z"; + :time_coverage_start = "2022-05-22T07:32:50Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -51.75795016666666; // double +} diff --git a/argopy/tests/test_data/22586dfd77c2728828c99bf2dec530c63ee34295ca97dfff55ffaf689e2ca228.ncHeader b/argopy/tests/test_data/22586dfd77c2728828c99bf2dec530c63ee34295ca97dfff55ffaf689e2ca228.ncHeader new file mode 100644 index 00000000..0bdb7a48 --- /dev/null +++ b/argopy/tests/test_data/22586dfd77c2728828c99bf2dec530c63ee34295ca97dfff55ffaf689e2ca228.ncHeader @@ -0,0 +1,731 @@ +netcdf ArgoFloats-synthetic-BGC_9f52_cdf7_5b0e.nc { + dimensions: + row = 998; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.002435538f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.002435538f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=998, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=998, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.012117f, 1.562482f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=998, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=998, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0438f, 0.5548f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0803f, 0.25915f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=998, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=998, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=998); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 2, 15; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=998); + :_FillValue = 99999.0f; // float + :actual_range = 0.1697397f, 0.2255964f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=998); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=998); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=998, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=998, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=998); + :_FillValue = 99999; // int + :actual_range = 24, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=998, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.320905E-4f, 0.2058976f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=998, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=998, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 6.83386E-5f, 0.3800927f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=998, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=998, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.480935E-4f, 0.689051f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=998, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=998, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01326383f, 707.0339f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=998, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=998, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 10.54354f, 19.24935f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=998, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=998, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=998); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 56.16120216666666, 56.90258083333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=998); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.414445, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float ph_in_situ_total(row=998); + :_FillValue = 99999.0f; // float + :actual_range = 8.054143f, 8.077708f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=998); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=998); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=998, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=998, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=998, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=998); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=998); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004083f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=998, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=998, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.598f, 34.762f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.598f, 34.769f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=998, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=998, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.918f, 3.395f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.918f, 3.395f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=998, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=998, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=998); + :_CoordinateAxisType = "Time"; + :actual_range = 1.673448594032E9, 1.68024025603E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=998); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.90258083333333; // double + :geospatial_lat_min = 56.16120216666666; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -53.414445; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:47:05Z (local files) +2024-09-24T12:47:05Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1673447040.0&time%3C=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.90258083333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 56.16120216666666; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-03-31T05:24:16Z"; + :time_coverage_start = "2023-01-11T14:49:54Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.414445; // double +} diff --git a/argopy/tests/test_data/22ff01487a0390094ea6b3d9957f3ccbbbe83968e2b18bd31852eb88fb394230.ncHeader b/argopy/tests/test_data/22ff01487a0390094ea6b3d9957f3ccbbbe83968e2b18bd31852eb88fb394230.ncHeader new file mode 100644 index 00000000..dfa43347 --- /dev/null +++ b/argopy/tests/test_data/22ff01487a0390094ea6b3d9957f3ccbbbe83968e2b18bd31852eb88fb394230.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_6f1c_cdb9_087e.nc { + dimensions: + row = 982; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=982); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 2, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=982); + :_FillValue = 99999; // int + :actual_range = 38, 172; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=982, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 292.8637f, 349.3434f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 308.0967f, 370.1293f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 15.25045f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=982, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=982, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=982); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.89360833333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=982); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.31517, -47.178141000000004; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=982, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=982); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=982); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.128737E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004083f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=982, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=982, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.767f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=982, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=982, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 8.0442f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 6.826f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=982, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=982, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=982); + :_CoordinateAxisType = "Time"; + :actual_range = 1.681063194033E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=982); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.178141000000004; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.89360833333333; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.178141000000004; // double + :geospatial_lon_min = -54.31517; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:49:01Z (local files) +2024-09-24T12:49:01Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1680808320.0&time%3C=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.89360833333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2023-04-09T17:59:54Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.31517; // double +} diff --git a/argopy/tests/test_data/235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6.json b/argopy/tests/test_data/235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6.json new file mode 100644 index 00000000..38cffa6a --- /dev/null +++ b/argopy/tests/test_data/235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6.json @@ -0,0 +1,308 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/1/" + }, + "pav:authoredOn": "2021-02-08 16:23:27.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/2/" + }, + "dce:identifier": "SDN:R20::S", + "pav:version": "2", + "skos:notation": "SDN:R20::S", + "skos:altLabel": "S", + "dc:date": "2021-02-08 16:23:27.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Drifting at shallower depth than programmed" + }, + "dc:identifier": "SDN:R20::S", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float is known to be drifting at a shallower depth than originally programmed" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/1/" + }, + "pav:authoredOn": "2021-02-08 16:22:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/2/" + }, + "dce:identifier": "SDN:R20::N", + "pav:version": "2", + "skos:notation": "SDN:R20::N", + "skos:altLabel": "N", + "dc:date": "2021-02-08 16:22:18.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Not grounded" + }, + "dc:identifier": "SDN:R20::N", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No, the float did not touch the ground" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'B'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::B", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:18:37.0", + "skos:altLabel": "B", + "skos:notation": "SDN:R20::B", + "pav:version": "3", + "dce:identifier": "SDN:R20::B", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/3/" + }, + "pav:authoredOn": "2021-02-08 16:18:37.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/", + "pav:authoredOn": "2020-05-03 20:29:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/1/" + }, + "dce:identifier": "SDN:R20::U", + "pav:version": "1", + "skos:notation": "SDN:R20::U", + "skos:altLabel": "U", + "dc:date": "2020-05-03 20:29:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown" + }, + "dc:identifier": "SDN:R20::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/1/" + }, + "dce:identifier": "SDN:R20::P", + "pav:version": "1", + "skos:notation": "SDN:R20::P", + "skos:altLabel": "P", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::P", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/", + "pav:authoredOn": "2021-02-08 16:07:23.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/1/" + }, + "dce:identifier": "SDN:R20::C", + "pav:version": "1", + "skos:notation": "SDN:R20::C", + "skos:altLabel": "C", + "dc:date": "2021-02-08 16:07:23.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded (external bathymetry database check), but free-drift period not affected" + }, + "dc:identifier": "SDN:R20::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground as determined by an external bathymetry database during a part of the mission that did not affect the free-drift period." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Yes, the float touched the ground and the programmed free-drift period was affected. If it is uncertain what mission phase the grounding took place, use 'Y'." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R20::Y", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded, and free-drift period affected" + }, + "owl:versionInfo": "3", + "dc:date": "2021-02-08 16:25:46.0", + "skos:altLabel": "Y", + "skos:notation": "SDN:R20::Y", + "pav:version": "3", + "dce:identifier": "SDN:R20::Y", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/3/" + }, + "pav:authoredOn": "2021-02-08 16:25:46.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/S/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/P/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/Y/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R20/current/C/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Codes to indicate the best estimate of whether the float touched the ground during a specific cycle. Argo netCDF variable GROUNDED in the Trajectory file is populated by R20 altLabel.", + "dc:title": "Argo GROUNDED flags", + "skos:prefLabel": "Argo GROUNDED flags", + "owl:versionInfo": "2", + "dc:date": "2021-02-09 02:00:03.0", + "skos:altLabel": "GROUNDED", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "GROUNDED", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R20" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json b/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json new file mode 100644 index 00000000..35117374 --- /dev/null +++ b/argopy/tests/test_data/237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7.json @@ -0,0 +1 @@ +[{"id":4490460,"cvNumber":15,"coordinate":{"lat":65.042,"lon":-31.326},"level":0},{"id":4548083,"cvNumber":26,"coordinate":{"lat":61.829,"lon":-52.726},"level":0},{"id":4648901,"cvNumber":44,"coordinate":{"lat":62.446,"lon":-56.453},"level":0},{"id":4677513,"cvNumber":49,"coordinate":{"lat":62.189,"lon":-59.694},"level":0},{"id":4471199,"cvNumber":12,"coordinate":{"lat":63.679,"lon":-28.807},"level":0},{"id":4589152,"cvNumber":34,"coordinate":{"lat":61.249,"lon":-51.966},"level":0},{"id":4518240,"cvNumber":20,"coordinate":{"lat":61.291,"lon":-40.908},"level":0},{"id":4774146,"cvNumber":65,"coordinate":{"lat":62.648,"lon":-57.522},"level":0},{"id":4736172,"cvNumber":59,"coordinate":{"lat":62.455,"lon":-56.201},"level":0},{"id":4806943,"cvNumber":71,"coordinate":{"lat":63.214,"lon":-57.614},"level":0},{"id":4811796,"cvNumber":72,"coordinate":{"lat":63.37,"lon":-57.979},"level":0},{"id":4724330,"cvNumber":57,"coordinate":{"lat":61.916,"lon":-58.259},"level":0},{"id":4718440,"cvNumber":56,"coordinate":{"lat":61.814,"lon":-58.528},"level":0},{"id":4785024,"cvNumber":67,"coordinate":{"lat":63.372,"lon":-57.488},"level":0},{"id":4789904,"cvNumber":68,"coordinate":{"lat":63.257,"lon":-57.275},"level":0},{"id":4707532,"cvNumber":54,"coordinate":{"lat":61.626,"lon":-59.143},"level":0},{"id":4795980,"cvNumber":69,"coordinate":{"lat":63.292,"lon":-57.673},"level":0},{"id":4712959,"cvNumber":55,"coordinate":{"lat":61.884,"lon":-57.831},"level":0},{"id":4892900,"cvNumber":87,"coordinate":{"lat":57.964,"lon":-59.466},"level":0},{"id":4919396,"cvNumber":92,"coordinate":{"lat":55.159,"lon":-52.132},"level":0},{"id":4831766,"cvNumber":76,"coordinate":{"lat":63.117,"lon":-58.66},"level":0},{"id":4816555,"cvNumber":73,"coordinate":{"lat":63.708,"lon":-57.849},"level":0},{"id":4842593,"cvNumber":78,"coordinate":{"lat":63.007,"lon":-60.025},"level":0},{"id":4847895,"cvNumber":79,"coordinate":{"lat":62.733,"lon":-60.485},"level":0},{"id":4909042,"cvNumber":90,"coordinate":{"lat":55.967,"lon":-56.82},"level":0},{"id":4904212,"cvNumber":89,"coordinate":{"lat":56.696,"lon":-58.201},"level":0},{"id":4868961,"cvNumber":82,"coordinate":{"lat":61.359,"lon":-60.692},"level":0},{"id":4873922,"cvNumber":83,"coordinate":{"lat":60.517,"lon":-61.338},"level":0},{"id":4878914,"cvNumber":84,"coordinate":{"lat":59.758,"lon":-60.473},"level":0},{"id":4888182,"cvNumber":86,"coordinate":{"lat":58.772,"lon":-59.918},"level":0},{"id":4553170,"cvNumber":27,"coordinate":{"lat":62.345,"lon":-52.583},"level":0},{"id":4533033,"cvNumber":23,"coordinate":{"lat":59.823,"lon":-47.78},"level":0},{"id":4497229,"cvNumber":16,"coordinate":{"lat":64.863,"lon":-33.037},"level":0},{"id":4513357,"cvNumber":19,"coordinate":{"lat":62.112,"lon":-39.622},"level":0},{"id":4508512,"cvNumber":18,"coordinate":{"lat":62.848,"lon":-39.684},"level":0},{"id":4527975,"cvNumber":22,"coordinate":{"lat":59.362,"lon":-44.774},"level":0},{"id":4523289,"cvNumber":21,"coordinate":{"lat":59.406,"lon":-42.383},"level":0},{"id":4504062,"cvNumber":17,"coordinate":{"lat":64.479,"lon":-34.902},"level":0},{"id":4542520,"cvNumber":25,"coordinate":{"lat":61.335,"lon":-52.812},"level":0},{"id":4537800,"cvNumber":24,"coordinate":{"lat":60.912,"lon":-50.922},"level":0},{"id":4643653,"cvNumber":43,"coordinate":{"lat":62.435,"lon":-55.062},"level":0},{"id":4672440,"cvNumber":48,"coordinate":{"lat":62.408,"lon":-58.977},"level":0},{"id":4654731,"cvNumber":45,"coordinate":{"lat":62.411,"lon":-55.622},"level":0},{"id":4667721,"cvNumber":47,"coordinate":{"lat":62.621,"lon":-58.0},"level":0},{"id":4661544,"cvNumber":46,"coordinate":{"lat":62.766,"lon":-56.999},"level":0},{"id":4692541,"cvNumber":52,"coordinate":{"lat":61.656,"lon":-59.171},"level":0},{"id":4638066,"cvNumber":42,"coordinate":{"lat":62.714,"lon":-53.906},"level":0},{"id":4632835,"cvNumber":41,"coordinate":{"lat":62.742,"lon":-53.84},"level":0},{"id":4698233,"cvNumber":53,"coordinate":{"lat":61.515,"lon":-59.568},"level":0},{"id":4687493,"cvNumber":51,"coordinate":{"lat":61.666,"lon":-59.266},"level":0},{"id":4682472,"cvNumber":50,"coordinate":{"lat":61.675,"lon":-59.867},"level":0},{"id":4461302,"cvNumber":10,"coordinate":{"lat":62.781,"lon":-28.811},"level":0},{"id":4466214,"cvNumber":11,"coordinate":{"lat":63.291,"lon":-28.733},"level":0},{"id":4477040,"cvNumber":13,"coordinate":{"lat":64.113,"lon":-28.994},"level":0},{"id":4485149,"cvNumber":14,"coordinate":{"lat":64.922,"lon":-29.399},"level":0},{"id":4421901,"cvNumber":3,"coordinate":{"lat":59.723,"lon":-31.235},"level":0},{"id":4421900,"cvNumber":2,"coordinate":{"lat":59.492,"lon":-31.681},"level":0},{"id":4421899,"cvNumber":1,"coordinate":{"lat":59.019,"lon":-31.974},"level":0},{"id":4438625,"cvNumber":6,"coordinate":{"lat":60.743,"lon":-30.443},"level":0},{"id":4444146,"cvNumber":7,"coordinate":{"lat":60.942,"lon":-29.669},"level":0},{"id":4448926,"cvNumber":8,"coordinate":{"lat":61.552,"lon":-28.913},"level":0},{"id":4454883,"cvNumber":9,"coordinate":{"lat":62.487,"lon":-28.776},"level":0},{"id":4583668,"cvNumber":33,"coordinate":{"lat":61.668,"lon":-51.234},"level":0},{"id":4578425,"cvNumber":32,"coordinate":{"lat":61.926,"lon":-52.74},"level":0},{"id":4627338,"cvNumber":40,"coordinate":{"lat":62.48,"lon":-52.733},"level":0},{"id":4621230,"cvNumber":39,"coordinate":{"lat":62.584,"lon":-53.053},"level":0},{"id":4616044,"cvNumber":38,"coordinate":{"lat":62.404,"lon":-53.102},"level":0},{"id":4563378,"cvNumber":29,"coordinate":{"lat":61.108,"lon":-51.707},"level":0},{"id":4558346,"cvNumber":28,"coordinate":{"lat":61.513,"lon":-51.286},"level":0},{"id":4595811,"cvNumber":35,"coordinate":{"lat":61.425,"lon":-52.451},"level":0},{"id":4573554,"cvNumber":31,"coordinate":{"lat":61.777,"lon":-53.244},"level":0},{"id":4568728,"cvNumber":30,"coordinate":{"lat":62.005,"lon":-51.931},"level":0},{"id":4602682,"cvNumber":36,"coordinate":{"lat":62.342,"lon":-53.829},"level":0},{"id":4609737,"cvNumber":37,"coordinate":{"lat":61.951,"lon":-51.733},"level":0},{"id":4425848,"cvNumber":4,"coordinate":{"lat":60.078,"lon":-31.016},"level":0},{"id":4433235,"cvNumber":5,"coordinate":{"lat":60.128,"lon":-30.479},"level":0},{"id":5181294,"cvNumber":135,"coordinate":{"lat":44.501,"lon":-32.674},"level":0},{"id":5176518,"cvNumber":134,"coordinate":{"lat":44.496,"lon":-33.513},"level":0},{"id":5187028,"cvNumber":136,"coordinate":{"lat":44.053,"lon":-32.204},"level":0},{"id":5191712,"cvNumber":137,"coordinate":{"lat":43.398,"lon":-31.766},"level":0},{"id":4748996,"cvNumber":61,"coordinate":{"lat":61.792,"lon":-58.15},"level":0},{"id":4755992,"cvNumber":62,"coordinate":{"lat":61.8,"lon":-56.987},"level":0},{"id":5170289,"cvNumber":133,"coordinate":{"lat":44.021,"lon":-34.12},"level":0},{"id":5163371,"cvNumber":132,"coordinate":{"lat":43.379,"lon":-34.497},"level":0},{"id":5390546,"cvNumber":173,"coordinate":{"lat":43.228,"lon":-27.749},"level":0},{"id":5403026,"cvNumber":175,"coordinate":{"lat":43.33,"lon":-28.119},"level":0},{"id":5365791,"cvNumber":169,"coordinate":{"lat":43.132,"lon":-28.169},"level":0},{"id":5371774,"cvNumber":170,"coordinate":{"lat":43.117,"lon":-28.193},"level":0},{"id":5384466,"cvNumber":172,"coordinate":{"lat":43.03,"lon":-27.777},"level":0},{"id":5378369,"cvNumber":171,"coordinate":{"lat":43.039,"lon":-27.961},"level":0},{"id":5348162,"cvNumber":166,"coordinate":{"lat":42.402,"lon":-29.173},"level":0},{"id":5336175,"cvNumber":164,"coordinate":{"lat":42.433,"lon":-28.868},"level":0},{"id":5341406,"cvNumber":165,"coordinate":{"lat":42.37,"lon":-29.104},"level":0},{"id":5323543,"cvNumber":162,"coordinate":{"lat":41.741,"lon":-29.842},"level":0},{"id":5353723,"cvNumber":167,"coordinate":{"lat":42.582,"lon":-28.94},"level":0},{"id":5359798,"cvNumber":168,"coordinate":{"lat":42.914,"lon":-28.536},"level":0},{"id":5316559,"cvNumber":161,"coordinate":{"lat":41.429,"lon":-30.195},"level":0},{"id":5397342,"cvNumber":174,"coordinate":{"lat":43.28,"lon":-27.971},"level":0},{"id":5412510,"cvNumber":177,"coordinate":{"lat":43.811,"lon":-28.851},"level":0},{"id":5408118,"cvNumber":176,"coordinate":{"lat":43.413,"lon":-28.408},"level":0},{"id":5008382,"cvNumber":107,"coordinate":{"lat":45.442,"lon":-40.264},"level":0},{"id":4989782,"cvNumber":104,"coordinate":{"lat":46.576,"lon":-43.234},"level":0},{"id":5035808,"cvNumber":112,"coordinate":{"lat":43.601,"lon":-42.924},"level":0},{"id":5265724,"cvNumber":151,"coordinate":{"lat":42.975,"lon":-32.676},"level":0},{"id":5270819,"cvNumber":152,"coordinate":{"lat":42.63,"lon":-33.362},"level":0},{"id":5240972,"cvNumber":146,"coordinate":{"lat":41.786,"lon":-29.888},"level":0},{"id":5112540,"cvNumber":125,"coordinate":{"lat":43.166,"lon":-35.577},"level":0},{"id":4856234,"cvNumber":80,"coordinate":{"lat":62.525,"lon":-60.608},"level":0},{"id":4863415,"cvNumber":81,"coordinate":{"lat":62.04,"lon":-60.589},"level":0},{"id":4762955,"cvNumber":63,"coordinate":{"lat":61.907,"lon":-56.659},"level":0},{"id":4768824,"cvNumber":64,"coordinate":{"lat":62.77,"lon":-57.112},"level":0},{"id":4779493,"cvNumber":66,"coordinate":{"lat":63.103,"lon":-57.71},"level":0},{"id":4914208,"cvNumber":91,"coordinate":{"lat":55.629,"lon":-54.661},"level":0},{"id":4925062,"cvNumber":93,"coordinate":{"lat":54.704,"lon":-51.681},"level":0},{"id":4941779,"cvNumber":96,"coordinate":{"lat":51.236,"lon":-49.246},"level":0},{"id":4956012,"cvNumber":98,"coordinate":{"lat":49.219,"lon":-48.974},"level":0},{"id":4935749,"cvNumber":95,"coordinate":{"lat":52.65,"lon":-50.301},"level":0},{"id":4898231,"cvNumber":88,"coordinate":{"lat":57.231,"lon":-58.753},"level":0},{"id":4837325,"cvNumber":77,"coordinate":{"lat":62.941,"lon":-59.183},"level":0},{"id":4826420,"cvNumber":75,"coordinate":{"lat":63.657,"lon":-58.391},"level":0},{"id":4821618,"cvNumber":74,"coordinate":{"lat":63.616,"lon":-58.26},"level":0},{"id":4801121,"cvNumber":70,"coordinate":{"lat":63.306,"lon":-57.496},"level":0},{"id":4742557,"cvNumber":60,"coordinate":{"lat":62.267,"lon":-57.253},"level":0},{"id":4730371,"cvNumber":58,"coordinate":{"lat":62.207,"lon":-57.227},"level":0},{"id":4994954,"cvNumber":105,"coordinate":{"lat":46.559,"lon":-43.702},"level":0},{"id":5001697,"cvNumber":106,"coordinate":{"lat":46.397,"lon":-42.521},"level":0},{"id":4973477,"cvNumber":101,"coordinate":{"lat":48.937,"lon":-45.264},"level":0},{"id":4967994,"cvNumber":100,"coordinate":{"lat":48.451,"lon":-47.188},"level":0},{"id":4961427,"cvNumber":99,"coordinate":{"lat":48.693,"lon":-48.517},"level":0},{"id":5030475,"cvNumber":111,"coordinate":{"lat":42.872,"lon":-41.553},"level":0},{"id":5014569,"cvNumber":108,"coordinate":{"lat":44.237,"lon":-40.529},"level":0},{"id":4984300,"cvNumber":103,"coordinate":{"lat":47.096,"lon":-43.182},"level":0},{"id":5025438,"cvNumber":110,"coordinate":{"lat":43.665,"lon":-44.155},"level":0},{"id":5020659,"cvNumber":109,"coordinate":{"lat":44.56,"lon":-42.49},"level":0},{"id":4947310,"cvNumber":97,"coordinate":{"lat":50.05,"lon":-48.968},"level":0},{"id":4930406,"cvNumber":94,"coordinate":{"lat":53.846,"lon":-51.436},"level":0},{"id":4883583,"cvNumber":85,"coordinate":{"lat":59.321,"lon":-60.226},"level":0},{"id":4978701,"cvNumber":102,"coordinate":{"lat":48.49,"lon":-44.234},"level":0},{"id":5061836,"cvNumber":117,"coordinate":{"lat":43.969,"lon":-38.958},"level":0},{"id":5123178,"cvNumber":127,"coordinate":{"lat":43.002,"lon":-34.992},"level":0},{"id":5055992,"cvNumber":116,"coordinate":{"lat":44.314,"lon":-39.584},"level":0},{"id":5129734,"cvNumber":128,"coordinate":{"lat":43.113,"lon":-34.755},"level":0},{"id":5136426,"cvNumber":129,"coordinate":{"lat":43.033,"lon":-34.65},"level":0},{"id":5045909,"cvNumber":114,"coordinate":{"lat":43.514,"lon":-42.258},"level":0},{"id":5041090,"cvNumber":113,"coordinate":{"lat":43.432,"lon":-41.272},"level":0},{"id":5050765,"cvNumber":115,"coordinate":{"lat":44.072,"lon":-40.791},"level":0},{"id":5107014,"cvNumber":124,"coordinate":{"lat":43.332,"lon":-35.946},"level":0},{"id":5073244,"cvNumber":119,"coordinate":{"lat":44.066,"lon":-38.502},"level":0},{"id":5099512,"cvNumber":123,"coordinate":{"lat":43.518,"lon":-36.272},"level":0},{"id":5068203,"cvNumber":118,"coordinate":{"lat":43.96,"lon":-38.843},"level":0},{"id":5092205,"cvNumber":122,"coordinate":{"lat":43.912,"lon":-36.964},"level":0},{"id":5078835,"cvNumber":120,"coordinate":{"lat":44.198,"lon":-38.098},"level":0},{"id":5085770,"cvNumber":121,"coordinate":{"lat":44.19,"lon":-37.816},"level":0},{"id":5207645,"cvNumber":140,"coordinate":{"lat":41.911,"lon":-32.311},"level":0},{"id":5202818,"cvNumber":139,"coordinate":{"lat":42.643,"lon":-31.887},"level":0},{"id":5155843,"cvNumber":131,"coordinate":{"lat":43.153,"lon":-34.531},"level":0},{"id":5118247,"cvNumber":126,"coordinate":{"lat":43.014,"lon":-35.424},"level":0},{"id":5145877,"cvNumber":130,"coordinate":{"lat":42.935,"lon":-34.549},"level":0},{"id":5261462,"cvNumber":150,"coordinate":{"lat":42.897,"lon":-31.811},"level":0},{"id":5235643,"cvNumber":145,"coordinate":{"lat":41.429,"lon":-30.19},"level":0},{"id":5212301,"cvNumber":141,"coordinate":{"lat":41.247,"lon":-32.211},"level":0},{"id":5217126,"cvNumber":142,"coordinate":{"lat":41.184,"lon":-31.448},"level":0},{"id":5245964,"cvNumber":147,"coordinate":{"lat":42.176,"lon":-30.284},"level":0},{"id":5197923,"cvNumber":138,"coordinate":{"lat":43.05,"lon":-31.665},"level":0},{"id":5251261,"cvNumber":148,"coordinate":{"lat":42.434,"lon":-30.798},"level":0},{"id":5224430,"cvNumber":143,"coordinate":{"lat":41.261,"lon":-31.118},"level":0},{"id":5229565,"cvNumber":144,"coordinate":{"lat":41.394,"lon":-30.687},"level":0},{"id":5310330,"cvNumber":160,"coordinate":{"lat":41.354,"lon":-30.468},"level":0},{"id":5276072,"cvNumber":153,"coordinate":{"lat":42.179,"lon":-33.359},"level":0},{"id":5291052,"cvNumber":156,"coordinate":{"lat":40.689,"lon":-32.554},"level":0},{"id":5301134,"cvNumber":158,"coordinate":{"lat":40.735,"lon":-31.761},"level":0},{"id":5306027,"cvNumber":159,"coordinate":{"lat":41.12,"lon":-31.071},"level":0},{"id":5286642,"cvNumber":155,"coordinate":{"lat":40.85,"lon":-32.777},"level":0},{"id":5329719,"cvNumber":163,"coordinate":{"lat":42.201,"lon":-29.316},"level":0},{"id":5281215,"cvNumber":154,"coordinate":{"lat":41.53,"lon":-33.254},"level":0},{"id":5296351,"cvNumber":157,"coordinate":{"lat":40.706,"lon":-32.384},"level":0},{"id":5255956,"cvNumber":149,"coordinate":{"lat":42.7,"lon":-31.155},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/24253f9c7f10474895261e16d33abb0aff8d29bb21d2a2b5980bc0f455a326d9.ncHeader b/argopy/tests/test_data/24253f9c7f10474895261e16d33abb0aff8d29bb21d2a2b5980bc0f455a326d9.ncHeader new file mode 100644 index 00000000..f92e4c70 --- /dev/null +++ b/argopy/tests/test_data/24253f9c7f10474895261e16d33abb0aff8d29bb21d2a2b5980bc0f455a326d9.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_d01f_aa67_4ba4.nc { + dimensions: + row = 25527; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 29; + variables: + int config_mission_number(row=25527); + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=25527); + :_FillValue = 99999; // int + :actual_range = 1, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=25527, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=25527, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=25527); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -49.526, -21.902; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=25527); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 17.358, 142.722; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=25527, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=25527, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=25527); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.6f, 2001.1f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 4.5f, 2001.1f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=25527, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=25527, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 33.751f, 35.778f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 33.73227f, 35.778f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=25527, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=25527, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 28.155f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 28.155f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=25527); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=25527, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=25527, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=25527); + :_CoordinateAxisType = "Time"; + :actual_range = 1.261966039E9, 1.583463689E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=25527, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=25527, vertical_sampling_scheme_strlen=29); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 142.722; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -21.902; // double + :geospatial_lat_min = -49.526; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 142.722; // double + :geospatial_lon_min = 17.358; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:39Z (local files) +2024-09-24T08:52:39Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221901393%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = -21.902; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -49.526; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2020-03-06T03:01:29Z"; + :time_coverage_start = "2009-12-28T02:07:19Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = 17.358; // double +} diff --git a/argopy/tests/test_data/256df2864499d7cd270eb5e126e076b13f2a48403f72b31c45590a0f6b1618d9.nc b/argopy/tests/test_data/256df2864499d7cd270eb5e126e076b13f2a48403f72b31c45590a0f6b1618d9.nc new file mode 100644 index 00000000..c0c3d1be Binary files /dev/null and b/argopy/tests/test_data/256df2864499d7cd270eb5e126e076b13f2a48403f72b31c45590a0f6b1618d9.nc differ diff --git a/argopy/tests/test_data/2636d64e2d00870fb7375e89b9528bd8115afb30498f44dcaddd50601b14bdf1.nc b/argopy/tests/test_data/2636d64e2d00870fb7375e89b9528bd8115afb30498f44dcaddd50601b14bdf1.nc new file mode 100644 index 00000000..73582705 Binary files /dev/null and b/argopy/tests/test_data/2636d64e2d00870fb7375e89b9528bd8115afb30498f44dcaddd50601b14bdf1.nc differ diff --git a/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json b/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json new file mode 100644 index 00000000..ca7f9f35 --- /dev/null +++ b/argopy/tests/test_data/27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870.json @@ -0,0 +1,5163 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/", + "pav:authoredOn": "2023-11-24 09:35:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/1/" + }, + "dce:identifier": "SDN:R27::SBE83_OPTODE", + "pav:version": "1", + "skos:notation": "SDN:R27::SBE83_OPTODE", + "skos:altLabel": "", + "dc:date": "2023-11-24 09:35:13.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE83 oxygen optode" + }, + "dc:identifier": "SDN:R27::SBE83_OPTODE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bird Scientific and designed to be integrated into a pumped CTD system." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R27::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R27::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown sensor model" + }, + "dc:identifier": "SDN:R27::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sensor model is unknown." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/1/" + }, + "dce:identifier": "SDN:R27::FLOATCLOCK", + "pav:version": "1", + "skos:notation": "SDN:R27::FLOATCLOCK", + "skos:altLabel": "FLOATCLOCK", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Float clock" + }, + "dc:identifier": "SDN:R27::FLOATCLOCK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Inboard Real Time Clock (RTC) of a float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R27::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R27::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ranging And Fixing Of Sound (RAFOS) receiver" + }, + "dc:identifier": "SDN:R27::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Receiver for geopositioning under ice, working in conjunction with fixed sound sources arrays located within range." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/1/" + }, + "dce:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/QUARTZDYNE/" + }, + "skos:notation": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:altLabel": "QUARTZDYNE_DSB301-10-C85", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Quartzdyne DSB301-10-C85 pressure sensor" + }, + "dc:identifier": "SDN:R27::QUARTZDYNE_DSB301-10-C85", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A thickness shear mode quartz resonator pressure sensor manufactured by Quartzdyne. Pressure range: 0 dbar - 6900 dbar; field accuracy: 0.02 % Full Scale (FS) between -40 degC and 85 degC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/1/" + }, + "dce:identifier": "SDN:R27::ISUS_V3", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + }, + "skos:notation": "SDN:R27::ISUS_V3", + "skos:altLabel": "ISUS_V3", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic In Situ Ultraviolet Spectrophotometer (ISUS) V3 nitrate sensor" + }, + "dc:identifier": "SDN:R27::ISUS_V3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement accuracy: +/- 2 umol/l; detection range: 0.5 umol/l to 2000 umol/l. The instrument is depth-rated to 1000 m; it is based on the MBARI-ISUS-X v.2, and was manufactured at Satlantic." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/1/" + }, + "dce:identifier": "SDN:R27::CTD_F01", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TSK/" + }, + "skos:notation": "SDN:R27::CTD_F01", + "skos:altLabel": "CTD_F01", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki TSK CTD F01" + }, + "dc:identifier": "SDN:R27::CTD_F01", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors manufactured by Tsurumi-Seiki, model F01." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/1/" + }, + "dce:identifier": "SDN:R27::PAINE_2900PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE_2900PSIA", + "skos:altLabel": "PAINE_2900PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2900 PSIA rating" + }, + "dc:identifier": "SDN:R27::PAINE_2900PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Paine." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/1/" + }, + "dce:identifier": "SDN:R27::PAINE", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE", + "skos:altLabel": "PAINE", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with unknown pressure rating" + }, + "dc:identifier": "SDN:R27::PAINE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Paine with unknown pressure rating." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/1/" + }, + "dce:identifier": "SDN:R27::PAINE_1500PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE_1500PSIA", + "skos:altLabel": "PAINE_1500PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1500 PSIA rating" + }, + "dc:identifier": "SDN:R27::PAINE_1500PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1500 pounds per square inch absolute manufactured by Paine." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/1/" + }, + "dce:identifier": "SDN:R27::PAINE_1600PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE_1600PSIA", + "skos:altLabel": "PAINE_1600PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 1600 PSIA rating" + }, + "dc:identifier": "SDN:R27::PAINE_1600PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 1600 pounds per square inch absolute manufactured by Paine." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/1/" + }, + "dce:identifier": "SDN:R27::PAINE_3000PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE_3000PSIA", + "skos:altLabel": "PAINE_3000PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 3000 PSIA rating" + }, + "dc:identifier": "SDN:R27::PAINE_3000PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Paine." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/1/" + }, + "dce:identifier": "SDN:R27::PAINE_2000PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/PAINE/" + }, + "skos:notation": "SDN:R27::PAINE_2000PSIA", + "skos:altLabel": "PAINE_2000PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Paine pressure sensor with 2000 PSIA rating" + }, + "dc:identifier": "SDN:R27::PAINE_2000PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2000 pounds per square inch absolute manufactured by Paine." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:altLabel": "AANDERAA_OPTODE_4330", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330 oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 25 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:altLabel": "AANDERAA_OPTODE_4831F", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831F (fast-response) oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 8 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:altLabel": "AANDERAA_OPTODE_3830", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3830 oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3830", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:altLabel": "AANDERAA_OPTODE_4831", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4831 oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4831", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; response time (63 %): < 25 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:altLabel": "AANDERAA_OPTODE_3835", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3835 oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3835", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE", + "skos:altLabel": "AANDERAA_OPTODE", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa unknown oxygen optode model" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown oxygen optode model manufactured by Aanderaa." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:altLabel": "AANDERAA_OPTODE_4330F", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 4330F (fast-response) oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_4330F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 300 m, 3000 m, 6000 m or 12000 m; oxygen concentration accuracy of < 2 uM or 1.5 %, and resolution of < 0.1 uM; air saturation accuracy of < 1.5 %, and resolution of 0.05 %; response time (63 %): < 8 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/1/" + }, + "dce:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AANDERAA/" + }, + "skos:notation": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:altLabel": "AANDERAA_OPTODE_3930", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Aanderaa 3930 oxygen optode" + }, + "dc:identifier": "SDN:R27::AANDERAA_OPTODE_3930", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by Aanderaa. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m or 6000 m; oxygen concentration accuracy of < 8 uM or 5 %, and resolution of < 1 uM; air saturation accuracy of < 5 %, and resolution of 0.4 %; settling time (63 %): < 25 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/1/" + }, + "dce:identifier": "SDN:R27::OPUS_DS", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "skos:notation": "SDN:R27::OPUS_DS", + "skos:altLabel": "OPUS_DS", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS OPUS spectral sensor - Deep Sea version" + }, + "dc:identifier": "SDN:R27::OPUS_DS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A spectral sensor designed to measure nitrogen and carbon compounds, with titanium housing and depth-rating of 6000 dbar (Deep-Sea version). A xenon flash lamp provides the light source, and a 256-channel spectrometer covers a wavelength range of 200 nm - 360 nm. The instrument is manufactured by TriOS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/1/" + }, + "dce:identifier": "SDN:R27::RAMSES_ACC", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TRIOS/" + }, + "skos:notation": "SDN:R27::RAMSES_ACC", + "skos:altLabel": "RAMSES_ACC", + "dc:date": "2021-07-01 16:48:21.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TriOS RAMSES ACC spectral imaging radiometer" + }, + "dc:identifier": "SDN:R27::RAMSES_ACC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A spectral imaging radiometer with cosine detector which measures radiance, irradiance or scalar irradiance in the Ultraviolet (UV), Vis (Visible) and Ultraviolet-visible (UV-Vis) ranges, manufactured by TriOS. Number of channels: 256." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/1/" + }, + "dce:identifier": "SDN:R27::KISTLER_10153PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "skos:notation": "SDN:R27::KISTLER_10153PSIA", + "skos:altLabel": "KISTLER_10153PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 10153 PSIA rating" + }, + "dc:identifier": "SDN:R27::KISTLER_10153PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Kistler." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/1/" + }, + "dce:identifier": "SDN:R27::KISTLER_2900PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "skos:notation": "SDN:R27::KISTLER_2900PSIA", + "skos:altLabel": "KISTLER_2900PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with 2900 PSIA rating" + }, + "dc:identifier": "SDN:R27::KISTLER_2900PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Kistler." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/1/" + }, + "dce:identifier": "SDN:R27::KISTLER", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KISTLER/" + }, + "skos:notation": "SDN:R27::KISTLER", + "skos:altLabel": "KISTLER", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kistler pressure sensor with unknown pressure rating" + }, + "dc:identifier": "SDN:R27::KISTLER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Kistler with unknown pressure rating." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/1/" + }, + "dce:identifier": "SDN:R27::KELLER_PA8", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/KELLER/" + }, + "skos:notation": "SDN:R27::KELLER_PA8", + "skos:altLabel": "KELLER_PA8", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Keller PA-8 pressure transducer" + }, + "dc:identifier": "SDN:R27::KELLER_PA8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A sealed gauge pressure transducer part of the Series 8 pressure sensors range manufactured by Keller." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/1/" + }, + "dce:identifier": "SDN:R27::ARO_FT", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "skos:notation": "SDN:R27::ARO_FT", + "skos:altLabel": "ARO_FT", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) ARO-FT oxygen optode" + }, + "dc:identifier": "SDN:R27::ARO_FT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 2000 m; dissolved oxygen concentration initial accuracy of 2 %, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/1/" + }, + "dce:identifier": "SDN:R27::AROD_FT", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/JAC/" + }, + "skos:notation": "SDN:R27::AROD_FT", + "skos:altLabel": "AROD_FT", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "JFE Advantech Co. (JAC) AROD-FT oxygen optode" + }, + "dc:identifier": "SDN:R27::AROD_FT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An oxygen optode with integrated temperature sensor, manufactured by JFE Advantech Co. and designed to be mounted on Argo floats. This model is part of the JFE Advantech Co., Ltd. RINKO series of optical dissolved oxygen sensors. The instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. Depth rating: 6700 m; oxygen concentration initial accuracy of 2 % of measured value, and resolution of 0.01 umol/l; response time (63 %): < 1 s." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific. The sensor is fitted on an APEX float." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL_AP2" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL_AP2", + "skos:notation": "SDN:R27::ECO_FLBBFL_AP2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_FLBBFL_AP2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/2/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/1/" + }, + "dce:identifier": "SDN:R27::MP40_C_2000_G", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MICRON/" + }, + "skos:notation": "SDN:R27::MP40_C_2000_G", + "skos:altLabel": "MP40_C_2000_G", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Micron Instruments MP40C-2000G pressure transducer" + }, + "dc:identifier": "SDN:R27::MP40_C_2000_G", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A flush mountable pressure transducer MP40 model, configured to performance specification 'C' and header option 'G' (gage), depth-rated to 2000 psi. The instrument was manufactured by Micron Instruments (also operating as Piezo-Metrics)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A temperature and pressure sensor package developed by Seascan, composed of a high-stability, glass-encapsulated thermistor manufactured by YSI (or optionally an ultra-stable thermistor manufactured by Thermometrics), and a mono-crystal silicon strain gage sensor manufactured by Druck. YSI thermistor accuracy: 0.01 degC; YSI thermistor resolution: 0.001 degC; pressure transducer accuracy: 0.1 % of full scale. Instrument's depth rating: either 2000 dbar or 4000 dbar." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SEASCAN_SSTD", + "skos:prefLabel": { + "@language": "en", + "@value": "Seascan Temperature and Depth (SSTD) sensor package" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-19 11:24:56.0", + "skos:altLabel": "SEASCAN_SSTD", + "skos:notation": "SDN:R27::SEASCAN_SSTD", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEASCAN/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::SEASCAN_SSTD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/3/" + }, + "pav:authoredOn": "2021-08-19 11:24:56.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 10153 pounds per square inch absolute manufactured by Druck." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "true", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "dc:identifier": "SDN:R27::DRUCK_10153PSIA", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 10153 PSIA rating" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "DRUCK_10153PSIA", + "skos:notation": "SDN:R27::DRUCK_10153PSIA", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::DRUCK_10153PSIA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/1/" + }, + "dce:identifier": "SDN:R27::DRUCK", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "skos:notation": "SDN:R27::DRUCK", + "skos:altLabel": "DRUCK", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with unknown pressure rating" + }, + "dc:identifier": "SDN:R27::DRUCK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Druck with unknown pressure rating." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/1/" + }, + "dce:identifier": "SDN:R27::DRUCK_2900PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/DRUCK/" + }, + "skos:notation": "SDN:R27::DRUCK_2900PSIA", + "skos:altLabel": "DRUCK_2900PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Druck pressure sensor with 2900 PSIA rating" + }, + "dc:identifier": "SDN:R27::DRUCK_2900PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 2900 pounds per square inch absolute manufactured by Druck." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/1/" + }, + "dce:identifier": "SDN:R27::FSI", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/FSI/" + }, + "skos:notation": "SDN:R27::FSI", + "skos:altLabel": "FSI", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Falmouth Scientific, Inc (FSI) unknown CTD model" + }, + "dc:identifier": "SDN:R27::FSI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Falmouth Scientific, Inc (FSI)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/1/" + }, + "dce:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SEAPOINT/" + }, + "skos:notation": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:altLabel": "SEAPOINT_TURBIDITY_METER", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Seapoint Turbidity Meter" + }, + "dc:identifier": "SDN:R27::SEAPOINT_TURBIDITY_METER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 880 nm to determine turbidity, depth-rated to 6000 m. The sensor has four programmable sensitivity options: 2 mV/FTU, 10 mV/FTU, 40 mV/FTU and 200 mV/FTU, each corresponding to a gain of 1x, 5x, 20x and 100x respectively, and range of non-linear, 500 FTU, 125 FTU and 25 FTU respectively. The instrument was developed and manufactured by Seapoint Sensors, inc." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/1/" + }, + "dce:identifier": "SDN:R27::RBR", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR", + "skos:altLabel": "RBR", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBR unknown CTD model" + }, + "dc:identifier": "SDN:R27::RBR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by RBR." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:altLabel": "RBR_ARGO3_DEEP6K", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep6k" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP6K", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 6000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/1/" + }, + "dce:identifier": "SDN:R27::RBR_CODA_T_ODO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_CODA_T_ODO", + "skos:altLabel": "RBR_CODA_T_ODO", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRcoda T.ODO Temperature and Dissolved Oxygen sensor" + }, + "dc:identifier": "SDN:R27::RBR_CODA_T_ODO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A stand-alone oxygen optode with integrated temperature sensor, manufactured by RBR. This instrument exploits the physio-chemical principle of dynamic fluorescence quenching to measure absolute oxygen concentration and percent saturation. It is available in three variants based on response times: slow (30 s time constant), standard (8 s time constant) and fast (1 s time constant), the latter being optimal for vertical profiling applications. Depth rating: 6000 m; oxygen concentration accuracy of +/- 8 uM or +/- 5 %, and resolution of < 1 uM; air saturation resolution of 0.4 %." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_ARGO", + "skos:altLabel": "RBR_ARGO", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo CTD" + }, + "dc:identifier": "SDN:R27::RBR_ARGO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 12 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 700 J." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/1/" + }, + "dce:identifier": "SDN:R27::RBR_PRES", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_PRES", + "skos:altLabel": "RBR_PRES", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo CTD systems" + }, + "dc:identifier": "SDN:R27::RBR_PRES", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo CTD systems (L2 generation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/1/" + }, + "dce:identifier": "SDN:R27::RBR_PRES_A", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_PRES_A", + "skos:altLabel": "RBR_PRES_A", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure sensor for RBR Argo3 CTD systems" + }, + "dc:identifier": "SDN:R27::RBR_PRES_A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unspecified pressure sensor model used on RBR Argo3 CTD systems (L3 generation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:altLabel": "RBR_ARGO3_DEEP4K", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD deep4k" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3_DEEP4K", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is built with a compact titanium housing rated to 4000 dbar, and is specifically designed to be integrated with glass sphere profiling floats part of the Deep Argo program. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/1/" + }, + "dce:identifier": "SDN:R27::RBR_ARGO3", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/RBR/" + }, + "skos:notation": "SDN:R27::RBR_ARGO3", + "skos:altLabel": "RBR_ARGO3", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RBRargo3 CTD" + }, + "dc:identifier": "SDN:R27::RBR_ARGO3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with Computational Fluid Dynamic (CFD) optimised flow path, manufactured by RBR. Salinity is measured by induction of water flushing freely through the conductivity cell, and is accurate to within 10 cm of the air-ocean interface. The unit is designed specifically for profiling floats, including those hosting multiple biogeochemical (BGC) sensors. The system supports both spot and continuous sampling modes, with sampling speeds configurable to up to 8 Hz. The depth rating for a standard profile is 2000 dbar, with energy consumption of approximately 400 J." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/1/" + }, + "dce:identifier": "SDN:R27::EM", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "skos:notation": "SDN:R27::EM", + "skos:altLabel": "EM", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "dc:identifier": "SDN:R27::EM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An electromagnetic subsystem designed to measure water velocity, mounted on an APEX electromagnetic float type (EM-APEX). The instrument was developed collaboratively by Webb Research Corp (WRC) and the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/", + "pav:authoredOn": "2021-08-18 14:32:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/1/" + }, + "dce:identifier": "SDN:R27::PAL_UW", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/APL_UW/" + }, + "skos:notation": "SDN:R27::PAL_UW", + "skos:altLabel": "PAL_UW", + "dc:date": "2021-08-18 14:32:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Passive Aquatic Listener (PAL) acoustic rain gauge" + }, + "dc:identifier": "SDN:R27::PAL_UW", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A hydrophone designed to measure surface rain rate and wind speed. The instrument was developed by the Applied Physics Laboratory at the University of Washington (APL-UW)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "pH sensor design : similar root components (DURA), same sensor output and processing chain" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::GDF", + "skos:prefLabel": { + "@language": "en", + "@value": "Gasket DuraFET" + }, + "owl:versionInfo": "3", + "dc:date": "2023-10-23 16:35:59.0", + "skos:altLabel": "GDF", + "skos:notation": "SDN:R27::GDF", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::GDF", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/3/" + }, + "pav:authoredOn": "2023-10-23 16:35:59.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/1/" + }, + "dce:identifier": "SDN:R27::ISUS", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "skos:notation": "SDN:R27::ISUS", + "skos:altLabel": "ISUS", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic MBARI In Situ Ultraviolet Spectrophotometer (ISUS) X v.2 nitrate sensor" + }, + "dc:identifier": "SDN:R27::ISUS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time. A deuterium lamp provides a light source of 1 cm path length in the 200 nm - 400 nm wavelength range. Measurement resolution: +/- 0.05 umol/l; accuracy: +/- 2 umol/l or 2%; range: up to 200 umol/l. The instrument is depth-rated to 1000 m. The MBARI-ISUS-X v.2 was developed by Dr. Kenneth Johnson and Luke Coletti at the Monterey Bay Aquarium Research Institute (MBARI) in 2002, and was made commercially available in collaboration with Satlantic." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/1/" + }, + "dce:identifier": "SDN:R27::DURA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MBARI/" + }, + "skos:notation": "SDN:R27::DURA", + "skos:altLabel": "DURA", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "MBARI Deep-Sea DuraFET pH sensor" + }, + "dc:identifier": "SDN:R27::DURA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at the Monterey Bay Aquarium Research Institute (MBARI), and was developed collaboratively by Dr. Kenneth Johnson at MBARI, Dr. Todd Martz at Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000m; pH accuracy: 0.01; pH precision: 0.005 over multiyear periods." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/2/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A pressure sensor special-built by Mensor for selected Deep SOLO floats." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MENSOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Mensor special-built pressure sensor" + }, + "owl:versionInfo": "3", + "dc:date": "2021-08-18 15:17:20.0", + "skos:altLabel": "MENSOR", + "skos:notation": "SDN:R27::MENSOR", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/MENSOR/" + }, + "pav:version": "3", + "dce:identifier": "SDN:R27::MENSOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/3/" + }, + "pav:authoredOn": "2021-08-18 15:17:20.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/1/" + }, + "dce:identifier": "SDN:R27::AMETEK_3000PSIA", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "skos:notation": "SDN:R27::AMETEK_3000PSIA", + "skos:altLabel": "AMETEK_3000PSIA", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with 3000 PSIA rating" + }, + "dc:identifier": "SDN:R27::AMETEK_3000PSIA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor rated to a maximum pressure of 3000 pounds per square inch absolute manufactured by Ametek." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/1/" + }, + "dce:identifier": "SDN:R27::AMETEK", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/AMETEK/" + }, + "skos:notation": "SDN:R27::AMETEK", + "skos:altLabel": "AMETEK", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ametek pressure sensor with unknown pressure rating" + }, + "dc:identifier": "SDN:R27::AMETEK", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A strain gauge pressure sensor manufactured by Ametek with unknown pressure rating." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE43F_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE43F_IDO", + "skos:altLabel": "SBE43F_IDO", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43F (frequency output) Integrated Dissolved Oxygen (IDO) sensor" + }, + "dc:identifier": "SDN:R27::SBE43F_IDO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: frequency." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/", + "pav:authoredOn": "2023-08-16 15:38:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/1/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.12", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE61_V5.0.12", + "skos:altLabel": "SBE61_V5.0.12", + "dc:date": "2023-08-16 15:38:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.12" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.12", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.0.1" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V5.0.1", + "skos:notation": "SDN:R27::SBE41CP_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V5.0.1", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0a" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V3.0a", + "skos:notation": "SDN:R27::SBE41CP_V3.0a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V3.0a", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/1/" + }, + "dce:identifier": "SDN:R27::SBE41N_V5.3.4", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE41N_V5.3.4", + "skos:altLabel": "SBE41N_V5.3.4", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.4" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow, manufactured by Sea-Bir Scientific. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.4." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.2", + "skos:notation": "SDN:R27::SBE41CP_V1.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD-AP2 sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD_AP2", + "skos:notation": "SDN:R27::ECO_FLBBCD_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBBCD_AP2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 4.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V4.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V4.4.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V4.4.0", + "skos:notation": "SDN:R27::SBE41CP_V4.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V4.4.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with three scattering meters measuring at a user-defined combination of 470 nm, 532 nm, 650 nm and 700 nm wavelengths, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_BB3", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO Triplet BB3 sensor package with three scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_BB3", + "skos:notation": "SDN:R27::ECO_BB3", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_BB3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.1" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61_V5.0.1", + "skos:notation": "SDN:R27::SBE61_V5.0.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V5.0.1", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.3" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V7.2.3", + "skos:notation": "SDN:R27::SBE41CP_V7.2.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V7.2.3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 7; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSW", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSW", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.8." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.8", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.8" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.8", + "skos:notation": "SDN:R27::SBE41CP_V1.8", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.8", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/1/" + }, + "dce:identifier": "SDN:R27::SBE", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE", + "skos:altLabel": "SBE", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific (SBE) unknown CTD model" + }, + "dc:identifier": "SDN:R27::SBE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown CTD sensor model manufactured by Sea-Bird Scientific (SBE)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.1" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.1", + "skos:notation": "SDN:R27::SBE41CP_V1.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.1", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.4." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.4", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.4" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.4", + "skos:notation": "SDN:R27::SBE41CP_V1.4", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.4", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:48.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength chlorophyll fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and chlorophyll-a fluorescence at 435 nm (excitation) / 695 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, manufactured by Sea-Bird Scientific." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBFL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO_FLBBFL" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:42:48.0", + "skos:altLabel": "ECO_FLBBFL", + "skos:notation": "SDN:R27::ECO_FLBBFL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::ECO_FLBBFL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61_V5.0.0", + "skos:notation": "SDN:R27::SBE61_V5.0.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V5.0.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61", + "skos:notation": "SDN:R27::SBE61", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_V2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.5" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_V2.5", + "skos:notation": "SDN:R27::SBE41_V2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_V2.5", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.2" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V5.3.2", + "skos:notation": "SDN:R27::SBE41CP_V5.3.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V5.3.2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter, depth-rated to 2000 m and designed for float applications. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 124 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBBCD", + "skos:notation": "SDN:R27::ECO_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBBCD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP IDO model has firmware version 2.0b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0b" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_IDO_V2.0b", + "skos:notation": "SDN:R27::SBE41CP_IDO_V2.0b", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_IDO_V2.0b", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 2.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V2.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V2.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_IDO_V2.0", + "skos:notation": "SDN:R27::SBE41_IDO_V2.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_IDO_V2.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 7; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_OCR507_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_R10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_R10W", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB", + "skos:notation": "SDN:R27::ECO_FLBB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBB", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/1/" + }, + "dce:identifier": "SDN:R27::SBE63_OPTODE", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE63_OPTODE", + "skos:altLabel": "SBE63_OPTODE", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 63 oxygen optode" + }, + "dc:identifier": "SDN:R27::SBE63_OPTODE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): < 6 s; output signal: RS-232." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1", + "skos:notation": "SDN:R27::SBE41CP_V1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41", + "skos:notation": "SDN:R27::SBE41", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/1/" + }, + "pav:authoredOn": "2021-08-19 11:47:24.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over a variety of environments, depth-rated to 100 m. A deuterium lamp provides a light source of 1 cm path length; the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. Measurement accuracy: +/- 2 umol/l or 10 %; detection range: 0.5 umol/l to 2000 umol/l. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:47:24.0", + "skos:altLabel": "SUNA", + "skos:notation": "SDN:R27::SUNA", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SUNA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9a" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.9a", + "skos:notation": "SDN:R27::SBE41CP_V1.9a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.9a", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 1.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V1.0c" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_IDO_V1.0c", + "skos:notation": "SDN:R27::SBE41_IDO_V1.0c", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_IDO_V1.0c", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_2K", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb2k sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_2K", + "skos:notation": "SDN:R27::ECO_FLBB_2K", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBB_2K", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance and upwelling radiance in water. Number of channels: 7; upwelling radiance field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard); spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-507 multispectral radiometer (downwelling irradiance and upwelling radiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_OCR507_ICSWR10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_OCR507_ICSWR10W", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.3" + }, + "owl:versionInfo": "2", + "dc:date": "2022-04-27 16:59:43.0", + "skos:altLabel": "SBE61_V5.0.3", + "skos:notation": "SDN:R27::SBE61_V5.0.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V5.0.3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/2/" + }, + "pav:authoredOn": "2022-04-27 16:59:43.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/1/" + }, + "dce:identifier": "SDN:R27::SBE37", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE37", + "skos:altLabel": "SBE37", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 37 MicroCAT" + }, + "dc:identifier": "SDN:R27::SBE37", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A high accuracy conductivity and temperature recorder with an optional pressure sensor." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V5.3.0", + "skos:notation": "SDN:R27::SBE41CP_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V5.3.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 2.6." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_V2.6", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V2.6" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_V2.6", + "skos:notation": "SDN:R27::SBE41_V2.6", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_V2.6", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/1/" + }, + "dce:identifier": "SDN:R27::SBE43_IDO", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE43_IDO", + "skos:altLabel": "SBE43_IDO", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43 Integrated Dissolved Oxygen (IDO) sensor" + }, + "dc:identifier": "SDN:R27::SBE43_IDO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A through-flow, Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into a pumped CTD system. Depth rating: 600 m (plastic housing) or 7000 m (titanium housing); oxygen concentration initial accuracy: 2 % saturation; response time (63 %): 2 s - 5 s for 0.5 mil membrane (profiling applications), or 8 s - 20 s for 1.0 mil membrane (moored applications); output signal: 0-5 VDC." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 7.2.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V7.2.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V7.2.5" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V7.2.5", + "skos:notation": "SDN:R27::SBE41CP_V7.2.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V7.2.5", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/", + "pav:authoredOn": "2019-10-11 14:49:00.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/1/" + }, + "dce:identifier": "SDN:R27::SBE_STS", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE_STS", + "skos:altLabel": "SBE_STS", + "dc:date": "2019-10-11 14:49:00.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE Surface Temperature and Salinity sensor" + }, + "dc:identifier": "SDN:R27::SBE_STS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The SBE Surface Temperature and Salinity (STS) sensor is designed to make near-surface temperature and conductivity measurements from profiling floats. As its conductivity sensor is free-flushed, the SBE STS is designed to be used in conjunction with an SBE 41CP sensor for calibration purposes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensor, as well as an electrochemical Integrated Dissolved Oxygen sensor with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 IDO model has firmware version 3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_IDO_V3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD with an Integrated Dissolved Oxygen (IDO) sensor V3.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_IDO_V3.0", + "skos:notation": "SDN:R27::SBE41_IDO_V3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_IDO_V3.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V3", + "skos:notation": "SDN:R27::SBE41CP_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 5.3.1." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V5.3.1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V5.3.1" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V5.3.1", + "skos:notation": "SDN:R27::SBE41CP_V5.3.1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V5.3.1", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/", + "pav:authoredOn": "2023-08-16 15:38:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/1/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.10", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE61_V5.0.10", + "skos:altLabel": "SBE61_V5.0.10", + "dc:date": "2023-08-16 15:38:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.10" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.10", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A single-channel fluorometer, configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission), depth-rated to 600 m. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FL", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FL fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FL", + "skos:notation": "SDN:R27::ECO_FL", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.3" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61_V4.5.3", + "skos:notation": "SDN:R27::SBE61_V4.5.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V4.5.3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 150 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBB2", + "skos:notation": "SDN:R27::MCOMS_FLBB2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::MCOMS_FLBB2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/", + "pav:authoredOn": "2021-05-26 09:01:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/1/" + }, + "dce:identifier": "SDN:R27::SBE43I", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE43I", + "skos:altLabel": "SBE43I", + "dc:date": "2021-05-26 09:01:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 43I (integral) dissolved oxygen sensor" + }, + "dc:identifier": "SDN:R27::SBE43I", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A Clark polarographic membrane dissolved oxygen sensor, manufactured by Sea-Bir Scientific and designed to be integrated into the pumped CTD system of an Argo float. Depth rating: 2000 m; oxygen concentration initial accuracy: 1 % saturation; output signal: frequency." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP", + "skos:notation": "SDN:R27::SBE41CP", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41N", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41N", + "skos:notation": "SDN:R27::SBE41N", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41N", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "An optical sensor measuring scattering at a single 117 deg angle, configurable to 470 nm, 532 nm or 660 nm wavelength and depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_BB", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO BB scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_BB", + "skos:notation": "SDN:R27::ECO_BB", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_BB", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.4.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.4.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.4.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41N_V5.4.0", + "skos:notation": "SDN:R27::SBE41N_V5.4.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41N_V5.4.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 3.0c." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V3.0c", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V3.0c" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V3.0c", + "skos:notation": "SDN:R27::SBE41CP_V3.0c", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V3.0c", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.7." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.7", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.7" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.7", + "skos:notation": "SDN:R27::SBE41CP_V1.7", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.7", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.3", + "skos:notation": "SDN:R27::SBE41CP_V1.3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on profiling floats hosting multiple biogeochemical (BGC) sensors. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent. Data from all the float's sensors, including the optional bolt-on ones, are integrated in the data stream and transmitted to the float controller when the float reaches the surface. This SBE41N model has firmware version 5.3.0." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41N_V5.3.0", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41N CTD V5.3.0" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41N_V5.3.0", + "skos:notation": "SDN:R27::SBE41N_V5.3.0", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41N_V5.3.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/", + "pav:authoredOn": "2023-08-16 15:38:28.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/1/" + }, + "dce:identifier": "SDN:R27::SBE61_V5.0.9", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SBE61_V5.0.9", + "skos:altLabel": "SBE61_V5.0.9", + "dc:date": "2023-08-16 15:38:28.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.9" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.9." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine turbidity, depth-rated to 600 m. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLNTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLntu sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLNTU", + "skos:notation": "SDN:R27::ECO_FLNTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLNTU", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 5.0.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V5.0.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V5.0.2" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61_V5.0.2", + "skos:notation": "SDN:R27::SBE61_V5.0.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V5.0.2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure downwelling irradiance in water. Number of channels: 4; bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (downwelling irradiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_OCR504_ICSW", + "skos:notation": "SDN:R27::SATLANTIC_OCR504_ICSW", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_ICSW", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.9." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.9", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.9" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.9", + "skos:notation": "SDN:R27::SBE41CP_V1.9", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.9", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.5." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.5", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.5" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.5", + "skos:notation": "SDN:R27::SBE41CP_V1.5", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.5", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. During float ascent, spot samples are taken and transmitted to the float controller. This SBE41 model has firmware version 3." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41_V3", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41 CTD V3" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41_V3", + "skos:notation": "SDN:R27::SBE41_V3", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41_V3", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical meter measuring scattering at 700 nm to determine turbidity, depth-rated to 600 m. The scattering sensor has an in-water centroid angle of 124 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_NTU", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO NTU turbidity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_NTU", + "skos:notation": "SDN:R27::ECO_NTU", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_NTU", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. The unit is designed for deployment on Deep Argo profiling floats reaching 7000 m depth. This SBE61 model has firmware version 4.5.2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE61_V4.5.2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 61 CTD V4.5.2" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE61_V4.5.2", + "skos:notation": "SDN:R27::SBE61_V4.5.2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE61_V4.5.2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.3b." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.3b", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.3b" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.3b", + "skos:notation": "SDN:R27::SBE41CP_V1.3b", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.3b", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 1.2a." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V1.2a", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V1.2a" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V1.2a", + "skos:notation": "SDN:R27::SBE41CP_V1.2a", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V1.2a", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A cosine-response, multispectral radiometer configured to measure upwelling radiance in water. Number of channels: 4; field of view: 10 deg (half angle, half maximum); bandwidth range: 400 nm to 865 nm (standard), or 305 nm, 325 nm, 340 nm, 380 nm (UV); sampling rate: 7 Hz – 24 Hz; spectral bandwidth: 10 nm or 20 nm. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "skos:prefLabel": { + "@language": "en", + "@value": "OCR-504 multispectral radiometer (upwelling radiance)" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_OCR504_R10W", + "skos:notation": "SDN:R27::SATLANTIC_OCR504_R10W", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_OCR504_R10W", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three-channel optical sensor fitted with two single-wavelength fluorometers and a single-angle scattering meter. The two fluorometers are configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths and Fluorescent Dissolved Organic Matter (FDOM) at 370 nm (excitation) / 460 nm (emission) wavelengths respectively, whereas the scattering meter (in-water centroid angle of 150 deg) is configured to measure backscattering at 700 nm wavelength. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::MCOMS_FLBBCD", + "skos:prefLabel": { + "@language": "en", + "@value": "MCOMS FLBBCD sensor package with two fluorometers and one scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "MCOMS_FLBBCD", + "skos:notation": "SDN:R27::MCOMS_FLBBCD", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::MCOMS_FLBBCD", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A dual-channel optical sensor fitted with a single-wavelength fluorometer and a scattering meter calibrated to determine backscattering, depth-rated to 2000 m and designed for float applications. The sensor operates by flashing blue (470 nm) and red (700 nm) beams in alternation from two light-emitting diodes (LEDs), to respectively stimulate chlorophyll fluorescence and illuminate the total particle field. The scattering sensor has an in-water centroid angle of 142 deg. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB_AP2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLbb-AP2 sensor package with fluorometer and scattering meter" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB_AP2", + "skos:notation": "SDN:R27::ECO_FLBB_AP2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBB_AP2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A three optical-sensor instrument fitted with one fluorometer and two scattering meters, depth-rated to 600 m. The fluorometer is configured to detect chlorophyll-a fluorescence at 470 nm (excitation) / 695 nm (emission) wavelengths, whereas the two scattering meters (in-water centroid angle of 124 deg) can be configured to measure backscattering at a user-defined choice of 470 nm, 532 nm, 650 nm or 700 nm each. The instrument is part of the Environmental Characterization Optics (ECO) series tools, originally developed and manufactured at WET Labs and rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::ECO_FLBB2", + "skos:prefLabel": { + "@language": "en", + "@value": "ECO FLBB2 sensor package with one fluorometer and two scattering meters" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "ECO_FLBB2", + "skos:notation": "SDN:R27::ECO_FLBB2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::ECO_FLBB2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/1/" + }, + "pav:authoredOn": "2021-08-19 11:48:30.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A sensor using ultraviolet absorption spectroscopy to measure in-situ nitrate (NO3) concentration in real time and over clear to high turbidity/suspended sedimentation waters, depth-rated to 500 m. A deuterium lamp provides a light source of 10 mm path length (or 5 mm for high turbidity conditions); the measured spectrum falls within the Ultraviolet (UV) 190 nm - 370 nm wavelength range. The instrument is based on the MBARI-ISUS technology; it was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SUNA_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Submersible Ultraviolet Nitrate Analyser (SUNA) V2 nitrate sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2021-08-19 11:48:30.0", + "skos:altLabel": "SUNA_V2", + "skos:notation": "SDN:R27::SUNA_V2", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R27::SUNA_V2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A system comprising temperature, conductivity and pressure sensors with pump-controlled, T-C ducted flow. This CTD operates in continuous profiling (CP) mode, thus sampling at 1 Hz during float ascent, logging the data in internal memory and transmitting to the float controller when the float reaches the surface. This SBE41CP model has firmware version 2." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SBE41CP_V2", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific SBE 41CP CTD V2" + }, + "owl:versionInfo": "2", + "dc:date": "2019-10-16 06:35:48.0", + "skos:altLabel": "SBE41CP_V2", + "skos:notation": "SDN:R27::SBE41CP_V2", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R27::SBE41CP_V2", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/2/" + }, + "pav:authoredOn": "2019-10-16 06:35:48.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/1/" + }, + "dce:identifier": "SDN:R27::SEAFET", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + "skos:notation": "SDN:R27::SEAFET", + "skos:altLabel": "SEAFET", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific Deep SeaFET pH sensor" + }, + "dc:identifier": "SDN:R27::SEAFET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An ion sensitive field effect transistor (ISFET) pH sensor with an AglCl reference electrode and a titanium counter electrode, housed in a pressure tolerant package. The sensor is manufactured at Sea-Bird Scientific, and was developed collaboratively by Monterey Bay Aquarium Research Institute (MBARI), Scripps Institution of Oceanography (SIO), and Honeywell International. Depth rating: 2000 dbar; Accuracy: +/- 0.05 pH; stability: 0.036 pH/year." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/", + "pav:authoredOn": "2021-07-01 16:48:21.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A Photosynthetically Active Radiation (PAR) sensor that measures quantum irradiance with near flat spectral response and cosine spatial response. Spectrum: 400 nm - 700 nm; PAR range: 0 umol - 5000 umol photons m^-2 s^-1; cosine error: < 3% (0 deg - 60 deg) and < 10% (60 deg - 85 deg); sample rate up to 100 Hz. The instrument was originally developed and manufactured at Satlantic, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2011." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::SATLANTIC_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Satlantic Photosynthetically Active Radiation (PAR) sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2021-07-01 16:48:21.0", + "skos:altLabel": "SATLANTIC_PAR", + "skos:notation": "SDN:R27::SATLANTIC_PAR", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SATLANTIC/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::SATLANTIC_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "A neutrally buoyant optical transmissometer, designed for profiling floats applications. Depth rating: 2000 m; available wavelengths: 465 nm, 520 nm and 650 nm; optical pathlength: 25 cm; acceptance angle: 0.9 deg. The instrument was originally developed and manufactured at WET Labs, and was rebranded as a Sea-Bird Scientific product following the company's acquisition by Danaher in 2010." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R27::C_ROVER", + "skos:prefLabel": { + "@language": "en", + "@value": "c-Rover Transmissometer" + }, + "owl:versionInfo": "1", + "dc:date": "2021-08-09 12:23:38.0", + "skos:altLabel": "C_ROVER", + "skos:notation": "SDN:R27::C_ROVER", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/WETLABS/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R27::C_ROVER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/", + "pav:authoredOn": "2021-08-09 12:23:38.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/1/" + }, + "dce:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R26/current/TURNER_DESIGN/" + }, + "skos:notation": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:altLabel": "CYCLOPS_7_FLUOROMETER", + "dc:date": "2021-08-09 12:23:38.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turner Designs Cyclops-7 fluorometer" + }, + "dc:identifier": "SDN:R27::CYCLOPS_7_FLUOROMETER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A single-channel optical sensor configurable to detect a wide range of parameters within a 260 nm - 900 nm optical range, including chlorophyll-a, Fluorescent Dissolved Organic Matter (FDOM), and turbidity. The instrument is depth-rated to 600m, and was developed and manufactured by Turner Designs." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE83_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FLOATCLOCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/QUARTZDYNE_DSB301-10-C85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CTD_F01/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1500PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_1600PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAINE_2000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3830/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_4330F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AANDERAA_OPTODE_3930/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/OPUS_DS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RAMSES_ACC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KISTLER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/KELLER_PA8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ARO_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AROD_FT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MP40_C_2000_G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEASCAN_SSTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_10153PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DRUCK_2900PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/FSI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAPOINT_TURBIDITY_METER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP6K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_CODA_T_ODO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_PRES_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3_DEEP4K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/RBR_ARGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/PAL_UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/GDF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/DURA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MENSOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK_3000PSIA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/AMETEK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43F_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V4.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBFL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_IDO_V2.0b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V2.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE63_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V1.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_2K/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR507_ICSWR10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE37/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V2.6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43_IDO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V7.2.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE_STS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_IDO_V3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V5.3.1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE43I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_BB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.4.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V3.0c/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41N_V5.3.0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLNTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V5.0.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_ICSW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41_V3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_NTU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE61_V4.5.2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.3b/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V1.2a/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_OCR504_R10W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/MCOMS_FLBBCD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB_AP2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/ECO_FLBB2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SUNA_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SBE41CP_V2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SEAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/SATLANTIC_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/CYCLOPS_7_FLUOROMETER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R27/current/C_ROVER/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms listing models of sensors mounted on Argo floats. Note: avoid using the manufacturer name and sensor firmware version in new entries when possible. Argo netCDF variable SENSOR_MODEL is populated by R27 altLabel.", + "dc:title": "Argo sensor models", + "skos:prefLabel": "Argo sensor models", + "owl:versionInfo": "15", + "dc:date": "2023-11-25 02:00:04.0", + "skos:altLabel": "SENSOR_MODEL", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR_MODEL", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R27" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc b/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc new file mode 100644 index 00000000..2da8cc05 Binary files /dev/null and b/argopy/tests/test_data/28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f.nc differ diff --git a/argopy/tests/test_data/28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2.json b/argopy/tests/test_data/28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2.json new file mode 100644 index 00000000..f74b8ee8 --- /dev/null +++ b/argopy/tests/test_data/28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2.json @@ -0,0 +1 @@ +[{"id":3942697,"cvNumber":3,"coordinate":{"lat":-42.788,"lon":79.531},"level":0},{"id":3933268,"cvNumber":1,"coordinate":{"lat":-43.014,"lon":77.544},"level":0},{"id":3937267,"cvNumber":2,"coordinate":{"lat":-43.199,"lon":78.471},"level":0},{"id":3947818,"cvNumber":4,"coordinate":{"lat":-42.566,"lon":80.634},"level":0},{"id":4010708,"cvNumber":16,"coordinate":{"lat":-46.018,"lon":84.092},"level":0},{"id":3968326,"cvNumber":8,"coordinate":{"lat":-43.853,"lon":83.862},"level":0},{"id":3963532,"cvNumber":7,"coordinate":{"lat":-43.594,"lon":83.661},"level":0},{"id":3991043,"cvNumber":12,"coordinate":{"lat":-43.432,"lon":83.153},"level":0},{"id":3973557,"cvNumber":9,"coordinate":{"lat":-43.945,"lon":84.19},"level":0},{"id":4041213,"cvNumber":22,"coordinate":{"lat":-46.1,"lon":86.939},"level":0},{"id":4067755,"cvNumber":26,"coordinate":{"lat":-44.653,"lon":89.046},"level":0},{"id":3978514,"cvNumber":10,"coordinate":{"lat":-44.188,"lon":84.132},"level":0},{"id":4168110,"cvNumber":45,"coordinate":{"lat":-45.206,"lon":98.719},"level":0},{"id":3953467,"cvNumber":5,"coordinate":{"lat":-42.95,"lon":81.785},"level":0},{"id":4204486,"cvNumber":52,"coordinate":{"lat":-45.318,"lon":108.57},"level":0},{"id":4199300,"cvNumber":51,"coordinate":{"lat":-44.616,"lon":108.546},"level":0},{"id":4544703,"cvNumber":83,"coordinate":{"lat":-47.726,"lon":134.975},"level":0},{"id":3958540,"cvNumber":6,"coordinate":{"lat":-43.277,"lon":83.033},"level":0},{"id":4025102,"cvNumber":19,"coordinate":{"lat":-45.316,"lon":83.907},"level":0},{"id":4020368,"cvNumber":18,"coordinate":{"lat":-44.898,"lon":84.266},"level":0},{"id":3983622,"cvNumber":11,"coordinate":{"lat":-43.576,"lon":83.609},"level":0},{"id":3995592,"cvNumber":13,"coordinate":{"lat":-44.23,"lon":82.576},"level":0},{"id":4399107,"cvNumber":56,"coordinate":{"lat":-45.279,"lon":112.556},"level":0},{"id":4153622,"cvNumber":42,"coordinate":{"lat":-45.73,"lon":94.517},"level":0},{"id":4075365,"cvNumber":25,"coordinate":{"lat":-45.594,"lon":88.816},"level":0},{"id":4075366,"cvNumber":27,"coordinate":{"lat":-45.105,"lon":90.084},"level":0},{"id":4075361,"cvNumber":15,"coordinate":{"lat":-45.531,"lon":82.763},"level":0},{"id":4075362,"cvNumber":20,"coordinate":{"lat":-45.905,"lon":83.947},"level":0},{"id":4075363,"cvNumber":21,"coordinate":{"lat":-46.00253,"lon":85.4434},"level":0},{"id":4075364,"cvNumber":24,"coordinate":{"lat":-46.06,"lon":88.387},"level":0},{"id":4075360,"cvNumber":14,"coordinate":{"lat":-44.944,"lon":82.852},"level":0},{"id":4775658,"cvNumber":123,"coordinate":{"lat":-53.787,"lon":152.898},"level":0},{"id":4781077,"cvNumber":124,"coordinate":{"lat":-55.089,"lon":154.821},"level":0},{"id":4737607,"cvNumber":117,"coordinate":{"lat":-51.332,"lon":147.13},"level":0},{"id":4732199,"cvNumber":116,"coordinate":{"lat":-50.163,"lon":147.319},"level":0},{"id":4808280,"cvNumber":129,"coordinate":{"lat":-52.8,"lon":154.074},"level":0},{"id":4726044,"cvNumber":115,"coordinate":{"lat":-49.689,"lon":145.409},"level":0},{"id":4764569,"cvNumber":121,"coordinate":{"lat":-51.644,"lon":152.604},"level":0},{"id":4770363,"cvNumber":122,"coordinate":{"lat":-52.533,"lon":152.127},"level":0},{"id":4786376,"cvNumber":125,"coordinate":{"lat":-54.156,"lon":155.665},"level":0},{"id":4750956,"cvNumber":119,"coordinate":{"lat":-51.471,"lon":150.122},"level":0},{"id":4744645,"cvNumber":118,"coordinate":{"lat":-52.428,"lon":148.606},"level":0},{"id":4709072,"cvNumber":112,"coordinate":{"lat":-51.627,"lon":146.471},"level":0},{"id":4714565,"cvNumber":113,"coordinate":{"lat":-51.576,"lon":148.006},"level":0},{"id":4802373,"cvNumber":128,"coordinate":{"lat":-52.964,"lon":155.618},"level":0},{"id":4893994,"cvNumber":145,"coordinate":{"lat":-56.109,"lon":170.652},"level":0},{"id":4899245,"cvNumber":146,"coordinate":{"lat":-58.189,"lon":170.055},"level":0},{"id":4915190,"cvNumber":149,"coordinate":{"lat":-56.95,"lon":170.296},"level":0},{"id":4833140,"cvNumber":134,"coordinate":{"lat":-52.416,"lon":156.776},"level":0},{"id":4816379,"cvNumber":130,"coordinate":{"lat":-52.729,"lon":154.304},"level":0},{"id":4817935,"cvNumber":131,"coordinate":{"lat":-52.193,"lon":153.733},"level":0},{"id":4849540,"cvNumber":137,"coordinate":{"lat":-53.819,"lon":161.807},"level":0},{"id":4843823,"cvNumber":136,"coordinate":{"lat":-53.1,"lon":158.961},"level":0},{"id":4865054,"cvNumber":139,"coordinate":{"lat":-55.013,"lon":165.759},"level":0},{"id":4858029,"cvNumber":138,"coordinate":{"lat":-54.529,"lon":164.638},"level":0},{"id":4905150,"cvNumber":147,"coordinate":{"lat":-58.342,"lon":170.078},"level":0},{"id":4910120,"cvNumber":148,"coordinate":{"lat":-57.455,"lon":172.033},"level":0},{"id":4870058,"cvNumber":140,"coordinate":{"lat":-54.941,"lon":165.975},"level":0},{"id":4875064,"cvNumber":141,"coordinate":{"lat":-54.898,"lon":166.181},"level":0},{"id":4889110,"cvNumber":144,"coordinate":{"lat":-56.77,"lon":171.185},"level":0},{"id":4879968,"cvNumber":142,"coordinate":{"lat":-55.091,"lon":166.365},"level":0},{"id":4884591,"cvNumber":143,"coordinate":{"lat":-55.656,"lon":166.111},"level":0},{"id":4103941,"cvNumber":33,"coordinate":{"lat":-45.979,"lon":90.468},"level":0},{"id":4099280,"cvNumber":31,"coordinate":{"lat":-46.163,"lon":90.923},"level":0},{"id":4099281,"cvNumber":32,"coordinate":{"lat":-45.986,"lon":90.39},"level":0},{"id":4394272,"cvNumber":55,"coordinate":{"lat":-45.091,"lon":111.856},"level":0},{"id":4193913,"cvNumber":50,"coordinate":{"lat":-45.186,"lon":109.149},"level":0},{"id":4404118,"cvNumber":57,"coordinate":{"lat":-45.693,"lon":113.347},"level":0},{"id":4408980,"cvNumber":58,"coordinate":{"lat":-46.185,"lon":113.85},"level":0},{"id":4413534,"cvNumber":59,"coordinate":{"lat":-46.413,"lon":115.049},"level":0},{"id":4387615,"cvNumber":54,"coordinate":{"lat":-45.1,"lon":110.894},"level":0},{"id":4539518,"cvNumber":82,"coordinate":{"lat":-47.794,"lon":135.154},"level":0},{"id":4487368,"cvNumber":72,"coordinate":{"lat":-49.862,"lon":132.484},"level":0},{"id":4494208,"cvNumber":73,"coordinate":{"lat":-49.271,"lon":133.052},"level":0},{"id":4515016,"cvNumber":77,"coordinate":{"lat":-49.201,"lon":132.888},"level":0},{"id":4499850,"cvNumber":74,"coordinate":{"lat":-48.93,"lon":132.927},"level":0},{"id":4525015,"cvNumber":78,"coordinate":{"lat":-49.391,"lon":134.383},"level":0},{"id":4525016,"cvNumber":79,"coordinate":{"lat":-48.559,"lon":135.029},"level":0},{"id":4529881,"cvNumber":80,"coordinate":{"lat":-48.13,"lon":135.166},"level":0},{"id":4510246,"cvNumber":76,"coordinate":{"lat":-48.944,"lon":132.406},"level":0},{"id":4505332,"cvNumber":75,"coordinate":{"lat":-48.93,"lon":132.567},"level":0},{"id":4535266,"cvNumber":81,"coordinate":{"lat":-47.896,"lon":135.233},"level":0},{"id":4121771,"cvNumber":36,"coordinate":{"lat":-46.323,"lon":91.912},"level":0},{"id":4158516,"cvNumber":43,"coordinate":{"lat":-45.911,"lon":95.906},"level":0},{"id":4173387,"cvNumber":46,"coordinate":{"lat":-45.676,"lon":101.417},"level":0},{"id":4148511,"cvNumber":41,"coordinate":{"lat":-45.465,"lon":93.604},"level":0},{"id":4143895,"cvNumber":40,"coordinate":{"lat":-45.56,"lon":92.734},"level":0},{"id":4077228,"cvNumber":28,"coordinate":{"lat":-45.134,"lon":88.994},"level":0},{"id":4083147,"cvNumber":29,"coordinate":{"lat":-44.921,"lon":90.277},"level":0},{"id":4132708,"cvNumber":38,"coordinate":{"lat":-46.212,"lon":92.412},"level":0},{"id":4138263,"cvNumber":39,"coordinate":{"lat":-45.814,"lon":92.562},"level":0},{"id":4689156,"cvNumber":109,"coordinate":{"lat":-49.603,"lon":144.185},"level":0},{"id":4673863,"cvNumber":106,"coordinate":{"lat":-48.969,"lon":138.753},"level":0},{"id":4668822,"cvNumber":105,"coordinate":{"lat":-48.687,"lon":139.28},"level":0},{"id":4694016,"cvNumber":110,"coordinate":{"lat":-49.28,"lon":143.726},"level":0},{"id":4700367,"cvNumber":111,"coordinate":{"lat":-50.442,"lon":144.253},"level":0},{"id":4634534,"cvNumber":99,"coordinate":{"lat":-47.676,"lon":136.33},"level":0},{"id":4639761,"cvNumber":100,"coordinate":{"lat":-47.953,"lon":136.434},"level":0},{"id":4661129,"cvNumber":103,"coordinate":{"lat":-49.085,"lon":138.763},"level":0},{"id":4663440,"cvNumber":104,"coordinate":{"lat":-48.798,"lon":139.877},"level":0},{"id":4683893,"cvNumber":108,"coordinate":{"lat":-49.342,"lon":142.283},"level":0},{"id":4462780,"cvNumber":68,"coordinate":{"lat":-49.43,"lon":123.756},"level":0},{"id":4468086,"cvNumber":69,"coordinate":{"lat":-49.522,"lon":127.818},"level":0},{"id":4473896,"cvNumber":70,"coordinate":{"lat":-48.645,"lon":130.564},"level":0},{"id":4481840,"cvNumber":71,"coordinate":{"lat":-49.204,"lon":131.291},"level":0},{"id":4451654,"cvNumber":66,"coordinate":{"lat":-47.394,"lon":121.966},"level":0},{"id":4423107,"cvNumber":61,"coordinate":{"lat":-46.884,"lon":117.541},"level":0},{"id":4418063,"cvNumber":60,"coordinate":{"lat":-46.362,"lon":115.994},"level":0},{"id":4440139,"cvNumber":64,"coordinate":{"lat":-46.396,"lon":120.198},"level":0},{"id":4445765,"cvNumber":65,"coordinate":{"lat":-47.337,"lon":120.067},"level":0},{"id":4088111,"cvNumber":30,"coordinate":{"lat":-45.875,"lon":91.329},"level":0},{"id":4457094,"cvNumber":67,"coordinate":{"lat":-47.312,"lon":124.43},"level":0},{"id":4605776,"cvNumber":94,"coordinate":{"lat":-47.154,"lon":135.325},"level":0},{"id":4612388,"cvNumber":95,"coordinate":{"lat":-47.292,"lon":135.364},"level":0},{"id":4617896,"cvNumber":96,"coordinate":{"lat":-47.432,"lon":135.436},"level":0},{"id":4623279,"cvNumber":97,"coordinate":{"lat":-47.555,"lon":135.766},"level":0},{"id":4560670,"cvNumber":23,"coordinate":{"lat":-45.99,"lon":87.495},"level":0},{"id":4565251,"cvNumber":87,"coordinate":{"lat":-47.644,"lon":135.161},"level":0},{"id":4590906,"cvNumber":92,"coordinate":{"lat":-46.898,"lon":135.637},"level":0},{"id":4597910,"cvNumber":93,"coordinate":{"lat":-46.979,"lon":135.484},"level":0},{"id":4560018,"cvNumber":86,"coordinate":{"lat":-47.71,"lon":134.96},"level":0},{"id":4127497,"cvNumber":37,"coordinate":{"lat":-46.347,"lon":92.153},"level":0},{"id":4178052,"cvNumber":47,"coordinate":{"lat":-44.938,"lon":103.28},"level":0},{"id":4182989,"cvNumber":48,"coordinate":{"lat":-45.226,"lon":104.493},"level":0},{"id":4109630,"cvNumber":34,"coordinate":{"lat":-46.216,"lon":90.826},"level":0},{"id":4115844,"cvNumber":35,"coordinate":{"lat":-46.25,"lon":91.427},"level":0},{"id":4163297,"cvNumber":44,"coordinate":{"lat":-45.359,"lon":97.036},"level":0},{"id":4188546,"cvNumber":49,"coordinate":{"lat":-46.204,"lon":106.972},"level":0},{"id":4435285,"cvNumber":63,"coordinate":{"lat":-46.65,"lon":120.671},"level":0},{"id":4428036,"cvNumber":62,"coordinate":{"lat":-47.415,"lon":119.632},"level":0},{"id":5187021,"cvNumber":194,"coordinate":{"lat":-48.942,"lon":-149.123},"level":0},{"id":5192342,"cvNumber":195,"coordinate":{"lat":-49.55,"lon":-148.137},"level":0},{"id":5130440,"cvNumber":186,"coordinate":{"lat":-50.464,"lon":-153.6},"level":0},{"id":5176688,"cvNumber":192,"coordinate":{"lat":-51.066,"lon":-149.484},"level":0},{"id":5181795,"cvNumber":193,"coordinate":{"lat":-49.664,"lon":-149.601},"level":0},{"id":5021086,"cvNumber":167,"coordinate":{"lat":-49.238,"lon":-177.301},"level":0},{"id":5101481,"cvNumber":181,"coordinate":{"lat":-51.234,"lon":-158.902},"level":0},{"id":4990654,"cvNumber":162,"coordinate":{"lat":-48.615,"lon":-179.273},"level":0},{"id":5170208,"cvNumber":191,"coordinate":{"lat":-51.909,"lon":-150.058},"level":0},{"id":5163794,"cvNumber":190,"coordinate":{"lat":-52.227,"lon":-150.882},"level":0},{"id":5365849,"cvNumber":227,"coordinate":{"lat":-49.594,"lon":-130.674},"level":0},{"id":5384029,"cvNumber":230,"coordinate":{"lat":-49.823,"lon":-128.817},"level":0},{"id":5378032,"cvNumber":229,"coordinate":{"lat":-50.096,"lon":-129.398},"level":0},{"id":5396893,"cvNumber":232,"coordinate":{"lat":-49.035,"lon":-127.869},"level":0},{"id":5403136,"cvNumber":233,"coordinate":{"lat":-49.156,"lon":-127.61},"level":0},{"id":5371216,"cvNumber":228,"coordinate":{"lat":-49.614,"lon":-129.979},"level":0},{"id":5329287,"cvNumber":221,"coordinate":{"lat":-49.038,"lon":-132.872},"level":0},{"id":5335391,"cvNumber":222,"coordinate":{"lat":-49.462,"lon":-133.538},"level":0},{"id":5353870,"cvNumber":225,"coordinate":{"lat":-49.872,"lon":-130.638},"level":0},{"id":5341622,"cvNumber":223,"coordinate":{"lat":-50.128,"lon":-132.872},"level":0},{"id":5347796,"cvNumber":224,"coordinate":{"lat":-50.28,"lon":-131.592},"level":0},{"id":5359470,"cvNumber":226,"coordinate":{"lat":-50.121,"lon":-130.526},"level":0},{"id":5323210,"cvNumber":220,"coordinate":{"lat":-48.744,"lon":-132.579},"level":0},{"id":5310694,"cvNumber":218,"coordinate":{"lat":-48.337,"lon":-132.262},"level":0},{"id":5424675,"cvNumber":237,"coordinate":{"lat":-49.775,"lon":-127.663},"level":0},{"id":5408355,"cvNumber":234,"coordinate":{"lat":-49.315,"lon":-127.469},"level":0},{"id":5413202,"cvNumber":235,"coordinate":{"lat":-49.416,"lon":-127.38},"level":0},{"id":5390117,"cvNumber":231,"coordinate":{"lat":-49.316,"lon":-128.392},"level":0},{"id":5418662,"cvNumber":236,"coordinate":{"lat":-49.551,"lon":-127.446},"level":0},{"id":4926104,"cvNumber":151,"coordinate":{"lat":-57.11,"lon":167.813},"level":0},{"id":5009541,"cvNumber":165,"coordinate":{"lat":-47.166,"lon":-176.692},"level":0},{"id":5015477,"cvNumber":166,"coordinate":{"lat":-47.956,"lon":-177.076},"level":0},{"id":5051379,"cvNumber":173,"coordinate":{"lat":-48.319,"lon":-166.294},"level":0},{"id":5041753,"cvNumber":171,"coordinate":{"lat":-50.423,"lon":-166.401},"level":0},{"id":5046636,"cvNumber":172,"coordinate":{"lat":-49.099,"lon":-164.52},"level":0},{"id":4969156,"cvNumber":158,"coordinate":{"lat":-49.755,"lon":-179.398},"level":0},{"id":5266005,"cvNumber":209,"coordinate":{"lat":-49.011,"lon":-135.678},"level":0},{"id":5240774,"cvNumber":204,"coordinate":{"lat":-49.006,"lon":-137.565},"level":0},{"id":5112629,"cvNumber":183,"coordinate":{"lat":-49.903,"lon":-154.165},"level":0},{"id":5146281,"cvNumber":188,"coordinate":{"lat":-50.985,"lon":-152.447},"level":0},{"id":5256402,"cvNumber":207,"coordinate":{"lat":-48.48,"lon":-135.923},"level":0},{"id":5245810,"cvNumber":205,"coordinate":{"lat":-48.446,"lon":-137.383},"level":0},{"id":4792339,"cvNumber":126,"coordinate":{"lat":-53.441,"lon":155.364},"level":0},{"id":4797450,"cvNumber":127,"coordinate":{"lat":-52.804,"lon":155.021},"level":0},{"id":4942785,"cvNumber":154,"coordinate":{"lat":-54.79,"lon":170.238},"level":0},{"id":4963049,"cvNumber":157,"coordinate":{"lat":-50.143,"lon":176.745},"level":0},{"id":4936690,"cvNumber":153,"coordinate":{"lat":-55.855,"lon":167.444},"level":0},{"id":4921003,"cvNumber":150,"coordinate":{"lat":-56.676,"lon":170.239},"level":0},{"id":4679067,"cvNumber":107,"coordinate":{"lat":-49.789,"lon":139.72},"level":0},{"id":4827680,"cvNumber":133,"coordinate":{"lat":-51.635,"lon":156.501},"level":0},{"id":4838479,"cvNumber":135,"coordinate":{"lat":-53.125,"lon":158.639},"level":0},{"id":4822852,"cvNumber":132,"coordinate":{"lat":-52.481,"lon":154.933},"level":0},{"id":4719988,"cvNumber":114,"coordinate":{"lat":-50.618,"lon":147.713},"level":0},{"id":4758049,"cvNumber":120,"coordinate":{"lat":-50.064,"lon":152.358},"level":0},{"id":4995966,"cvNumber":163,"coordinate":{"lat":-48.282,"lon":-179.229},"level":0},{"id":5001927,"cvNumber":164,"coordinate":{"lat":-47.6,"lon":-178.595},"level":0},{"id":4974241,"cvNumber":159,"coordinate":{"lat":-49.257,"lon":-179.145},"level":0},{"id":5031265,"cvNumber":169,"coordinate":{"lat":-48.579,"lon":-173.523},"level":0},{"id":5036586,"cvNumber":170,"coordinate":{"lat":-49.212,"lon":-169.776},"level":0},{"id":4985201,"cvNumber":161,"coordinate":{"lat":-49.12,"lon":-179.585},"level":0},{"id":5026228,"cvNumber":168,"coordinate":{"lat":-49.166,"lon":-176.239},"level":0},{"id":4948348,"cvNumber":155,"coordinate":{"lat":-53.49,"lon":174.078},"level":0},{"id":4931504,"cvNumber":152,"coordinate":{"lat":-56.435,"lon":167.417},"level":0},{"id":4979994,"cvNumber":160,"coordinate":{"lat":-48.811,"lon":-179.33},"level":0},{"id":4957086,"cvNumber":156,"coordinate":{"lat":-51.214,"lon":175.449},"level":0},{"id":5056667,"cvNumber":174,"coordinate":{"lat":-49.86,"lon":-167.348},"level":0},{"id":5061945,"cvNumber":175,"coordinate":{"lat":-50.575,"lon":-165.053},"level":0},{"id":5123730,"cvNumber":185,"coordinate":{"lat":-50.537,"lon":-153.52},"level":0},{"id":5136408,"cvNumber":187,"coordinate":{"lat":-50.43,"lon":-153.171},"level":0},{"id":5106994,"cvNumber":182,"coordinate":{"lat":-50.77,"lon":-156.176},"level":0},{"id":5068724,"cvNumber":176,"coordinate":{"lat":-50.7,"lon":-164.217},"level":0},{"id":5073876,"cvNumber":177,"coordinate":{"lat":-49.536,"lon":-164.122},"level":0},{"id":5092136,"cvNumber":180,"coordinate":{"lat":-49.477,"lon":-160.417},"level":0},{"id":5086460,"cvNumber":179,"coordinate":{"lat":-49.616,"lon":-163.315},"level":0},{"id":5079030,"cvNumber":178,"coordinate":{"lat":-49.47,"lon":-164.412},"level":0},{"id":5207552,"cvNumber":198,"coordinate":{"lat":-51.525,"lon":-143.354},"level":0},{"id":5202748,"cvNumber":197,"coordinate":{"lat":-51.231,"lon":-144.769},"level":0},{"id":5197818,"cvNumber":196,"coordinate":{"lat":-50.421,"lon":-146.906},"level":0},{"id":5155832,"cvNumber":189,"coordinate":{"lat":-51.834,"lon":-151.769},"level":0},{"id":5118214,"cvNumber":184,"coordinate":{"lat":-50.431,"lon":-153.09},"level":0},{"id":5261314,"cvNumber":208,"coordinate":{"lat":-48.861,"lon":-135.55},"level":0},{"id":5235459,"cvNumber":203,"coordinate":{"lat":-49.631,"lon":-137.718},"level":0},{"id":5250932,"cvNumber":206,"coordinate":{"lat":-48.342,"lon":-136.662},"level":0},{"id":5230107,"cvNumber":202,"coordinate":{"lat":-50.098,"lon":-137.979},"level":0},{"id":5224273,"cvNumber":201,"coordinate":{"lat":-50.998,"lon":-137.647},"level":0},{"id":5217558,"cvNumber":200,"coordinate":{"lat":-51.686,"lon":-139.049},"level":0},{"id":5213046,"cvNumber":199,"coordinate":{"lat":-51.086,"lon":-141.639},"level":0},{"id":5305675,"cvNumber":217,"coordinate":{"lat":-47.919,"lon":-132.209},"level":0},{"id":5316817,"cvNumber":219,"coordinate":{"lat":-48.533,"lon":-132.398},"level":0},{"id":5271056,"cvNumber":210,"coordinate":{"lat":-48.898,"lon":-135.77},"level":0},{"id":5291420,"cvNumber":214,"coordinate":{"lat":-48.355,"lon":-133.302},"level":0},{"id":5296159,"cvNumber":215,"coordinate":{"lat":-47.804,"lon":-132.768},"level":0},{"id":5300945,"cvNumber":216,"coordinate":{"lat":-47.696,"lon":-132.315},"level":0},{"id":5281831,"cvNumber":212,"coordinate":{"lat":-48.958,"lon":-134.163},"level":0},{"id":5286508,"cvNumber":213,"coordinate":{"lat":-48.827,"lon":-133.701},"level":0},{"id":5528768,"cvNumber":253,"coordinate":{"lat":-49.046,"lon":-125.253},"level":0},{"id":5536440,"cvNumber":254,"coordinate":{"lat":-49.028,"lon":-125.275},"level":0},{"id":5523671,"cvNumber":252,"coordinate":{"lat":-48.953,"lon":-125.165},"level":0},{"id":5516151,"cvNumber":251,"coordinate":{"lat":-48.932,"lon":-124.909},"level":0},{"id":5511406,"cvNumber":250,"coordinate":{"lat":-49.05,"lon":-124.741},"level":0},{"id":5445713,"cvNumber":241,"coordinate":{"lat":-49.165,"lon":-126.84},"level":0},{"id":5440694,"cvNumber":240,"coordinate":{"lat":-49.443,"lon":-126.542},"level":0},{"id":5505789,"cvNumber":249,"coordinate":{"lat":-49.177,"lon":-124.598},"level":0},{"id":5466530,"cvNumber":245,"coordinate":{"lat":-49.14,"lon":-126.063},"level":0},{"id":5471526,"cvNumber":246,"coordinate":{"lat":-49.233,"lon":-125.893},"level":0},{"id":5450791,"cvNumber":242,"coordinate":{"lat":-49.097,"lon":-126.894},"level":0},{"id":5460981,"cvNumber":244,"coordinate":{"lat":-49.078,"lon":-126.489},"level":0},{"id":5565407,"cvNumber":258,"coordinate":{"lat":-47.855,"lon":-126.15},"level":0},{"id":5559776,"cvNumber":257,"coordinate":{"lat":-48.315,"lon":-125.658},"level":0},{"id":5587122,"cvNumber":261,"coordinate":{"lat":-46.894,"lon":-127.246},"level":0},{"id":5576515,"cvNumber":259,"coordinate":{"lat":-47.356,"lon":-126.631},"level":0},{"id":5542269,"cvNumber":255,"coordinate":{"lat":-48.849,"lon":-125.303},"level":0},{"id":5455570,"cvNumber":243,"coordinate":{"lat":-49.029,"lon":-126.666},"level":0},{"id":5430256,"cvNumber":238,"coordinate":{"lat":-50.106,"lon":-127.613},"level":0},{"id":5435455,"cvNumber":239,"coordinate":{"lat":-50.145,"lon":-127.046},"level":0},{"id":5553842,"cvNumber":256,"coordinate":{"lat":-48.682,"lon":-125.503},"level":0},{"id":5476322,"cvNumber":247,"coordinate":{"lat":-49.383,"lon":-125.497},"level":0},{"id":5581532,"cvNumber":260,"coordinate":{"lat":-46.928,"lon":-126.895},"level":0},{"id":5481253,"cvNumber":248,"coordinate":{"lat":-49.347,"lon":-124.883},"level":0},{"id":5688839,"cvNumber":278,"coordinate":{"lat":-47.164,"lon":-125.676},"level":0},{"id":5694751,"cvNumber":279,"coordinate":{"lat":-47.37,"lon":-126.092},"level":0},{"id":5665662,"cvNumber":274,"coordinate":{"lat":-46.298,"lon":-124.95},"level":0},{"id":5677502,"cvNumber":276,"coordinate":{"lat":-46.647,"lon":-125.142},"level":0},{"id":5602926,"cvNumber":264,"coordinate":{"lat":-45.746,"lon":-126.664},"level":0},{"id":5649901,"cvNumber":271,"coordinate":{"lat":-45.516,"lon":-125.421},"level":0},{"id":5654833,"cvNumber":272,"coordinate":{"lat":-45.786,"lon":-125.146},"level":0},{"id":5628401,"cvNumber":269,"coordinate":{"lat":-45.083,"lon":-125.988},"level":0},{"id":5623526,"cvNumber":268,"coordinate":{"lat":-44.946,"lon":-126.022},"level":0},{"id":5608329,"cvNumber":265,"coordinate":{"lat":-45.385,"lon":-126.681},"level":0},{"id":5613669,"cvNumber":266,"coordinate":{"lat":-45.143,"lon":-126.431},"level":0},{"id":5592203,"cvNumber":262,"coordinate":{"lat":-46.655,"lon":-127.012},"level":0},{"id":5618729,"cvNumber":267,"coordinate":{"lat":-44.878,"lon":-126.189},"level":0},{"id":5633559,"cvNumber":270,"coordinate":{"lat":-45.281,"lon":-125.796},"level":0},{"id":5597470,"cvNumber":263,"coordinate":{"lat":-46.19,"lon":-126.789},"level":0},{"id":5672134,"cvNumber":275,"coordinate":{"lat":-46.48,"lon":-124.997},"level":0},{"id":5729015,"cvNumber":283,"coordinate":{"lat":-47.657,"lon":-127.581},"level":0},{"id":5714459,"cvNumber":282,"coordinate":{"lat":-47.581,"lon":-127.313},"level":0},{"id":5733876,"cvNumber":284,"coordinate":{"lat":-47.893,"lon":-127.83},"level":0},{"id":5744475,"cvNumber":286,"coordinate":{"lat":-48.139,"lon":-127.997},"level":0},{"id":5738838,"cvNumber":285,"coordinate":{"lat":-48.109,"lon":-127.96},"level":0},{"id":5705128,"cvNumber":281,"coordinate":{"lat":-47.572,"lon":-126.99},"level":0},{"id":5683171,"cvNumber":277,"coordinate":{"lat":-46.915,"lon":-125.372},"level":0},{"id":5660242,"cvNumber":273,"coordinate":{"lat":-46.094,"lon":-125.013},"level":0},{"id":5699557,"cvNumber":280,"coordinate":{"lat":-47.503,"lon":-126.588},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/28f0d591f5dca848ac0c17ca8d1d4813f85f130b6aeec802ff410198b8b428b9.nc b/argopy/tests/test_data/28f0d591f5dca848ac0c17ca8d1d4813f85f130b6aeec802ff410198b8b428b9.nc new file mode 100644 index 00000000..b1a582b4 Binary files /dev/null and b/argopy/tests/test_data/28f0d591f5dca848ac0c17ca8d1d4813f85f130b6aeec802ff410198b8b428b9.nc differ diff --git a/argopy/tests/test_data/2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5.nc b/argopy/tests/test_data/2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5.nc new file mode 100644 index 00000000..cb1dbf42 Binary files /dev/null and b/argopy/tests/test_data/2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5.nc differ diff --git a/argopy/tests/test_data/2b3e5d4f7c0b5ee442dbf7e621e42b5762a51fb0bb2307e90b67c11f64c5297a.ncHeader b/argopy/tests/test_data/2b3e5d4f7c0b5ee442dbf7e621e42b5762a51fb0bb2307e90b67c11f64c5297a.ncHeader new file mode 100644 index 00000000..885bf2dd --- /dev/null +++ b/argopy/tests/test_data/2b3e5d4f7c0b5ee442dbf7e621e42b5762a51fb0bb2307e90b67c11f64c5297a.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_f41c_aee6_56d1.nc { + dimensions: + row = 2150; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=2150); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 10; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=2150); + :_FillValue = 99999; // int + :actual_range = 1, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=2150, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=2150); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=2150); + :actual_range = 8.415855f, 99999.0f; // float + + char doxy_adjusted_qc(row=2150, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=2150); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=2150); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=2150, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=2150); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.128737E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=2150, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=2150, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=2150); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=2150, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=2150); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=2150); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:53:21Z (local files) +2024-09-25T05:53:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres_adjusted%3E=0&pres_adjusted%3C=10&time%3E=1651363200.0&time%3C=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859.nc b/argopy/tests/test_data/2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859.nc new file mode 100644 index 00000000..afcf2214 Binary files /dev/null and b/argopy/tests/test_data/2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859.nc differ diff --git a/argopy/tests/test_data/2d5339f3b2caaf91525188c2d13186f85f9557b06a994a6f808bd2c5335c1505.ncHeader b/argopy/tests/test_data/2d5339f3b2caaf91525188c2d13186f85f9557b06a994a6f808bd2c5335c1505.ncHeader new file mode 100644 index 00000000..4b309396 --- /dev/null +++ b/argopy/tests/test_data/2d5339f3b2caaf91525188c2d13186f85f9557b06a994a6f808bd2c5335c1505.ncHeader @@ -0,0 +1,731 @@ +netcdf ArgoFloats-synthetic-BGC_3ae5_4d7c_0c3b.nc { + dimensions: + row = 897; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.375645E-4f, 0.001777002f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.375645E-4f, 0.001777002f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=897, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=897, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.31675f, 0.6335f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=897, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=897, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.2701f, 0.9563f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.18615f, 0.52925f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=897, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=897, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=897); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 11; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=897); + :_FillValue = 99999.0f; // float + :actual_range = 0.197265f, 0.4141766f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=897); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=897); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=897, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=897, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=897); + :_FillValue = 99999; // int + :actual_range = 20, 166; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=897, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01586146f, 0.1074668f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=897, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=897, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03584242f, 0.2123005f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=897, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=897, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.05468618f, 0.3180601f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=897, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=897, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 39.57379f, 381.0653f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=897, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=897, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 263.075f, 329.7932f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 285.4363f, 315.0098f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.118873f, 18.80818f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=897, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=897, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=897); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.08429718017578, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=897); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.918479919433594, -47.331808333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float ph_in_situ_total(row=897); + :_FillValue = 99999.0f; // float + :actual_range = 8.061573f, 8.100125f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=897); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=897); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=897, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=897, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=897, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=897); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=897); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.649095E-7f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.000125f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=897, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=897, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.033f, 34.673f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.404f, 34.67301f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=897, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=897, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.884f, 8.283f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.334f, 8.283f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=897); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=897, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=897, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=897); + :_CoordinateAxisType = "Time"; + :actual_range = 1.66633305E9, 1.67340576E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=897); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.331808333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.08429718017578; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.331808333333335; // double + :geospatial_lon_min = -53.918479919433594; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:46:48Z (local files) +2024-09-24T12:46:48Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1666085760.0&time%3C=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.08429718017578; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-01-11T02:56:00Z"; + :time_coverage_start = "2022-10-21T06:17:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.918479919433594; // double +} diff --git a/argopy/tests/test_data/2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902.nc b/argopy/tests/test_data/2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902.nc new file mode 100644 index 00000000..677f3b9b Binary files /dev/null and b/argopy/tests/test_data/2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902.nc differ diff --git a/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json b/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json new file mode 100644 index 00000000..e4f16d53 --- /dev/null +++ b/argopy/tests/test_data/2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-02-24T17:47:00","lat":26.1568,"lon":-79.677,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901008"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-02-24T17:45:00","lat":26.1551,"lon":-79.6784,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906966"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2023-06-06T04:00:00","lat":25.8333,"lon":-88.5667,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901009"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-03-28T05:51:00","lat":46.3579,"lon":-11.4308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903773"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-03-28T11:11:00","lat":46.97,"lon":-10.4567,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906967"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-11T10:20:23","lat":3.3133,"lon":-14.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-10T15:39:23","lat":4.99,"lon":-16.1917,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902584"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-11T14:48:23","lat":2.7081,"lon":-14.065,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901018"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-10T10:03:00","lat":5.7733,"lon":-16.79,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903776"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-03-07T00:00:00","lat":11.46,"lon":-22.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990512"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-03-08T00:00:00","lat":8.0,"lon":-18.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902489"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2024-05-28T10:00:00","lat":59.9979,"lon":-23.9966,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903659"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-17T15:21:45","lat":56.41,"lon":-52.9291,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990526"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-30T15:21:45","lat":45.71,"lon":-46.87,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903668"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-07T15:21:45","lat":56.8004,"lon":-52.3425,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-03-07T02:19:36","lat":11.4616,"lon":-22.9799,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902601"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-03-07T02:05:00","lat":11.4638,"lon":-22.9846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-06-23T18:32:00","lat":53.4223,"lon":-25.6417,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990538"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-02T14:45:00","lat":59.2863,"lon":-35.7626,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906994"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-04T13:40:00","lat":59.7559,"lon":-40.8977,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901036"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2023-06-27T16:05:00","lat":57.6753,"lon":-28.7277,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-03T14:09:00","lat":46.4997,"lon":-3.4992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901066"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-03T05:56:00","lat":46.8998,"lon":-4.332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902519"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-04T06:33:00","lat":45.7497,"lon":-2.4998,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902518"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-03-03T00:00:00","lat":11.4917,"lon":-23.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907047"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-05-10T15:05:52","lat":48.995,"lon":-16.4975,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903740"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-06-14T11:20:00","lat":48.4553,"lon":-22.4922,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903739"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-06-19T20:45:00","lat":51.0407,"lon":-19.1033,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-07-09T08:36:00","lat":52.0967,"lon":-18.7683,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":3.4267,"lon":-84.1967,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902641"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-05-13T00:00:00","lat":47.8327,"lon":-37.5846,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907067"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-04-18T00:00:00","lat":14.895,"lon":-44.8617,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903762"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-04-08T00:00:00","lat":21.7845,"lon":-24.7983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903879"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T01:50:00","lat":42.1813,"lon":-52.1728,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903763"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-12T02:18:00","lat":45.8657,"lon":-44.1057,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907072"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-11T21:10:00","lat":45.6412,"lon":-44.4664,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907071"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-04T21:46:00","lat":42.0348,"lon":-52.2304,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903881"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T06:04:00","lat":42.3078,"lon":-52.0954,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902663"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":14.5,"lon":-73.1,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":12.45,"lon":-75.9,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903768"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":11.4,"lon":-77.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":10.7,"lon":-78.2,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903770"},{"program":{"country":{"nameShort":"COLOMBIA"},"nameShort":"Argo Colombia"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":13.5,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903767"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-05-13T00:00:00","lat":48.2743,"lon":-33.8234,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903778"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-12-12T13:30:00","lat":29.1547,"lon":-15.5043,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-05-24T00:00:00","lat":35.7883,"lon":-19.855,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902586"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-01-21T04:26:00","lat":36.0543,"lon":-7.3362,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901142"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-01-21T16:05:00","lat":36.3361,"lon":-7.2189,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901143"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":11.4917,"lon":-23.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-04T11:13:00","lat":44.9917,"lon":-18.4517,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902590"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2024-05-30T09:18:00","lat":61.5667,"lon":-20.2833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903797"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2024-06-02T09:18:00","lat":64.8,"lon":-23.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903908"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2024-05-28T10:00:00","lat":59.9979,"lon":-23.9966,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990636"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-05T16:15:00","lat":45.75,"lon":-2.4997,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902697"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-07T06:24:00","lat":46.8977,"lon":-4.3338,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-06T16:37:00","lat":46.5025,"lon":-3.4992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902696"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2024-06-08T00:44:00","lat":77.12,"lon":-0.38,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902203"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2024-06-10T04:55:00","lat":73.75,"lon":-2.667,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990638"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2024-06-10T04:55:00","lat":73.7475,"lon":-2.6583,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907108"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-06-18T16:05:00","lat":56.1174,"lon":-50.54,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903798"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-19T14:25:00","lat":49.2009,"lon":-42.9985,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-12T07:46:00","lat":46.0942,"lon":-43.7409,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902608"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-18T16:42:00","lat":49.8306,"lon":-45.0002,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903929"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-19T03:53:00","lat":49.6001,"lon":-44.0005,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903930"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-04T10:53:00","lat":41.9024,"lon":-52.2931,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907126"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T12:20:00","lat":42.4316,"lon":-52.0322,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902609"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2024-09-02T14:21:00","lat":62.381,"lon":-18.717,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902223"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-25T11:25:00","lat":36.0526,"lon":-7.3343,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902720"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-26T19:15:00","lat":36.3632,"lon":-7.2493,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990667"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-29T14:55:00","lat":40.6908,"lon":-9.6105,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902721"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-30T10:53:00","lat":42.6739,"lon":-9.3405,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902224"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-19T00:00:00","lat":35.1,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902511"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-21T00:00:00","lat":31.2,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902512"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-29T00:00:00","lat":11.9041,"lon":-76.603,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902522"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-17T00:00:00","lat":37.0944,"lon":-36.9986,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902509"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-19T00:00:00","lat":33.9,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902519"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-02-08T00:00:00","lat":19.1579,"lon":-51.5079,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-04T00:00:00","lat":40.5992,"lon":-21.9926,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902508"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-29T00:00:00","lat":11.4,"lon":-77.3,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-28T00:00:00","lat":12.9997,"lon":-75.2047,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902521"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-18T00:00:00","lat":36.1976,"lon":-40.0042,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902510"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-02-11T00:00:00","lat":1.3664,"lon":-3.036,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902492"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":2.4933,"lon":-85.2017,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902515"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-05-09T00:00:00","lat":4.5,"lon":-83.4,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902514"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-04-12T20:42:00","lat":43.4698,"lon":-61.4349,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902622"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-04-01T00:00:00","lat":27.2267,"lon":-15.415,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903656"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-04-27T21:23:00","lat":43.4721,"lon":-57.5224,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902676"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-03-10T00:00:00","lat":20.4373,"lon":-23.1427,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903571"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-04-02T00:00:00","lat":27.18,"lon":-16.795,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":0.6134,"lon":-85.5388,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902489"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-05-28T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-05T00:00:00","lat":31.825,"lon":-29.0167,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903446"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-05-20T00:00:00","lat":41.2042,"lon":-13.7588,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902887"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":30.33,"lon":-22.495,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-05T00:00:00","lat":31.0213,"lon":-25.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-04T15:48:00","lat":32.5009,"lon":-32.0063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-16T12:29:00","lat":15.008,"lon":-55.7488,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902264"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-06-06T00:35:00","lat":59.5044,"lon":-55.021,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902677"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-06-06T00:33:00","lat":59.5045,"lon":-55.0209,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902675"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-22T11:22:00","lat":9.216,"lon":-48.6212,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902263"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-06-21T10:26:22","lat":60.1331,"lon":-18.9342,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901581"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-06-26T05:00:00","lat":49.5133,"lon":-7.0083,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-26T15:13:00","lat":6.5057,"lon":-45.0045,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902262"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-28T19:00:00","lat":7.1972,"lon":-40.6198,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-07-05T10:17:00","lat":41.1267,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903448"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-07-04T18:10:00","lat":40.7117,"lon":-40.5033,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903444"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-07-12T10:24:00","lat":42.4457,"lon":-49.9567,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-06-29T15:24:00","lat":41.1372,"lon":-44.6189,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902332"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-06T13:00:00","lat":57.2261,"lon":-10.0238,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902259"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-05T20:30:00","lat":51.0025,"lon":-45.6,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-17T03:06:00","lat":57.8785,"lon":-20.4976,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902258"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-07-26T20:20:00","lat":60.9997,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-26T13:45:00","lat":60.0091,"lon":-21.7716,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-19T13:31:00","lat":57.9333,"lon":-24.4,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902260"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-17T21:54:00","lat":62.2,"lon":-33.8,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902333"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-07-12T10:25:00","lat":42.4469,"lon":-49.9561,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902651"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-03-26T13:03:00","lat":40.5378,"lon":-16.9192,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901579"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-03-16T15:05:00","lat":10.425,"lon":-25.29,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-07-19T02:40:00","lat":57.9734,"lon":-26.0028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902110"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-09-01T00:38:00","lat":60.8,"lon":-29.8,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902112"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-08-31T15:52:00","lat":61.5,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902111"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-06-19T17:30:00","lat":50.217,"lon":-9.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902115"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-14T22:36:00","lat":29.1667,"lon":-18.1667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903822"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-17T17:15:00","lat":28.9412,"lon":-14.3757,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903823"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-12-10T19:49:00","lat":29.1676,"lon":-18.4988,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903712"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-16T20:57:00","lat":29.2462,"lon":-15.8418,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-28T21:21:00","lat":23.0166,"lon":-27.3575,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903537"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-31T19:03:00","lat":27.5175,"lon":-24.8317,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":3.5,"lon":-84.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902302"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":25.1,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":22.5,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902366"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":27.6,"lon":-59.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":28.7,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902361"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":26.35,"lon":-61.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":23.7,"lon":-65.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902365"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":29.8,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902360"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-05-10T14:38:00","lat":49.5,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903670"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-20T15:46:00","lat":60.7,"lon":-34.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903663"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-23T07:43:00","lat":52.5,"lon":-48.7,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902495"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-16T14:59:00","lat":48.9763,"lon":-16.372,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907048"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-09T13:32:00","lat":48.9977,"lon":-16.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901093"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-07T13:10:00","lat":45.7534,"lon":-7.9793,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904216"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-06T10:24:00","lat":42.7442,"lon":-10.539,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904217"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-05T13:55:00","lat":40.2671,"lon":-11.2563,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904218"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-03T12:42:00","lat":32.8963,"lon":-13.9387,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-02-21T19:46:00","lat":11.084,"lon":-49.1965,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903536"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-02-23T15:41:00","lat":4.1904,"lon":-42.8004,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-21T20:22:00","lat":11.1926,"lon":-28.7804,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-03-17T19:50:00","lat":4.5,"lon":-25.75,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903486"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-03-29T08:52:00","lat":17.5882,"lon":-24.2827,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-03-29T20:36:00","lat":24.5,"lon":-26.45,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903487"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-04-22T22:59:00","lat":35.0018,"lon":-19.4452,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-04-19T14:05:00","lat":29.9988,"lon":-23.3746,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903485"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-04-28T18:51:00","lat":44.0011,"lon":-19.0992,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903533"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-09T13:32:00","lat":48.9977,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902494"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-05-03T11:34:00","lat":53.021,"lon":-20.0004,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903488"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-05-06T12:33:00","lat":59.9992,"lon":-19.9998,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903532"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-16T14:59:00","lat":48.9763,"lon":-16.372,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990519"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-19T19:20:00","lat":67.32,"lon":-4.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903794"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-19T19:20:00","lat":67.32,"lon":-4.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902602"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-30T21:37:00","lat":74.5,"lon":-3.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902603"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T20:27:00","lat":26.2495,"lon":-86.4998,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903545"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T03:50:00","lat":25.25,"lon":-85.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903551"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T17:56:00","lat":26.5006,"lon":-87.0001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903554"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T05:40:00","lat":25.1003,"lon":-86.249,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903549"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T23:48:00","lat":26.0004,"lon":-86.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903557"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T19:14:00","lat":24.9999,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903552"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T01:34:00","lat":25.4997,"lon":-87.9993,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903555"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T12:12:00","lat":26.25,"lon":-87.4994,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903546"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T22:27:00","lat":25.1998,"lon":-87.4995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903548"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T11:49:00","lat":25.7497,"lon":-86.4997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903550"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T07:45:00","lat":25.249,"lon":-86.499,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903556"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T05:00:00","lat":25.7561,"lon":-87.4958,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903543"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T15:08:00","lat":25.4995,"lon":-87.0001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T16:00:00","lat":26.0,"lon":-87.993,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T08:30:00","lat":25.993,"lon":-85.0212,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903542"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T21:15:00","lat":25.2506,"lon":-88.5001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903547"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:00:00","lat":59.9578,"lon":-54.5413,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902604"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:21:00","lat":59.9482,"lon":-54.5468,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902671"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:09:00","lat":59.9554,"lon":-54.544,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902670"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T05:05:00","lat":59.9763,"lon":-53.5576,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902650"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T20:09:00","lat":59.501,"lon":-55.008,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902652"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-10T15:51:00","lat":41.4059,"lon":-60.6433,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902606"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-07-02T19:38:00","lat":44.3333,"lon":-5.6667,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902506"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T07:17:00","lat":20.4114,"lon":-82.3017,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903559"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-08T20:57:00","lat":21.2022,"lon":-84.4246,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T03:25:00","lat":20.7519,"lon":-83.1392,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-10T02:04:00","lat":18.8569,"lon":-78.4258,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903558"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T21:34:00","lat":19.1777,"lon":-79.3836,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903561"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-20T04:40:00","lat":62.2008,"lon":-31.699,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906984"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-08-21T17:37:00","lat":25.7376,"lon":-79.8059,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903662"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-24T08:20:00","lat":42.4715,"lon":-61.4352,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902601"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-15T11:05:00","lat":43.7822,"lon":-57.8308,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902600"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-15T02:29:00","lat":43.4793,"lon":-57.5477,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-10-07T14:11:20","lat":25.4565,"lon":-79.89,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902491"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-10-22T20:02:00","lat":42.0773,"lon":-49.2785,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902608"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-02T20:30:00","lat":40.66,"lon":-45.38,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990520"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-04T10:16:00","lat":36.9867,"lon":-36.51,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906985"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-03T15:40:00","lat":39.065,"lon":-39.695,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990521"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-12-01T23:48:00","lat":3.4,"lon":-16.1983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902607"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-12-01T05:18:00","lat":5.395,"lon":-18.7983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-12-14T00:30:00","lat":31.7231,"lon":-64.1881,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903570"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2023-12-03T23:32:00","lat":56.9361,"lon":-52.8361,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902684"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2023-12-12T16:36:00","lat":56.9217,"lon":-51.642,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-02-07T00:55:00","lat":18.7839,"lon":-57.4826,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903539"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-05-16T16:10:00","lat":17.9857,"lon":-65.0987,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902609"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-13T22:40:00","lat":56.501,"lon":-52.599,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902686"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-17T14:59:00","lat":56.665,"lon":-48.977,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902687"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-22T15:42:00","lat":58.4275,"lon":-49.4418,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902688"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-03-05T00:00:00","lat":36.7163,"lon":-8.427,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-10-22T20:00:00","lat":42.078,"lon":-49.277,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902689"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-03T13:25:00","lat":59.5595,"lon":-38.302,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GOO"},"ptfDepl":{"deplDate":"2023-07-18T12:00:42","lat":73.2573,"lon":-57.8907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902655"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GOO"},"ptfDepl":{"deplDate":"2023-08-18T12:00:42","lat":69.093,"lon":-51.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990591"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2023-09-03T15:25:00","lat":78.834,"lon":-8.999,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902659"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-08-26T16:45:27","lat":72.8951,"lon":-65.6039,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903774"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-08-26T17:02:03","lat":72.8984,"lon":-65.612,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901124"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-30T15:54:00","lat":74.5,"lon":-1.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903672"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2023-09-04T00:40:00","lat":78.833,"lon":-11.051,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902564"}],"total":358} \ No newline at end of file diff --git a/argopy/tests/test_data/2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229.html b/argopy/tests/test_data/2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229.html new file mode 100644 index 00000000..8a7d73e9 --- /dev/null +++ b/argopy/tests/test_data/2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229.html @@ -0,0 +1,15 @@ + + + Processing Bio-Argo particle backscattering at the DAC level + + + + + + +

Processing Bio-Argo particle backscattering at the DAC level

This document does NOT address the issue of particle backscattering quality control (either real-time or delayed mode). As a preliminary step towards that goal, this document seeks to ensure that all countries deploying floats equipped with backscattering sensors document the data and metadata related to these floats properly. We produced this document in response to action item 9 from the first Bio-Argo Data Management meeting in Hyderabad (November 12-13, 2012). +If the recommendations contained herein are followed, we will end up with a more uniform set of particle backscattering data within the Bio-Argo data system, allowing users to begin analyzing not only their own particle backscattering data, but also those of others, in the true spirit of Argo data sharing.

Full Text

FilePagesSizeAccess
OBSOLETE version 1.1
13676 Ko
OBSOLETE version 1.0
13678 Ko
Obsolete version 1.2
16747 Ko
Publisher's official version
15391 Ko
How to cite
Schmechtig Catherine, Poteau Antoine, Claustre Hervé, D'Ortenzio Fabrizio, Dall'olmo Giorgio, Boss Emmanuel (2018). Processing Bio-Argo particle backscattering at the DAC level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/39459

Copy this text

+ + + diff --git a/argopy/tests/test_data/2ec85ca4e982af9b25a0b5d4f891e9b2ea078e3c8d688d1c0d90facb932c5cd8.ncHeader b/argopy/tests/test_data/2ec85ca4e982af9b25a0b5d4f891e9b2ea078e3c8d688d1c0d90facb932c5cd8.ncHeader new file mode 100644 index 00000000..085ba7a6 --- /dev/null +++ b/argopy/tests/test_data/2ec85ca4e982af9b25a0b5d4f891e9b2ea078e3c8d688d1c0d90facb932c5cd8.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_c0e6_ee2a_b7f5.nc { + dimensions: + row = 24123; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 149; + variables: + int config_mission_number(row=24123); + :_FillValue = 99999; // int + :actual_range = 1, 3; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=24123); + :_FillValue = 99999; // int + :actual_range = 0, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=24123, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=24123, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=24123); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.083000000000006, -39.236000000000004; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=24123); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 0.0034000000000000002, 47.219; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=24123, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=24123, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=24123); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 11.0f, 2015.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 11.0f, 2015.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=24123, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=24123, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 33.553f, 35.5f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 33.553f, 35.5f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=24123, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=24123, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = -1.713f, 18.53f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = -1.713f, 18.53f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=24123); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=24123, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=24123, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=24123); + :_CoordinateAxisType = "Time"; + :actual_range = 1.10659992E9, 1.20725238E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=24123, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=24123, vertical_sampling_scheme_strlen=149); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 47.219; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -39.236000000000004; // double + :geospatial_lat_min = -57.083000000000006; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 47.219; // double + :geospatial_lon_min = 0.0034000000000000002; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:54:21Z (local files) +2024-09-24T08:54:21Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221900468%7C1900117%7C1900386%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = -39.236000000000004; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.083000000000006; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2008-04-03T19:53:00Z"; + :time_coverage_start = "2005-01-24T20:52:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = 0.0034000000000000002; // double +} diff --git a/argopy/tests/test_data/3131b8e4f2ab0957731e5968a337f87d6905abb64d363369d6c5169a85ce1e47.ncHeader b/argopy/tests/test_data/3131b8e4f2ab0957731e5968a337f87d6905abb64d363369d6c5169a85ce1e47.ncHeader new file mode 100644 index 00000000..7ba2cb03 --- /dev/null +++ b/argopy/tests/test_data/3131b8e4f2ab0957731e5968a337f87d6905abb64d363369d6c5169a85ce1e47.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_472e_14d6_6e29.nc { + dimensions: + row = 140; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=140); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=140); + :_FillValue = 99999; // int + :actual_range = 12, 13; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=140, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=140); + :actual_range = 174.5238f, 338.4748f; // float + + float doxy_adjusted_error(row=140); + :actual_range = 5.235715f, 10.15425f; // float + + char doxy_adjusted_qc(row=140, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=140); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.553, -57.064; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=140); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 149.635, 149.71; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=140, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=140); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.8f, 2000.2f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=140, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.73788f, 34.74495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=140, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.054f, 2.246f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=140); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=140, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=140); + :_CoordinateAxisType = "Time"; + :actual_range = 1.276412397E9, 1.277268306E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=140); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 149.71; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -57.064; // double + :geospatial_lat_min = -57.553; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 149.71; // double + :geospatial_lon_min = 149.635; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:55Z (local files) +2024-09-25T05:50:55Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -57.064; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.553; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2010-06-23T04:45:06Z"; + :time_coverage_start = "2010-06-13T06:59:57Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 149.635; // double +} diff --git a/argopy/tests/test_data/32512780d58ca0df4b7a77302bee300c6538b4d5edf2523e6541c028782a46e4.nc b/argopy/tests/test_data/32512780d58ca0df4b7a77302bee300c6538b4d5edf2523e6541c028782a46e4.nc new file mode 100644 index 00000000..0a435d44 Binary files /dev/null and b/argopy/tests/test_data/32512780d58ca0df4b7a77302bee300c6538b4d5edf2523e6541c028782a46e4.nc differ diff --git a/argopy/tests/test_data/328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd.js b/argopy/tests/test_data/328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd.js new file mode 100644 index 00000000..316f8d73 --- /dev/null +++ b/argopy/tests/test_data/328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd.js @@ -0,0 +1,139 @@ +[ +{"_id":"1900117_088","geolocation":{"type":"Point","coordinates":[46.841,-46.261]},"basin":3,"timestamp":"2008-04-03T19:53:00.000Z","date_updated_argovis":"2023-02-01T21:31:22.079Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_088.nc","date_updated":"2015-10-19T16:12:46.000Z"}],"cycle_number":88,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,41],[6.121,6.122,6.123,6.12],[33.758999,33.758999,33.758999,33.758999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_087","geolocation":{"type":"Point","coordinates":[46.718,-46.595]},"basin":3,"timestamp":"2008-03-25T03:12:00.000Z","date_updated_argovis":"2023-02-01T21:31:20.276Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_087.nc","date_updated":"2015-10-19T16:12:46.000Z"}],"cycle_number":87,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,75,85,95,105,115,125,135,146,155,165,175,185,195,205,215,226,235,245,254,265,276,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,456,465,475,485,494,512,538,562,587,613,637,662,687,713,738,763,787,813,837,862,888,912,937,963,988,1013,1038,1063,1087,1112,1137,1162,1188,1213,1238,1263,1288,1312,1338,1363,1388,1413,1437,1463,1488,1512,1538,1563,1587,1612,1638,1663,1688,1712,1737,1763,1787,1812,1838,1863,1887,1912,1938,1963,1988,2013],[6.876,6.873,6.871,6.864,6.785,6.679,6.554,6.278,5.927,5.318,4.87,4.556,4.371,4.37,4.216,4.139,4.163,4.081,4.164,4.16,3.882,3.722,3.714,3.706,3.852,3.861,3.814,3.781,3.766,3.675,3.721,3.74,3.731,3.686,3.683,3.656,3.633,3.657,3.605,3.538,3.476,3.438,3.396,3.372,3.326,3.298,3.244,3.22,3.188,3.132,3.075,3.029,2.978,2.91,2.882,2.869,2.86,2.841,2.807,2.739,2.793,2.795,2.782,2.705,2.705,2.686,2.664,2.606,2.592,2.569,2.601,2.622,2.632,2.605,2.577,2.592,2.587,2.574,2.546,2.536,2.539,2.524,2.522,2.512,2.512,2.509,2.499,2.482,2.448,2.418,2.434,2.423,2.407,2.396,2.378,2.359,2.336,2.325,2.312,2.308,2.302,2.288,2.27,2.251,2.234,2.216,2.201,2.183,2.168,2.156],[33.785999,33.785999,33.785999,33.785999,33.792,33.800999,33.812,33.82,33.827999,33.844002,33.868999,33.894001,33.917,33.939999,33.937,33.950001,33.970001,33.972,33.994999,34.006001,33.988998,33.985001,33.993999,34.004002,34.035,34.048,34.058998,34.063,34.071999,34.080002,34.098999,34.113998,34.119999,34.125999,34.134998,34.139999,34.144001,34.152,34.153999,34.153,34.154999,34.16,34.162998,34.164001,34.167999,34.169998,34.174999,34.18,34.186001,34.193001,34.203999,34.220001,34.237,34.252998,34.269001,34.285,34.304001,34.316002,34.332001,34.342999,34.362,34.377998,34.391998,34.400002,34.424,34.438,34.444,34.451,34.464001,34.477001,34.500999,34.522999,34.542,34.556,34.569,34.584999,34.591999,34.595001,34.601002,34.617001,34.632,34.639,34.652,34.662998,34.669998,34.676998,34.682999,34.687,34.692001,34.695,34.705002,34.712002,34.716999,34.722,34.724998,34.73,34.734001,34.737999,34.741001,34.743,34.744999,34.745998,34.748001,34.750999,34.752998,34.755001,34.757999,34.759998,34.762001,34.763]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_085","geolocation":{"type":"Point","coordinates":[45.354,-47.077000000000005]},"basin":3,"timestamp":"2008-03-05T02:12:00.000Z","date_updated_argovis":"2023-02-01T21:31:18.469Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_085.nc","date_updated":"2015-10-19T16:12:45.000Z"}],"cycle_number":85,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,66,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,225,235,245,255,265,275,285,295,304,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,464,475,485,495,512,539,563,587,612,637,663,688,713,737,762,788,813,838,863,888,914,937,962,987,1013,1037,1062,1087,1113,1138,1163,1187,1212,1237,1263,1287,1312,1337,1362,1387,1413,1437,1462,1488,1513,1537,1562,1588,1612,1637,1662,1688,1713,1738,1763,1787,1813,1837,1862,1888,1913,1937,1963,1988,2014],[6.465,6.472,6.474,6.476,6.475,6.469,6.42,6.171,5.942,5.643,5.235,4.861,4.667,4.458,4.271,4.139,4.023,4.006,4.048,4.026,4.057,4.173,4.272,4.288,4.283,4.22,4.023,3.897,3.894,4.036,4.122,4.112,4.044,4.018,3.987,3.924,3.811,3.742,3.724,3.655,3.579,3.471,3.387,3.366,3.342,3.329,3.294,3.235,3.198,3.114,3.066,3.017,2.958,2.878,2.818,2.835,2.79,2.824,2.781,2.731,2.716,2.666,2.677,2.72,2.752,2.716,2.665,2.507,2.452,2.477,2.534,2.537,2.526,2.537,2.519,2.553,2.578,2.575,2.551,2.545,2.529,2.508,2.519,2.517,2.501,2.481,2.481,2.466,2.456,2.453,2.449,2.442,2.446,2.432,2.408,2.373,2.373,2.32,2.287,2.272,2.264,2.251,2.234,2.227,2.226,2.214,2.197,2.21,2.187,2.186],[33.833,33.833,33.833,33.833,33.833,33.833,33.831001,33.833,33.848999,33.859001,33.879002,33.895,33.903999,33.910999,33.916,33.917,33.921001,33.938999,33.958,33.971001,33.993999,34.040001,34.077999,34.098999,34.108002,34.112,34.096001,34.091,34.098999,34.131001,34.150002,34.152,34.148998,34.154999,34.155998,34.154999,34.150002,34.151001,34.154999,34.155998,34.154999,34.151001,34.150002,34.154999,34.160999,34.166,34.167,34.169998,34.173,34.178001,34.196999,34.215,34.23,34.238998,34.248001,34.271,34.284,34.307999,34.313999,34.318001,34.333,34.342999,34.361,34.393002,34.418999,34.431999,34.438999,34.441002,34.457001,34.473999,34.493999,34.507,34.516998,34.528,34.541,34.561001,34.576,34.588001,34.598,34.610001,34.616001,34.619999,34.631001,34.641998,34.648998,34.655998,34.666,34.673,34.676998,34.686001,34.693001,34.702,34.708,34.710999,34.712002,34.712002,34.717999,34.716999,34.720001,34.723,34.727001,34.73,34.734001,34.737999,34.743,34.743999,34.744999,34.752998,34.752998,34.757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_083","geolocation":{"type":"Point","coordinates":[44.779,-47.399]},"basin":3,"timestamp":"2008-02-14T01:54:59.999Z","date_updated_argovis":"2023-02-01T21:31:16.704Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_083.nc","date_updated":"2015-10-19T16:12:45.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,176,185,195,205,215,226,235,245,255,265,275,285,296,305,315,325,336,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,538,563,587,612,637,663,688,713,738,762,788,813,837,862,887,912,937,963,989,1012,1037,1062,1088,1113,1137,1163,1187,1212,1238,1263,1288,1312,1337,1364,1387,1412,1438,1462,1488,1513,1538,1562,1587,1612,1638,1663,1687,1712,1737,1762,1787,1812,1838,1862,1887,1912,1938,1963,1988,2013],[5.949,5.953,5.954,5.952,5.948,5.848,5.735,5.699,5.589,5.07,4.449,4.1,3.929,3.854,3.804,3.728,3.686,3.659,3.635,3.613,3.583,3.562,3.583,3.677,3.721,3.741,3.784,3.8,3.822,3.846,3.846,3.818,3.807,3.764,3.692,3.637,3.636,3.6,3.534,3.431,3.393,3.379,3.32,3.273,3.243,3.224,3.208,3.169,3.192,3.164,3.067,2.993,2.961,2.956,2.823,2.93,2.937,2.933,2.893,2.843,2.801,2.784,2.794,2.783,2.743,2.699,2.594,2.483,2.484,2.46,2.441,2.43,2.421,2.429,2.506,2.502,2.494,2.548,2.575,2.554,2.502,2.496,2.505,2.507,2.485,2.446,2.419,2.405,2.391,2.39,2.372,2.353,2.349,2.397,2.411,2.397,2.369,2.336,2.315,2.298,2.287,2.26,2.225,2.202,2.213,2.218,2.211,2.196,2.186,2.175],[33.852001,33.853001,33.853001,33.853001,33.852001,33.848,33.846001,33.844002,33.841999,33.860001,33.883999,33.903,33.911999,33.919998,33.932999,33.943001,33.951,33.959,33.963001,33.966999,33.974998,33.979,33.992001,34.014999,34.030998,34.039001,34.055,34.063,34.076,34.088001,34.099998,34.109001,34.117001,34.125,34.125,34.127998,34.133999,34.136002,34.133999,34.131001,34.136002,34.139999,34.141998,34.144001,34.146999,34.155998,34.164001,34.173,34.187,34.193001,34.203999,34.216999,34.235001,34.247002,34.249001,34.286999,34.300999,34.317001,34.334,34.347,34.355999,34.375,34.400002,34.418999,34.432999,34.449001,34.456001,34.464001,34.484001,34.493,34.505001,34.519001,34.535999,34.551998,34.578999,34.587002,34.592999,34.611,34.624001,34.627998,34.629002,34.638,34.647999,34.657001,34.661999,34.666,34.674,34.683998,34.693001,34.700001,34.705002,34.708,34.713001,34.728001,34.734001,34.737999,34.737999,34.740002,34.743999,34.747002,34.75,34.750999,34.752998,34.754002,34.759998,34.763,34.764999,34.766998,34.768002,34.77]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_081","geolocation":{"type":"Point","coordinates":[44.951,-48.247]},"basin":3,"timestamp":"2008-01-25T02:07:00.000Z","date_updated_argovis":"2023-02-01T21:31:14.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_081.nc","date_updated":"2015-10-19T16:12:44.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,76,85,95,105,115,125,135,145,155,165,175,185,195,206,215,224,235,246,255,265,275,285,295,305,315,325,335,345,356,365,375,384,395,406,415,424,435,445,455,465,475,485,495,512,537,562,588,613,637,664,688,713,738,763,787,812,838,863,888,913,938,963,988,1013,1038,1062,1088,1112,1137,1162,1187,1212,1237,1262,1288,1312,1337,1362,1387,1414,1437,1463,1488,1512,1537,1563,1588,1613,1637,1662,1688,1712,1738,1762,1787,1812,1838,1862,1887,1913,1938,1962,1987,2010],[5.387,5.388,5.389,5.39,5.392,5.393,5.394,5.362,5.033,4.705,4.227,3.911,3.834,3.768,3.736,3.696,3.515,3.375,3.456,3.499,3.596,3.64,3.798,3.956,3.854,3.879,3.933,3.718,3.647,3.698,3.691,3.567,3.459,3.458,3.463,3.44,3.425,3.361,3.337,3.253,3.165,3.165,3.148,3.16,3.146,3.111,3.075,3.061,3.029,3.012,3.003,3.036,3.041,3.008,2.964,2.907,2.878,2.848,2.796,2.743,2.717,2.712,2.698,2.657,2.603,2.574,2.497,2.47,2.573,2.603,2.601,2.598,2.607,2.555,2.464,2.472,2.474,2.485,2.479,2.49,2.486,2.48,2.462,2.428,2.429,2.417,2.413,2.408,2.408,2.381,2.386,2.378,2.363,2.348,2.332,2.314,2.29,2.262,2.232,2.212,2.218,2.215,2.207,2.174,2.144,2.12,2.082,2.073,2.051,2.045],[33.851002,33.851002,33.851002,33.851002,33.851002,33.851002,33.851002,33.848999,33.879002,33.908001,33.908001,33.925999,33.956001,33.956001,33.966999,33.969002,33.953999,33.949001,33.967999,33.987,34.014,34.030998,34.067001,34.098999,34.097,34.112999,34.126999,34.111,34.111,34.127998,34.137001,34.131001,34.130001,34.139,34.147999,34.155998,34.162998,34.162998,34.171001,34.171001,34.171001,34.183998,34.188999,34.201,34.210999,34.216,34.221001,34.231998,34.237999,34.248001,34.269001,34.292999,34.311001,34.324001,34.334,34.345001,34.361,34.373001,34.383999,34.404999,34.425999,34.444,34.460999,34.472,34.480999,34.487999,34.497002,34.509998,34.542,34.556999,34.573002,34.585999,34.602001,34.604,34.604,34.618999,34.632,34.641998,34.653,34.661999,34.671001,34.679001,34.681,34.686001,34.688999,34.694,34.696999,34.701,34.706001,34.707001,34.714001,34.719002,34.723999,34.73,34.730999,34.734001,34.740002,34.742001,34.743999,34.745998,34.751999,34.754002,34.757,34.759998,34.761002,34.762001,34.762001,34.763,34.764999,34.766998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_080","geolocation":{"type":"Point","coordinates":[46.411,-49.257000000000005]},"basin":3,"timestamp":"2008-01-14T19:50:00.000Z","date_updated_argovis":"2023-02-01T21:31:13.182Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_080.nc","date_updated":"2015-10-19T16:12:43.000Z"}],"cycle_number":80,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[11],[4.431],[33.830002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_079","geolocation":{"type":"Point","coordinates":[42.532000000000004,-49.249]},"basin":3,"timestamp":"2008-01-05T01:50:00.000Z","date_updated_argovis":"2023-02-01T21:31:11.474Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_079.nc","date_updated":"2015-10-19T16:12:43.000Z"}],"cycle_number":79,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,124,135,146,155,165,175,185,195,205,215,225,235,246,255,264,275,286,295,305,316,326,335,345,355,364,375,385,395,405,415,425,435,445,455,465,475,485,495,513,539,562,587,612,637,663,688,712,738,763,788,813,838,863,888,913,938,963,987,1013,1037,1063,1087,1112,1138,1163,1187,1212,1237,1262,1287,1312,1337,1362,1388,1414,1438,1463,1488,1512,1537,1564,1588,1613,1638,1663,1688,1713,1738,1763,1788,1814,1837,1862,1888,1912,1937,1963,1980],[3.941,3.945,3.93,3.414,2.784,2.62,2.534,2.434,2.249,2.076,2.205,2.324,2.457,2.593,2.678,2.882,3.006,2.925,2.902,2.982,2.935,2.851,2.814,2.794,2.771,2.726,2.646,2.617,2.628,2.608,2.59,2.525,2.694,2.717,2.687,2.672,2.533,2.43,2.28,2.25,2.406,2.364,2.243,2.275,2.363,2.319,2.366,2.423,2.399,2.348,2.503,2.571,2.656,2.627,2.613,2.589,2.57,2.572,2.426,2.454,2.491,2.533,2.536,2.522,2.519,2.519,2.514,2.507,2.495,2.487,2.473,2.459,2.433,2.445,2.412,2.403,2.389,2.385,2.393,2.391,2.368,2.301,2.228,2.207,2.287,2.244,2.147,2.134,2.155,2.083,2.115,2.123,2.104,2.074,2.049,2.036,2.018,2.008,1.994,1.978,1.955,1.916,1.886,1.874,1.868,1.859,1.85,1.835,1.829],[33.824001,33.824001,33.82,33.810001,33.817001,33.812,33.826,33.828999,33.818001,33.821999,33.863998,33.896,33.938,33.984001,34.001999,34.041,34.073002,34.075001,34.09,34.108002,34.117001,34.130001,34.140999,34.148998,34.153,34.158001,34.160999,34.167,34.174,34.179001,34.187,34.198002,34.230999,34.240002,34.245998,34.249001,34.237,34.241001,34.235001,34.25,34.277,34.279999,34.286999,34.297001,34.323002,34.331001,34.341999,34.358002,34.366001,34.370998,34.415001,34.452,34.477001,34.486,34.498001,34.513,34.521999,34.540001,34.535,34.563,34.584999,34.597,34.609001,34.618999,34.625,34.631001,34.639999,34.652,34.659,34.667,34.674,34.68,34.688,34.699001,34.705002,34.713001,34.719002,34.726002,34.733002,34.737,34.737999,34.731998,34.724998,34.73,34.745998,34.748001,34.740002,34.747002,34.754002,34.748001,34.757999,34.764,34.763,34.762001,34.759998,34.759998,34.761002,34.763,34.764,34.764999,34.766998,34.766998,34.765999,34.764999,34.765999,34.765999,34.766998,34.768002,34.77]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_077","geolocation":{"type":"Point","coordinates":[37.548,-49.95]},"basin":3,"timestamp":"2007-12-16T01:50:00.000Z","date_updated_argovis":"2023-02-01T21:31:09.611Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_077.nc","date_updated":"2015-10-19T16:12:42.000Z"}],"cycle_number":77,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,56,66,75,85,96,105,115,125,135,145,155,165,175,185,195,205,216,226,235,245,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,446,455,465,475,485,495,514,537,562,588,612,637,662,688,712,738,763,788,812,837,862,888,912,938,962,987,1013,1037,1064,1087,1112,1137,1162,1188,1213,1238,1263,1287,1312,1337,1363,1388,1412,1437,1463,1487,1513,1537,1562,1588,1612,1638,1663,1688,1713,1738,1764,1787,1812,1838,1863,1888,1913,1938,1963,1976],[4.927,4.927,4.912,4.544,4.001,3.621,3.544,3.463,3.402,3.198,2.882,2.889,3.155,3.357,3.144,2.792,2.85,3.414,3.249,3.157,3.272,3.229,3.215,3.116,2.927,2.864,2.92,3.085,3.196,3.228,3.213,3.233,3.224,3.183,3.149,3.066,2.956,2.929,2.931,2.969,3.018,2.989,2.897,2.795,2.742,2.732,2.776,2.802,2.796,2.776,2.733,2.725,2.699,2.682,2.651,2.684,2.662,2.61,2.504,2.465,2.445,2.431,2.426,2.439,2.43,2.445,2.446,2.466,2.515,2.436,2.442,2.406,2.322,2.428,2.263,2.193,2.184,2.206,2.172,2.174,2.193,2.223,2.282,2.283,2.248,2.207,2.17,2.138,2.114,2.075,2.071,2.058,2.052,2.031,2.001,1.931,1.918,1.927,1.94,1.957,1.875,1.831,1.797,1.794,1.799,1.781,1.755,1.71,1.677],[33.851002,33.851002,33.851002,33.849998,33.849998,33.845001,33.839001,33.839001,33.845001,33.831001,33.824001,33.837002,33.881001,33.917,33.921001,33.921001,33.994999,34.096001,34.088001,34.105,34.138,34.143002,34.152,34.155998,34.153,34.157001,34.174,34.206001,34.227001,34.237,34.248001,34.262001,34.269001,34.271999,34.276001,34.278,34.278,34.280998,34.285,34.300999,34.319,34.320999,34.316002,34.313,34.327,34.34,34.352001,34.360001,34.372002,34.391998,34.409,34.417999,34.424,34.448002,34.476002,34.505001,34.521,34.528,34.532001,34.543999,34.558998,34.574001,34.584999,34.601002,34.610001,34.629002,34.641998,34.654999,34.672001,34.672001,34.683998,34.687,34.688999,34.712002,34.694,34.694,34.696999,34.709,34.713001,34.716999,34.724998,34.735001,34.749001,34.751999,34.751999,34.75,34.751999,34.751999,34.750999,34.751999,34.757999,34.759998,34.762001,34.763,34.762001,34.755001,34.759998,34.762001,34.764999,34.769001,34.764,34.761002,34.758999,34.762001,34.766998,34.765999,34.764999,34.758999,34.757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_076","geolocation":{"type":"Point","coordinates":[35.339,-50.248000000000005]},"basin":10,"timestamp":"2007-12-05T20:02:59.999Z","date_updated_argovis":"2023-02-01T21:31:07.899Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_076.nc","date_updated":"2015-10-19T16:12:41.000Z"}],"cycle_number":76,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34],[2.643,2.646,2.584],[33.865002,33.863998,33.865002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_075","geolocation":{"type":"Point","coordinates":[34.842,-51.241]},"basin":10,"timestamp":"2007-11-26T01:57:00.000Z","date_updated_argovis":"2023-02-01T21:31:06.078Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_075.nc","date_updated":"2015-10-19T16:12:40.000Z"}],"cycle_number":75,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[17,25,35,44,55,66,75,85,95,105,115,125,136,145,155,165,175,185,195,205,216,225,235,245,255,265,275,285,295,304,315,326,336,345,355,365,375,385,395,405,416,426,435,445,455,465,475,485,495,513,538,563,588,613,638,662,687,713,738,763,787,813,838,863,888,913,937,962,988,1013,1037,1063,1087,1112,1137,1162,1188,1213,1237,1262,1288,1313,1337,1362,1387,1412,1438,1463,1488,1512,1538,1563,1588,1612,1638,1663,1687,1713,1737,1763,1788,1814,1837,1862,1887,1913,1938,1963,1988,2013],[2.071,2.07,2.07,2.069,2.07,2.07,2.065,2.052,2.007,1.904,1.627,1.431,1.398,1.386,1.378,1.362,1.345,1.335,1.319,1.271,1.265,1.286,1.385,1.54,1.597,1.63,1.695,1.757,1.801,1.85,1.812,1.864,1.865,1.88,1.899,1.916,1.93,1.942,1.947,1.962,1.976,1.973,1.969,1.985,2.013,2.067,2.081,2.075,2.108,2.103,2.104,2.132,2.155,2.156,2.167,2.18,2.2,2.205,2.151,2.139,2.133,2.176,2.215,2.187,2.146,2.126,2.154,2.19,2.204,2.197,2.183,2.133,2.113,2.108,2.103,2.115,2.1,2.088,2.068,2.049,2.043,2.034,2.018,1.983,1.983,1.983,1.94,1.949,1.924,1.886,1.836,1.827,1.815,1.797,1.779,1.745,1.708,1.696,1.668,1.652,1.634,1.609,1.592,1.574,1.555,1.531,1.516,1.487,1.462,1.437],[33.889,33.889,33.889,33.889,33.889,33.889,33.889,33.889999,33.890999,33.894001,33.898998,33.911999,33.914001,33.915001,33.916,33.917999,33.922001,33.926998,33.936001,33.966,34.004002,34.033001,34.070999,34.124001,34.160999,34.195999,34.227001,34.25,34.265999,34.286999,34.303001,34.328999,34.334,34.341999,34.354,34.362,34.372002,34.382,34.389999,34.396999,34.404999,34.408001,34.421001,34.432999,34.445,34.462002,34.469002,34.473,34.485001,34.499001,34.519001,34.540001,34.557999,34.568001,34.585999,34.595001,34.609001,34.624001,34.627998,34.637001,34.644001,34.657001,34.667999,34.668999,34.672001,34.675999,34.688999,34.702999,34.710999,34.714001,34.717999,34.717999,34.722,34.723999,34.728001,34.734001,34.737,34.738998,34.740002,34.741001,34.743999,34.747002,34.75,34.749001,34.751999,34.755001,34.751999,34.757,34.757,34.756001,34.751999,34.752998,34.756001,34.755001,34.756001,34.754002,34.750999,34.751999,34.751999,34.751999,34.750999,34.75,34.749001,34.748001,34.747002,34.745998,34.745998,34.743999,34.743,34.741001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_073","geolocation":{"type":"Point","coordinates":[36.349000000000004,-51.49]},"basin":10,"timestamp":"2007-11-06T01:46:00.000Z","date_updated_argovis":"2023-02-01T21:31:04.283Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_073.nc","date_updated":"2015-10-19T16:12:40.000Z"}],"cycle_number":73,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,55,66,75,85,95,105,115,125,135,145,155,166,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,326,335,345,355,365,374,384,395,405,415,425,435,445,454,465,476,485,495,513,537,562,587,612,637,662,687,713,738,764,787,812,837,863,887,913,938,962,987,1013,1038,1063,1088,1113,1137,1163,1188,1212,1238,1262,1288,1313,1338,1363,1387,1413,1438,1462,1487,1512,1537,1563,1588,1613,1637,1662,1688,1712,1737,1763,1787,1812,1838,1862,1887,1913,1938,1964,1976],[3.109,3.11,3.11,3.114,3.119,3.115,3.122,3.143,3.167,3.185,3.201,3.223,3.251,3.266,3.299,3.343,3.398,3.511,3.474,3.447,3.39,3.339,3.273,3.253,3.238,3.226,3.209,3.175,3.069,3.057,3.073,3.081,3.075,3.054,3.038,3.018,3.011,3.006,3.003,2.998,2.977,2.96,2.95,2.932,2.914,2.901,2.884,2.869,2.864,2.849,2.818,2.775,2.725,2.706,2.702,2.68,2.66,2.624,2.592,2.544,2.558,2.544,2.523,2.465,2.422,2.418,2.402,2.367,2.263,2.253,2.26,2.247,2.208,2.241,2.228,2.232,2.224,2.222,2.204,2.166,2.15,2.171,2.157,2.147,2.144,2.126,2.117,2.112,2.098,2.058,2.015,2.007,2.007,2.004,1.961,1.929,1.905,1.874,1.828,1.819,1.806,1.801,1.784,1.75,1.717,1.691,1.646,1.617,1.609],[34.001999,34.000999,34.001999,34.004002,34.007999,34.014,34.018002,34.023998,34.028999,34.032001,34.035,34.040001,34.047001,34.056,34.084999,34.105999,34.139,34.195,34.205002,34.209,34.214001,34.217999,34.224998,34.230999,34.243999,34.250999,34.257999,34.264999,34.266998,34.27,34.279999,34.292999,34.304001,34.310001,34.316002,34.323002,34.330002,34.335999,34.348,34.359001,34.366001,34.376999,34.384998,34.394001,34.404999,34.414001,34.424,34.431999,34.437,34.446999,34.465,34.480999,34.493999,34.507,34.52,34.529999,34.539001,34.550999,34.560001,34.561001,34.580002,34.598999,34.608002,34.613998,34.618,34.625999,34.636002,34.638,34.632999,34.646,34.654999,34.661999,34.667,34.681,34.685001,34.693001,34.701,34.710999,34.714001,34.714001,34.719002,34.728001,34.733002,34.737,34.742001,34.748001,34.751999,34.756001,34.757,34.756001,34.751999,34.756001,34.757999,34.762001,34.758999,34.757,34.757,34.756001,34.755001,34.757,34.757,34.758999,34.757999,34.755001,34.754002,34.752998,34.750999,34.749001,34.749001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_071","geolocation":{"type":"Point","coordinates":[36.349000000000004,-52.604]},"basin":10,"timestamp":"2007-10-17T01:58:00.000Z","date_updated_argovis":"2023-02-01T21:31:00.598Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_071.nc","date_updated":"2015-10-19T16:12:39.000Z"}],"cycle_number":71,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,85,95,105,115,125,135,145,156,165,174,185,195,205,215,225,235,245,255,266,276,285,296,305,315,325,335,346,355,365,376,385,395,405,415,425,435,445,456,465,474,485,495,513,538,562,588,612,637,663,688,713,739,763,787,813,837,862,887,912,938,963,988,1012,1038,1062,1087,1113,1138,1164,1187,1212,1237,1263,1288,1313,1338,1362,1388,1412,1437,1463,1488,1513,1538,1563,1588,1613,1638,1662,1687,1712,1737,1762,1787,1812,1839,1863,1888,1913,1938,1962,1987,2011],[1.358,1.357,1.358,1.361,1.364,1.373,1.368,1.361,1.346,1.346,1.34,1.33,1.278,1.232,1.2,1.135,1.11,1.261,1.179,1.154,1.336,1.517,1.648,1.85,2.051,2.107,2.113,2.07,2.156,2.185,2.166,2.073,2.074,2.128,2.151,2.162,2.147,2.128,2.155,2.171,2.172,2.172,2.146,2.147,2.15,2.194,2.203,2.214,2.198,2.18,2.18,2.198,2.205,2.224,2.21,2.201,2.203,2.224,2.246,2.266,2.264,2.257,2.243,2.205,2.205,2.189,2.146,2.132,2.109,2.127,2.117,2.1,2.086,2.068,2.055,2.039,2.011,1.981,1.966,1.951,1.937,1.916,1.894,1.889,1.881,1.861,1.854,1.844,1.82,1.795,1.783,1.755,1.736,1.713,1.688,1.678,1.656,1.623,1.614,1.577,1.528,1.484,1.445,1.417,1.397,1.375,1.349,1.341,1.323,1.308],[33.917999,33.917999,33.918999,33.918999,33.919998,33.923,33.924,33.924,33.924999,33.926998,33.926998,33.928001,33.932999,33.941002,33.948002,33.966,33.997002,34.023998,34.028999,34.046001,34.082001,34.123001,34.150002,34.196999,34.236,34.252998,34.263,34.266998,34.293999,34.313,34.321999,34.321999,34.34,34.355999,34.365002,34.375999,34.384998,34.393002,34.414001,34.428001,34.433998,34.438,34.448002,34.455002,34.462002,34.476002,34.483002,34.487999,34.492001,34.507,34.528999,34.548,34.564999,34.584,34.597,34.605999,34.622002,34.633999,34.645,34.657001,34.664001,34.673,34.679001,34.681,34.688999,34.693001,34.693001,34.702,34.709,34.719002,34.724998,34.729,34.731998,34.735001,34.737999,34.740002,34.742001,34.743999,34.745998,34.747002,34.748001,34.749001,34.749001,34.751999,34.754002,34.754002,34.755001,34.756001,34.756001,34.756001,34.757,34.756001,34.756001,34.755001,34.756001,34.756001,34.755001,34.752998,34.754002,34.751999,34.747002,34.742001,34.738998,34.737999,34.737999,34.737,34.735001,34.735001,34.735001,34.734001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_070","geolocation":{"type":"Point","coordinates":[36.174,-52.905]},"basin":10,"timestamp":"2007-10-06T20:04:00.000Z","date_updated_argovis":"2023-02-01T21:30:58.872Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_070.nc","date_updated":"2015-10-19T16:12:38.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45],[1.719,1.721,1.719,1.718],[33.935001,33.933998,33.935001,33.933998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_069","geolocation":{"type":"Point","coordinates":[35.415,-52.562000000000005]},"basin":10,"timestamp":"2007-09-27T01:53:00.000Z","date_updated_argovis":"2023-02-01T21:30:57.172Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_069.nc","date_updated":"2015-10-19T16:12:37.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,106,115,125,135,145,155,165,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,436,445,455,465,475,485,495,513,537,562,588,613,638,663,688,713,738,763,787,812,838,863,887,912,938,963,988,1013,1037,1063,1088,1113,1138,1163,1187,1213,1237,1262,1287,1312,1337,1362,1387,1412,1437,1463,1487,1512,1537,1562,1588,1612,1637,1662,1687,1712,1737,1762,1787,1813,1837,1863,1887,1912,1938,1963,1988,2013],[1.334,1.335,1.335,1.337,1.338,1.338,1.339,1.338,1.339,1.338,1.339,1.339,1.339,1.34,1.34,1.34,1.34,1.336,1.336,1.355,1.42,1.381,1.372,1.439,1.427,1.49,1.639,1.725,1.745,1.879,2.032,2.075,2.105,2.125,2.11,2.054,2.039,1.993,2.059,2.088,2.084,2.167,2.218,2.142,2.135,2.129,2.099,2.097,2.129,2.185,2.224,2.191,2.176,2.181,2.179,2.184,2.167,2.186,2.217,2.203,2.206,2.209,2.204,2.154,2.101,2.07,2.049,2.064,2.125,2.104,2.048,2.031,2.02,2.019,2.019,2.081,2.082,2.061,2.069,2.035,1.997,1.974,1.96,1.942,1.926,1.915,1.919,1.888,1.867,1.84,1.822,1.801,1.765,1.756,1.73,1.711,1.679,1.655,1.66,1.633,1.601,1.571,1.561,1.537,1.488,1.446,1.419,1.397,1.371,1.351],[33.890999,33.890999,33.889999,33.889999,33.889999,33.889999,33.889999,33.889999,33.889999,33.890999,33.890999,33.890999,33.890999,33.890999,33.890999,33.890999,33.890999,33.893002,33.931,33.993,34.021999,34.056999,34.087002,34.105,34.119999,34.152,34.195999,34.227001,34.248001,34.278999,34.310001,34.323002,34.333,34.341,34.341,34.341,34.349998,34.355999,34.376999,34.391998,34.400002,34.421001,34.432999,34.431,34.436001,34.443001,34.450001,34.459999,34.471001,34.498001,34.52,34.528,34.539001,34.555,34.569,34.582001,34.592999,34.611,34.622002,34.631001,34.639999,34.648998,34.655998,34.657001,34.658001,34.664001,34.668999,34.68,34.693001,34.698002,34.702999,34.709,34.714001,34.719002,34.723,34.737,34.740002,34.742001,34.748001,34.75,34.749001,34.75,34.751999,34.752998,34.752998,34.756001,34.761002,34.762001,34.763,34.763,34.763,34.762001,34.761002,34.762001,34.759998,34.759998,34.757999,34.756001,34.757999,34.756001,34.754002,34.750999,34.751999,34.750999,34.745998,34.743,34.741001,34.740002,34.738998,34.737999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_068","geolocation":{"type":"Point","coordinates":[35.11,-52.124]},"basin":10,"timestamp":"2007-09-16T20:05:00.000Z","date_updated_argovis":"2023-02-01T21:30:55.298Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_068.nc","date_updated":"2015-10-19T16:12:37.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36],[1.285,1.288,1.292],[33.91,33.91,33.910999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_067","geolocation":{"type":"Point","coordinates":[34.547000000000004,-51.921]},"basin":10,"timestamp":"2007-09-07T01:59:00.000Z","date_updated_argovis":"2023-02-01T21:30:53.615Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_067.nc","date_updated":"2015-10-19T16:12:36.000Z"}],"cycle_number":67,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,75,85,94,105,115,125,135,145,155,165,175,185,195,205,216,225,234,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,454,465,475,485,495,513,538,563,588,613,637,663,688,713,737,763,787,812,837,862,888,914,937,962,988,1013,1037,1063,1088,1113,1138,1162,1189,1212,1237,1262,1287,1312,1337,1362,1387,1412,1438,1462,1487,1512,1537,1562,1588,1612,1637,1662,1688,1713,1738,1762,1788,1813,1838,1863,1888,1912,1937,1962,1988,2012],[1.382,1.382,1.383,1.384,1.386,1.385,1.387,1.389,1.389,1.385,1.377,1.371,1.357,1.337,1.317,1.339,1.339,1.496,1.655,1.841,1.857,1.905,1.918,1.888,1.891,1.894,1.925,1.937,1.951,1.91,1.89,2.038,1.948,1.945,2.022,2.038,2.044,2.06,2.074,2.159,2.201,2.229,2.24,2.252,2.269,2.266,2.297,2.313,2.325,2.406,2.476,2.447,2.416,2.346,2.234,2.109,2.121,2.063,2.122,2.094,2.092,2.092,2.106,2.101,2.105,2.105,2.092,2.077,2.07,2.082,2.042,2.004,1.967,1.979,1.966,1.946,1.999,2.01,2.012,2.019,1.992,1.989,1.932,1.852,1.824,1.791,1.752,1.764,1.802,1.761,1.727,1.719,1.694,1.679,1.664,1.611,1.617,1.61,1.553,1.497,1.466,1.447,1.427,1.397,1.383,1.368,1.355,1.335,1.316,1.303],[33.890999,33.890999,33.890999,33.890999,33.891998,33.890999,33.890999,33.890999,33.891998,33.893002,33.896,33.896999,33.898998,33.902,33.918999,33.959,33.966,34.035999,34.101002,34.155998,34.192001,34.212002,34.227001,34.238998,34.256001,34.258999,34.268002,34.287998,34.300999,34.310001,34.320999,34.348999,34.354,34.367001,34.380001,34.389999,34.407001,34.417999,34.428001,34.452999,34.464001,34.474998,34.481998,34.487999,34.494999,34.505001,34.52,34.527,34.535,34.556,34.577,34.584,34.596001,34.605,34.605,34.605999,34.620998,34.627998,34.648998,34.657001,34.666,34.674,34.682999,34.691002,34.701,34.709,34.712002,34.715,34.716999,34.723999,34.723,34.722,34.722,34.729,34.731998,34.734001,34.747002,34.750999,34.756001,34.761002,34.763,34.764999,34.759998,34.750999,34.751999,34.751999,34.75,34.756001,34.764999,34.762001,34.761002,34.763,34.762001,34.763,34.763,34.756001,34.758999,34.759998,34.752998,34.747002,34.744999,34.743999,34.743999,34.741001,34.740002,34.740002,34.738998,34.737999,34.737,34.736]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_066","geolocation":{"type":"Point","coordinates":[34.347,-52.434000000000005]},"basin":10,"timestamp":"2007-08-27T20:06:00.000Z","date_updated_argovis":"2023-02-01T21:30:51.897Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_066.nc","date_updated":"2015-10-19T16:12:35.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,41],[1.522,1.525,1.529,1.529],[33.894001,33.894001,33.894001,33.894001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_065","geolocation":{"type":"Point","coordinates":[35.469,-51.197]},"basin":10,"timestamp":"2007-08-18T01:42:00.000Z","date_updated_argovis":"2023-02-01T21:30:50.179Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_065.nc","date_updated":"2015-10-19T16:12:35.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,95,105,115,125,135,146,155,165,176,184,195,206,215,225,235,245,255,265,275,285,295,305,315,325,335,344,355,365,375,385,395,405,414,425,436,445,455,465,475,485,495,512,537,563,588,613,638,663,687,713,738,762,788,813,838,863,888,913,937,962,987,1012,1038,1062,1088,1113,1138,1163,1189,1212,1237,1262,1287,1312,1337,1362,1388,1412,1437,1463,1488,1513,1538,1563,1588,1613,1638,1663,1687,1712,1738,1762,1787,1813,1837,1863,1888,1913,1937,1961],[1.567,1.568,1.567,1.567,1.567,1.567,1.569,1.569,1.568,1.57,1.574,1.574,1.575,1.577,1.579,1.575,1.577,1.544,1.594,1.566,1.573,1.692,1.638,1.703,1.757,1.789,1.795,2.025,2.068,2.105,2.113,2.112,2.109,2.113,2.126,2.122,2.066,2.122,2.016,2.017,2.009,2.04,2.008,2.028,2.07,2.05,2.087,2.11,2.124,2.134,2.142,2.152,2.184,2.197,2.207,2.192,2.167,2.112,2.099,2.153,2.154,2.145,2.132,2.104,2.095,2.124,2.087,1.955,1.873,1.916,1.924,1.953,1.945,1.934,1.92,1.894,1.888,1.991,1.976,1.965,1.927,1.891,1.927,1.941,1.935,1.899,1.851,1.819,1.756,1.771,1.75,1.718,1.688,1.661,1.641,1.588,1.554,1.553,1.531,1.511,1.486,1.469,1.435,1.416,1.389,1.358,1.328,1.302],[33.880001,33.880001,33.880001,33.880001,33.880001,33.880001,33.880001,33.880001,33.880001,33.880001,33.881001,33.880001,33.881001,33.882,33.887001,33.938999,34.006001,34.056999,34.077,34.104,34.147999,34.195999,34.224998,34.248001,34.271,34.282001,34.307999,34.348999,34.359001,34.366001,34.375,34.382,34.400002,34.411999,34.424999,34.436001,34.443001,34.462002,34.463001,34.472,34.479,34.493,34.504002,34.514,34.521999,34.529999,34.543999,34.549999,34.553001,34.57,34.587002,34.599998,34.617001,34.625,34.633999,34.641998,34.647999,34.650002,34.655998,34.672001,34.681999,34.687,34.695999,34.699001,34.708,34.721001,34.722,34.714001,34.712002,34.721001,34.729,34.737999,34.740002,34.741001,34.741001,34.742001,34.744999,34.764,34.765999,34.768002,34.765999,34.764,34.771,34.773998,34.775002,34.771999,34.769001,34.766998,34.763,34.77,34.769001,34.765999,34.764,34.763,34.761002,34.757,34.755001,34.756001,34.754002,34.752998,34.75,34.749001,34.748001,34.747002,34.743999,34.741001,34.737999,34.736]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_064","geolocation":{"type":"Point","coordinates":[35.432,-51.319]},"basin":10,"timestamp":"2007-08-07T20:00:00.000Z","date_updated_argovis":"2023-02-01T21:30:48.196Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_064.nc","date_updated":"2015-10-19T16:12:34.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,62],[1.672,1.674,1.675,1.673,1.673,1.674],[33.874001,33.874001,33.874001,33.873001,33.873001,33.872002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_063","geolocation":{"type":"Point","coordinates":[35.069,-50.408]},"basin":10,"timestamp":"2007-07-29T02:12:00.000Z","date_updated_argovis":"2023-02-01T21:30:46.298Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_063.nc","date_updated":"2015-10-19T16:12:33.000Z"}],"cycle_number":63,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,64,75,86,95,105,114,125,135,145,155,165,175,185,195,205,215,225,235,246,255,265,275,286,295,305,315,325,335,344,355,365,375,385,395,405,415,426,435,445,455,465,476,485,495,512,537,563,587,613,637,662,687,712,738,763,787,813,838,863,888,913,937,963,988,1012,1037,1062,1087,1112,1138,1163,1188,1213,1238,1262,1287,1312,1338,1363,1387,1412,1439,1462,1487,1512,1537,1563,1588,1612,1637,1662,1687,1712,1737,1762,1787,1813,1837,1862,1887,1913,1938,1963,1988,2013],[1.695,1.696,1.694,1.698,1.703,1.706,1.705,1.709,1.713,1.715,1.723,1.723,1.707,1.684,1.597,1.511,1.464,1.433,1.405,1.393,1.371,1.361,1.372,1.528,1.669,1.787,1.91,1.957,1.987,2.038,2.081,2.152,2.178,2.189,2.193,2.064,2.069,2.117,2.122,2.09,2.052,1.95,1.918,2.028,2.097,2.111,2.106,2.105,2.116,2.112,2.087,2.081,2.098,2.105,2.139,2.112,2.036,2.003,1.957,1.92,1.931,1.969,1.96,1.954,1.938,1.902,1.841,1.844,1.815,1.791,1.774,1.767,1.762,1.765,1.78,1.791,1.842,1.832,1.783,1.769,1.764,1.771,1.756,1.707,1.671,1.624,1.625,1.644,1.639,1.632,1.567,1.53,1.517,1.524,1.502,1.476,1.451,1.436,1.392,1.364,1.346,1.326,1.322,1.315,1.306,1.31,1.295,1.272,1.24,1.192],[33.870998,33.870998,33.870998,33.870998,33.872002,33.872002,33.872002,33.873001,33.873001,33.873001,33.874001,33.875999,33.883999,33.897999,33.952999,34.014,34.049999,34.075001,34.118,34.153999,34.181999,34.203999,34.220001,34.257999,34.283001,34.318001,34.34,34.353001,34.374001,34.389999,34.405998,34.426998,34.444,34.459,34.473999,34.466999,34.48,34.492001,34.506001,34.508999,34.507,34.507999,34.509998,34.535999,34.546001,34.549,34.550999,34.558998,34.569,34.573002,34.584999,34.592999,34.608002,34.625999,34.644001,34.658001,34.659,34.661999,34.665001,34.672001,34.685001,34.698002,34.705002,34.709,34.710999,34.713001,34.713001,34.716999,34.720001,34.720001,34.722,34.724998,34.728001,34.73,34.738998,34.743999,34.752998,34.755001,34.751999,34.751999,34.756001,34.763,34.764,34.758999,34.755001,34.751999,34.756001,34.762001,34.763,34.763,34.756001,34.752998,34.752998,34.755001,34.756001,34.755001,34.752998,34.750999,34.748001,34.747002,34.745998,34.743,34.743,34.742001,34.743,34.744999,34.744999,34.743,34.740002,34.735001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_062","geolocation":{"type":"Point","coordinates":[35.977000000000004,-50.215]},"basin":10,"timestamp":"2007-07-18T19:54:59.999Z","date_updated_argovis":"2023-02-01T21:30:44.494Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_062.nc","date_updated":"2015-10-19T16:12:33.000Z"}],"cycle_number":62,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,22],[1.664,1.674],[33.903,33.901001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_061","geolocation":{"type":"Point","coordinates":[33.281,-49.061]},"basin":3,"timestamp":"2007-07-09T01:43:00.000Z","date_updated_argovis":"2023-02-01T21:30:42.866Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_061.nc","date_updated":"2015-10-19T16:12:32.000Z"}],"cycle_number":61,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,116,125,135,145,155,165,174,184,195,206,215,225,235,245,255,265,276,286,295,305,315,325,335,345,355,364,375,386,395,405,415,425,435,445,455,464,474,485,495,512,537,563,587,612,637,663,688,712,737,763,788,813,838,863,887,912,938,962,987,1013,1037,1062,1088,1112,1137,1164,1188,1212,1238,1262,1287,1313,1337,1362,1388,1412,1438,1463,1488,1513,1538,1563,1588,1614,1637,1662,1688,1713,1737,1762,1787,1813,1838,1863,1888,1913,1938,1963,1988,2006],[2.211,2.213,2.213,2.211,2.209,2.21,2.205,2.198,2.192,2.184,2.148,2.092,2.037,2.028,2.01,1.983,1.929,1.873,1.823,1.798,1.799,1.796,1.755,1.681,1.69,1.681,1.669,1.641,1.688,1.755,1.879,1.97,2.095,2.138,2.126,2.129,2.143,2.167,2.194,2.182,2.188,2.183,2.206,2.238,2.249,2.221,2.175,2.173,2.175,2.186,2.185,2.214,2.197,2.202,2.229,2.211,2.207,2.207,2.213,2.238,2.277,2.285,2.298,2.246,2.213,2.245,2.23,2.239,2.247,2.229,2.231,2.136,2.054,2.024,2.001,1.991,1.987,1.992,1.987,1.924,1.844,1.82,1.817,1.814,1.797,1.788,1.764,1.75,1.72,1.707,1.694,1.688,1.691,1.707,1.649,1.601,1.578,1.562,1.513,1.46,1.456,1.439,1.404,1.382,1.37,1.357,1.349,1.326,1.294,1.288],[33.808998,33.808998,33.808998,33.808998,33.808998,33.808998,33.810001,33.811001,33.811001,33.812,33.817001,33.825001,33.834,33.835999,33.84,33.852001,33.877998,33.926998,33.958,33.985001,33.988998,34.014999,34.049,34.087002,34.122002,34.150002,34.161999,34.18,34.200001,34.223,34.256001,34.278999,34.298,34.310001,34.318001,34.323002,34.327,34.334,34.341,34.342999,34.356998,34.365002,34.377998,34.396,34.407001,34.408001,34.412998,34.419998,34.428001,34.441002,34.466,34.497002,34.514,34.525002,34.543999,34.553001,34.563,34.57,34.576,34.59,34.605999,34.617001,34.629002,34.632999,34.633999,34.645,34.653999,34.660999,34.674,34.685001,34.688999,34.682999,34.682999,34.683998,34.685001,34.695,34.702999,34.709,34.716,34.715,34.709999,34.713001,34.719002,34.723,34.723999,34.726002,34.723,34.723,34.723999,34.724998,34.726002,34.728001,34.731998,34.737999,34.734001,34.731998,34.733002,34.735001,34.731998,34.730999,34.730999,34.730999,34.729,34.728001,34.728001,34.727001,34.726002,34.723999,34.723,34.723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_059","geolocation":{"type":"Point","coordinates":[34.981,-50.007000000000005]},"basin":10,"timestamp":"2007-06-19T01:49:00.000Z","date_updated_argovis":"2023-02-01T21:30:41.164Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_059.nc","date_updated":"2015-10-19T16:12:31.000Z"}],"cycle_number":59,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,94,105,116,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,296,305,315,325,335,345,355,365,375,385,394,405,415,425,435,445,455,475,495,537,587,637,689,737,762,787,812,837,863,888,913,937,964,988,1013,1038,1062,1088,1113,1138,1163,1189,1213,1237,1262,1288,1313,1338,1363,1388,1412,1437,1462,1487,1512,1537,1562,1588,1614,1637,1662,1687,1712,1738,1763,1788,1813,1838,1862,1887,1912,1937,1963,1980],[2.245,2.246,2.246,2.243,2.231,2.231,2.225,2.17,2.14,2.099,2.085,2.092,2.087,1.964,1.869,1.736,1.609,1.564,1.557,1.567,1.604,1.629,1.655,1.688,1.709,1.729,1.754,1.979,2.192,2.232,2.244,2.251,2.245,2.24,2.239,2.238,2.242,2.236,2.222,2.224,2.216,2.193,2.174,2.174,2.17,2.201,2.196,2.186,2.146,2.151,2.116,2.114,2.087,2.08,2.11,2.21,2.196,2.195,2.152,2.007,2.002,2.03,1.967,1.935,1.932,1.908,1.9,1.871,1.847,1.806,1.784,1.768,1.757,1.745,1.729,1.742,1.798,1.765,1.706,1.664,1.631,1.594,1.567,1.525,1.499,1.48,1.455,1.453,1.464,1.462,1.446,1.439,1.416,1.388,1.346,1.321,1.309,1.298,1.293,1.275,1.255,1.251],[33.837002,33.837002,33.837002,33.838001,33.84,33.841,33.841,33.854,33.876999,33.901001,33.905998,33.914001,33.924,33.970001,33.998001,34.032001,34.080002,34.116001,34.151001,34.168999,34.198002,34.224998,34.243,34.262001,34.278999,34.286999,34.301998,34.346001,34.379002,34.393002,34.405998,34.418999,34.424999,34.432999,34.439999,34.448002,34.457001,34.466,34.478001,34.487,34.494999,34.5,34.504002,34.506001,34.508999,34.529999,34.537998,34.564999,34.580002,34.601002,34.625,34.644001,34.647999,34.653,34.666,34.686001,34.691002,34.695999,34.695999,34.686001,34.692001,34.702999,34.702999,34.706001,34.713001,34.714001,34.716999,34.719002,34.721001,34.721001,34.723,34.726002,34.729,34.73,34.730999,34.737,34.75,34.747002,34.742001,34.738998,34.737,34.737,34.737,34.734001,34.733002,34.733002,34.731998,34.735001,34.741001,34.742001,34.743,34.742001,34.740002,34.737999,34.736,34.734001,34.735001,34.737,34.737,34.735001,34.735001,34.736]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_058","geolocation":{"type":"Point","coordinates":[33.438,-49.444]},"basin":3,"timestamp":"2007-06-08T20:08:00.000Z","date_updated_argovis":"2023-02-01T21:30:39.469Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_058.nc","date_updated":"2015-10-19T16:12:31.000Z"}],"cycle_number":58,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,32],[2.281,2.285,2.289],[33.845001,33.845001,33.846001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_057","geolocation":{"type":"Point","coordinates":[34.339,-50.317]},"basin":10,"timestamp":"2007-05-30T01:56:00.000Z","date_updated_argovis":"2023-02-01T21:30:37.690Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_057.nc","date_updated":"2015-10-19T16:12:30.000Z"}],"cycle_number":57,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,56,65,75,86,95,105,115,125,135,145,155,165,175,186,196,205,215,226,236,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,415,425,436,446,455,465,475,485,495,512,537,562,587,612,637,663,687,713,737,763,788,813,838,862,888,913,938,962,988,1012,1037,1062,1087,1112,1138,1164,1187,1212,1237,1262,1287,1312,1337,1362,1387,1413,1437,1462,1487,1512,1537,1562,1587,1613,1638,1663,1688,1713,1737,1762,1788,1813,1838,1863,1888,1913,1938,1962],[2.313,2.314,2.317,2.318,2.32,2.32,2.322,2.316,2.32,2.306,2.259,2.19,2.12,1.988,1.861,1.749,1.619,1.492,1.429,1.432,1.477,1.908,2.109,2.108,1.908,2.1,2.226,2.26,2.259,2.283,2.294,2.306,2.304,2.316,2.316,2.308,2.347,2.329,2.3,2.237,2.194,2.219,2.305,2.156,2.137,2.171,2.179,2.31,2.342,2.315,2.268,2.261,2.267,2.263,2.258,2.191,2.185,2.241,2.167,2.138,2.166,2.187,2.215,2.168,2.191,2.327,2.284,2.297,2.294,2.253,2.17,2.057,2.084,2.07,2.064,2.049,2.04,2.026,2.026,2.006,1.98,1.958,1.923,1.891,1.868,1.851,1.854,1.862,1.808,1.774,1.781,1.758,1.694,1.683,1.665,1.635,1.617,1.589,1.572,1.559,1.541,1.554,1.571,1.55,1.524,1.489,1.483,1.454],[33.831001,33.831001,33.831001,33.831001,33.831001,33.832001,33.832001,33.835999,33.834999,33.838001,33.852001,33.889999,33.922001,33.946999,33.976002,33.993,34.014,34.034,34.042,34.076,34.117001,34.196999,34.228001,34.238998,34.237,34.275002,34.306999,34.327,34.338001,34.348999,34.360001,34.375,34.388,34.393002,34.403999,34.408001,34.418999,34.423,34.424,34.428001,34.438,34.451,34.471001,34.462002,34.471001,34.483002,34.490002,34.514,34.522999,34.532001,34.540001,34.557999,34.575001,34.585999,34.597,34.598,34.612,34.631001,34.627998,34.636002,34.648998,34.66,34.674,34.678001,34.691002,34.716999,34.716,34.723999,34.73,34.731998,34.724998,34.716999,34.724998,34.729,34.733002,34.735001,34.737999,34.740002,34.743999,34.745998,34.748001,34.748001,34.745998,34.743,34.743,34.744999,34.748001,34.754002,34.75,34.748001,34.754002,34.752998,34.747002,34.749001,34.748001,34.747002,34.748001,34.745998,34.745998,34.748001,34.749001,34.754002,34.757999,34.757,34.754002,34.751999,34.752998,34.751999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_056","geolocation":{"type":"Point","coordinates":[34.535000000000004,-50.181000000000004]},"basin":10,"timestamp":"2007-05-19T20:08:00.000Z","date_updated_argovis":"2023-02-01T21:30:35.929Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_056.nc","date_updated":"2015-10-19T16:12:29.000Z"}],"cycle_number":56,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35],[2.873,2.876,2.881],[33.789001,33.789001,33.789001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_055","geolocation":{"type":"Point","coordinates":[33.909,-50.388000000000005]},"basin":10,"timestamp":"2007-05-10T01:57:00.000Z","date_updated_argovis":"2023-02-01T21:30:34.209Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_055.nc","date_updated":"2015-10-19T16:12:29.000Z"}],"cycle_number":55,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,85,96,105,115,125,135,145,155,165,176,185,195,205,214,225,236,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,404,415,425,435,445,456,465,475,485,495,512,537,562,588,613,638,662,688,712,738,762,787,812,837,863,889,913,938,963,988,1012,1038,1063,1087,1113,1137,1163,1187,1212,1237,1262,1287,1312,1337,1362,1388,1413,1437,1462,1487,1512,1539,1563,1588,1612,1637,1662,1687,1712,1737,1763,1787,1813,1837,1862,1887,1913,1938,1964],[3.185,3.186,3.186,3.183,3.178,3.17,3.15,3.134,3.124,3.121,3.119,3.116,3.113,3.057,2.657,1.99,1.775,1.689,1.625,1.568,1.518,1.508,1.484,1.481,1.524,1.597,1.742,1.799,1.787,1.792,1.785,1.694,1.808,1.748,1.768,1.926,1.97,1.879,1.911,1.871,1.905,2.075,2.195,2.268,2.282,2.304,2.291,2.272,2.272,2.299,2.287,2.226,2.159,2.103,2.133,2.179,2.211,2.211,2.224,2.194,2.19,2.189,2.178,2.177,2.164,2.193,2.19,2.161,2.147,2.133,2.129,2.121,2.111,2.095,2.078,2.065,2.053,2.045,2.027,2.018,1.996,1.968,1.935,1.894,1.869,1.861,1.852,1.827,1.81,1.808,1.794,1.778,1.752,1.743,1.746,1.737,1.702,1.692,1.67,1.622,1.612,1.635,1.613,1.586,1.538,1.458,1.454,1.44],[33.783001,33.783001,33.784,33.784,33.785,33.786999,33.790001,33.792,33.793999,33.793999,33.793999,33.794998,33.794998,33.798,33.832001,33.91,33.942001,33.962002,33.983002,34.016998,34.049,34.073002,34.091,34.101002,34.127998,34.144001,34.174,34.189999,34.207001,34.219002,34.228001,34.240002,34.271999,34.278999,34.296001,34.323002,34.327999,34.334,34.348,34.358002,34.372002,34.407001,34.433998,34.453999,34.466,34.477001,34.483002,34.490002,34.499001,34.515999,34.528999,34.533001,34.542,34.549999,34.571999,34.594002,34.612,34.624001,34.634998,34.641998,34.650002,34.657001,34.664001,34.671001,34.678001,34.689999,34.695999,34.696999,34.702,34.709,34.714001,34.720001,34.723999,34.729,34.731998,34.734001,34.737,34.740002,34.743,34.745998,34.749001,34.750999,34.749001,34.749001,34.75,34.754002,34.757,34.757,34.757,34.758999,34.759998,34.759998,34.758999,34.759998,34.762001,34.763,34.759998,34.761002,34.759998,34.755001,34.757,34.764,34.762001,34.761002,34.756001,34.745998,34.749001,34.75]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_054","geolocation":{"type":"Point","coordinates":[33.346000000000004,-50.857]},"basin":10,"timestamp":"2007-04-29T20:09:00.000Z","date_updated_argovis":"2023-02-01T21:30:32.567Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_054.nc","date_updated":"2015-10-19T16:12:28.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,60],[3.234,3.234,3.235,3.236,3.235,3.235],[33.804001,33.804001,33.804001,33.804001,33.804001,33.804001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_053","geolocation":{"type":"Point","coordinates":[33.86,-51.348]},"basin":10,"timestamp":"2007-04-20T01:51:00.000Z","date_updated_argovis":"2023-02-01T21:30:30.749Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_053.nc","date_updated":"2015-10-19T16:12:27.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,45,54,64,75,85,95,106,116,125,135,145,155,165,176,185,195,205,214,225,236,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,396,405,415,425,435,445,455,465,475,485,495,513,538,563,587,612,639,662,688,713,738,762,788,813,837,863,888,914,937,962,987,1013,1038,1062,1089,1113,1137,1162,1187,1213,1238,1263,1288,1313,1338,1363,1387,1412,1437,1462,1487,1513,1538,1563,1589,1612,1637,1662,1688,1712,1738,1763,1787,1812,1837,1862,1887,1913,1937,1963,1977],[3.41,3.41,3.412,3.411,3.412,3.411,3.41,3.409,3.407,3.335,3.07,2.398,1.994,1.943,1.946,1.884,1.846,1.887,1.945,2.061,2.119,1.969,1.866,1.803,1.707,1.79,1.829,1.847,1.873,1.927,2,2.039,1.992,1.754,1.701,1.766,1.871,2.136,2.155,2.155,2.174,2.246,2.254,2.264,2.248,2.199,2.167,2.126,2.171,2.142,2.159,2.203,2.215,2.096,2.145,2.193,2.254,2.268,2.258,2.232,2.211,2.184,2.181,2.22,2.255,2.144,2.182,2.17,2.176,2.144,2.125,2.129,2.109,2.1,2.077,2.061,2.063,2.027,1.988,1.964,1.945,1.919,1.887,1.878,1.848,1.852,1.848,1.838,1.815,1.786,1.763,1.733,1.705,1.674,1.649,1.611,1.592,1.572,1.54,1.481,1.445,1.414,1.379,1.358,1.322,1.299,1.293,1.248,1.22],[33.801998,33.801998,33.801998,33.801998,33.801998,33.803001,33.803001,33.803001,33.803001,33.808998,33.827999,33.874001,33.91,33.938,33.951,33.959999,33.980999,34.007,34.040001,34.077,34.096001,34.102001,34.112999,34.123001,34.133999,34.166,34.182999,34.196999,34.219002,34.241001,34.259998,34.277,34.283001,34.269001,34.273998,34.299,34.32,34.355999,34.367001,34.375999,34.388,34.41,34.418999,34.429001,34.433998,34.436001,34.438999,34.443001,34.455002,34.463001,34.48,34.502998,34.516998,34.519001,34.542999,34.563,34.582001,34.595001,34.602001,34.609001,34.618,34.630001,34.643002,34.658001,34.668999,34.662998,34.68,34.688999,34.695999,34.696999,34.700001,34.709,34.713001,34.714001,34.713001,34.716999,34.724998,34.723999,34.722,34.724998,34.728001,34.729,34.730999,34.736,34.736,34.740002,34.743999,34.744999,34.743999,34.743999,34.743999,34.743,34.743,34.743,34.743,34.741001,34.741001,34.738998,34.737,34.730999,34.729,34.727001,34.726002,34.724998,34.722,34.722,34.723999,34.721001,34.719002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_052","geolocation":{"type":"Point","coordinates":[33.462,-51.692]},"basin":10,"timestamp":"2007-04-09T20:09:00.000Z","date_updated_argovis":"2023-02-01T21:30:29.008Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_052.nc","date_updated":"2015-10-19T16:12:27.000Z"}],"cycle_number":52,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44],[3.418,3.419,3.419,3.421],[33.801998,33.801998,33.801998,33.801998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_051","geolocation":{"type":"Point","coordinates":[33.484,-52.067]},"basin":10,"timestamp":"2007-03-31T02:10:00.000Z","date_updated_argovis":"2023-02-01T21:30:27.267Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_051.nc","date_updated":"2015-10-19T16:12:26.000Z"}],"cycle_number":51,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,116,125,135,145,155,165,175,186,195,205,215,225,235,246,255,265,275,285,295,305,315,325,335,345,355,365,375,384,395,406,415,425,435,445,455,465,475,485,495,513,539,562,587,612,637,662,687,712,737,764,788,813,838,863,888,912,938,962,988,1012,1037,1062,1087,1112,1137,1162,1187,1213,1237,1262,1288,1313,1338,1362,1388,1413,1438,1462,1487,1512,1538,1563,1588,1613,1638,1663,1687,1713,1737,1762,1787,1813,1837,1863,1888,1913,1938,1963,1988,2012],[3.481,3.48,3.481,3.482,3.48,3.477,3.409,3.148,2.997,2.746,2.35,2.04,1.845,1.843,1.781,1.84,1.936,1.789,1.706,1.748,1.755,1.711,1.735,1.878,1.818,1.831,1.901,1.987,2.008,2.023,2.017,2.071,2.265,2.27,2.298,2.303,2.275,1.984,1.921,1.961,2.012,2.164,2.201,2.17,1.998,1.977,2.074,2.022,2.028,2.075,2.142,2.123,2.196,2.229,2.234,2.259,2.292,2.175,2.132,2.21,2.274,2.2,2.174,2.213,2.224,2.085,2.032,2.026,2.107,2.122,2.117,2.077,2.054,2.009,2.016,2.008,1.946,1.936,1.957,1.963,1.955,1.917,1.842,1.816,1.792,1.74,1.756,1.845,1.835,1.811,1.767,1.679,1.542,1.491,1.455,1.464,1.431,1.418,1.387,1.367,1.343,1.319,1.31,1.304,1.304,1.291,1.272,1.243,1.198,1.16],[33.803001,33.803001,33.803001,33.803001,33.803001,33.803001,33.806999,33.835999,33.855999,33.859001,33.868999,33.882999,33.902,33.918999,33.931999,33.967999,33.997002,34.002998,34.019001,34.056,34.070999,34.082001,34.105999,34.141998,34.165001,34.189999,34.209999,34.229,34.237,34.25,34.259998,34.282001,34.314999,34.321999,34.332001,34.341,34.342999,34.321999,34.325001,34.345001,34.362999,34.391998,34.403999,34.405998,34.393002,34.403999,34.421001,34.421001,34.428001,34.445,34.474998,34.492001,34.514,34.529999,34.542999,34.562,34.577,34.57,34.577,34.598,34.617001,34.618999,34.625999,34.644001,34.654999,34.647999,34.651001,34.662998,34.681999,34.689999,34.694,34.693001,34.693001,34.695,34.702999,34.708,34.708,34.714001,34.723,34.73,34.731998,34.73,34.723999,34.726002,34.726002,34.724998,34.734001,34.750999,34.752998,34.752998,34.75,34.740002,34.724998,34.722,34.721001,34.726002,34.726002,34.728001,34.726002,34.727001,34.724998,34.723999,34.723999,34.723999,34.726002,34.726002,34.727001,34.726002,34.723999,34.722]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_050","geolocation":{"type":"Point","coordinates":[32.498000000000005,-52.726]},"basin":10,"timestamp":"2007-03-20T19:58:00.000Z","date_updated_argovis":"2023-02-01T21:30:25.406Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_050.nc","date_updated":"2015-10-19T16:12:26.000Z"}],"cycle_number":50,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[28],[3.078],[33.933998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_049","geolocation":{"type":"Point","coordinates":[30.409000000000002,-51.735]},"basin":10,"timestamp":"2007-03-11T02:04:00.000Z","date_updated_argovis":"2023-02-01T21:30:23.705Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_049.nc","date_updated":"2015-10-19T16:12:25.000Z"}],"cycle_number":49,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,226,235,245,255,264,275,285,295,305,315,325,335,345,355,365,375,385,395,405,416,425,435,445,455,465,475,485,495,513,537,563,587,614,638,663,688,713,737,763,788,812,838,864,888,912,938,963,988,1013,1038,1062,1087,1113,1138,1163,1189,1212,1237,1262,1287,1312,1337,1362,1387,1412,1437,1462,1487,1513,1538,1562,1588,1612,1638,1663,1688,1713,1738,1763,1788,1812,1837,1862,1887,1913,1937,1962,1983],[3.227,3.204,3.137,3.065,3.031,3.005,2.986,2.97,2.914,2.839,2.717,2.228,1.96,1.514,1.341,1.273,1.289,1.304,1.292,1.265,1.281,1.31,1.343,1.375,1.482,1.505,1.658,1.618,1.613,1.607,1.607,1.326,1.321,1.226,1.36,1.482,1.408,1.311,1.427,1.661,1.785,1.88,1.951,1.832,1.738,1.913,1.977,2.034,2.06,2.078,2.05,2.023,1.984,2.1,2.081,2.065,2.112,2.112,2.013,2.038,2.061,2.073,2.049,2.001,1.979,1.971,1.967,1.961,1.97,1.973,1.95,1.922,1.903,1.884,1.846,1.767,1.708,1.668,1.608,1.593,1.615,1.639,1.605,1.563,1.544,1.538,1.504,1.474,1.434,1.407,1.408,1.4,1.377,1.373,1.346,1.323,1.278,1.234,1.178,1.157,1.145,1.111,1.093,1.073,1.048,1.019,0.983,0.962,0.947],[33.855,33.859001,33.870998,33.881001,33.887001,33.895,33.905998,33.914001,33.938,33.959999,33.970001,34.014,34.041,34.080002,34.105999,34.126999,34.147999,34.174999,34.188999,34.208,34.228001,34.250999,34.264999,34.278999,34.303001,34.318001,34.341999,34.349998,34.359001,34.368999,34.372002,34.355,34.366001,34.372002,34.397999,34.421001,34.415001,34.415001,34.442001,34.473999,34.495998,34.515999,34.530998,34.522999,34.530998,34.554001,34.57,34.581001,34.587002,34.594002,34.602001,34.610001,34.618,34.639999,34.644001,34.650002,34.667999,34.676998,34.681,34.692001,34.698002,34.708,34.709999,34.709999,34.712002,34.714001,34.715,34.720001,34.727001,34.731998,34.735001,34.737,34.737999,34.738998,34.740002,34.736,34.735001,34.733002,34.729,34.73,34.737,34.742001,34.741001,34.737999,34.737,34.737999,34.736,34.735001,34.731998,34.73,34.733002,34.734001,34.731998,34.734001,34.734001,34.734001,34.730999,34.728001,34.723999,34.723,34.722,34.720001,34.720001,34.719002,34.716999,34.715,34.710999,34.709999,34.709]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_047","geolocation":{"type":"Point","coordinates":[30.04,-52.77]},"basin":10,"timestamp":"2007-02-19T02:05:00.000Z","date_updated_argovis":"2023-02-01T21:30:22.001Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_047.nc","date_updated":"2015-10-19T16:12:24.000Z"}],"cycle_number":47,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,256,265,275,285,295,305,315,325,334,345,355,365,375,385,395,405,415,425,436,445,455,465,475,485,495,513,537,562,587,612,637,662,688,713,738,762,787,812,837,862,887,914,937,963,988,1013,1038,1063,1087,1112,1138,1162,1188,1212,1238,1263,1287,1312,1337,1362,1387,1412,1438,1463,1489,1513,1538,1562,1587,1613,1638,1663,1688,1712,1738,1763,1788,1813,1837,1862,1887,1913,1937,1962,1987,2013],[3.242,3.243,3.19,3.085,2.87,2.403,1.808,1.61,1.428,1.393,1.394,1.379,1.286,1.453,1.192,1.271,1.575,1.776,1.897,1.727,1.651,1.616,1.627,1.746,1.838,2.033,2.111,2.134,2.14,2.117,2.088,2.107,2.122,2.07,2.117,2.172,2.156,2.165,2.179,2.169,2.171,2.182,2.18,2.186,2.172,2.178,2.187,2.201,2.174,2.156,2.139,2.128,2.122,2.127,2.145,2.162,2.194,2.093,2.047,2.031,2.024,1.995,1.991,2.001,1.992,1.973,1.97,1.977,1.949,1.946,1.919,1.887,1.873,1.855,1.801,1.785,1.775,1.757,1.744,1.736,1.758,1.785,1.774,1.746,1.721,1.618,1.568,1.541,1.511,1.488,1.46,1.427,1.399,1.383,1.366,1.33,1.289,1.264,1.24,1.226,1.194,1.152,1.132,1.112,1.096,1.084,1.069,1.044,1.002,0.988],[33.957001,33.957001,33.983002,34.021,34.035999,34.051998,34.097,34.122002,34.145,34.173,34.195999,34.214001,34.231998,34.266998,34.261002,34.283001,34.326,34.359001,34.380001,34.375,34.379002,34.388,34.396,34.417,34.439999,34.469002,34.48,34.487,34.494999,34.499001,34.507,34.516998,34.526001,34.528,34.542999,34.556999,34.563999,34.574001,34.582001,34.587002,34.59,34.601002,34.608002,34.612,34.615002,34.619999,34.625999,34.632,34.633999,34.638,34.646999,34.655998,34.667999,34.679001,34.693001,34.701,34.713001,34.706001,34.709,34.716,34.723999,34.726002,34.730999,34.737999,34.743,34.743999,34.749001,34.752998,34.754002,34.755001,34.755001,34.754002,34.755001,34.757,34.752998,34.752998,34.755001,34.755001,34.756001,34.757999,34.764999,34.771,34.771999,34.771999,34.77,34.757,34.752998,34.751999,34.75,34.748001,34.745998,34.744999,34.742001,34.741001,34.740002,34.737,34.735001,34.734001,34.731998,34.731998,34.73,34.727001,34.726002,34.724998,34.723999,34.723999,34.723,34.722,34.717999,34.717999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_045","geolocation":{"type":"Point","coordinates":[31.310000000000002,-51.155]},"basin":10,"timestamp":"2007-01-30T01:53:00.000Z","date_updated_argovis":"2023-02-01T21:30:20.185Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_045.nc","date_updated":"2015-10-19T16:12:24.000Z"}],"cycle_number":45,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,206,216,225,235,245,255,265,275,286,296,305,315,325,335,346,355,364,375,385,394,405,416,425,435,445,455,465,475,485,495,512,538,563,588,612,638,663,688,713,738,763,787,813,837,862,888,914,937,962,988,1013,1038,1062,1087,1112,1138,1162,1187,1212,1237,1262,1287,1312,1338,1362,1388,1412,1438,1462,1487,1513,1538,1563,1587,1612,1637,1663,1688,1712,1737,1763,1788,1812,1838,1862,1887,1912,1937,1962,1980],[3.03,3.031,3.032,3.026,2.891,2.731,2.604,2.137,1.757,1.541,1.42,1.349,1.327,1.351,1.379,1.358,1.319,1.445,1.319,1.282,1.298,1.426,1.445,1.477,1.226,1.219,1.26,1.269,1.285,1.294,1.306,1.375,1.411,1.804,2.012,2.101,2.177,2.193,2.2,2.207,2.21,2.197,2.193,2.188,2.176,2.163,2.162,2.172,2.183,2.18,2.168,2.162,2.171,2.179,2.145,2.131,2.129,2.13,2.188,2.228,2.261,2.246,2.221,2.201,2.2,2.191,2.173,2.105,1.925,2.003,2.015,1.974,1.957,1.948,1.913,1.899,1.894,1.83,1.754,1.671,1.676,1.7,1.646,1.595,1.53,1.504,1.515,1.573,1.554,1.404,1.391,1.379,1.408,1.411,1.376,1.369,1.348,1.31,1.285,1.253,1.221,1.197,1.176,1.158,1.125,1.111,1.127,1.102,1.093],[33.919998,33.919998,33.919998,33.919998,33.918999,33.924999,33.93,33.966,34.015999,34.035999,34.056999,34.070999,34.092999,34.113998,34.136002,34.154999,34.167,34.193001,34.195,34.203999,34.216999,34.249001,34.264,34.282001,34.273998,34.284,34.297001,34.308998,34.325001,34.338001,34.353001,34.362999,34.380001,34.438999,34.465,34.484001,34.498001,34.507,34.518002,34.526001,34.533001,34.541,34.548,34.556999,34.562,34.563999,34.569,34.575001,34.583,34.59,34.598999,34.612,34.623001,34.634998,34.647999,34.658001,34.667999,34.675999,34.693001,34.705002,34.717999,34.723,34.724998,34.731998,34.737999,34.743,34.745998,34.742001,34.724998,34.743,34.747002,34.744999,34.748001,34.75,34.748001,34.751999,34.756001,34.75,34.742001,34.734001,34.738998,34.744999,34.740002,34.735001,34.73,34.729,34.733002,34.744999,34.743999,34.726002,34.727001,34.728001,34.734001,34.737999,34.736,34.737,34.737,34.735001,34.734001,34.730999,34.729,34.728001,34.726002,34.726002,34.723,34.723999,34.729,34.728001,34.727001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_044","geolocation":{"type":"Point","coordinates":[29.107000000000003,-51.155]},"basin":10,"timestamp":"2007-01-19T20:12:00.000Z","date_updated_argovis":"2023-02-01T21:30:18.435Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_044.nc","date_updated":"2015-10-19T16:12:23.000Z"}],"cycle_number":44,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,41],[2.786,2.789,2.79,2.757],[33.858002,33.858002,33.856998,33.859001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_043","geolocation":{"type":"Point","coordinates":[30.810000000000002,-51.241]},"basin":10,"timestamp":"2007-01-10T02:06:00.000Z","date_updated_argovis":"2023-02-01T21:30:16.635Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_043.nc","date_updated":"2015-10-19T16:12:22.000Z"}],"cycle_number":43,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,236,245,255,265,275,285,295,306,316,325,334,345,355,365,375,385,395,405,415,425,435,446,455,464,475,485,495,513,538,563,588,613,637,662,688,712,738,763,787,812,838,863,887,913,939,962,987,1012,1037,1062,1088,1113,1138,1163,1188,1213,1237,1262,1287,1312,1338,1363,1388,1413,1438,1462,1488,1513,1538,1562,1587,1612,1638,1663,1687,1712,1737,1762,1788,1813,1838,1863,1887,1912,1937,1962,1987,2013],[3.482,3.464,3.294,2.935,2.735,2.589,2.11,1.701,1.352,1.207,1.176,1.026,1.023,1.002,0.977,1.01,1.083,1.217,1.31,1.5,1.628,1.508,1.52,1.564,1.608,1.476,1.596,1.814,1.917,1.91,1.924,1.862,1.884,1.982,2.022,2.03,2.125,2.152,2.144,2.062,2.203,2.287,2.276,2.212,2.211,2.162,2.153,2.183,2.199,2.248,2.241,2.258,2.262,2.255,2.235,2.161,2.085,2.059,2.041,2.025,2.058,2.125,2.195,2.184,2.176,2.116,2.108,2.084,2.053,2.044,2.015,2.009,1.983,1.942,1.906,1.877,1.864,1.838,1.802,1.764,1.73,1.723,1.693,1.69,1.673,1.662,1.617,1.588,1.592,1.573,1.536,1.522,1.5,1.472,1.447,1.425,1.386,1.348,1.325,1.291,1.246,1.219,1.204,1.194,1.182,1.161,1.153,1.134,1.107,1.091],[33.851002,33.849998,33.861,33.882999,33.889,33.895,33.932999,33.969002,33.999001,34.030998,34.049,34.063,34.089001,34.105999,34.124001,34.150002,34.168999,34.191002,34.219002,34.256001,34.276001,34.278,34.298,34.312,34.325001,34.333,34.355999,34.389999,34.407001,34.417,34.43,34.435001,34.449001,34.469002,34.484001,34.492001,34.506001,34.514,34.514999,34.518002,34.544998,34.558998,34.562,34.561001,34.564999,34.564999,34.573002,34.584,34.591999,34.605,34.617001,34.626999,34.639999,34.646999,34.654999,34.659,34.664001,34.672001,34.676998,34.681999,34.696999,34.710999,34.728001,34.730999,34.735001,34.731998,34.736,34.737,34.737999,34.741001,34.743,34.744999,34.747002,34.747002,34.748001,34.749001,34.75,34.749001,34.749001,34.75,34.749001,34.75,34.749001,34.752998,34.752998,34.754002,34.75,34.749001,34.751999,34.750999,34.748001,34.749001,34.748001,34.745998,34.745998,34.744999,34.741001,34.737999,34.736,34.731998,34.729,34.727001,34.728001,34.728001,34.727001,34.726002,34.726002,34.726002,34.723999,34.723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_042","geolocation":{"type":"Point","coordinates":[31.846,-51.098]},"basin":10,"timestamp":"2006-12-30T20:06:00.000Z","date_updated_argovis":"2023-02-01T21:30:14.916Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_042.nc","date_updated":"2015-10-19T16:12:22.000Z"}],"cycle_number":42,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,33],[2.789,2.752,2.629],[33.855999,33.859001,33.872002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_041","geolocation":{"type":"Point","coordinates":[31.921000000000003,-51.26]},"basin":10,"timestamp":"2006-12-21T02:00:00.000Z","date_updated_argovis":"2023-02-01T21:30:13.096Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_041.nc","date_updated":"2015-10-19T16:12:21.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,124,135,145,156,166,176,185,195,206,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,376,385,395,405,415,425,436,445,455,465,475,485,496,513,538,563,587,612,637,663,687,712,738,762,788,813,837,862,889,912,937,963,988,1012,1037,1062,1087,1113,1137,1162,1188,1213,1238,1263,1288,1313,1337,1363,1387,1413,1437,1462,1487,1512,1538,1563,1587,1613,1638,1662,1688,1713,1738,1762,1788,1813,1838,1863,1888,1912,1937,1962,1979],[2.175,2.162,2.122,2.099,2.081,2.061,2.028,1.973,1.938,1.868,1.615,1.411,1.136,0.976,0.954,0.944,1.06,1.105,1.108,1.161,1.276,1.353,1.368,1.419,1.335,1.311,1.488,1.507,1.544,1.589,1.601,1.685,1.85,1.977,1.998,1.998,1.99,1.982,1.991,2.004,1.977,1.973,2.014,2.063,2.134,2.13,2.108,2.136,2.166,2.186,2.201,2.222,2.229,2.217,2.224,2.207,2.144,2.125,2.032,2.053,2.124,2.122,2.105,2.05,2.035,2.05,2.031,1.933,1.91,1.907,1.916,1.869,1.956,1.957,1.953,1.939,1.954,1.925,1.843,1.786,1.758,1.714,1.692,1.722,1.713,1.725,1.773,1.657,1.719,1.738,1.7,1.631,1.583,1.58,1.624,1.637,1.622,1.601,1.577,1.539,1.513,1.497,1.455,1.401,1.344,1.333,1.324,1.307,1.277],[33.863998,33.866001,33.875999,33.882999,33.889999,33.894001,33.895,33.902,33.909,33.917,33.919998,33.922001,33.931999,33.943001,33.973999,33.993999,34.021999,34.034,34.044998,34.064999,34.092999,34.112999,34.139999,34.167,34.173,34.202,34.237,34.247002,34.264,34.283001,34.297001,34.314999,34.34,34.363998,34.376999,34.384998,34.389,34.396999,34.41,34.418999,34.425999,34.435001,34.449001,34.459999,34.477001,34.488998,34.492001,34.504002,34.511002,34.522999,34.540001,34.553001,34.563999,34.576,34.591,34.605999,34.608002,34.613998,34.617001,34.629002,34.651001,34.66,34.669998,34.673,34.681,34.688999,34.692001,34.686001,34.688999,34.694,34.700001,34.702,34.720001,34.723,34.727001,34.729,34.736,34.735001,34.729,34.724998,34.724998,34.723999,34.727001,34.735001,34.737,34.743,34.751999,34.738998,34.750999,34.757999,34.754002,34.747002,34.743,34.745998,34.755001,34.762001,34.762001,34.759998,34.757999,34.754002,34.750999,34.75,34.745998,34.741001,34.736,34.737999,34.738998,34.737999,34.736]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_040","geolocation":{"type":"Point","coordinates":[30.933,-52.024]},"basin":10,"timestamp":"2006-12-10T20:01:00.000Z","date_updated_argovis":"2023-02-01T21:30:11.407Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_040.nc","date_updated":"2015-10-19T16:12:20.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[26],[2.144],[33.945]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_039","geolocation":{"type":"Point","coordinates":[31.532,-52.845000000000006]},"basin":10,"timestamp":"2006-12-01T02:07:00.000Z","date_updated_argovis":"2023-02-01T21:30:09.676Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_039.nc","date_updated":"2015-10-19T16:12:20.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,45,55,65,75,85,95,105,115,125,135,145,155,165,176,185,195,206,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,375,384,395,405,414,425,436,445,455,465,475,485,495,512,537,563,588,612,637,664,687,713,738,763,788,813,838,863,887,912,938,962,987,1013,1037,1063,1088,1113,1137,1162,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1437,1463,1488,1512,1537,1562,1588,1612,1637,1662,1687,1712,1738,1763,1788,1812,1837,1862,1888,1913,1938,1963,1988,2010],[1.898,1.898,1.797,1.646,1.401,1.09,0.936,0.822,0.834,0.795,0.743,0.755,0.874,0.988,0.738,0.818,0.772,0.713,0.673,0.702,0.965,1.098,1.224,1.328,1.363,1.411,1.522,1.62,1.729,1.802,1.738,1.679,1.778,1.811,1.797,1.854,1.933,1.95,1.959,1.968,1.972,1.94,1.897,1.948,2.086,2.121,2.131,2.16,2.171,2.287,2.282,2.262,2.187,2.116,2.068,1.912,1.851,1.968,1.983,1.982,1.981,1.923,1.887,1.921,1.937,1.899,1.877,1.886,1.904,1.932,1.908,1.87,1.846,1.814,1.764,1.741,1.736,1.731,1.72,1.706,1.672,1.625,1.581,1.552,1.514,1.475,1.453,1.42,1.382,1.329,1.302,1.286,1.27,1.244,1.229,1.213,1.192,1.173,1.148,1.137,1.108,1.089,1.084,1.056,1.031,1.014,0.993,0.972,0.941,0.917],[33.929001,33.929001,33.939999,33.970001,34.021,34.058998,34.074001,34.094002,34.102001,34.112,34.125,34.139999,34.167,34.196999,34.202,34.231998,34.242001,34.243,34.243999,34.265999,34.301998,34.319,34.334999,34.354,34.363998,34.376999,34.397999,34.429001,34.450001,34.471001,34.472,34.478001,34.5,34.507,34.514,34.530998,34.548,34.553001,34.560001,34.567001,34.57,34.574001,34.580002,34.594002,34.616001,34.625999,34.632999,34.640999,34.644001,34.665001,34.672001,34.679001,34.675999,34.674999,34.674999,34.668999,34.673,34.696999,34.703999,34.710999,34.716,34.715,34.716999,34.728001,34.733002,34.735001,34.736,34.742001,34.749001,34.755001,34.756001,34.754002,34.754002,34.752998,34.750999,34.750999,34.752998,34.752998,34.755001,34.756001,34.752998,34.749001,34.747002,34.743999,34.742001,34.740002,34.740002,34.738998,34.737,34.731998,34.73,34.73,34.73,34.729,34.729,34.728001,34.727001,34.726002,34.724998,34.723999,34.723,34.722,34.722,34.720001,34.717999,34.716999,34.716,34.714001,34.712002,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_037","geolocation":{"type":"Point","coordinates":[31.933,-51.652]},"basin":10,"timestamp":"2006-11-11T02:01:00.000Z","date_updated_argovis":"2023-02-01T21:30:07.830Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_037.nc","date_updated":"2015-10-19T16:12:19.000Z"}],"cycle_number":37,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,166,175,185,195,205,215,225,235,244,255,265,275,285,295,305,315,325,336,345,355,365,375,384,395,405,414,424,435,445,455,465,475,485,495,512,537,563,588,612,638,663,689,712,738,763,788,812,837,862,888,913,937,962,987,1013,1038,1062,1088,1112,1138,1163,1188,1213,1238,1262,1288,1313,1338,1363,1388,1414,1438,1463,1487,1512,1537,1562,1588,1613,1638,1663,1687,1713,1737,1762,1787,1813,1837,1862,1888,1913,1938,1963,1988,2004],[1.504,1.504,1.506,1.504,1.479,1.475,1.465,1.476,1.409,0.927,0.851,0.774,0.723,0.675,0.654,0.611,0.629,0.671,0.766,0.845,0.959,1.009,1.046,1.155,1.319,1.391,1.457,1.478,1.53,1.592,1.682,1.766,1.865,1.838,1.757,1.752,1.767,1.849,1.929,1.915,1.903,1.89,1.866,1.801,1.847,1.819,1.826,1.98,1.996,2.019,2.079,2.075,2.09,1.997,2.008,2.043,1.979,1.981,1.984,2.014,2.01,1.955,1.947,1.954,2.054,2.113,2.145,2.152,2.141,2.143,2.144,2.139,2.094,2.045,1.991,1.897,1.832,1.801,1.799,1.858,1.824,1.782,1.736,1.693,1.673,1.658,1.65,1.634,1.588,1.55,1.518,1.502,1.489,1.489,1.464,1.418,1.365,1.333,1.292,1.269,1.242,1.23,1.218,1.206,1.183,1.145,1.136,1.115,1.087,1.069],[33.887001,33.889,33.897999,33.917,33.917,33.917,33.917999,33.922001,33.924999,33.974998,33.985001,34.004002,34.028,34.050999,34.082001,34.095001,34.122002,34.147999,34.174,34.195999,34.226002,34.247002,34.262001,34.286999,34.324001,34.342999,34.362999,34.375,34.389,34.409,34.431,34.448002,34.469002,34.471001,34.480999,34.486,34.494999,34.514,34.529999,34.539001,34.542,34.542999,34.544998,34.550999,34.568001,34.574001,34.584999,34.609001,34.612999,34.625999,34.644001,34.652,34.661999,34.66,34.667999,34.681999,34.683998,34.688999,34.695999,34.709,34.713001,34.712002,34.716,34.721001,34.742001,34.754002,34.762001,34.765999,34.769001,34.771999,34.773998,34.775002,34.771999,34.766998,34.761002,34.750999,34.744999,34.747002,34.751999,34.764,34.762001,34.758999,34.757,34.755001,34.754002,34.754002,34.755001,34.755001,34.752998,34.75,34.747002,34.745998,34.748001,34.75,34.749001,34.743999,34.740002,34.737,34.733002,34.731998,34.73,34.730999,34.730999,34.73,34.729,34.727001,34.727001,34.726002,34.723,34.722]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_036","geolocation":{"type":"Point","coordinates":[32.348,-50.592000000000006]},"basin":10,"timestamp":"2006-10-31T20:02:00.000Z","date_updated_argovis":"2023-02-01T21:30:06.018Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_036.nc","date_updated":"2015-10-19T16:12:18.000Z"}],"cycle_number":36,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[13],[1.346],[33.943001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_035","geolocation":{"type":"Point","coordinates":[31.834000000000003,-50.74]},"basin":10,"timestamp":"2006-10-22T02:08:00.000Z","date_updated_argovis":"2023-02-01T21:30:04.290Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_035.nc","date_updated":"2015-10-19T16:12:18.000Z"}],"cycle_number":35,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,216,225,235,245,255,265,275,285,295,305,315,325,335,345,356,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,538,563,587,612,637,663,688,713,737,762,787,812,837,863,889,912,937,962,987,1013,1037,1062,1088,1113,1138,1164,1187,1212,1237,1263,1288,1312,1338,1362,1387,1412,1437,1462,1487,1512,1538,1563,1588,1613,1637,1662,1688,1712,1738,1762,1787,1812,1838,1863,1888,1913,1937,1962,1987,2014],[1.054,1.054,1.05,1.049,1.044,1.012,0.987,0.964,0.958,0.948,0.917,0.87,0.842,0.724,0.712,0.711,0.669,0.677,0.731,0.924,1.08,1.3,1.453,1.519,1.538,1.638,1.673,1.854,1.928,1.87,1.837,1.858,1.747,1.635,1.851,1.87,1.863,1.896,1.88,1.887,1.876,1.865,1.866,1.879,1.931,2.005,2.073,2.063,1.919,1.886,1.869,1.873,1.837,1.834,1.863,1.907,1.76,1.779,1.809,1.826,1.825,1.786,1.783,1.74,1.717,1.735,1.734,1.716,1.671,1.665,1.657,1.619,1.583,1.565,1.547,1.498,1.47,1.47,1.453,1.426,1.398,1.378,1.36,1.341,1.325,1.294,1.26,1.246,1.248,1.253,1.247,1.239,1.237,1.233,1.233,1.23,1.204,1.179,1.159,1.129,1.102,1.076,1.034,0.999,0.972,0.93,0.891,0.849,0.836,0.822],[33.959,33.959,33.959,33.959999,33.959999,33.960999,33.962002,33.963001,33.964001,33.966,33.972,33.98,33.986,34.016998,34.057999,34.101002,34.137001,34.162998,34.198002,34.234001,34.264,34.308998,34.342999,34.365002,34.376999,34.403,34.414001,34.448002,34.462002,34.462002,34.466,34.474998,34.473999,34.479,34.514,34.519001,34.521999,34.535,34.537998,34.549999,34.556,34.561001,34.57,34.574001,34.588001,34.598999,34.610001,34.609001,34.598,34.603001,34.611,34.625999,34.633999,34.646,34.658001,34.672001,34.665001,34.685001,34.695999,34.705002,34.709999,34.709,34.712002,34.714001,34.716999,34.722,34.723999,34.723,34.723,34.723,34.723,34.723,34.723999,34.726002,34.727001,34.724998,34.727001,34.731998,34.731998,34.730999,34.729,34.729,34.728001,34.728001,34.728001,34.726002,34.723,34.723,34.723999,34.727001,34.728001,34.728001,34.729,34.73,34.731998,34.731998,34.730999,34.73,34.728001,34.726002,34.723999,34.722,34.717999,34.716,34.715,34.712002,34.709,34.706001,34.707001,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_034","geolocation":{"type":"Point","coordinates":[31.564,-51.26]},"basin":10,"timestamp":"2006-10-11T20:02:00.000Z","date_updated_argovis":"2023-02-01T21:30:02.269Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_034.nc","date_updated":"2015-10-19T16:12:17.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,31],[1.259,1.259,1.257],[33.897999,33.897999,33.898998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_033","geolocation":{"type":"Point","coordinates":[33.02,-49.64]},"basin":3,"timestamp":"2006-10-02T02:02:59.999Z","date_updated_argovis":"2023-02-01T21:30:00.409Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_033.nc","date_updated":"2015-10-19T16:12:16.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,45,55,66,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,424,435,445,455,465,475,485,495,512,537,562,587,614,637,662,688,712,738,763,787,813,838,863,887,914,937,963,987,1012,1037,1062,1088,1114,1138,1162,1187,1212,1237,1262,1287,1312,1338,1363,1388,1414,1437,1462,1488,1512,1537,1563,1587,1612,1638,1662,1688,1712,1737,1762,1787,1812,1838,1863,1889,1912,1937,1962,1987,2006],[1.068,1.054,1.03,1.003,0.93,0.888,0.81,0.771,0.757,0.824,0.659,0.587,0.538,0.517,0.516,0.495,0.484,0.519,0.521,0.547,0.651,0.801,0.867,0.861,0.906,0.976,1.267,1.369,1.36,1.6,1.657,1.63,1.517,1.456,1.474,1.474,1.521,1.575,1.607,1.644,1.683,1.703,1.722,1.732,1.74,1.753,1.745,1.765,1.759,1.765,1.776,1.787,1.791,1.786,1.784,1.781,1.836,1.854,1.807,1.782,1.752,1.722,1.71,1.694,1.673,1.635,1.604,1.568,1.573,1.571,1.554,1.539,1.511,1.496,1.479,1.461,1.439,1.411,1.374,1.367,1.357,1.342,1.332,1.308,1.274,1.239,1.218,1.195,1.156,1.144,1.139,1.131,1.107,1.081,1.052,1.027,1.01,1.006,1,0.996,0.981,0.967,0.95,0.939,0.931,0.91,0.891,0.876,0.86,0.845],[33.911999,33.915001,33.917999,33.921001,33.932999,33.942001,33.942001,33.956001,33.980999,34.005001,34.019001,34.041,34.080002,34.111,34.132,34.154999,34.166,34.188,34.205002,34.216,34.241001,34.275002,34.292,34.303001,34.32,34.345001,34.390999,34.409,34.426998,34.463001,34.472,34.473999,34.467999,34.477001,34.490002,34.498001,34.515999,34.533001,34.542,34.551998,34.558998,34.564999,34.573002,34.580002,34.589001,34.595001,34.601002,34.609001,34.612999,34.622002,34.634998,34.646,34.652,34.66,34.667,34.672001,34.687,34.693001,34.692001,34.693001,34.695,34.698002,34.702,34.706001,34.709,34.713001,34.712002,34.716999,34.720001,34.722,34.723,34.723,34.723,34.723999,34.724998,34.724998,34.724998,34.723999,34.722,34.722,34.723,34.723999,34.724998,34.726002,34.726002,34.723999,34.723999,34.723,34.722,34.722,34.723,34.723999,34.722,34.720001,34.717999,34.716999,34.716,34.716,34.716,34.716,34.715,34.714001,34.714001,34.713001,34.713001,34.712002,34.710999,34.709999,34.709,34.709]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_032","geolocation":{"type":"Point","coordinates":[33.156,-49.976]},"basin":3,"timestamp":"2006-09-21T20:15:00.000Z","date_updated_argovis":"2023-02-01T21:29:58.696Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_032.nc","date_updated":"2015-10-19T16:12:15.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35],[0.685,0.686,0.686],[33.959,33.959,33.959]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_031","geolocation":{"type":"Point","coordinates":[32.777,-50.523]},"basin":10,"timestamp":"2006-09-12T01:57:00.000Z","date_updated_argovis":"2023-02-01T21:29:56.938Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_031.nc","date_updated":"2015-10-19T16:12:15.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,84,95,106,115,126,135,144,155,165,175,185,195,205,215,225,235,245,256,265,275,285,295,305,315,325,335,344,355,365,375,385,395,405,415,425,434,445,456,465,475,485,495,512,538,563,587,612,638,662,688,712,737,762,788,813,839,862,888,912,938,963,988,1013,1038,1063,1087,1113,1137,1163,1187,1212,1237,1262,1287,1314,1338,1362,1387,1412,1437,1462,1487,1512,1537,1563,1588,1612,1637,1662,1687,1713,1738,1764,1788,1813,1838,1862,1888,1913,1938,1963,1980],[1.266,1.268,1.267,1.261,1.262,1.263,1.162,1.062,0.986,1.002,0.919,0.997,1.089,1.114,1.129,0.885,1.356,1.727,1.53,1.913,2.037,2.103,2.007,2.1,2.154,2.188,2.194,2.163,2.14,2.198,2.243,2.203,2.195,2.227,2.246,2.245,2.237,2.228,2.222,2.218,2.215,2.219,2.24,2.256,2.258,2.273,2.286,2.28,2.268,2.259,2.263,2.278,2.262,2.274,2.3,2.31,2.3,2.302,2.291,2.263,2.25,2.266,2.281,2.279,2.27,2.262,2.253,2.249,2.245,2.228,2.211,2.184,2.154,2.122,2.099,2.076,2.053,2.024,2.014,1.99,1.972,1.959,1.956,1.948,1.922,1.874,1.847,1.821,1.797,1.77,1.748,1.712,1.673,1.627,1.597,1.539,1.505,1.48,1.459,1.447,1.435,1.435,1.435,1.429,1.417,1.386,1.341,1.282,1.245],[33.831001,33.831001,33.831001,33.834,33.833,33.833,33.863998,33.887001,33.909,33.915001,33.912998,33.925999,33.939999,33.963001,33.981998,33.983002,34.040001,34.095001,34.097,34.187,34.229,34.254002,34.265999,34.291,34.308998,34.325001,34.333,34.337002,34.344002,34.360001,34.369999,34.376999,34.389,34.404999,34.417,34.423,34.431,34.436001,34.441002,34.456001,34.470001,34.477001,34.493,34.501999,34.506001,34.52,34.533001,34.537998,34.541,34.549,34.569,34.582001,34.589001,34.602001,34.616001,34.632999,34.646,34.654999,34.661999,34.667999,34.674999,34.682999,34.694,34.698002,34.703999,34.709,34.719002,34.727001,34.730999,34.735001,34.738998,34.738998,34.741001,34.742001,34.743,34.743,34.743999,34.745998,34.749001,34.752998,34.755001,34.756001,34.756001,34.757,34.756001,34.756001,34.756001,34.757,34.757,34.756001,34.757,34.756001,34.754002,34.751999,34.75,34.745998,34.743999,34.743,34.743,34.743999,34.744999,34.745998,34.747002,34.747002,34.747002,34.745998,34.742001,34.735001,34.731998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_030","geolocation":{"type":"Point","coordinates":[29.285,-50.797000000000004]},"basin":10,"timestamp":"2006-09-01T20:15:00.000Z","date_updated_argovis":"2023-02-01T21:29:55.067Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_030.nc","date_updated":"2015-10-19T16:12:14.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,56,60],[0.835,0.835,0.836,0.837,0.837,0.836],[33.833,33.833,33.833,33.833,33.833,33.834]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_029","geolocation":{"type":"Point","coordinates":[27.026,-50.052]},"basin":10,"timestamp":"2006-08-23T02:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:53.298Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_029.nc","date_updated":"2015-10-19T16:12:13.000Z"}],"cycle_number":29,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,95,105,115,125,135,145,155,165,175,186,195,205,215,225,235,245,256,265,275,285,295,305,315,325,335,345,355,365,375,386,395,405,415,425,435,445,455,465,475,486,495,513,538,562,588,613,637,663,688,714,738,763,787,812,838,863,887,913,937,962,987,1013,1038,1062,1087,1112,1138,1163,1188,1212,1237,1262,1287,1312,1338,1363,1387,1413,1438,1462,1487,1512,1537,1562,1588,1613,1637,1662,1687,1712,1737,1762,1787,1812,1837,1862,1887,1913,1938,1962,1988,2015],[0.912,0.911,0.912,0.912,0.912,0.912,0.913,0.913,0.914,0.915,0.91,0.918,1.186,1.358,1.512,1.798,1.94,1.972,1.96,1.936,1.976,2.023,2.128,2.104,2.128,2.171,2.206,2.207,2.226,2.209,2.209,2.209,2.216,2.233,2.228,2.222,2.234,2.237,2.244,2.247,2.248,2.256,2.26,2.268,2.274,2.278,2.283,2.273,2.274,2.264,2.234,2.234,2.235,2.252,2.264,2.267,2.262,2.295,2.309,2.314,2.312,2.313,2.31,2.321,2.312,2.284,2.271,2.261,2.26,2.254,2.25,2.258,2.204,2.183,2.165,2.152,2.13,2.118,2.066,2.041,2.028,2.026,2.017,1.989,1.976,1.968,1.961,1.934,1.903,1.87,1.851,1.834,1.809,1.784,1.749,1.737,1.687,1.652,1.618,1.591,1.555,1.542,1.504,1.551,1.53,1.514,1.497,1.47,1.431,1.389],[33.811001,33.811001,33.808998,33.811001,33.811001,33.812,33.812,33.812,33.812,33.813,33.814999,33.842999,33.921001,33.971001,34.012001,34.075001,34.120998,34.138,34.153,34.176998,34.194,34.214001,34.240002,34.245998,34.261002,34.286999,34.300999,34.319,34.331001,34.337002,34.348,34.366001,34.379002,34.389999,34.396,34.404999,34.416,34.428001,34.437,34.444,34.456001,34.466,34.473,34.485001,34.493999,34.500999,34.509998,34.514,34.52,34.528999,34.542,34.556,34.568001,34.582001,34.596001,34.608002,34.618999,34.636002,34.646,34.654999,34.661999,34.672001,34.681999,34.694,34.699001,34.702,34.707001,34.713001,34.719002,34.723,34.729,34.733002,34.731998,34.736,34.741001,34.745998,34.75,34.752998,34.751999,34.750999,34.751999,34.755001,34.756001,34.756001,34.756001,34.757999,34.759998,34.759998,34.758999,34.758999,34.758999,34.757999,34.757999,34.757,34.756001,34.757,34.752998,34.751999,34.749001,34.748001,34.744999,34.745998,34.743,34.754002,34.752998,34.751999,34.751999,34.75,34.745998,34.743]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_027","geolocation":{"type":"Point","coordinates":[26.859,-48.800000000000004]},"basin":3,"timestamp":"2006-08-03T02:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:51.598Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_027.nc","date_updated":"2015-10-19T16:12:13.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,75,84,95,105,114,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,454,465,475,485,495,513,537,563,587,612,638,662,687,712,737,763,787,812,837,862,887,912,939,963,988,1013,1038,1062,1087,1112,1137,1162,1187,1213,1238,1262,1288,1313,1338,1363,1388,1412,1439,1462,1487,1512,1537,1562,1587,1612,1639,1662,1688,1712,1737,1762,1787,1812,1837,1862,1887,1912,1938,1962,1988,2012],[1.72,1.721,1.722,1.723,1.716,1.679,1.654,1.606,1.551,1.494,1.451,1.336,1.274,1.028,0.856,0.827,0.859,0.879,1.065,1.559,1.736,1.694,1.693,1.741,1.758,1.763,1.777,1.846,2.013,2.132,2.134,2.077,2.1,2.274,2.28,2.245,2.241,2.239,2.236,2.253,2.248,2.26,2.26,2.246,2.257,2.263,2.263,2.257,2.253,2.254,2.264,2.261,2.246,2.223,2.267,2.277,2.282,2.289,2.285,2.264,2.254,2.25,2.191,2.261,2.304,2.294,2.298,2.304,2.296,2.289,2.294,2.291,2.281,2.288,2.268,2.268,2.245,2.217,2.205,2.191,2.17,2.148,2.126,2.115,2.092,2.075,2.049,2.006,1.983,1.939,1.86,1.835,1.808,1.801,1.812,1.797,1.778,1.729,1.725,1.7,1.658,1.625,1.595,1.568,1.536,1.511,1.486,1.459,1.43,1.408],[33.797001,33.796001,33.796001,33.796001,33.796001,33.793999,33.793999,33.794998,33.796001,33.800999,33.808998,33.824001,33.854,33.868,33.875999,33.894001,33.914001,33.922001,33.969002,34.050999,34.099998,34.119999,34.146,34.167999,34.188,34.201,34.209,34.235001,34.273998,34.294998,34.297001,34.299,34.323002,34.351002,34.353001,34.358002,34.363998,34.370998,34.383999,34.394001,34.400002,34.416,34.424999,34.435001,34.444,34.446999,34.455002,34.459,34.466999,34.48,34.502998,34.514,34.528999,34.544998,34.563,34.574001,34.584999,34.598,34.609001,34.618,34.633999,34.646,34.645,34.664001,34.678001,34.682999,34.689999,34.699001,34.703999,34.708,34.713001,34.719002,34.722,34.727001,34.729,34.735001,34.737,34.738998,34.743,34.743999,34.745998,34.747002,34.749001,34.751999,34.755001,34.757,34.757,34.756001,34.754002,34.750999,34.743,34.742001,34.743999,34.747002,34.751999,34.751999,34.751999,34.748001,34.750999,34.750999,34.747002,34.745998,34.744999,34.743999,34.741001,34.741001,34.738998,34.737,34.736,34.734001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_026","geolocation":{"type":"Point","coordinates":[25.176000000000002,-48.657000000000004]},"basin":3,"timestamp":"2006-07-23T20:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:49.838Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_026.nc","date_updated":"2015-10-19T16:12:12.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,32],[1.199,1.198,1.196],[33.820999,33.820999,33.820999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_025","geolocation":{"type":"Point","coordinates":[24.283,-50.423]},"basin":10,"timestamp":"2006-07-14T02:05:00.000Z","date_updated_argovis":"2023-02-01T21:29:48.177Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_025.nc","date_updated":"2015-10-19T16:12:12.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,145,155,165,175,185,195,205,216,225,235,245,255,265,275,285,296,305,315,325,334,345,355,365,375,385,395,405,415,425,435,446,455,465,475,485,495,512,537,562,587,612,637,662,688,713,737,762,788,813,838,863,888,912,938,963,988,1012,1037,1062,1088,1113,1138,1163,1187,1212,1237,1262,1287,1313,1338,1362,1388,1412,1437,1462,1487,1512,1537,1563,1588,1612,1637,1663,1688,1713,1738,1763,1787,1813,1837,1863,1888,1913,1938,1962,1988,2014],[0.886,0.883,0.883,0.885,0.878,0.875,0.869,0.855,0.838,0.822,0.812,0.806,0.849,0.873,1.497,1.624,1.845,1.901,2.004,1.979,1.928,2.021,2.08,2.193,2.234,2.231,2.215,2.202,2.166,2.185,2.227,2.21,2.21,2.209,2.203,2.23,2.234,2.245,2.258,2.264,2.272,2.272,2.271,2.273,2.277,2.275,2.274,2.289,2.295,2.304,2.303,2.293,2.292,2.284,2.271,2.243,2.249,2.281,2.266,2.25,2.308,2.332,2.351,2.33,2.317,2.282,2.241,2.245,2.242,2.247,2.247,2.24,2.23,2.191,2.116,2.114,2.115,2.095,2.074,2.034,1.989,1.956,1.928,1.903,1.891,1.871,1.851,1.832,1.814,1.794,1.789,1.746,1.707,1.698,1.706,1.707,1.689,1.662,1.659,1.636,1.605,1.57,1.546,1.531,1.509,1.477,1.423,1.414,1.396,1.375],[33.845001,33.845001,33.845001,33.845001,33.845001,33.845001,33.846001,33.847,33.849998,33.851002,33.853001,33.855999,33.887001,33.959,34.053001,34.111,34.159,34.18,34.209,34.224998,34.227001,34.248001,34.262001,34.290001,34.311001,34.32,34.327999,34.335999,34.348,34.360001,34.369999,34.375999,34.389999,34.400002,34.409,34.418999,34.428001,34.441002,34.456001,34.467999,34.473,34.483002,34.491001,34.494999,34.500999,34.507999,34.512001,34.521,34.525002,34.539001,34.553001,34.568001,34.584999,34.596001,34.605,34.613998,34.630001,34.645,34.653999,34.662998,34.681,34.691002,34.701,34.705002,34.708,34.709999,34.712002,34.719002,34.727001,34.735001,34.738998,34.743,34.745998,34.743999,34.740002,34.743,34.75,34.750999,34.751999,34.751999,34.751999,34.751999,34.752998,34.754002,34.755001,34.757,34.756001,34.756001,34.756001,34.756001,34.758999,34.755001,34.751999,34.752998,34.757,34.757999,34.757999,34.757,34.757999,34.757,34.755001,34.751999,34.750999,34.750999,34.75,34.745998,34.741001,34.743,34.743,34.742001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_023","geolocation":{"type":"Point","coordinates":[20.206,-49.997]},"basin":3,"timestamp":"2006-06-24T02:05:00.000Z","date_updated_argovis":"2023-02-01T21:29:46.313Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_023.nc","date_updated":"2015-10-19T16:12:11.000Z"}],"cycle_number":23,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,85,95,104,115,125,135,145,156,165,175,186,195,205,215,225,235,245,255,265,275,286,295,304,315,325,335,345,356,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,588,613,639,662,687,712,737,763,788,813,837,862,887,913,937,962,987,1012,1037,1062,1089,1112,1137,1162,1187,1212,1237,1262,1288,1313,1339,1362,1387,1412,1437,1463,1488,1512,1538,1564,1587,1612,1638,1663,1688,1713,1738,1764,1787,1813,1838,1862,1887,1912,1938,1965],[1.9,1.902,1.901,1.902,1.901,1.902,1.725,1.498,1.346,1.045,0.973,1.284,1.7,1.855,1.884,1.806,1.763,1.772,1.836,1.8,1.687,1.781,1.84,1.913,1.945,1.995,2.015,2.089,2.07,2.117,2.151,2.185,2.2,2.201,2.229,2.232,2.232,2.235,2.243,2.255,2.25,2.244,2.244,2.244,2.247,2.251,2.254,2.254,2.252,2.253,2.262,2.287,2.337,2.345,2.342,2.314,2.16,2.181,2.182,2.194,2.218,2.229,2.237,2.232,2.213,2.157,2.143,2.115,2.112,2.097,2.097,2.105,2.102,2.127,2.122,2.122,2.167,2.156,2.138,2.101,2.061,2.03,2.007,1.996,1.985,1.947,1.923,1.889,1.865,1.85,1.835,1.828,1.818,1.801,1.777,1.762,1.749,1.729,1.699,1.666,1.632,1.607,1.588,1.566,1.518,1.492,1.464,1.431],[33.787998,33.787998,33.787998,33.787998,33.787998,33.786999,33.782001,33.785999,33.790001,33.806999,33.817001,33.879002,33.979,34.041,34.058998,34.077999,34.099998,34.116001,34.138,34.147999,34.155998,34.189999,34.208,34.233002,34.256001,34.271999,34.285,34.311001,34.320999,34.337002,34.348999,34.363998,34.374001,34.380001,34.396999,34.405998,34.418999,34.43,34.442001,34.455002,34.458,34.465,34.470001,34.474998,34.487,34.493999,34.499001,34.502998,34.512001,34.522999,34.535999,34.561001,34.584999,34.596001,34.610001,34.625,34.619999,34.632999,34.639,34.646,34.658001,34.667,34.674,34.681,34.686001,34.687,34.692001,34.695999,34.702999,34.709,34.715,34.719002,34.723,34.731998,34.737999,34.743999,34.755001,34.757,34.757999,34.756001,34.754002,34.754002,34.755001,34.757,34.758999,34.757999,34.757,34.757,34.757,34.757999,34.759998,34.762001,34.762001,34.762001,34.761002,34.762001,34.763,34.763,34.761002,34.759998,34.757,34.755001,34.754002,34.750999,34.748001,34.745998,34.744999,34.743]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_022","geolocation":{"type":"Point","coordinates":[19.238,-49.893]},"basin":1,"timestamp":"2006-06-13T20:12:00.000Z","date_updated_argovis":"2023-02-01T21:29:44.613Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_022.nc","date_updated":"2015-10-19T16:12:11.000Z"}],"cycle_number":22,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35],[1.335,1.323,1.317],[33.804001,33.804001,33.804001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_021","geolocation":{"type":"Point","coordinates":[18.2,-51.146]},"basin":10,"timestamp":"2006-06-04T02:06:00.000Z","date_updated_argovis":"2023-02-01T21:29:42.887Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_021.nc","date_updated":"2015-10-19T16:12:10.000Z"}],"cycle_number":21,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,105,115,126,136,145,155,165,175,186,196,205,215,224,235,245,255,265,275,284,295,305,316,325,335,345,356,365,375,386,394,404,415,424,435,445,455,465,475,485,495,513,538,563,588,612,637,663,688,714,737,762,787,813,838,863,887,912,938,962,987,1013,1037,1062,1087,1112,1138,1162,1187,1213,1238,1263,1288,1313,1337,1362,1388,1414,1437,1462,1487,1512,1538,1562,1587,1612,1638,1663,1688,1712,1737,1762,1787,1812,1839,1862,1888,1913,1938,1962,1987,2012],[1.49,1.493,1.495,1.494,1.492,1.489,1.475,1.41,1.313,1.251,1.171,1.204,1.245,1.371,1.395,1.415,1.457,1.421,1.674,1.816,1.803,1.837,1.884,1.912,1.977,2.043,2.078,2.104,2.023,2.05,2.113,2.143,2.159,2.183,2.211,2.217,2.224,2.227,2.231,2.234,2.235,2.238,2.243,2.245,2.247,2.234,2.189,2.149,2.124,2.114,2.149,2.189,2.183,2.233,2.205,2.226,2.231,2.225,2.216,2.214,2.211,2.207,2.206,2.181,2.184,2.202,2.193,2.148,2.138,2.135,2.069,2.05,2.018,1.984,1.945,1.921,1.912,1.91,1.903,1.881,1.862,1.832,1.811,1.793,1.779,1.769,1.759,1.738,1.716,1.702,1.664,1.649,1.615,1.57,1.536,1.498,1.471,1.442,1.418,1.398,1.373,1.356,1.329,1.3,1.288,1.261,1.233,1.211,1.183,1.163],[33.786999,33.786999,33.789001,33.792999,33.792999,33.792999,33.793999,33.799,33.807999,33.817001,33.852001,33.929001,33.988998,34.042999,34.073002,34.09,34.112999,34.146,34.210999,34.25,34.257999,34.282001,34.304001,34.317001,34.342999,34.360001,34.375,34.389,34.397999,34.415001,34.439999,34.452,34.458,34.470001,34.485001,34.490002,34.494999,34.499001,34.504002,34.512001,34.518002,34.522999,34.528999,34.532001,34.537998,34.541,34.542999,34.546001,34.549,34.556,34.578999,34.596001,34.603001,34.623001,34.632,34.647999,34.657001,34.665001,34.672001,34.679001,34.688,34.695999,34.703999,34.707001,34.712002,34.720001,34.726002,34.727001,34.731998,34.737,34.737,34.737999,34.741001,34.742001,34.742001,34.742001,34.744999,34.747002,34.748001,34.748001,34.748001,34.747002,34.748001,34.749001,34.750999,34.754002,34.754002,34.755001,34.755001,34.755001,34.752998,34.751999,34.75,34.744999,34.743,34.742001,34.740002,34.738998,34.737,34.735001,34.734001,34.733002,34.731998,34.730999,34.73,34.728001,34.727001,34.726002,34.723999,34.723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_019","geolocation":{"type":"Point","coordinates":[16.335,-50.908]},"basin":10,"timestamp":"2006-05-15T02:06:00.000Z","date_updated_argovis":"2023-02-01T21:29:41.174Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_019.nc","date_updated":"2015-10-19T16:12:09.000Z"}],"cycle_number":19,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,125,136,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,476,486,495,512,538,563,588,613,637,662,688,713,738,762,788,812,837,863,888,913,937,963,987,1013,1038,1062,1087,1113,1138,1163,1188,1212,1237,1263,1288,1312,1337,1363,1387,1412,1437,1462,1487,1513,1539,1563,1587,1612,1637,1663,1689,1713,1737,1762,1787,1812,1838,1863,1888,1912,1938,1963,1980],[2.034,2.026,2.025,2.024,2.019,1.966,1.936,1.856,1.765,1.751,1.526,1.473,1.437,1.438,1.481,1.51,1.561,1.596,1.663,1.708,1.747,1.759,1.8,1.79,1.836,1.919,1.964,1.94,1.891,1.915,1.947,1.971,2.005,2.022,2.032,2.037,2.041,2.067,2.076,2.085,2.096,2.093,2.089,2.096,2.095,2.108,2.126,2.142,2.162,2.179,2.179,2.179,2.196,2.15,2.147,2.136,2.136,2.131,2.122,2.091,2.076,2.078,2.081,2.072,2.085,2.103,2.127,2.136,2.123,2.088,2.065,2.05,2.042,2.025,2.002,1.999,2.004,1.996,1.986,1.978,1.967,1.949,1.919,1.894,1.873,1.841,1.798,1.78,1.752,1.707,1.656,1.636,1.622,1.605,1.588,1.564,1.551,1.535,1.515,1.477,1.449,1.431,1.426,1.416,1.402,1.388,1.363,1.324,1.296],[33.758999,33.759998,33.759998,33.761002,33.761002,33.763,33.766998,33.775002,33.789001,33.863998,33.917999,33.979,34.011002,34.036999,34.062,34.077999,34.096001,34.118,34.137001,34.157001,34.178001,34.202,34.221001,34.238998,34.264999,34.293999,34.307999,34.32,34.334,34.354,34.368,34.381001,34.398998,34.409,34.416,34.417999,34.419998,34.433998,34.444,34.452999,34.464001,34.467999,34.471001,34.479,34.484001,34.498001,34.513,34.522999,34.535,34.549999,34.566002,34.578999,34.591999,34.601002,34.613998,34.620998,34.627998,34.632,34.639,34.644001,34.648998,34.657001,34.667,34.676998,34.687,34.696999,34.706001,34.716999,34.719002,34.721001,34.723999,34.724998,34.73,34.729,34.730999,34.736,34.740002,34.740002,34.743,34.743999,34.744999,34.745998,34.748001,34.748001,34.748001,34.748001,34.748001,34.747002,34.745998,34.743999,34.743,34.742001,34.741001,34.741001,34.740002,34.740002,34.741001,34.741001,34.740002,34.737999,34.736,34.735001,34.735001,34.735001,34.733002,34.733002,34.730999,34.729,34.728001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_017","geolocation":{"type":"Point","coordinates":[11.952,-50.454]},"basin":10,"timestamp":"2006-04-25T02:07:00.000Z","date_updated_argovis":"2023-02-01T21:29:39.401Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_017.nc","date_updated":"2015-10-19T16:12:09.000Z"}],"cycle_number":17,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,106,115,125,135,145,155,165,174,185,195,205,215,226,235,245,255,265,275,285,295,306,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,486,495,512,538,563,588,613,637,663,688,713,737,762,788,813,838,862,888,913,938,962,987,1012,1037,1062,1088,1112,1138,1163,1188,1212,1238,1263,1288,1312,1337,1362,1388,1414,1438,1463,1487,1512,1537,1562,1588,1614,1637,1662,1687,1713,1738,1763,1788,1813,1838,1862,1887,1913,1937,1962,1988,2012],[2.572,2.575,2.576,2.578,2.58,2.58,2.582,2.581,2.582,2.583,2.52,2.024,1.495,1.244,1.226,1.319,1.433,1.493,1.581,1.606,1.65,1.739,1.826,1.892,1.952,1.977,2.023,2.058,2.125,2.147,2.186,2.187,2.195,2.195,2.194,2.173,2.101,2.092,2.062,2.05,2.086,2.186,2.176,2.182,2.184,2.165,2.16,2.198,2.231,2.234,2.252,2.259,2.254,2.243,2.236,2.236,2.245,2.236,2.216,2.214,2.229,2.231,2.222,2.22,2.215,2.204,2.186,2.167,2.151,2.138,2.125,2.109,2.11,2.112,2.1,2.072,2.025,2.006,1.966,1.942,1.927,1.897,1.867,1.858,1.848,1.827,1.814,1.788,1.744,1.734,1.707,1.676,1.653,1.614,1.587,1.557,1.528,1.504,1.493,1.471,1.448,1.409,1.367,1.327,1.305,1.299,1.285,1.273,1.246,1.227],[33.757999,33.757999,33.757999,33.757999,33.757999,33.757999,33.758999,33.757999,33.758999,33.757999,33.764999,33.839001,33.931999,33.988998,34.021999,34.067001,34.102001,34.118999,34.157001,34.173,34.200001,34.226002,34.248001,34.277,34.301998,34.316002,34.334,34.347,34.368,34.377998,34.394001,34.397999,34.405998,34.411999,34.417,34.422001,34.424,34.431,34.435001,34.445,34.460999,34.478001,34.486,34.495998,34.501999,34.507,34.514999,34.528999,34.540001,34.557999,34.577999,34.591,34.604,34.612999,34.624001,34.632,34.643002,34.651001,34.653999,34.662998,34.675999,34.686001,34.692001,34.696999,34.702,34.708,34.713001,34.717999,34.721001,34.723999,34.726002,34.728001,34.731998,34.737,34.740002,34.741001,34.740002,34.740002,34.740002,34.742001,34.744999,34.745998,34.744999,34.747002,34.748001,34.75,34.75,34.75,34.749001,34.750999,34.75,34.747002,34.745998,34.743999,34.743,34.742001,34.740002,34.740002,34.740002,34.738998,34.737999,34.735001,34.733002,34.73,34.729,34.73,34.729,34.729,34.726002,34.724998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_016","geolocation":{"type":"Point","coordinates":[11.124,-50.311]},"basin":10,"timestamp":"2006-04-14T20:07:00.000Z","date_updated_argovis":"2023-02-01T21:29:37.620Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_016.nc","date_updated":"2015-10-19T16:12:08.000Z"}],"cycle_number":16,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[11],[2.768],[33.758999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_015","geolocation":{"type":"Point","coordinates":[10.699,-50.946000000000005]},"basin":10,"timestamp":"2006-04-05T02:07:00.000Z","date_updated_argovis":"2023-02-01T21:29:35.906Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_015.nc","date_updated":"2015-10-19T16:12:07.000Z"}],"cycle_number":15,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,54,64,75,85,95,104,115,125,135,144,155,165,175,185,195,205,216,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,384,395,405,415,425,435,445,455,465,476,486,495,513,538,563,587,612,638,664,687,712,737,762,787,812,837,862,888,913,939,963,987,1012,1037,1062,1087,1112,1139,1162,1187,1213,1238,1263,1288,1312,1338,1362,1388,1413,1438,1463,1488,1512,1538,1563,1587,1612,1638,1663,1687,1712,1737,1763,1789,1813,1837,1863,1888,1913,1937,1962,1988,2014],[3.195,3.196,3.196,3.197,3.203,3.204,3.204,3.204,3.2,3.012,1.885,1.407,1.213,1.173,1.19,1.263,1.351,1.49,1.585,1.671,1.794,1.893,2.005,2.04,2.012,2.049,2.098,2.151,2.158,2.136,2.129,2.179,2.201,2.144,2.159,2.203,2.208,2.22,2.224,2.224,2.231,2.236,2.24,2.244,2.246,2.251,2.234,2.211,2.195,2.202,2.216,2.255,2.267,2.266,2.266,2.262,2.257,2.256,2.251,2.215,2.2,2.197,2.189,2.208,2.2,2.202,2.205,2.197,2.17,2.153,2.141,2.125,2.113,2.098,2.08,2.068,2.058,2.04,2.023,2,1.981,1.955,1.929,1.913,1.891,1.865,1.836,1.814,1.797,1.782,1.751,1.725,1.701,1.664,1.63,1.603,1.565,1.535,1.499,1.47,1.444,1.414,1.389,1.369,1.346,1.335,1.321,1.302,1.282,1.263],[33.764999,33.764999,33.764999,33.764999,33.765999,33.764999,33.764999,33.765999,33.765999,33.771,33.868,33.916,33.943001,33.964001,33.995998,34.034,34.066002,34.105,34.131001,34.162998,34.199001,34.238998,34.276001,34.294998,34.306,34.324001,34.339001,34.352001,34.362,34.368,34.375999,34.393002,34.402,34.405998,34.417,34.43,34.438999,34.448002,34.455002,34.465,34.474998,34.485001,34.492001,34.498001,34.502998,34.512001,34.519001,34.522999,34.528999,34.540001,34.557999,34.575001,34.589001,34.598,34.611,34.622002,34.629002,34.638,34.647999,34.654999,34.658001,34.662998,34.669998,34.683998,34.689999,34.696999,34.703999,34.709,34.714001,34.719002,34.723,34.727001,34.730999,34.733002,34.737,34.738998,34.741001,34.743,34.743999,34.744999,34.745998,34.747002,34.748001,34.749001,34.749001,34.75,34.75,34.75,34.75,34.749001,34.749001,34.748001,34.747002,34.744999,34.743,34.743,34.741001,34.740002,34.737,34.736,34.735001,34.733002,34.731998,34.730999,34.73,34.729,34.728001,34.727001,34.726002,34.724998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_014","geolocation":{"type":"Point","coordinates":[10.242,-51.258]},"basin":10,"timestamp":"2006-03-25T20:08:00.000Z","date_updated_argovis":"2023-02-01T21:29:34.199Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_014.nc","date_updated":"2015-10-19T16:12:06.000Z"}],"cycle_number":14,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[31],[3.261],[33.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_013","geolocation":{"type":"Point","coordinates":[9.739,-51.569]},"basin":10,"timestamp":"2006-03-16T02:08:00.000Z","date_updated_argovis":"2023-02-01T21:29:32.407Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_013.nc","date_updated":"2015-10-19T16:12:05.000Z"}],"cycle_number":13,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,46,55,65,75,84,95,105,115,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,286,295,305,316,325,335,346,355,365,375,385,395,405,415,425,435,445,455,465,474,485,495,513,538,563,587,612,638,662,688,713,738,762,787,813,839,862,888,913,938,963,988,1013,1038,1062,1089,1112,1138,1163,1187,1213,1238,1263,1287,1313,1337,1363,1387,1412,1437,1462,1488,1513,1537,1563,1587,1613,1637,1662,1687,1713,1737,1762,1788,1812,1838,1863,1888,1913,1939,1962,1987,2003],[3.115,3.116,3.118,3.12,3.12,3.12,3.118,3.118,3.113,3.067,1.746,1.44,1.453,1.5,1.565,1.618,1.65,1.707,1.788,1.874,1.912,1.947,1.985,1.997,2.018,2.037,2.051,2.06,2.074,2.089,2.1,2.111,2.119,2.129,2.141,2.157,2.179,2.186,2.195,2.207,2.218,2.221,2.227,2.234,2.239,2.246,2.252,2.262,2.257,2.245,2.249,2.244,2.244,2.264,2.263,2.256,2.25,2.248,2.235,2.216,2.205,2.207,2.246,2.274,2.256,2.252,2.232,2.189,2.205,2.19,2.178,2.173,2.154,2.162,2.154,2.137,2.119,2.089,2.052,2.041,2.024,2.011,1.982,1.957,1.937,1.926,1.917,1.896,1.872,1.849,1.832,1.815,1.789,1.767,1.74,1.717,1.686,1.657,1.632,1.6,1.563,1.526,1.494,1.467,1.446,1.414,1.387,1.367,1.356,1.35],[33.755001,33.755001,33.755001,33.755001,33.755001,33.755001,33.755001,33.755001,33.755001,33.749001,33.883999,33.966,34,34.025002,34.054001,34.077999,34.09,34.108002,34.133999,34.164001,34.181999,34.202999,34.223999,34.242001,34.255001,34.266998,34.276001,34.284,34.293999,34.306999,34.318001,34.330002,34.337002,34.345001,34.353001,34.366001,34.381001,34.394001,34.400002,34.409,34.421001,34.433998,34.446999,34.459999,34.473,34.483002,34.492001,34.499001,34.502998,34.509998,34.526001,34.542,34.558998,34.576,34.585999,34.598,34.610001,34.620998,34.629002,34.632999,34.640999,34.652,34.667,34.676998,34.682999,34.692001,34.695,34.695999,34.703999,34.707001,34.709999,34.715,34.717999,34.726002,34.729,34.731998,34.735001,34.737,34.737999,34.741001,34.743999,34.745998,34.744999,34.745998,34.745998,34.747002,34.748001,34.748001,34.748001,34.748001,34.749001,34.75,34.75,34.75,34.749001,34.748001,34.747002,34.745998,34.744999,34.743999,34.741001,34.738998,34.737,34.736,34.735001,34.733002,34.731998,34.73,34.73,34.73]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_011","geolocation":{"type":"Point","coordinates":[8.096,-50.924]},"basin":10,"timestamp":"2006-02-24T02:15:00.000Z","date_updated_argovis":"2023-02-01T21:29:30.672Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_011.nc","date_updated":"2015-10-19T16:12:04.000Z"}],"cycle_number":11,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,94,105,115,125,135,145,155,165,176,186,195,205,215,226,235,244,255,265,275,285,295,305,315,324,335,346,355,365,375,385,395,405,414,425,435,445,455,465,474,485,496,512,539,562,588,612,638,662,687,712,738,762,788,812,837,862,887,913,938,962,987,1012,1037,1063,1088,1112,1138,1163,1188,1213,1239,1263,1288,1313,1338,1363,1388,1412,1437,1462,1487,1513,1538,1563,1587,1612,1638,1663,1687,1712,1737,1762,1788,1813,1838,1863,1888,1912,1938,1961],[3.754,3.754,3.754,3.755,3.742,3.652,3.577,3.477,3.071,2.515,2.009,1.871,1.78,1.706,1.7,1.723,1.757,1.79,1.842,1.86,1.943,2.03,2.068,2.099,2.131,2.144,2.153,2.164,2.17,2.181,2.189,2.192,2.195,2.198,2.203,2.209,2.215,2.219,2.224,2.226,2.228,2.229,2.233,2.236,2.24,2.244,2.244,2.247,2.25,2.244,2.246,2.246,2.247,2.254,2.26,2.273,2.275,2.268,2.249,2.234,2.241,2.229,2.252,2.222,2.205,2.22,2.167,2.172,2.17,2.166,2.164,2.157,2.145,2.093,2.044,2.039,2.035,2.025,2.033,1.994,1.971,1.962,1.964,1.972,1.993,1.97,1.934,1.918,1.902,1.898,1.889,1.877,1.841,1.82,1.788,1.745,1.722,1.696,1.677,1.658,1.62,1.584,1.556,1.521,1.494,1.465,1.445,1.424],[33.786999,33.786999,33.786999,33.786999,33.785999,33.784,33.782001,33.789001,33.810001,33.834,33.872002,33.888,33.904999,33.941002,33.972,33.995998,34.019001,34.036999,34.062,34.078999,34.105,34.140999,34.161999,34.187,34.206001,34.216999,34.223999,34.235001,34.243,34.259998,34.276001,34.280998,34.290001,34.301998,34.313999,34.330002,34.341,34.347,34.355999,34.363998,34.372002,34.382999,34.394001,34.402,34.411999,34.422001,34.43,34.444,34.457001,34.470001,34.486,34.5,34.514,34.523998,34.539001,34.557999,34.570999,34.581001,34.591,34.599998,34.611,34.619999,34.634998,34.640999,34.650002,34.661999,34.661999,34.667999,34.676998,34.683998,34.692001,34.700001,34.702,34.702999,34.702,34.705002,34.709999,34.713001,34.720001,34.716999,34.719002,34.721001,34.728001,34.735001,34.742001,34.741001,34.741001,34.743,34.743,34.747002,34.75,34.751999,34.750999,34.750999,34.750999,34.75,34.748001,34.747002,34.747002,34.745998,34.743999,34.742001,34.740002,34.737999,34.737,34.735001,34.734001,34.733002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_009","geolocation":{"type":"Point","coordinates":[6.1000000000000005,-51.522000000000006]},"basin":10,"timestamp":"2006-02-04T01:57:00.000Z","date_updated_argovis":"2023-02-01T21:29:28.890Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_009.nc","date_updated":"2015-10-19T16:12:03.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,125,136,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,355,375,395,415,435,455,475,485,495,512,537,563,589,613,637,662,688,712,737,762,788,812,837,862,887,912,937,962,988,1012,1037,1064,1088,1113,1137,1162,1187,1212,1238,1262,1287,1313,1337,1362,1388,1413,1438,1462,1488,1512,1538,1562,1587,1612,1638,1663,1688,1712,1737,1762,1788,1812,1837,1862,1887,1913,1938,1964,1977],[3.823,3.823,3.809,3.799,3.799,3.809,3.805,3.788,3.474,2.316,1.856,1.693,1.63,1.583,1.579,1.6,1.631,1.71,1.828,1.996,2.031,2.025,2.093,2.132,2.151,2.163,2.172,2.176,2.188,2.197,2.204,2.209,2.213,2.22,2.224,2.228,2.235,2.24,2.246,2.253,2.26,2.266,2.278,2.289,2.28,2.282,2.271,2.266,2.256,2.258,2.268,2.273,2.264,2.253,2.243,2.233,2.231,2.23,2.216,2.189,2.196,2.194,2.183,2.171,2.147,2.14,2.13,2.115,2.118,2.105,2.088,2.076,2.052,2.033,2.017,1.968,1.926,1.864,1.83,1.793,1.774,1.759,1.74,1.715,1.687,1.645,1.609,1.598,1.58,1.576,1.533,1.499,1.481,1.466,1.455,1.424,1.399,1.366,1.353,1.331,1.3,1.289],[33.791,33.791,33.791,33.792,33.792,33.792,33.792,33.792,33.785999,33.839001,33.875999,33.900002,33.916,33.939999,33.966999,33.999001,34.035999,34.074001,34.106998,34.153,34.176998,34.189999,34.212002,34.223999,34.237999,34.256001,34.272999,34.280998,34.298,34.308998,34.321999,34.331001,34.34,34.360001,34.376999,34.393002,34.417,34.433998,34.453999,34.472,34.480999,34.487999,34.501999,34.519001,34.533001,34.548,34.563,34.578999,34.591999,34.601002,34.610001,34.624001,34.634998,34.641998,34.647999,34.657001,34.666,34.673,34.678001,34.683998,34.693001,34.699001,34.703999,34.709,34.714001,34.719002,34.723,34.727001,34.731998,34.734001,34.737,34.738998,34.740002,34.742001,34.743999,34.741001,34.740002,34.737,34.737999,34.738998,34.741001,34.742001,34.742001,34.740002,34.738998,34.737,34.736,34.736,34.736,34.737999,34.734001,34.733002,34.733002,34.734001,34.734001,34.731998,34.730999,34.729,34.728001,34.727001,34.724998,34.724998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_007","geolocation":{"type":"Point","coordinates":[4.42,-51.621]},"basin":10,"timestamp":"2006-01-15T02:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:25.209Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_007.nc","date_updated":"2015-10-19T16:12:01.000Z"}],"cycle_number":7,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,225,235,245,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,424,435,445,455,465,475,485,495,512,537,562,587,613,638,663,689,713,737,763,788,813,837,864,887,912,937,962,988,1012,1038,1063,1088,1112,1137,1162,1188,1212,1238,1263,1287,1313,1337,1363,1388,1413,1437,1462,1487,1512,1537,1563,1588,1612,1638,1663,1688,1713,1740,1762,1787,1812,1837,1863,1888,1913,1937,1963,1988,2012],[3.822,3.822,3.817,3.739,3.439,3.169,3.009,2.917,2.737,2.409,2.058,1.766,1.658,1.717,1.792,1.859,1.875,1.9,1.908,1.976,2.006,2.054,2.05,2.089,2.107,2.123,2.141,2.156,2.177,2.183,2.198,2.203,2.198,2.194,2.201,2.208,2.213,2.21,2.204,2.194,2.208,2.227,2.229,2.228,2.23,2.234,2.242,2.241,2.237,2.235,2.254,2.269,2.27,2.28,2.283,2.28,2.277,2.272,2.256,2.248,2.247,2.23,2.253,2.251,2.248,2.237,2.221,2.21,2.209,2.197,2.185,2.176,2.164,2.141,2.09,2.056,2.056,2.034,2.014,1.991,1.978,1.966,1.946,1.929,1.904,1.883,1.863,1.849,1.798,1.72,1.686,1.644,1.62,1.58,1.545,1.528,1.521,1.511,1.479,1.479,1.48,1.462,1.417,1.389,1.389,1.386,1.361,1.323,1.274,1.256],[33.799,33.799,33.799,33.799,33.803001,33.806999,33.808998,33.807999,33.814999,33.833,33.859001,33.902,33.957001,34.004002,34.044998,34.067001,34.071999,34.084,34.115002,34.140999,34.160999,34.176998,34.186001,34.202,34.214001,34.236,34.258999,34.276001,34.292999,34.307999,34.316002,34.326,34.338001,34.341999,34.351002,34.358002,34.368,34.382,34.390999,34.400002,34.414001,34.429001,34.436001,34.439999,34.448002,34.458,34.465,34.474998,34.480999,34.497002,34.527,34.546001,34.563,34.576,34.585999,34.599998,34.613998,34.624001,34.632999,34.638,34.648998,34.654999,34.666,34.675999,34.682999,34.689999,34.694,34.700001,34.702999,34.705002,34.709,34.712002,34.714001,34.717999,34.721001,34.726002,34.733002,34.736,34.738998,34.737999,34.741001,34.742001,34.743,34.743999,34.743999,34.744999,34.747002,34.747002,34.745998,34.744999,34.743999,34.742001,34.741001,34.740002,34.738998,34.737999,34.737,34.737,34.735001,34.735001,34.735001,34.734001,34.731998,34.730999,34.730999,34.73,34.729,34.727001,34.724998,34.723999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_006","geolocation":{"type":"Point","coordinates":[4.761,-51.432]},"basin":10,"timestamp":"2006-01-04T20:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:23.465Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_006.nc","date_updated":"2015-10-19T16:12:01.000Z"}],"cycle_number":6,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25],[3.515,3.516],[33.794998,33.794998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_005","geolocation":{"type":"Point","coordinates":[4.8260000000000005,-51.773]},"basin":10,"timestamp":"2005-12-26T02:10:00.000Z","date_updated_argovis":"2023-02-01T21:29:21.768Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_005.nc","date_updated":"2015-10-19T16:11:59.000Z"}],"cycle_number":5,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,44,55,65,76,85,95,105,115,124,135,146,155,165,175,185,195,205,215,225,234,245,256,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,415,425,434,445,455,465,475,484,495,513,538,562,587,614,637,662,687,713,737,762,788,812,838,863,888,912,938,963,988,1013,1038,1062,1088,1113,1138,1162,1187,1212,1237,1262,1288,1312,1337,1363,1388,1412,1437,1462,1489,1512,1538,1562,1588,1613,1638,1663,1688,1712,1737,1763,1788,1813,1837,1863,1888,1912,1937,1963,1982],[2.918,2.856,2.841,2.836,2.828,2.745,2.57,2.295,1.772,1.447,1.338,1.341,1.459,1.558,1.632,1.784,1.917,1.984,1.906,1.98,1.944,1.856,1.829,1.922,1.93,1.985,1.992,2.013,2.069,2.121,2.133,2.105,2.081,2.08,2.125,2.112,2.113,2.129,2.112,2.106,2.115,2.115,2.116,2.118,2.129,2.169,2.187,2.19,2.199,2.203,2.223,2.171,2.117,2.161,2.179,2.195,2.231,2.25,2.225,2.214,2.193,2.166,2.2,2.211,2.203,2.189,2.173,2.167,2.17,2.161,2.131,2.109,2.094,2.121,2.122,2.058,1.997,1.988,1.971,1.936,1.904,1.882,1.841,1.767,1.717,1.685,1.612,1.587,1.593,1.58,1.564,1.55,1.534,1.5,1.48,1.462,1.436,1.427,1.413,1.379,1.348,1.326,1.297,1.275,1.247,1.217,1.185,1.158,1.146],[33.800999,33.801998,33.801998,33.801998,33.801998,33.803001,33.806,33.820999,33.865002,33.919998,33.946999,33.981998,34.019001,34.062,34.091,34.122002,34.153,34.18,34.185001,34.214001,34.215,34.216,34.228001,34.254002,34.27,34.292,34.312,34.326,34.342999,34.362999,34.373001,34.382,34.389999,34.400002,34.423,34.43,34.436001,34.445999,34.452,34.462002,34.473999,34.478001,34.481998,34.493999,34.506001,34.523998,34.534,34.537998,34.544998,34.553001,34.568001,34.575001,34.59,34.615002,34.629002,34.643002,34.657001,34.667,34.674,34.681,34.683998,34.688,34.701,34.709999,34.712002,34.715,34.719002,34.722,34.727001,34.729,34.730999,34.733002,34.737,34.745998,34.750999,34.748001,34.743999,34.748001,34.751999,34.750999,34.750999,34.750999,34.747002,34.737999,34.734001,34.734001,34.727001,34.728001,34.733002,34.734001,34.733002,34.733002,34.734001,34.731998,34.73,34.73,34.729,34.729,34.729,34.728001,34.726002,34.726002,34.723999,34.724998,34.723,34.722,34.720001,34.717999,34.717999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_003","geolocation":{"type":"Point","coordinates":[3.317,-51.475]},"basin":10,"timestamp":"2005-12-06T02:17:00.000Z","date_updated_argovis":"2023-02-01T21:29:19.899Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_003.nc","date_updated":"2015-10-19T16:11:58.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,196,205,216,225,235,245,255,265,275,286,295,305,315,325,336,346,355,365,375,385,396,405,415,425,436,445,455,465,475,485,495,512,537,562,587,612,637,663,688,713,737,762,787,813,838,862,888,913,937,962,988,1013,1038,1063,1088,1113,1137,1162,1189,1212,1237,1262,1287,1312,1337,1364,1388,1412,1438,1462,1487,1512,1537,1562,1587,1614,1638,1662,1688,1713,1738,1763,1788,1813,1838,1862,1888,1913,1937,1962,1987,2013],[2.146,2.134,2.12,2.092,2.064,1.998,1.896,1.721,1.411,1.39,1.488,1.533,1.572,1.596,1.703,1.817,1.874,1.957,2.029,2.058,2.053,2.061,2.06,2.061,2.069,2.083,2.1,2.109,2.114,2.121,2.126,2.134,2.145,2.16,2.164,2.191,2.203,2.215,2.222,2.228,2.224,2.233,2.244,2.244,2.243,2.239,2.227,2.223,2.223,2.22,2.221,2.223,2.226,2.222,2.249,2.267,2.249,2.239,2.257,2.246,2.233,2.225,2.22,2.209,2.196,2.18,2.162,2.163,2.159,2.139,2.1,2.073,2.052,2.016,1.998,2.008,1.999,1.952,1.917,1.907,1.876,1.831,1.801,1.767,1.751,1.732,1.713,1.674,1.648,1.623,1.604,1.585,1.557,1.52,1.495,1.468,1.437,1.395,1.37,1.349,1.341,1.319,1.301,1.28,1.256,1.233,1.212,1.191,1.159,1.135],[33.807999,33.808998,33.808998,33.808998,33.810001,33.814999,33.826,33.846001,33.891998,33.948002,33.993,34.011002,34.030998,34.050999,34.101002,34.140999,34.160999,34.194,34.230999,34.248001,34.27,34.292999,34.304001,34.306,34.314999,34.327999,34.341999,34.351002,34.361,34.370998,34.375999,34.382999,34.394001,34.41,34.417999,34.443001,34.452999,34.464001,34.48,34.490002,34.492001,34.5,34.513,34.52,34.522999,34.527,34.529999,34.535,34.547001,34.562,34.575001,34.588001,34.601002,34.611,34.625999,34.637001,34.646999,34.658001,34.672001,34.676998,34.682999,34.687,34.692001,34.696999,34.701,34.705002,34.709999,34.713001,34.717999,34.720001,34.722,34.724998,34.726002,34.726002,34.727001,34.733002,34.735001,34.734001,34.735001,34.738998,34.737999,34.736,34.736,34.734001,34.735001,34.736,34.736,34.736,34.736,34.735001,34.734001,34.734001,34.733002,34.730999,34.73,34.73,34.728001,34.726002,34.724998,34.723999,34.726002,34.724998,34.724998,34.724998,34.723999,34.723,34.722,34.720001,34.719002,34.717999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +, +{"_id":"1900117_001","geolocation":{"type":"Point","coordinates":[2.39,-50.687000000000005]},"basin":10,"timestamp":"2005-11-16T02:05:00.000Z","date_updated_argovis":"2023-02-01T21:29:18.211Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900117/profiles/D1900117_001.nc","date_updated":"2015-10-19T16:11:57.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 30 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,115,125,135,145,154,165,175,185,195,205,215,225,235,245,255,265,275,285,296,305,315,325,335,345,355,365,375,385,395,405,415,425,436,445,455,465,475,486,495,512,538,564,587,612,637,662,687,712,738,763,787,812,838,863,888,912,938,963,987,1012,1037,1063,1088,1112,1138,1163,1188,1213,1238,1264,1287,1312,1337,1363,1388,1413,1438,1463,1488,1513,1539,1562,1588,1613,1638,1663,1688,1714,1737,1762,1787,1813,1838,1863,1887,1913,1938,1963,1984],[1.697,1.693,1.664,1.637,1.563,1.287,1.251,1.054,0.857,0.824,0.756,1.004,1.306,1.344,1.328,1.434,1.484,1.771,1.916,1.988,2.007,2.021,2.037,2.043,2.024,2.022,2.028,2.034,2.056,2.099,2.135,2.125,2.117,2.11,2.135,2.157,2.163,2.178,2.198,2.201,2.203,2.205,2.212,2.218,2.21,2.178,2.193,2.193,2.159,2.143,2.175,2.176,2.19,2.161,2.109,2.111,2.105,2.105,2.084,2.073,2.056,2.013,1.995,1.987,1.984,1.983,1.974,1.962,1.957,1.972,1.979,1.96,1.88,1.915,1.905,1.898,1.881,1.857,1.834,1.79,1.779,1.769,1.764,1.735,1.718,1.727,1.689,1.659,1.616,1.573,1.571,1.567,1.568,1.562,1.498,1.449,1.42,1.393,1.397,1.346,1.332,1.297,1.301,1.283,1.25,1.215,1.18,1.161,1.148],[33.814999,33.814999,33.813,33.812,33.806999,33.813999,33.821999,33.821999,33.831001,33.845001,33.883999,33.946999,34.015999,34.042999,34.064999,34.113998,34.147999,34.209,34.244999,34.276001,34.294998,34.301998,34.311001,34.326,34.334,34.341999,34.353001,34.363998,34.382,34.403999,34.418999,34.423,34.422001,34.426998,34.438,34.449001,34.455002,34.464001,34.481998,34.490002,34.493999,34.5,34.512001,34.522999,34.525002,34.525002,34.532001,34.535999,34.537998,34.556,34.575001,34.591,34.606998,34.612999,34.613998,34.625999,34.639,34.646999,34.654999,34.664001,34.667,34.665001,34.673,34.681,34.686001,34.688999,34.695999,34.702999,34.708,34.715,34.719002,34.719002,34.716,34.724998,34.727001,34.73,34.730999,34.73,34.73,34.73,34.733002,34.734001,34.734001,34.733002,34.735001,34.740002,34.738998,34.737999,34.734001,34.733002,34.735001,34.737999,34.741001,34.742001,34.736,34.73,34.727001,34.726002,34.728001,34.723999,34.722,34.719002,34.723,34.722,34.719002,34.716999,34.714001,34.714001,34.714001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900117_m0"]} +] diff --git a/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json b/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json new file mode 100644 index 00000000..c9002df9 --- /dev/null +++ b/argopy/tests/test_data/32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118.json @@ -0,0 +1,1707 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/", + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/1/" + }, + "dce:identifier": "SDN:R23::SOLO_BGC", + "pav:version": "1", + "skos:notation": "SDN:R23::SOLO_BGC", + "skos:altLabel": "SOLO_BGC", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC float" + }, + "dc:identifier": "SDN:R23::SOLO_BGC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 206" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/1/" + }, + "dce:identifier": "SDN:R23::ALAMO", + "pav:version": "1", + "skos:notation": "SDN:R23::ALAMO", + "skos:altLabel": "ALAMO", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALAMO float" + }, + "dc:identifier": "SDN:R23::ALAMO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALAMO air-launched micro-observer float. PLATFORM_TYPE_KEY = 800" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/1/" + }, + "dce:identifier": "SDN:R23::NAVIS_EBR", + "pav:version": "1", + "skos:notation": "SDN:R23::NAVIS_EBR", + "skos:altLabel": "NAVIS_EBR", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_EBR float" + }, + "dc:identifier": "SDN:R23::NAVIS_EBR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_EBR float. PLATFORM_TYPE_KEY = 501" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/", + "pav:authoredOn": "2022-06-16 11:36:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/1/" + }, + "dce:identifier": "SDN:R23::HM4000", + "pav:version": "1", + "skos:notation": "SDN:R23::HM4000", + "skos:altLabel": "HM4000", + "dc:date": "2022-06-16 11:36:09.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000 float" + }, + "dc:identifier": "SDN:R23::HM4000", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "HM4000 float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/", + "pav:authoredOn": "2022-06-16 11:36:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/1/" + }, + "dce:identifier": "SDN:R23::XUANWU", + "pav:version": "1", + "skos:notation": "SDN:R23::XUANWU", + "skos:altLabel": "HM6000", + "dc:date": "2022-06-16 11:36:09.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xuanwu Deep float" + }, + "dc:identifier": "SDN:R23::XUANWU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Xuanwu Deep float, also known as HM6000 float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/1/" + }, + "dce:identifier": "SDN:R23::ITP", + "pav:version": "1", + "skos:notation": "SDN:R23::ITP", + "skos:altLabel": "ITP", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ITP float" + }, + "dc:identifier": "SDN:R23::ITP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice Tethered Profiler (ITP). PLATFORM_TYPE_KEY = 901" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/1/" + }, + "dce:identifier": "SDN:R23::COPEX", + "pav:version": "1", + "skos:notation": "SDN:R23::COPEX", + "skos:altLabel": "COPEX", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "COPEX float" + }, + "dc:identifier": "SDN:R23::COPEX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "COPEX float. PLATFORM_TYPE_KEY = 701" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/1/" + }, + "dce:identifier": "SDN:R23::SOLO_D_MRV", + "pav:version": "1", + "skos:notation": "SDN:R23::SOLO_D_MRV", + "skos:altLabel": "SOLO_D_MRV", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DEEPSOLO MRV float" + }, + "dc:identifier": "SDN:R23::SOLO_D_MRV", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "DEEPSOLO MRV float. PLATFORM_TYPE_KEY = 221" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/1/" + }, + "dce:identifier": "SDN:R23::SOLO_BGC_MRV", + "pav:version": "1", + "skos:notation": "SDN:R23::SOLO_BGC_MRV", + "skos:altLabel": "SOLO_BGC_MRV", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV float" + }, + "dc:identifier": "SDN:R23::SOLO_BGC_MRV", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV float manufactured by MRV. PLATFORM_TYPE_KEY = 207." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_III_JUMBO", + "pav:version": "1", + "skos:notation": "SDN:R23::PROVOR_III_JUMBO", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III_JUMBO float" + }, + "dc:identifier": "SDN:R23::PROVOR_III_JUMBO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR float with additional battery pack. PLATFORM_ TYPE_ KEY = 108." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/1/" + }, + "dce:identifier": "SDN:R23::FLOAT", + "pav:version": "1", + "skos:notation": "SDN:R23::FLOAT", + "skos:altLabel": "FLOAT", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform type" + }, + "dc:identifier": "SDN:R23::FLOAT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Generic value when platform type unknown. PLATFORM_TYPE_KEY = 999" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/1/" + }, + "dce:identifier": "SDN:R23::HM2000", + "pav:version": "1", + "skos:notation": "SDN:R23::HM2000", + "skos:altLabel": "HM2000", + "dc:date": "2020-05-03 20:30:02.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "HM2000 float" + }, + "dc:identifier": "SDN:R23::HM2000", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "HM2000 float. PLATFORM_TYPE_KEY = 700" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Coastal ARVOR float. PLATFORM_TYPE_KEY = 110" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_C", + "skos:prefLabel": { + "@language": "en", + "@value": "Coastal ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_C", + "skos:notation": "SDN:R23::ARVOR_C", + "pav:version": "1", + "dce:identifier": "SDN:R23::ARVOR_C", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/2/" + } + ], + "pav:authoredOn": "2023-06-22 12:04:12.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float. PLATFORM_TYPE_KEY = 105" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_IV", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR CTS5-Payload float" + }, + "owl:versionInfo": "3", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + "dc:date": "2023-06-22 12:04:12.0", + "skos:altLabel": "PROVOR_IV", + "skos:notation": "SDN:R23::PROVOR_IV", + "pav:version": "3", + "dce:identifier": "SDN:R23::PROVOR_IV", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/3/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE float. PLATFORM_TYPE_KEY = 000" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PALACE", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PALACE", + "skos:notation": "SDN:R23::PALACE", + "pav:version": "1", + "dce:identifier": "SDN:R23::PALACE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep ARVOR float. PLATFORM_TYPE_KEY = 120" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR_D", + "skos:notation": "SDN:R23::ARVOR_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::ARVOR_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX electro-magnetic float, measuring velocity and mixing. PLATFORM_TYPE_KEY = 005" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_EM", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX electro-magnetic float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_EM", + "skos:notation": "SDN:R23::APEX_EM", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_EM" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float. PLATFORM_TYPE_KEY = 104" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_III", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR CTS4 float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_III", + "skos:notation": "SDN:R23::PROVOR_III", + "pav:version": "1", + "dce:identifier": "SDN:R23::PROVOR_III", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a NEMO float. PLATFORM_TYPE_KEY = 430" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::POPS_NEMO", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS with NEMO float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "POPS_NEMO", + "skos:notation": "SDN:R23::POPS_NEMO", + "pav:version": "1", + "dce:identifier": "SDN:R23::POPS_NEMO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 106" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V", + "skos:notation": "SDN:R23::PROVOR_V", + "pav:version": "2", + "dce:identifier": "SDN:R23::PROVOR_V", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/1/" + }, + "pav:authoredOn": "2023-10-05 14:41:04.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS5-USEA float with additional battery pack, USEA is the controller board type. PLATFORM_ TYPE_ KEY = 107" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_V_JUMBO", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V_JUMBO float" + }, + "owl:versionInfo": "2", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + "dc:date": "2023-10-05 14:41:04.0", + "skos:altLabel": "PROVOR_V_JUMBO", + "skos:notation": "SDN:R23::PROVOR_V_JUMBO", + "pav:version": "2", + "dce:identifier": "SDN:R23::PROVOR_V_JUMBO", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float. PLATFORM_TYPE_KEY = 130" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::POPS_PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "Polar Ocean Profiling System with a PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "POPS_PROVOR", + "skos:notation": "SDN:R23::POPS_PROVOR", + "pav:version": "1", + "dce:identifier": "SDN:R23::POPS_PROVOR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NAVIS_A float. PLATFORM_TYPE_KEY = 500" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NAVIS_A", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVIS_A float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NAVIS_A", + "skos:notation": "SDN:R23::NAVIS_A", + "pav:version": "1", + "dce:identifier": "SDN:R23::NAVIS_A", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR float. PLATFORM_TYPE_KEY = 102" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ARVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ARVOR", + "skos:notation": "SDN:R23::ARVOR", + "pav:version": "1", + "dce:identifier": "SDN:R23::ARVOR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 202" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_II", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO-II float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_II", + "skos:notation": "SDN:R23::SOLO_II", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_II" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep NINJA float. PLATFORM_TYPE_KEY = 320" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA_D", + "skos:notation": "SDN:R23::NINJA_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::NINJA_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep SOLO float. PLATFORM_TYPE_KEY = 220" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_D", + "skos:notation": "SDN:R23::SOLO_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::SOLO_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2-A float. PLATFORM_TYPE_KEY = 204" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2A", + "skos:prefLabel": { + "@language": "en", + "@value": "S2-A float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2A", + "skos:notation": "SDN:R23::S2A", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2A" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/1/" + }, + "dce:identifier": "SDN:R23::PROVOR", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "PROVOR float. PLATFORM_TYPE_KEY = 101" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR", + "skos:notation": "SDN:R23::PROVOR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/1/" + }, + "dce:identifier": "SDN:R23::PROVOR_MT", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "Metocean PROVOR float. PLATFORM_TYPE_KEY = 100" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_MT", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_MT", + "skos:notation": "SDN:R23::PROVOR_MT", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA float. PLATFORM_TYPE_KEY = 600" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NOVA", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NOVA", + "skos:notation": "SDN:R23::NOVA", + "pav:version": "1", + "dce:identifier": "SDN:R23::NOVA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X float designed for the US Navy. PLATFORM_TYPE_KEY = 203" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::S2X", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "S2X", + "skos:notation": "SDN:R23::S2X", + "pav:version": "1", + "dce:identifier": "SDN:R23::S2X", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/1/" + }, + "dce:identifier": "SDN:R23::APEX", + "pav:version": "1", + "skos:notation": "SDN:R23::APEX", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "APEX float. PLATFORM_TYPE_KEY = 001" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/1/" + }, + "dce:identifier": "SDN:R23::SOLO_W", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Woods Whole Oceanographic Institution (WHOI). PLATFORM_TYPE_KEY = 201" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO_W", + "skos:prefLabel": { + "@language": "en", + "@value": "WHOI SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO_W", + "skos:notation": "SDN:R23::SOLO_W", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/1/" + }, + "dce:identifier": "SDN:R23::SOLO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO float manufactured by Scripps Institution of Oceanography (SIO). PLATFORM_TYPE_KEY = 200" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::SOLO", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO SOLO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "SOLO", + "skos:notation": "SDN:R23::SOLO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Dual board PROVOR float. PLATFORM_TYPE_KEY = 103" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::PROVOR_II", + "skos:prefLabel": { + "@language": "en", + "@value": "Dual board PROVOR float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "PROVOR_II", + "skos:notation": "SDN:R23::PROVOR_II", + "pav:version": "1", + "dce:identifier": "SDN:R23::PROVOR_II" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO float. PLATFORM_TYPE_KEY = 205" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::ALTO", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "ALTO", + "skos:notation": "SDN:R23::ALTO", + "pav:version": "1", + "dce:identifier": "SDN:R23::ALTO" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/1/" + }, + "dce:identifier": "SDN:R23::NEMO", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO float. PLATFORM_TYPE_KEY = 400" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NEMO", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NEMO", + "skos:notation": "SDN:R23::NEMO", + "pav:version": "1" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + "skos:definition": { + "@language": "en", + "@value": "Deep APEX float. PLATFORM_TYPE_KEY = 020" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::APEX_D", + "skos:prefLabel": { + "@language": "en", + "@value": "Deep APEX float" + }, + "owl:versionInfo": "1", + "skos:narrower": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + }, + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "APEX_D", + "skos:notation": "SDN:R23::APEX_D", + "pav:version": "1", + "dce:identifier": "SDN:R23::APEX_D", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/", + "pav:authoredOn": "2020-05-03 20:30:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/1/" + }, + "dce:identifier": "SDN:R23::NINJA", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA float. PLATFORM_TYPE_KEY = 300" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R23::NINJA", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float" + }, + "owl:versionInfo": "1", + "skos:narrower": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + } + ], + "dc:date": "2020-05-03 20:30:02.0", + "skos:altLabel": "NINJA", + "skos:notation": "SDN:R23::NINJA" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM4000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/XUANWU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/COPEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_BGC_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/FLOAT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float types. Argo netCDF variable PLATFORM_TYPE is populated by R23 altLabel.", + "dc:title": "Argo platform type", + "skos:prefLabel": "Argo platform type", + "owl:versionInfo": "8", + "dc:date": "2024-09-12 03:00:00.0", + "skos:altLabel": "PLATFORM_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R23" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f.txt b/argopy/tests/test_data/332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f.txt new file mode 100644 index 00000000..cb4d1f4b --- /dev/null +++ b/argopy/tests/test_data/332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f.txt @@ -0,0 +1,2711 @@ +# Title : Profile directory file of the Argo Global Data Assembly Center +# Description : The directory file describes all individual profile files of the argo GDAC ftp site. +# Project : ARGO +# Format version : 2.0 +# Date of update : 20230427112425 +# FTP root number 1 : ftp://ftp.ifremer.fr/ifremer/argo/dac +# FTP root number 2 : ftp://usgodae.org/pub/outgoing/argo/dac +# GDAC node : CORIOLIS +file,date,latitude,longitude,ocean,profiler_type,institution,date_update +aoml/13857/profiles/R13857_001.nc,19970729200300,0.267,-16.032,A,845,AO,20181011180520 +aoml/13857/profiles/R13857_002.nc,19970809192112,0.072,-17.659,A,845,AO,20181011180521 +aoml/13857/profiles/R13857_003.nc,19970820184545,0.543,-19.622,A,845,AO,20181011180521 +aoml/13857/profiles/R13857_004.nc,19970831193905,1.256,-20.521,A,845,AO,20181011180521 +aoml/13857/profiles/R13857_005.nc,19970911185808,0.720,-20.768,A,845,AO,20181011180521 +aoml/13857/profiles/R13857_006.nc,19970922195702,1.756,-21.566,A,845,AO,20181011180522 +aoml/13857/profiles/R13857_007.nc,19971003191549,2.595,-21.564,A,845,AO,20181011180522 +aoml/13857/profiles/R13857_008.nc,19971014183935,1.761,-21.587,A,845,AO,20181011180522 +aoml/13857/profiles/R13857_009.nc,19971025193234,1.804,-21.774,A,845,AO,20181011180522 +aoml/13857/profiles/R13857_010.nc,19971105185142,1.642,-21.362,A,845,AO,20181011180522 +aoml/13857/profiles/R13857_011.nc,19971116194909,1.708,-20.758,A,845,AO,20181011180523 +aoml/13857/profiles/R13857_012.nc,19971127190705,2.048,-20.224,A,845,AO,20181011180523 +aoml/13857/profiles/R13857_013.nc,19971208183913,2.087,-19.769,A,845,AO,20181011180523 +aoml/13857/profiles/R13857_014.nc,19971219192356,2.674,-20.144,A,845,AO,20181011180523 +aoml/13857/profiles/R13857_015.nc,19971230184422,2.890,-20.433,A,845,AO,20181011180524 +aoml/13857/profiles/R13857_016.nc,19980110194140,2.818,-20.699,A,845,AO,20181011180524 +aoml/13857/profiles/R13857_017.nc,19980121190033,2.940,-20.789,A,845,AO,20181011180524 +aoml/13857/profiles/R13857_018.nc,19980201195831,3.224,-20.757,A,845,AO,20181011180524 +aoml/13857/profiles/R13857_019.nc,19980212191555,3.757,-20.953,A,845,AO,20181011180524 +aoml/13857/profiles/R13857_020.nc,19980223184016,3.935,-20.805,A,845,AO,20181011180525 +aoml/13857/profiles/R13857_021.nc,19980306193254,4.006,-20.016,A,845,AO,20181011180525 +aoml/13857/profiles/R13857_022.nc,19980317185446,3.841,-19.594,A,845,AO,20181011180525 +aoml/13857/profiles/R13857_023.nc,19980329025435,3.840,-19.004,A,845,AO,20181011180526 +aoml/13857/profiles/R13857_024.nc,19980408190603,3.529,-19.409,A,845,AO,20181011180526 +aoml/13857/profiles/R13857_025.nc,19980419200501,3.590,-19.398,A,845,AO,20181011180526 +aoml/13857/profiles/R13857_026.nc,19980430192248,3.815,-19.252,A,845,AO,20181011180527 +aoml/13857/profiles/R13857_027.nc,19980511184606,3.541,-19.034,A,845,AO,20181011180527 +aoml/13857/profiles/R13857_028.nc,19980522193832,3.347,-18.711,A,845,AO,20181011180527 +aoml/13857/profiles/R13857_029.nc,19980602185650,3.236,-18.883,A,845,AO,20181011180527 +aoml/13857/profiles/R13857_030.nc,19980613195405,3.317,-18.781,A,845,AO,20181011180528 +aoml/13857/profiles/R13857_031.nc,19980624191155,3.424,-18.946,A,845,AO,20181011180528 +aoml/13857/profiles/R13857_032.nc,19980705200958,3.244,-19.063,A,845,AO,20181011180528 +aoml/13857/profiles/R13857_033.nc,19980716192720,3.340,-19.104,A,845,AO,20181011180528 +aoml/13857/profiles/R13857_034.nc,19980727184756,3.553,-19.280,A,845,AO,20181011180529 +aoml/13857/profiles/R13857_035.nc,19980807194227,3.927,-18.815,A,845,AO,20181011180529 +aoml/13857/profiles/R13857_036.nc,19980818185935,3.736,-18.552,A,845,AO,20181011180529 +aoml/13857/profiles/R13857_037.nc,19980829195827,3.622,-18.176,A,845,AO,20181011180530 +aoml/13857/profiles/R13857_038.nc,19980909191624,3.786,-18.031,A,845,AO,20181011180530 +aoml/13857/profiles/R13857_039.nc,19980920201346,3.979,-17.841,A,845,AO,20181011180530 +aoml/13857/profiles/R13857_040.nc,19981001192909,3.723,-17.854,A,845,AO,20181011180530 +aoml/13857/profiles/R13857_041.nc,19981012184849,3.704,-17.962,A,845,AO,20181011180530 +aoml/13857/profiles/R13857_042.nc,19981023194411,3.758,-17.823,A,845,AO,20181011180531 +aoml/13857/profiles/R13857_043.nc,19981103190022,3.652,-17.700,A,845,AO,20181011180531 +aoml/13857/profiles/R13857_044.nc,19981114195944,3.512,-17.996,A,845,AO,20181011180531 +aoml/13857/profiles/R13857_045.nc,19981125191419,3.510,-18.453,A,845,AO,20181011180531 +aoml/13857/profiles/R13857_046.nc,19981206201307,3.423,-18.920,A,845,AO,20181011180531 +aoml/13857/profiles/R13857_047.nc,19981217202139,3.264,-18.769,A,845,AO,20181011180532 +aoml/13857/profiles/R13857_048.nc,19981228194008,3.261,-18.833,A,845,AO,20181011180532 +aoml/13857/profiles/R13857_049.nc,19990108190146,3.285,-18.837,A,845,AO,20181011180532 +aoml/13857/profiles/R13857_050.nc,19990119195501,3.057,-19.111,A,845,AO,20181011180532 +aoml/13857/profiles/R13857_051.nc,19990130191334,3.361,-19.263,A,845,AO,20181011180533 +aoml/13857/profiles/R13857_052.nc,19990210200856,3.313,-19.604,A,845,AO,20181011180533 +aoml/13857/profiles/R13857_053.nc,19990221192951,3.524,-20.167,A,845,AO,20181011180533 +aoml/13857/profiles/R13857_054.nc,19990304202811,3.514,-20.780,A,845,AO,20181011180533 +aoml/13857/profiles/R13857_055.nc,19990315194101,3.484,-21.234,A,845,AO,20181011180534 +aoml/13857/profiles/R13857_056.nc,19990326203742,3.218,-21.733,A,845,AO,20181011180534 +aoml/13857/profiles/R13857_057.nc,19990406185258,3.250,-22.464,A,845,AO,20181011180534 +aoml/13857/profiles/R13857_058.nc,19990417191728,3.450,-22.955,A,845,AO,20181011180534 +aoml/13857/profiles/R13857_059.nc,19990428190613,3.598,-23.189,A,845,AO,20181011180535 +aoml/13857/profiles/R13857_060.nc,19990509192919,3.542,-23.346,A,845,AO,20181011180535 +aoml/13857/profiles/R13857_061.nc,19990520191602,3.663,-23.288,A,845,AO,20181011180535 +aoml/13857/profiles/R13857_062.nc,19990531194122,3.407,-23.657,A,845,AO,20181011180536 +aoml/13857/profiles/R13857_063.nc,19990611192702,3.831,-23.867,A,845,AO,20181011180536 +aoml/13857/profiles/R13857_064.nc,19990622185519,3.896,-24.049,A,845,AO,20181011180536 +aoml/13857/profiles/R13857_065.nc,19990703191609,3.745,-24.331,A,845,AO,20181011180536 +aoml/13857/profiles/R13857_066.nc,19990714185839,3.661,-24.873,A,845,AO,20181011180536 +aoml/13857/profiles/R13857_067.nc,19990725192640,3.277,-25.326,A,845,AO,20181011180537 +aoml/13857/profiles/R13857_068.nc,19990805190342,3.427,-26.257,A,845,AO,20181011180537 +aoml/13857/profiles/R13857_069.nc,19990816193814,3.520,-26.572,A,845,AO,20181011180537 +aoml/13857/profiles/R13857_070.nc,19990827191501,3.423,-26.812,A,845,AO,20181011180537 +aoml/13857/profiles/R13857_071.nc,19990907195055,3.782,-27.274,A,845,AO,20181011180537 +aoml/13857/profiles/R13857_072.nc,19990918192319,3.865,-27.497,A,845,AO,20181011180538 +aoml/13857/profiles/R13857_073.nc,19990929200208,4.086,-27.339,A,845,AO,20181011180538 +aoml/13857/profiles/R13857_074.nc,19991010194646,3.868,-27.049,A,845,AO,20181011180538 +aoml/13857/profiles/R13857_075.nc,19991021201221,3.983,-27.102,A,845,AO,20181011180538 +aoml/13857/profiles/R13857_076.nc,19991101193355,4.027,-27.333,A,845,AO,20181011180538 +aoml/13857/profiles/R13857_077.nc,19991112202315,3.832,-27.576,A,845,AO,20181011180539 +aoml/13857/profiles/R13857_078.nc,19991123185924,4.116,-27.749,A,845,AO,20181011180539 +aoml/13857/profiles/R13857_079.nc,19991204203448,3.971,-28.342,A,845,AO,20181011180539 +aoml/13857/profiles/R13857_080.nc,19991215195234,3.757,-28.457,A,845,AO,20181011180539 +aoml/13857/profiles/R13857_081.nc,19991226191951,3.965,-28.355,A,845,AO,20181011180539 +aoml/13857/profiles/R13857_082.nc,20000106185941,4.449,-28.365,A,845,AO,20181011180540 +aoml/13857/profiles/R13857_083.nc,20000117205411,4.474,-28.664,A,845,AO,20181011180540 +aoml/13857/profiles/R13857_084.nc,20000128201408,4.076,-28.653,A,845,AO,20181011180540 +aoml/13857/profiles/R13857_085.nc,20000208191726,3.544,-28.550,A,845,AO,20181011180540 +aoml/13857/profiles/R13857_086.nc,20000219202056,3.850,-28.523,A,845,AO,20181011180540 +aoml/13857/profiles/R13857_087.nc,20000301193805,4.394,-28.602,A,845,AO,20181011180541 +aoml/13857/profiles/R13857_088.nc,20000312203047,4.440,-28.690,A,845,AO,20181011180541 +aoml/13857/profiles/R13857_089.nc,20000323191409,3.901,-29.034,A,845,AO,20181011180541 +aoml/13857/profiles/R13857_090.nc,20000403203752,3.470,-29.791,A,845,AO,20181011180541 +aoml/13857/profiles/R13857_091.nc,20000414195004,3.228,-30.619,A,845,AO,20181011180542 +aoml/13857/profiles/R13857_092.nc,20000425193647,3.041,-31.590,A,845,AO,20181011180542 +aoml/13857/profiles/R13857_093.nc,20000506190945,2.920,-32.245,A,845,AO,20181011180542 +aoml/13857/profiles/R13857_094.nc,20000517205323,3.086,-33.107,A,845,AO,20181011180542 +aoml/13857/profiles/R13857_095.nc,20000528195338,3.415,-33.658,A,845,AO,20181011180542 +aoml/13857/profiles/R13857_096.nc,20000608192758,3.735,-33.757,A,845,AO,20181011180543 +aoml/13857/profiles/R13857_097.nc,20000619191146,4.358,-33.239,A,845,AO,20181011180543 +aoml/13857/profiles/R13857_098.nc,20000630210520,4.950,-32.428,A,845,AO,20181011180543 +aoml/13857/profiles/R13857_099.nc,20000711195233,4.667,-31.344,A,845,AO,20181011180543 +aoml/13857/profiles/R13857_100.nc,20000722191841,4.563,-30.816,A,845,AO,20181011180543 +aoml/13857/profiles/R13857_101.nc,20000802202451,4.669,-30.208,A,845,AO,20181011180544 +aoml/13857/profiles/R13857_102.nc,20000813194130,5.240,-29.452,A,845,AO,20181011180544 +aoml/13857/profiles/R13857_103.nc,20000824194022,5.832,-28.832,A,845,AO,20181011180544 +aoml/13857/profiles/R13857_104.nc,20000904191534,6.102,-28.656,A,845,AO,20181011180544 +aoml/13857/profiles/R13857_105.nc,20000915193817,6.413,-28.674,A,845,AO,20181011180545 +aoml/13857/profiles/R13857_106.nc,20000926195011,6.859,-28.683,A,845,AO,20181011180545 +aoml/13857/profiles/R13857_107.nc,20001007192353,6.398,-28.331,A,845,AO,20181011180545 +aoml/13857/profiles/R13857_108.nc,20001018195157,6.015,-27.892,A,845,AO,20181011180546 +aoml/13857/profiles/R13857_109.nc,20001029193306,5.937,-27.003,A,845,AO,20181011180546 +aoml/13857/profiles/R13857_110.nc,20001109194040,6.525,-26.782,A,845,AO,20181011180546 +aoml/13857/profiles/R13857_111.nc,20001120192032,6.739,-26.675,A,845,AO,20181011180547 +aoml/13857/profiles/R13857_112.nc,20001201195735,6.482,-26.606,A,845,AO,20181011180547 +aoml/13857/profiles/R13857_113.nc,20001212192709,6.258,-27.009,A,845,AO,20181011180547 +aoml/13857/profiles/R13857_114.nc,20001223192817,5.844,-27.645,A,845,AO,20181011180548 +aoml/13857/profiles/R13857_115.nc,20010103192712,5.637,-28.368,A,845,AO,20181011180548 +aoml/13857/profiles/R13857_116.nc,20010114200044,5.325,-28.833,A,845,AO,20181011180548 +aoml/13857/profiles/R13857_117.nc,20010125193628,4.757,-28.534,A,845,AO,20181011180548 +aoml/13857/profiles/R13857_118.nc,20010205200017,4.504,-28.108,A,845,AO,20181011180549 +aoml/13857/profiles/R13857_119.nc,20010216205127,4.762,-27.825,A,845,AO,20181011180549 +aoml/13857/profiles/R13857_120.nc,20010227194555,5.191,-27.423,A,845,AO,20181011180549 +aoml/13857/profiles/R13857_121.nc,20010310205344,5.069,-27.290,A,845,AO,20181011180550 +aoml/13857/profiles/R13857_122.nc,20010321200440,4.839,-27.643,A,845,AO,20181011180550 +aoml/13857/profiles/R13857_123.nc,20010401195402,4.856,-27.887,A,845,AO,20181011180550 +aoml/13857/profiles/R13857_124.nc,20010412200549,4.937,-28.113,A,845,AO,20181011180551 +aoml/13857/profiles/R13857_125.nc,20010423205345,5.073,-28.245,A,845,AO,20181011180551 +aoml/13857/profiles/R13857_126.nc,20010504200301,5.384,-28.137,A,845,AO,20181011180551 +aoml/13857/profiles/R13857_127.nc,20010515205304,5.102,-27.711,A,845,AO,20181011180552 +aoml/13857/profiles/R13857_128.nc,20010526214306,4.392,-27.604,A,845,AO,20181011180552 +aoml/13857/profiles/R13857_129.nc,20010606201158,4.266,-27.578,A,845,AO,20181011180552 +aoml/13857/profiles/R13857_130.nc,20010617214305,4.809,-27.307,A,845,AO,20181011180552 +aoml/13857/profiles/R13857_131.nc,20010628205027,5.002,-26.811,A,845,AO,20181011180553 +aoml/13857/profiles/R13857_132.nc,20010709214203,4.876,-26.261,A,845,AO,20181011180553 +aoml/13857/profiles/R13857_133.nc,20010720205003,5.548,-26.004,A,845,AO,20181011180553 +aoml/13857/profiles/R13857_134.nc,20010731213816,5.449,-25.860,A,845,AO,20181011180554 +aoml/13857/profiles/R13857_135.nc,20010811223022,5.251,-25.735,A,845,AO,20181011180554 +aoml/13857/profiles/R13857_136.nc,20010822213832,5.314,-25.618,A,845,AO,20181011180554 +aoml/13857/profiles/R13857_137.nc,20010902191105,5.387,-25.473,A,845,AO,20181011180554 +aoml/13857/profiles/R13857_138.nc,20010913184429,5.285,-25.239,A,845,AO,20181011180555 +aoml/13857/profiles/R13857_139.nc,20010924190811,4.974,-24.968,A,845,AO,20181011180555 +aoml/13857/profiles/R13857_140.nc,20011005192213,5.149,-24.432,A,845,AO,20191024211517 +aoml/5900446/profiles/D5900446_000.nc,20040420100619,-41.535,-163.982,P,0851,AO,20140718140259 +aoml/5900446/profiles/D5900446_001.nc,20040430010150,-41.731,-164.016,P,0851,AO,20140718140259 +aoml/5900446/profiles/D5900446_002.nc,20040509153548,-41.533,-163.216,P,851,AO,20140718140300 +aoml/5900446/profiles/D5900446_003.nc,20040519060950,-41.163,-162.636,P,851,AO,20140718140300 +aoml/5900446/profiles/D5900446_004.nc,20040528204338,-41.023,-162.510,P,851,AO,20140718140300 +aoml/5900446/profiles/D5900446_005.nc,20040607111744,-41.065,-162.423,P,851,AO,20140718140300 +aoml/5900446/profiles/D5900446_006.nc,20040617015138,-40.924,-162.505,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_007.nc,20040626162348,-40.645,-162.328,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_008.nc,20040706065606,-40.340,-162.171,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_009.nc,20040715212824,-40.463,-161.693,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_010.nc,20040725120043,-40.562,-161.213,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_011.nc,20040804023259,-40.459,-160.908,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_012.nc,20040813170515,-40.177,-160.839,P,851,AO,20140718140301 +aoml/5900446/profiles/D5900446_013.nc,20040823073726,-39.845,-161.016,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_014.nc,20040901220940,-39.569,-161.403,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_015.nc,20040911124200,-39.472,-162.067,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_016.nc,20040921031744,-39.519,-162.540,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_017.nc,20040930175325,-39.555,-162.700,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_018.nc,20041010081901,-39.914,-163.001,P,851,AO,20140718140302 +aoml/5900446/profiles/D5900446_019.nc,20041019225146,-40.215,-162.961,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_020.nc,20041029132431,-40.264,-162.771,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_021.nc,20041108035703,-40.208,-162.165,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_022.nc,20041117182834,-40.160,-161.767,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_023.nc,20041127085957,-39.972,-161.685,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_024.nc,20041206233109,-39.693,-161.770,P,851,AO,20140718140303 +aoml/5900446/profiles/D5900446_025.nc,20041216140221,-39.499,-162.066,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_026.nc,20041226043333,-39.515,-162.170,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_027.nc,20050104190436,-39.401,-162.476,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_028.nc,20050114093550,-39.310,-162.552,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_029.nc,20050124000705,-39.133,-162.454,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_030.nc,20050202143819,-38.994,-162.372,P,851,AO,20140718140304 +aoml/5900446/profiles/D5900446_031.nc,20050212050928,-38.989,-162.211,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_032.nc,20050221194042,-39.121,-161.817,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_033.nc,20050303101151,-39.124,-161.467,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_034.nc,20050313004305,-38.988,-161.089,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_035.nc,20050322151412,-38.826,-160.875,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_036.nc,20050401054332,-38.664,-160.631,P,851,AO,20140718140305 +aoml/5900446/profiles/D5900446_037.nc,20050410201254,-38.673,-160.273,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_038.nc,20050420104208,-38.707,-160.027,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_039.nc,20050430011135,-38.722,-159.635,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_040.nc,20050509154058,-38.594,-159.374,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_041.nc,20050519061019,-38.663,-159.088,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_042.nc,20050528203925,-38.776,-158.891,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_043.nc,20050607110857,-38.801,-158.832,P,851,AO,20140718140306 +aoml/5900446/profiles/D5900446_044.nc,20050617013827,-38.650,-158.697,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_045.nc,20050626160521,-38.525,-158.587,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_046.nc,20050706063218,-38.343,-158.191,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_047.nc,20050715205910,-38.287,-157.792,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_048.nc,20050725112607,-38.554,-157.417,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_049.nc,20050804015301,-38.637,-157.071,P,851,AO,20140718140307 +aoml/5900446/profiles/D5900446_050.nc,20050813161956,-38.632,-156.923,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_051.nc,20050823064649,-38.470,-156.756,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_052.nc,20050901211346,-38.300,-156.856,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_053.nc,20050911114038,-38.016,-156.969,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_054.nc,20050921020735,-37.797,-156.982,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_055.nc,20050930163429,-37.660,-156.884,P,851,AO,20140718140308 +aoml/5900446/profiles/D5900446_056.nc,20051010070122,-37.542,-156.919,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_057.nc,20051019212733,-37.503,-156.924,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_058.nc,20051029115341,-37.432,-157.075,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_059.nc,20051108021940,-37.396,-157.271,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_060.nc,20051117164550,-37.349,-157.319,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_061.nc,20051127071159,-37.301,-157.425,P,851,AO,20140718140309 +aoml/5900446/profiles/D5900446_062.nc,20051206213809,-37.190,-157.605,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_063.nc,20051216120417,-37.001,-157.756,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_064.nc,20051226023023,-36.819,-157.792,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_065.nc,20060104165635,-36.600,-157.614,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_066.nc,20060114072237,-36.554,-157.489,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_067.nc,20060123214849,-36.677,-157.322,P,851,AO,20140718140310 +aoml/5900446/profiles/D5900446_068.nc,20060202121457,-36.688,-157.330,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_069.nc,20060212024112,-36.706,-157.194,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_070.nc,20060221170729,-36.729,-157.322,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_071.nc,20060303073301,-36.679,-156.936,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_072.nc,20060312215841,-36.791,-156.854,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_073.nc,20060322122420,-36.903,-156.745,P,851,AO,20140718140311 +aoml/5900446/profiles/D5900446_074.nc,20060401024953,-36.854,-156.883,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_075.nc,20060410171529,-36.897,-156.848,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_076.nc,20060420074106,-36.880,-156.974,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_077.nc,20060429220643,-36.802,-157.078,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_078.nc,20060509123221,-36.843,-157.194,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_079.nc,20060519025756,-36.825,-157.376,P,851,AO,20140718140312 +aoml/5900446/profiles/D5900446_080.nc,20060528172324,-36.687,-157.607,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_081.nc,20060607074620,-36.556,-157.877,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_082.nc,20060616220911,-36.617,-157.737,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_083.nc,20060626123202,-36.818,-157.552,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_084.nc,20060706025449,-36.936,-157.543,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_085.nc,20060715171733,-36.986,-157.507,P,851,AO,20140718140313 +aoml/5900446/profiles/D5900446_086.nc,20060725074009,-37.115,-157.509,P,851,AO,20140718140314 +aoml/5900446/profiles/D5900446_087.nc,20060803220257,-37.054,-157.387,P,851,AO,20140718140314 +aoml/5900446/profiles/D5900446_088.nc,20060813122642,-37.036,-157.124,P,851,AO,20140718140314 +aoml/5900446/profiles/D5900446_089.nc,20060823025028,-36.977,-156.914,P,851,AO,20140718140314 +aoml/5900446/profiles/D5900446_090.nc,20060901171429,-36.845,-156.798,P,851,AO,20140718140314 +aoml/5900446/profiles/D5900446_091.nc,20060911073704,-36.773,-156.869,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_092.nc,20060920215925,-36.758,-156.807,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_093.nc,20060930122205,-36.772,-156.786,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_094.nc,20061010024439,-36.744,-156.850,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_095.nc,20061019170716,-36.811,-156.972,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_096.nc,20061029072951,-36.874,-157.153,P,851,AO,20140718140315 +aoml/5900446/profiles/D5900446_097.nc,20061107215337,-36.995,-157.250,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_098.nc,20061117121724,-37.123,-157.367,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_099.nc,20061127024103,-37.162,-157.332,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_100.nc,20061206170453,-37.156,-157.274,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_101.nc,20061216072724,-37.172,-157.207,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_102.nc,20061225214955,-37.020,-157.036,P,851,AO,20140718140316 +aoml/5900446/profiles/D5900446_103.nc,20070104121302,-36.993,-157.006,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_104.nc,20070114023613,-36.808,-156.888,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_105.nc,20070123165921,-36.729,-156.887,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_106.nc,20070202072228,-36.637,-156.807,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_107.nc,20070211214532,-36.656,-156.652,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_108.nc,20070221120839,-36.758,-156.500,P,851,AO,20140718140317 +aoml/5900446/profiles/D5900446_109.nc,20070303023153,-36.935,-156.478,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_110.nc,20070312165456,-37.030,-156.422,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_111.nc,20070322071807,-37.043,-156.400,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_112.nc,20070331214112,-37.100,-156.411,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_113.nc,20070410120558,-37.166,-156.334,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_114.nc,20070420023023,-37.154,-156.194,P,851,AO,20140718140318 +aoml/5900446/profiles/D5900446_115.nc,20070429165206,-37.035,-155.894,P,851,AO,20140718140319 +aoml/5900446/profiles/D5900446_116.nc,20070509071336,-36.970,-155.816,P,851,AO,20140718140319 +aoml/5900446/profiles/D5900446_117.nc,20070518213508,-36.885,-155.865,P,851,AO,20140718140319 +aoml/5900446/profiles/D5900446_118.nc,20070528115635,-36.795,-155.788,P,851,AO,20140718140319 +aoml/5900446/profiles/D5900446_119.nc,20070607021806,-36.645,-155.733,P,851,AO,20140718140319 +aoml/5900446/profiles/D5900446_120.nc,20070616163941,-36.604,-155.855,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_121.nc,20070626070114,-36.687,-155.897,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_122.nc,20070705212243,-36.748,-155.969,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_123.nc,20070715114411,-36.835,-156.055,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_124.nc,20070725020538,-36.749,-156.123,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_125.nc,20070803162711,-36.681,-156.056,P,851,AO,20140718140320 +aoml/5900446/profiles/D5900446_126.nc,20070813064600,-36.772,-156.027,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_127.nc,20070822210621,-36.889,-156.061,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_128.nc,20070901112626,-37.084,-155.784,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_129.nc,20070911014624,-37.172,-155.665,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_130.nc,20070920160633,-37.317,-155.665,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_131.nc,20070930062619,-37.375,-155.619,P,851,AO,20140718140321 +aoml/5900446/profiles/D5900446_132.nc,20071009204626,-37.454,-155.751,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_133.nc,20071019110537,-37.594,-155.768,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_134.nc,20071029012441,-37.779,-155.989,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_135.nc,20071107154540,-37.761,-156.182,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_136.nc,20071117060456,-37.807,-156.318,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_137.nc,20071126202423,-37.894,-156.765,P,851,AO,20140718140322 +aoml/5900446/profiles/D5900446_138.nc,20071206104344,-38.170,-157.219,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_139.nc,20071216010322,-38.389,-157.708,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_140.nc,20071225152315,-38.459,-158.301,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_141.nc,20080104054248,-38.495,-158.721,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_142.nc,20080113200237,-38.540,-158.972,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_143.nc,20080123102324,-38.655,-159.264,P,851,AO,20140718140323 +aoml/5900446/profiles/D5900446_144.nc,20080202004347,-38.710,-159.646,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_145.nc,20080211150405,-38.731,-159.945,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_146.nc,20080221052430,-38.783,-160.417,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_147.nc,20080301194447,-38.946,-160.851,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_148.nc,20080311100501,-39.030,-161.262,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_149.nc,20080321002505,-39.065,-161.549,P,851,AO,20140718140324 +aoml/5900446/profiles/D5900446_150.nc,20080330144505,-39.155,-161.872,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_151.nc,20080409050520,-39.081,-162.187,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_152.nc,20080418192523,-38.859,-162.369,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_153.nc,20080428094535,-38.954,-162.390,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_154.nc,20080508000537,-39.010,-162.433,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_155.nc,20080517142548,-39.140,-162.488,P,851,AO,20140718140325 +aoml/5900446/profiles/D5900446_156.nc,20080527044311,-39.093,-162.648,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_157.nc,20080605190029,-39.216,-162.766,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_158.nc,20080615091750,-39.344,-162.654,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_159.nc,20080624233511,-39.554,-162.591,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_160.nc,20080704135237,-39.650,-162.493,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_161.nc,20080714041001,-39.877,-162.764,P,851,AO,20140718140326 +aoml/5900446/profiles/D5900446_162.nc,20080723182717,-40.149,-162.565,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_163.nc,20080802084442,-40.216,-162.251,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_164.nc,20080811225857,-40.175,-162.144,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_165.nc,20080821131313,-39.918,-162.226,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_166.nc,20080831032726,-39.681,-162.400,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_167.nc,20080909174139,-39.522,-162.480,P,851,AO,20140718140327 +aoml/5900446/profiles/D5900446_168.nc,20080919075553,-39.748,-162.357,P,851,AO,20140718140328 +aoml/5900446/profiles/D5900446_169.nc,20080928221000,-39.896,-162.523,P,851,AO,20140718140328 +aoml/5900446/profiles/D5900446_170.nc,20081008122419,-40.028,-162.618,P,851,AO,20140718140328 +aoml/5900446/profiles/D5900446_171.nc,20081018023832,-40.190,-162.563,P,851,AO,20140718140328 +aoml/5900446/profiles/D5900446_172.nc,20081027165246,-40.118,-162.374,P,851,AO,20140718140328 +aoml/5900446/profiles/D5900446_173.nc,20081106070803,-40.028,-162.307,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_174.nc,20081115212330,-39.959,-162.280,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_175.nc,20081125113847,-39.961,-162.003,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_176.nc,20081205015408,-39.800,-161.470,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_177.nc,20081214160934,-39.637,-161.185,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_178.nc,20081224063123,-39.575,-160.978,P,851,AO,20140718140329 +aoml/5900446/profiles/D5900446_179.nc,20090102205329,-39.574,-160.739,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_180.nc,20090112111533,-39.671,-160.544,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_181.nc,20090122013728,-39.694,-160.636,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_182.nc,20090131155934,-39.622,-160.684,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_183.nc,20090210062131,-39.611,-160.648,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_184.nc,20090219204336,-39.640,-160.865,P,851,AO,20140718140330 +aoml/5900446/profiles/D5900446_185.nc,20090301110548,-39.600,-161.016,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_186.nc,20090311013008,-39.552,-161.256,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_187.nc,20090320155424,-39.439,-161.337,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_188.nc,20090330061852,-39.371,-161.191,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_189.nc,20090408204313,-39.416,-161.217,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_190.nc,20090418110527,-39.493,-161.492,P,851,AO,20140718140331 +aoml/5900446/profiles/D5900446_191.nc,20090428012742,-39.575,-162.100,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_192.nc,20090507154955,-39.736,-162.677,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_193.nc,20090517061209,-39.919,-163.070,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_194.nc,20090526203421,-39.836,-163.760,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_195.nc,20090605105640,-39.608,-163.985,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_196.nc,20090615011851,-39.375,-164.076,P,851,AO,20140718140332 +aoml/5900446/profiles/D5900446_197.nc,20090624153758,-39.334,-164.087,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_198.nc,20090704055709,-39.352,-164.065,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_199.nc,20090713201617,-39.276,-164.248,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_200.nc,20090723103527,-39.147,-164.456,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_201.nc,20090802005305,-38.935,-164.592,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_202.nc,20090811151051,-38.777,-164.731,P,851,AO,20140718140333 +aoml/5900446/profiles/D5900446_203.nc,20090821052835,-38.600,-164.851,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_204.nc,20090830194619,-38.586,-164.892,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_205.nc,20090909100401,-38.646,-164.686,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_206.nc,20090919002145,-38.602,-164.392,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_207.nc,20090928143924,-38.594,-164.462,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_208.nc,20091008045708,-38.670,-164.378,P,851,AO,20140718140334 +aoml/5900446/profiles/D5900446_209.nc,20091017191450,-38.617,-164.153,P,851,AO,20140718140335 +aoml/5900446/profiles/D5900446_210.nc,20091027093235,-38.862,-163.828,P,851,AO,20140718140335 +aoml/5900446/profiles/D5900446_211.nc,20091105235017,-39.060,-163.423,P,851,AO,20140718140335 +aoml/5900446/profiles/D5900446_212.nc,20091115140801,-39.405,-163.224,P,851,AO,20140718140335 +aoml/5900446/profiles/D5900446_213.nc,20091125042623,-39.625,-163.196,P,851,AO,20140718140335 +aoml/5900446/profiles/D5900446_214.nc,20091204184446,-39.828,-163.228,P,851,AO,20140718140335 +aoml/5906072/profiles/D5906072_001.nc,20200111104739,-31.011,-97.768,P,846,AO,20210907102739 +aoml/5906072/profiles/D5906072_002.nc,20200121080042,-30.922,-97.840,P,846,AO,20210824112706 +aoml/5906072/profiles/D5906072_003.nc,20200131051430,-30.816,-97.925,P,846,AO,20210824112706 +aoml/5906072/profiles/D5906072_004.nc,20200210030929,-30.620,-98.129,P,846,AO,20210824112706 +aoml/5906072/profiles/D5906072_005.nc,20200220003351,-30.482,-98.215,P,846,AO,20210824112706 +aoml/5906072/profiles/D5906072_006.nc,20200229221235,-30.484,-98.354,P,846,AO,20210824112706 +aoml/5906072/profiles/D5906072_007.nc,20200310201650,-30.263,-98.398,P,846,AO,20210824112707 +aoml/5906072/profiles/D5906072_008.nc,20200320174501,-30.172,-98.496,P,846,AO,20210824112707 +aoml/5906072/profiles/D5906072_009.nc,20200330153811,-30.038,-98.542,P,846,AO,20210824112707 +aoml/5906072/profiles/D5906072_010.nc,20200409131750,-29.966,-98.517,P,846,AO,20210824112707 +aoml/5906072/profiles/D5906072_011.nc,20200419105741,-29.916,-98.518,P,846,AO,20210824112707 +aoml/5906072/profiles/D5906072_012.nc,20200429084047,-29.884,-98.457,P,846,AO,20210824112708 +aoml/5906072/profiles/D5906072_013.nc,20200509062418,-29.914,-98.456,P,846,AO,20210824112708 +aoml/5906072/profiles/D5906072_014.nc,20200519041639,-29.939,-98.476,P,846,AO,20210824112708 +aoml/5906072/profiles/D5906072_015.nc,20200529020402,-29.981,-98.447,P,846,AO,20210824112708 +aoml/5906072/profiles/D5906072_016.nc,20200607231624,-30.222,-98.285,P,846,AO,20210824112708 +aoml/5906072/profiles/D5906072_017.nc,20200617214349,-30.217,-98.397,P,846,AO,20210824112709 +aoml/5906072/profiles/D5906072_018.nc,20200627213700,-30.222,-98.498,P,846,AO,20210824112709 +aoml/5906072/profiles/D5906072_019.nc,20200707201111,-30.196,-98.588,P,846,AO,20210824112709 +aoml/5906072/profiles/D5906072_020.nc,20200717200335,-30.182,-98.678,P,846,AO,20210824112709 +aoml/5906072/profiles/D5906072_021.nc,20200727185716,-30.111,-98.749,P,846,AO,20210824112710 +aoml/5906072/profiles/D5906072_022.nc,20200806184721,-30.110,-98.614,P,846,AO,20210824112710 +aoml/5906072/profiles/D5906072_023.nc,20200816171202,-30.000,-98.672,P,846,AO,20210824112710 +aoml/5906072/profiles/D5906072_024.nc,20200826171943,-29.891,-98.819,P,846,AO,20210824112710 +aoml/5906072/profiles/D5906072_025.nc,20200905170615,-30.019,-98.809,P,846,AO,20210824112710 +aoml/5906072/profiles/D5906072_026.nc,20200915160820,-30.008,-98.753,P,846,AO,20210824112711 +aoml/5906072/profiles/D5906072_027.nc,20200925155909,-29.974,-98.743,P,846,AO,20210824112711 +aoml/5906072/profiles/D5906072_028.nc,20201005141606,-29.919,-98.756,P,846,AO,20210824112711 +aoml/5906072/profiles/D5906072_029.nc,20201015140144,-29.773,-99.066,P,846,AO,20210824112711 +aoml/5906072/profiles/D5906072_030.nc,20201025122716,-29.717,-99.183,P,846,AO,20210824112712 +aoml/5906072/profiles/D5906072_031.nc,20201104121133,-29.673,-99.370,P,846,AO,20210824112712 +aoml/5906072/profiles/D5906072_032.nc,20201114111222,-29.652,-99.611,P,846,AO,20210824112712 +aoml/5906072/profiles/D5906072_033.nc,20201124110058,-29.618,-99.776,P,846,AO,20210824112712 +aoml/5906072/profiles/D5906072_034.nc,20201204091834,-29.547,-99.941,P,846,AO,20210824112712 +aoml/5906072/profiles/D5906072_035.nc,20201214090352,-29.416,-100.176,P,846,AO,20210824112713 +aoml/5906072/profiles/D5906072_036.nc,20201224084303,-29.474,-100.578,P,846,AO,20210824112713 +aoml/5906072/profiles/D5906072_037.nc,20210103083136,-29.312,-100.654,P,846,AO,20210824112713 +aoml/5906072/profiles/D5906072_038.nc,20210113064810,-29.123,-100.713,P,846,AO,20210824112713 +aoml/5906072/profiles/D5906072_039.nc,20210123064136,-29.038,-100.610,P,846,AO,20210824112714 +aoml/5906072/profiles/D5906072_040.nc,20210202050407,-29.057,-100.455,P,846,AO,20210824112714 +aoml/5906072/profiles/D5906072_041.nc,20210212045402,-29.070,-100.236,P,846,AO,20210824112714 +aoml/5906072/profiles/D5906072_042.nc,20210222032947,-28.920,-99.963,P,846,AO,20210824112714 +aoml/5906072/profiles/D5906072_043.nc,20210304031723,-28.740,-99.656,P,846,AO,20210824112714 +aoml/5906072/profiles/D5906072_044.nc,20210314025025,-28.552,-99.462,P,846,AO,20210824112715 +aoml/5906072/profiles/D5906072_045.nc,20210324032431,-28.369,-99.326,P,846,AO,20210824112715 +aoml/5906072/profiles/D5906072_046.nc,20210403041435,-28.146,-99.217,P,846,AO,20210824112715 +aoml/5906072/profiles/D5906072_047.nc,20210413030754,-27.945,-99.019,P,846,AO,20210824112715 +aoml/5906072/profiles/D5906072_048.nc,20210423030105,-27.869,-98.711,P,846,AO,20210824112716 +aoml/5906072/profiles/D5906072_049.nc,20210503015142,-27.875,-98.316,P,846,AO,20210824112716 +aoml/5906072/profiles/D5906072_050.nc,20210513014104,-27.931,-98.123,P,846,AO,20210824112716 +aoml/5906072/profiles/D5906072_051.nc,20210523002516,-27.999,-98.023,P,846,AO,20210824112716 +aoml/5906072/profiles/D5906072_052.nc,20210602002331,-28.062,-98.040,P,846,AO,20210824112717 +aoml/5906072/profiles/D5906072_053.nc,20210611225038,-28.119,-98.198,P,846,AO,20210824112717 +aoml/5906072/profiles/D5906072_054.nc,20210621233724,-28.084,-98.353,P,846,AO,20210824112717 +aoml/5906072/profiles/D5906072_055.nc,20210701232513,-28.170,-98.504,P,846,AO,20210824112717 +aoml/5906072/profiles/D5906072_056.nc,20210711234531,-28.168,-98.596,P,846,AO,20210824112718 +aoml/5906072/profiles/D5906072_057.nc,20210721235630,-28.142,-98.588,P,846,AO,20220210114434 +aoml/5906072/profiles/D5906072_058.nc,20210731223546,-28.141,-98.620,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_059.nc,20210810224134,-28.111,-98.706,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_060.nc,20210820212903,-28.057,-98.791,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_061.nc,20210830220042,-28.028,-98.836,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_062.nc,20210909225846,-28.045,-98.826,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_063.nc,20210919221307,-28.036,-98.797,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_064.nc,20210929222745,-28.057,-98.702,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_065.nc,20211009204914,-28.096,-98.603,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_066.nc,20211019213709,-28.146,-98.479,P,846,AO,20220210114435 +aoml/5906072/profiles/D5906072_067.nc,20211029200104,-28.079,-98.362,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_068.nc,20211108201153,-28.075,-98.222,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_069.nc,20211118185401,-28.047,-98.097,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_070.nc,20211128191258,-27.985,-97.999,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_071.nc,20211208182253,-27.925,-97.917,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_072.nc,20211218193205,-27.912,-97.892,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_073.nc,20211228183024,-27.953,-97.963,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_074.nc,20220107181838,-27.905,-97.969,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_075.nc,20220117173711,-27.919,-97.965,P,846,AO,20220210114436 +aoml/5906072/profiles/D5906072_076.nc,20220127173726,-27.954,-98.042,P,846,AO,20220210114437 +aoml/5906072/profiles/D5906072_077.nc,20220206173535,-28.060,-98.109,P,846,AO,20220719091449 +aoml/5906072/profiles/D5906072_078.nc,20220216154215,-28.166,-98.231,P,846,AO,20220719091449 +aoml/5906072/profiles/D5906072_079.nc,20220226153149,-28.357,-98.355,P,846,AO,20220719091449 +aoml/5906072/profiles/D5906072_080.nc,20220308135007,-28.482,-98.438,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_081.nc,20220318134219,-28.528,-98.486,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_082.nc,20220328120224,-28.555,-98.585,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_083.nc,20220407120231,-28.582,-98.646,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_084.nc,20220417104308,-28.649,-98.650,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_085.nc,20220427104115,-28.733,-98.654,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_086.nc,20220507100531,-28.751,-98.650,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_087.nc,20220517101159,-28.770,-98.647,P,846,AO,20220719091450 +aoml/5906072/profiles/D5906072_088.nc,20220527101235,-28.788,-98.643,P,846,AO,20220719091451 +aoml/5906072/profiles/D5906072_089.nc,20220606111128,-28.808,-98.680,P,846,AO,20220719091451 +aoml/5906072/profiles/D5906072_090.nc,20220616125603,-28.852,-98.738,P,846,AO,20220719091451 +aoml/5906072/profiles/D5906072_091.nc,20220626144423,-28.898,-98.800,P,846,AO,20220719091451 +aoml/5906072/profiles/D5906072_092.nc,20220706193131,-28.945,-98.863,P,846,AO,20220719091451 +aoml/5906072/profiles/D5906072_093.nc,20220716201929,-29.048,-98.947,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_094.nc,20220726215020,-29.151,-99.032,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_095.nc,20220806003803,-29.213,-99.161,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_096.nc,20220816020655,-29.217,-99.283,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_097.nc,20220826062620,-29.174,-99.351,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_098.nc,20220905082851,-29.130,-99.420,P,846,AO,20230307104211 +aoml/5906072/profiles/D5906072_099.nc,20220915113131,-29.086,-99.489,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_100.nc,20220925142916,-29.043,-99.558,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_101.nc,20221005153012,-28.999,-99.627,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_102.nc,20221015165321,-28.956,-99.696,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_103.nc,20221025172830,-28.912,-99.765,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_104.nc,20221104190632,-28.955,-99.747,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_105.nc,20221114195440,-29.000,-99.726,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_106.nc,20221124191124,-29.037,-99.693,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_107.nc,20221204193431,-28.992,-99.688,P,846,AO,20230307104212 +aoml/5906072/profiles/D5906072_108.nc,20221214202105,-28.948,-99.731,P,846,AO,20230307104213 +aoml/5906072/profiles/D5906072_109.nc,20221224194155,-28.915,-99.711,P,846,AO,20230307104213 +aoml/5906072/profiles/D5906072_110.nc,20230103202800,-28.880,-99.689,P,846,AO,20230307104213 +aoml/5906072/profiles/D5906072_111.nc,20230113194309,-28.860,-99.653,P,846,AO,20230307104213 +aoml/5906072/profiles/D5906072_112.nc,20230123204827,-28.871,-99.620,P,846,AO,20230307104213 +aoml/5906072/profiles/D5906072_113.nc,20230202194758,-28.957,-99.583,P,846,AO,20230307104214 +aoml/5906072/profiles/D5906072_114.nc,20230212200548,-29.101,-99.528,P,846,AO,20230307104214 +aoml/5906072/profiles/D5906072_115.nc,20230222185648,-29.212,-99.487,P,846,AO,20230307104214 +aoml/5906072/profiles/R5906072_116.nc,20230304193130,-29.290,-99.476,P,846,AO,20230307200159 +aoml/5906072/profiles/R5906072_117.nc,20230314184311,-29.292,-99.367,P,846,AO,20230314223412 +aoml/5906072/profiles/R5906072_118.nc,20230324190115,-29.134,-99.331,P,846,AO,20230324223226 +aoml/5906072/profiles/R5906072_119.nc,20230403182729,-29.052,-99.459,P,846,AO,20230403223233 +aoml/5906072/profiles/R5906072_120.nc,20230413192802,-29.005,-99.720,P,846,AO,20230414000128 +aoml/5906072/profiles/R5906072_121.nc,20230423184350,,,,846,AO,20230423223103 +bodc/6901929/profiles/D6901929_001.nc,20180214083900,53.672,-16.492,A,844,BO,20220302093530 +bodc/6901929/profiles/D6901929_001D.nc,20180212225800,53.685,-16.574,A,844,BO,20220302093529 +bodc/6901929/profiles/D6901929_002.nc,20180224090000,54.822,-15.472,A,844,BO,20220302093530 +bodc/6901929/profiles/D6901929_003.nc,20180306083400,55.111,-15.427,A,844,BO,20220302093530 +bodc/6901929/profiles/D6901929_004.nc,20180316084400,55.054,-15.571,A,844,BO,20220302093530 +bodc/6901929/profiles/D6901929_005.nc,20180326084400,54.533,-15.981,A,844,BO,20220302093530 +bodc/6901929/profiles/D6901929_006.nc,20180405083300,55.003,-16.656,A,844,BO,20220302093531 +bodc/6901929/profiles/D6901929_007.nc,20180415085500,55.225,-16.425,A,844,BO,20220302093531 +bodc/6901929/profiles/D6901929_008.nc,20180425082200,55.178,-16.522,A,844,BO,20220302093531 +bodc/6901929/profiles/D6901929_009.nc,20180505083500,55.040,-16.646,A,844,BO,20220302093531 +bodc/6901929/profiles/D6901929_010.nc,20180515084700,55.230,-15.899,A,844,BO,20220302093532 +bodc/6901929/profiles/D6901929_011.nc,20180525084600,54.983,-15.950,A,844,BO,20220302093532 +bodc/6901929/profiles/D6901929_012.nc,20180604083600,55.033,-15.526,A,844,BO,20220302093532 +bodc/6901929/profiles/D6901929_013.nc,20180614084200,54.635,-16.019,A,844,BO,20220302093532 +bodc/6901929/profiles/D6901929_014.nc,20180624084600,54.114,-16.353,A,844,BO,20220302093533 +bodc/6901929/profiles/D6901929_015.nc,20180704084100,54.162,-16.027,A,844,BO,20220302093533 +bodc/6901929/profiles/D6901929_016.nc,20180714083400,54.547,-15.923,A,844,BO,20220302093533 +bodc/6901929/profiles/D6901929_017.nc,20180724084300,54.642,-16.218,A,844,BO,20220302093533 +bodc/6901929/profiles/D6901929_018.nc,20180803085800,54.901,-17.024,A,844,BO,20220302093534 +bodc/6901929/profiles/D6901929_019.nc,20180813085600,54.853,-17.259,A,844,BO,20220302093534 +bodc/6901929/profiles/D6901929_020.nc,20180823085600,54.742,-17.229,A,844,BO,20220302093534 +bodc/6901929/profiles/D6901929_021.nc,20180902084600,54.758,-17.429,A,844,BO,20220302093534 +bodc/6901929/profiles/D6901929_022.nc,20180912085600,54.508,-18.388,A,844,BO,20220302093535 +bodc/6901929/profiles/D6901929_023.nc,20180922090400,54.391,-18.953,A,844,BO,20220302093535 +bodc/6901929/profiles/D6901929_024.nc,20181002084600,54.008,-19.320,A,844,BO,20220302093535 +bodc/6901929/profiles/D6901929_025.nc,20181012085000,53.773,-20.043,A,844,BO,20220302093535 +bodc/6901929/profiles/D6901929_026.nc,20181022090200,54.387,-20.198,A,844,BO,20220302093536 +bodc/6901929/profiles/D6901929_027.nc,20181101085300,54.639,-19.655,A,844,BO,20220302093536 +bodc/6901929/profiles/D6901929_028.nc,20181111090500,54.854,-19.177,A,844,BO,20220302093536 +bodc/6901929/profiles/D6901929_029.nc,20181121085700,55.150,-18.648,A,844,BO,20220302093536 +bodc/6901929/profiles/D6901929_030.nc,20181201090700,55.365,-18.520,A,844,BO,20220302093537 +bodc/6901929/profiles/D6901929_031.nc,20181211085800,55.396,-18.255,A,844,BO,20220302093537 +bodc/6901929/profiles/D6901929_032.nc,20181221085900,55.400,-18.398,A,844,BO,20220302093537 +bodc/6901929/profiles/D6901929_033.nc,20181231090100,55.267,-18.607,A,844,BO,20220302093537 +bodc/6901929/profiles/D6901929_034.nc,20190110085400,55.911,-18.696,A,844,BO,20220302093538 +bodc/6901929/profiles/D6901929_035.nc,20190120085100,56.369,-18.986,A,844,BO,20220302093538 +bodc/6901929/profiles/D6901929_036.nc,20190130085200,56.749,-18.820,A,844,BO,20220302093538 +bodc/6901929/profiles/D6901929_037.nc,20190209085200,57.020,-17.711,A,844,BO,20220302093538 +bodc/6901929/profiles/D6901929_038.nc,20190219082900,57.572,-17.386,A,844,BO,20220302093539 +bodc/6901929/profiles/D6901929_039.nc,20190301090200,57.629,-17.052,A,844,BO,20220302093539 +bodc/6901929/profiles/D6901929_040.nc,20190311085600,57.507,-17.040,A,844,BO,20220302093539 +bodc/6901929/profiles/D6901929_041.nc,20190321090300,57.550,-16.716,A,844,BO,20220302093540 +bodc/6901929/profiles/D6901929_042.nc,20190331090000,57.557,-16.657,A,844,BO,20220302093540 +bodc/6901929/profiles/D6901929_043.nc,20190410090300,57.843,-16.302,A,844,BO,20220302093540 +bodc/6901929/profiles/D6901929_044.nc,20190420085800,57.690,-16.307,A,844,BO,20220302093540 +bodc/6901929/profiles/D6901929_045.nc,20190430090100,57.832,-16.881,A,844,BO,20220302093541 +bodc/6901929/profiles/D6901929_046.nc,20190510085100,57.641,-16.976,A,844,BO,20220302093541 +bodc/6901929/profiles/D6901929_047.nc,20190520090800,57.341,-17.323,A,844,BO,20220302093541 +bodc/6901929/profiles/D6901929_048.nc,20190530090400,57.461,-17.379,A,844,BO,20220302093541 +bodc/6901929/profiles/D6901929_049.nc,20190609082200,57.551,-17.259,A,844,BO,20220302093542 +bodc/6901929/profiles/D6901929_050.nc,20190619090100,57.577,-17.449,A,844,BO,20220302093542 +bodc/6901929/profiles/D6901929_051.nc,20190629085800,57.450,-17.189,A,844,BO,20220302093542 +bodc/6901929/profiles/D6901929_052.nc,20190709085500,57.542,-17.311,A,844,BO,20220302093542 +bodc/6901929/profiles/D6901929_053.nc,20190719090300,57.379,-18.411,A,844,BO,20220302093543 +bodc/6901929/profiles/D6901929_054.nc,20190729090200,57.212,-19.034,A,844,BO,20220302093543 +bodc/6901929/profiles/D6901929_055.nc,20190808090500,57.027,-18.403,A,844,BO,20220302093543 +bodc/6901929/profiles/D6901929_056.nc,20190818090000,56.856,-17.797,A,844,BO,20220302093543 +bodc/6901929/profiles/D6901929_057.nc,20190828090200,57.057,-18.085,A,844,BO,20220302093544 +bodc/6901929/profiles/D6901929_058.nc,20190907085400,57.361,-17.458,A,844,BO,20220302093544 +bodc/6901929/profiles/D6901929_059.nc,20190917085800,57.184,-17.737,A,844,BO,20220302093544 +bodc/6901929/profiles/D6901929_060.nc,20190927084600,57.416,-18.253,A,844,BO,20220302093545 +bodc/6901929/profiles/D6901929_061.nc,20191007074200,57.176,-19.089,A,844,BO,20220302093545 +bodc/6901929/profiles/D6901929_062.nc,20191017090000,57.454,-17.403,A,844,BO,20220302093545 +bodc/6901929/profiles/D6901929_063.nc,20191027090300,57.427,-17.747,A,844,BO,20220302093545 +bodc/6901929/profiles/D6901929_064.nc,20191106090200,56.993,-18.681,A,844,BO,20220302093545 +bodc/6901929/profiles/D6901929_065.nc,20191116091200,57.245,-18.365,A,844,BO,20220302093546 +bodc/6901929/profiles/D6901929_066.nc,20191126091000,56.937,-19.351,A,844,BO,20220302093546 +bodc/6901929/profiles/D6901929_067.nc,20191206090200,56.614,-19.667,A,844,BO,20220302093546 +bodc/6901929/profiles/D6901929_068.nc,20191216090600,56.627,-20.019,A,844,BO,20220302093547 +bodc/6901929/profiles/D6901929_069.nc,20191226090500,57.277,-20.130,A,844,BO,20220302093547 +bodc/6901929/profiles/D6901929_070.nc,20200105090600,57.564,-19.906,A,844,BO,20220302093547 +bodc/6901929/profiles/D6901929_071.nc,20200115090200,57.605,-19.837,A,844,BO,20220302093547 +bodc/6901929/profiles/D6901929_072.nc,20200125084900,58.043,-19.452,A,844,BO,20220302093548 +bodc/6901929/profiles/D6901929_073.nc,20200204090300,58.434,-19.456,A,844,BO,20220302093548 +bodc/6901929/profiles/D6901929_074.nc,20200214085000,58.848,-18.848,A,844,BO,20220302093548 +bodc/6901929/profiles/D6901929_075.nc,20200224090000,58.771,-15.686,A,844,BO,20220302093548 +bodc/6901929/profiles/D6901929_076.nc,20200305083500,58.809,-15.367,A,844,BO,20220302093549 +bodc/6901929/profiles/D6901929_077.nc,20200315085700,58.983,-15.854,A,844,BO,20220302093549 +bodc/6901929/profiles/D6901929_078.nc,20200325090400,58.834,-16.502,A,844,BO,20220302093549 +bodc/6901929/profiles/D6901929_079.nc,20200404085400,58.577,-16.734,A,844,BO,20220302093549 +bodc/6901929/profiles/D6901929_080.nc,20200414090100,58.500,-15.992,A,844,BO,20220302093550 +bodc/6901929/profiles/D6901929_081.nc,20200424090200,58.804,-16.321,A,844,BO,20220302093550 +bodc/6901929/profiles/D6901929_082.nc,20200504085800,58.684,-16.743,A,844,BO,20220302093550 +bodc/6901929/profiles/D6901929_083.nc,20200514090900,58.609,-17.009,A,844,BO,20220302093550 +bodc/6901929/profiles/D6901929_084.nc,20200524090900,58.737,-17.005,A,844,BO,20220302093551 +bodc/6901929/profiles/D6901929_085.nc,20200603090700,58.674,-17.059,A,844,BO,20220302093551 +bodc/6901929/profiles/D6901929_086.nc,20200613090900,58.520,-17.150,A,844,BO,20220302093551 +bodc/6901929/profiles/D6901929_087.nc,20200623090900,58.326,-17.422,A,844,BO,20220302093551 +bodc/6901929/profiles/D6901929_088.nc,20200703090400,58.204,-17.337,A,844,BO,20220302093552 +bodc/6901929/profiles/D6901929_089.nc,20200713090500,58.279,-17.270,A,844,BO,20220302093552 +bodc/6901929/profiles/D6901929_090.nc,20200723090600,58.105,-17.239,A,844,BO,20220302093552 +bodc/6901929/profiles/D6901929_091.nc,20200802090600,57.732,-17.781,A,844,BO,20220302093552 +bodc/6901929/profiles/D6901929_092.nc,20200812090400,57.400,-18.443,A,844,BO,20220302093553 +bodc/6901929/profiles/D6901929_093.nc,20200822091000,57.250,-19.339,A,844,BO,20220302093553 +bodc/6901929/profiles/D6901929_094.nc,20200901090100,56.672,-19.636,A,844,BO,20220302093553 +bodc/6901929/profiles/D6901929_095.nc,20200911085900,57.385,-20.229,A,844,BO,20220302093553 +bodc/6901929/profiles/D6901929_096.nc,20200921090800,57.673,-19.917,A,844,BO,20220302093554 +bodc/6901929/profiles/D6901929_097.nc,20201001090600,57.981,-19.293,A,844,BO,20220302093554 +bodc/6901929/profiles/D6901929_098.nc,20201011091300,58.127,-19.024,A,844,BO,20220302093554 +bodc/6901929/profiles/D6901929_099.nc,20201021090700,58.076,-18.996,A,844,BO,20220302093554 +bodc/6901929/profiles/D6901929_100.nc,20201031085900,58.406,-19.022,A,844,BO,20220302093555 +bodc/6901929/profiles/D6901929_101.nc,20201110090300,59.031,-17.982,A,844,BO,20220302093555 +bodc/6901929/profiles/D6901929_102.nc,20201120090200,59.389,-17.263,A,844,BO,20220302093555 +bodc/6901929/profiles/D6901929_103.nc,20201130085800,59.524,-16.682,A,844,BO,20220302093556 +bodc/6901929/profiles/D6901929_104.nc,20201210085900,59.650,-16.240,A,844,BO,20220302093556 +bodc/6901929/profiles/D6901929_105.nc,20201220090100,59.690,-16.344,A,844,BO,20220302093556 +bodc/6901929/profiles/D6901929_106.nc,20201230085300,59.684,-16.759,A,844,BO,20220302093556 +bodc/6901929/profiles/D6901929_107.nc,20210109084400,59.676,-17.138,A,844,BO,20220302093557 +bodc/6901929/profiles/D6901929_108.nc,20210119085800,59.684,-16.638,A,844,BO,20220302093557 +bodc/6901929/profiles/D6901929_109.nc,20210129090500,59.495,-16.435,A,844,BO,20220302093557 +bodc/6901929/profiles/D6901929_110.nc,20210208090400,59.565,-15.883,A,844,BO,20220302093558 +bodc/6901929/profiles/D6901929_111.nc,20210218090100,59.578,-15.961,A,844,BO,20220302093558 +bodc/6901929/profiles/D6901929_112.nc,20210228090600,59.402,-15.962,A,844,BO,20220302093558 +bodc/6901929/profiles/D6901929_113.nc,20210310085500,59.480,-14.694,A,844,BO,20220302093558 +bodc/6901929/profiles/D6901929_114.nc,20210321053200,59.494,-14.372,A,844,BO,20220302093558 +bodc/6901929/profiles/D6901929_115.nc,20210330091300,59.807,-11.821,A,844,BO,20220302093559 +bodc/6901929/profiles/D6901929_116.nc,20210409085700,60.238,-10.884,A,844,BO,20220302093559 +bodc/6901929/profiles/D6901929_117.nc,20210419091000,60.217,-9.886,A,844,BO,20220302093559 +bodc/6901929/profiles/D6901929_118.nc,20210429090800,60.202,-10.946,A,844,BO,20220302093559 +bodc/6901929/profiles/D6901929_119.nc,20210509091000,60.261,-10.346,A,844,BO,20220302093600 +bodc/6901929/profiles/D6901929_120.nc,20210519090500,60.341,-10.965,A,844,BO,20220302093600 +bodc/6901929/profiles/D6901929_121.nc,20210529091500,60.046,-12.199,A,844,BO,20220302093600 +bodc/6901929/profiles/D6901929_122.nc,20210608100900,60.038,-12.178,A,844,BO,20220302093600 +bodc/6901929/profiles/D6901929_123.nc,20210618090800,60.039,-12.700,A,844,BO,20220302093601 +bodc/6901929/profiles/D6901929_124.nc,20210628100700,60.112,-12.847,A,844,BO,20220302093601 +bodc/6901929/profiles/D6901929_125.nc,20210708090500,60.464,-13.796,A,844,BO,20220302093601 +bodc/6901929/profiles/D6901929_126.nc,20210718085600,60.528,-15.936,A,844,BO,20220302093602 +bodc/6901929/profiles/D6901929_127.nc,20210728085400,60.092,-15.411,A,844,BO,20220302093602 +bodc/6901929/profiles/D6901929_128.nc,20210807090300,60.913,-14.343,A,844,BO,20220302093602 +bodc/6901929/profiles/D6901929_129.nc,20210817090500,60.483,-14.035,A,844,BO,20220302093602 +bodc/6901929/profiles/D6901929_130.nc,20210827091400,61.165,-13.571,A,844,BO,20220302093603 +bodc/6901929/profiles/D6901929_131.nc,20210906091200,61.103,-11.542,A,844,BO,20220302093603 +bodc/6901929/profiles/D6901929_132.nc,20210916090600,61.231,-9.751,A,844,BO,20220302093603 +bodc/6901929/profiles/D6901929_133.nc,20210926090300,61.632,-9.948,A,844,BO,20220302093603 +bodc/6901929/profiles/D6901929_134.nc,20211006082300,61.846,-11.780,A,844,BO,20220302093604 +bodc/6901929/profiles/D6901929_135.nc,20211016074500,61.744,-12.973,A,844,BO,20220302093604 +bodc/6901929/profiles/D6901929_136.nc,20211026085400,61.683,-13.529,A,844,BO,20220302093604 +bodc/6901929/profiles/D6901929_137.nc,20211105090400,61.344,-12.566,A,844,BO,20220302093604 +bodc/6901929/profiles/D6901929_138.nc,20211115090000,61.169,-11.960,A,844,BO,20220302093605 +bodc/6901929/profiles/D6901929_139.nc,20211125091400,61.553,-12.130,A,844,BO,20220302093605 +bodc/6901929/profiles/D6901929_140.nc,20211205091400,61.504,-10.832,A,844,BO,20220302093605 +bodc/6901929/profiles/D6901929_141.nc,20211215085700,61.315,-10.045,A,844,BO,20220302093605 +bodc/6901929/profiles/D6901929_142.nc,20211225090400,61.292,-10.007,A,844,BO,20220302093606 +bodc/6901929/profiles/D6901929_143.nc,20220104085500,61.532,-9.868,A,844,BO,20220302093606 +bodc/6901929/profiles/D6901929_144.nc,20220114084700,61.559,-8.390,A,844,BO,20220302093606 +bodc/6901929/profiles/D6901929_145.nc,20220124083700,61.622,-8.872,A,844,BO,20220302093606 +bodc/6901929/profiles/D6901929_146.nc,20220203084500,62.076,-9.052,A,844,BO,20220302093606 +bodc/6901929/profiles/D6901929_147.nc,20220213090000,61.331,-7.481,A,844,BO,20220302093607 +bodc/6901929/profiles/D6901929_148.nc,20220223091600,62.522,-8.773,A,844,BO,20220302093607 +bodc/6901929/profiles/R6901929_149.nc,20220305082700,62.161,-10.669,A,844,BO,20220305133305 +bodc/6901929/profiles/R6901929_150.nc,20220315091600,63.264,-12.125,A,844,BO,20220315133456 +bodc/6901929/profiles/R6901929_151.nc,20220325091000,63.947,-12.298,A,844,BO,20220325133447 +bodc/6901929/profiles/R6901929_152.nc,20220404091000,64.229,-12.288,A,844,BO,20220404123729 +bodc/6901929/profiles/R6901929_153.nc,20220414091100,64.441,-11.442,A,844,BO,20220414122444 +bodc/6901929/profiles/R6901929_154.nc,20220424091500,63.564,-10.907,A,844,BO,20220424121509 +bodc/6901929/profiles/R6901929_155.nc,20220504091100,62.680,-10.495,A,844,BO,20220505123633 +bodc/6901929/profiles/R6901929_156.nc,20220514090700,62.193,-9.442,A,844,BO,20220514121945 +bodc/6901929/profiles/R6901929_157.nc,20220524090500,62.235,-9.303,A,844,BO,20220524123128 +bodc/6901929/profiles/R6901929_158.nc,20220603090700,62.374,-8.827,A,844,BO,20220603121831 +bodc/6901929/profiles/R6901929_159.nc,20220613091100,62.693,-8.935,A,844,BO,20220613122149 +bodc/6901929/profiles/R6901929_160.nc,20220623090700,62.577,-10.351,A,844,BO,20220624134143 +bodc/6901929/profiles/R6901929_161.nc,20220703091500,62.124,-9.909,A,844,BO,20220703122241 +bodc/6901929/profiles/R6901929_162.nc,20220713090600,61.949,-10.076,A,844,BO,20220713122603 +bodc/6901929/profiles/R6901929_163.nc,20220723090700,62.014,-9.326,A,844,BO,20220723122256 +bodc/6901929/profiles/R6901929_164.nc,20220802090900,62.571,-10.629,A,844,BO,20220802121630 +bodc/6901929/profiles/R6901929_165.nc,20220812090500,62.286,-10.508,A,844,BO,20220812121842 +bodc/6901929/profiles/R6901929_166.nc,20220822091300,62.359,-10.233,A,844,BO,20220822121557 +bodc/6901929/profiles/R6901929_167.nc,20220901090100,62.127,-9.071,A,844,BO,20220901122102 +bodc/6901929/profiles/R6901929_168.nc,20220911090900,62.472,-9.790,A,844,BO,20220911121917 +bodc/6901929/profiles/R6901929_169.nc,20220921091300,62.723,-10.763,A,844,BO,20220921122108 +bodc/6901929/profiles/R6901929_170.nc,20221001091500,62.604,-11.161,A,844,BO,20221001121709 +bodc/6901929/profiles/R6901929_171.nc,20221011090900,62.403,-10.397,A,844,BO,20221011121733 +bodc/6901929/profiles/R6901929_172.nc,20221021084800,62.447,-8.545,A,844,BO,20221021121615 +bodc/6901929/profiles/R6901929_173.nc,20221031090800,62.641,-7.840,A,844,BO,20221031192829 +bodc/6901929/profiles/R6901929_174.nc,20221110101500,62.743,-7.174,A,844,BO,20221118175518 +bodc/6901929/profiles/R6901929_175.nc,20221120085000,62.796,-6.792,A,844,BO,20221120131750 +bodc/6901929/profiles/R6901929_176.nc,20221130092000,62.864,-5.082,A,844,BO,20221201154043 +bodc/6901929/profiles/R6901929_177.nc,20221210135000,62.545,-4.287,A,844,BO,20221210192125 +bodc/6901929/profiles/R6901929_178.nc,20221220191900,61.357,-3.537,A,844,BO,20221221011942 +bodc/6901929/profiles/R6901929_179.nc,20221231001900,61.522,-2.472,A,844,BO,20221231011951 +bodc/6901929/profiles/R6901929_180.nc,20230110045900,62.362,0.824,A,844,BO,20230110072159 +bodc/6901929/profiles/R6901929_181.nc,20230120085300,62.811,0.138,A,844,BO,20230120132656 +bodc/6901929/profiles/R6901929_182.nc,20230130151300,62.911,0.082,A,844,BO,20230130192256 +bodc/6901929/profiles/R6901929_183.nc,20230209200600,62.540,-0.357,A,844,BO,20230210012158 +bodc/6901929/profiles/R6901929_184.nc,20230220011300,62.652,-0.453,A,844,BO,20230220072152 +bodc/6901929/profiles/R6901929_185.nc,20230302061800,63.126,-0.728,A,844,BO,20230302072830 +bodc/6901929/profiles/R6901929_186.nc,20230312090300,63.176,-0.249,A,844,BO,20230312132505 +bodc/6901929/profiles/R6901929_187.nc,20230322161700,62.879,0.553,A,844,BO,20230322193028 +bodc/6901929/profiles/R6901929_188.nc,20230401212000,62.336,-0.046,A,844,BO,20230402003004 +bodc/6901929/profiles/R6901929_189.nc,20230412021500,61.827,-2.037,A,844,BO,20230412062616 +bodc/6901929/profiles/R6901929_190.nc,20230422071000,61.713,-3.453,A,844,BO,20230422122530 +coriolis/1900857/profiles/D1900857_000.nc,20080228012300,-40.022,10.541,A,841,IF,20180123161747 +coriolis/1900857/profiles/D1900857_000D.nc,20080225040300,-39.926,10.809,A,841,IF,20180123161752 +coriolis/1900857/profiles/D1900857_001.nc,20080309012300,-40.063,9.738,A,841,IF,20180123161757 +coriolis/1900857/profiles/D1900857_002.nc,20080319012900,-39.962,9.045,A,841,IF,20180123161801 +coriolis/1900857/profiles/D1900857_003.nc,20080329013000,-39.535,9.389,A,841,IF,20180123161806 +coriolis/1900857/profiles/D1900857_004.nc,20080408012400,-39.465,10.225,A,841,IF,20180123161811 +coriolis/1900857/profiles/D1900857_005.nc,20080418012400,-39.973,10.666,A,841,IF,20180123161816 +coriolis/1900857/profiles/D1900857_006.nc,20080428012400,-39.730,10.752,A,841,IF,20180123161821 +coriolis/1900857/profiles/D1900857_007.nc,20080508012500,-39.725,11.657,A,841,IF,20180123161825 +coriolis/1900857/profiles/D1900857_008.nc,20080518013100,-40.080,12.575,A,841,IF,20180123161830 +coriolis/1900857/profiles/D1900857_009.nc,20080528012500,-40.528,13.619,A,841,IF,20180123161835 +coriolis/1900857/profiles/D1900857_010.nc,20080607011400,-40.416,14.863,A,841,IF,20180123161839 +coriolis/1900857/profiles/D1900857_011.nc,20080617013800,-39.975,16.152,A,841,IF,20180123161844 +coriolis/1900857/profiles/D1900857_012.nc,20080627013200,-37.547,17.459,A,841,IF,20180123161849 +coriolis/1900857/profiles/D1900857_013.nc,20080707012700,-35.916,16.997,A,841,IF,20180123161853 +coriolis/1900857/profiles/D1900857_014.nc,20080717013900,-35.450,15.267,A,841,IF,20180123161858 +coriolis/1900857/profiles/D1900857_015.nc,20080727013900,-35.668,15.731,A,841,IF,20180123161903 +coriolis/1900857/profiles/D1900857_016.nc,20080806011600,-36.079,13.010,A,841,IF,20180123161907 +coriolis/1900857/profiles/D1900857_017.nc,20080816013400,-35.308,12.181,A,841,IF,20180123161912 +coriolis/1900857/profiles/D1900857_018.nc,20080826013400,-34.444,14.073,A,841,IF,20180123161917 +coriolis/1900857/profiles/D1900857_019.nc,20080905012800,-36.539,14.652,A,841,IF,20180123161922 +coriolis/1900857/profiles/D1900857_020.nc,20080915012900,-36.573,15.138,A,841,IF,20180123161926 +coriolis/1900857/profiles/D1900857_021.nc,20080925012300,-37.265,13.127,A,841,IF,20180123161931 +coriolis/1900857/profiles/D1900857_022.nc,20081005012900,-36.899,14.378,A,841,IF,20180123161936 +coriolis/1900857/profiles/D1900857_023.nc,20081015014200,-37.219,13.028,A,841,IF,20180123161940 +coriolis/1900857/profiles/D1900857_024.nc,20081025013600,-38.091,14.209,A,841,IF,20180123161945 +coriolis/1900857/profiles/D1900857_025.nc,20081104013000,-39.545,14.216,A,841,IF,20180123161950 +coriolis/1900857/profiles/D1900857_026.nc,20081114013100,-39.979,14.485,A,841,IF,20180123161954 +coriolis/1900857/profiles/D1900857_027.nc,20081124013700,-39.602,15.081,A,841,IF,20180123161959 +coriolis/1900857/profiles/D1900857_028.nc,20081204012500,-40.494,15.382,A,841,IF,20180123162004 +coriolis/1900857/profiles/D1900857_029.nc,20081214013800,-42.816,15.003,A,841,IF,20180123162009 +coriolis/1900857/profiles/D1900857_030.nc,20081224013200,-42.441,14.639,A,841,IF,20180123162014 +coriolis/1900857/profiles/D1900857_031.nc,20090103014400,-42.221,17.654,A,841,IF,20180123162019 +coriolis/1900857/profiles/D1900857_032.nc,20090113013800,-42.913,17.526,A,841,IF,20180123162024 +coriolis/1900857/profiles/D1900857_033.nc,20090123013300,-44.325,17.270,A,841,IF,20180123162028 +coriolis/1900857/profiles/D1900857_034.nc,20090202013300,-43.831,17.785,A,841,IF,20180123162033 +coriolis/1900857/profiles/D1900857_035.nc,20090212013300,-43.841,17.364,A,841,IF,20180123162038 +coriolis/1900857/profiles/D1900857_036.nc,20090222014000,-43.327,17.801,A,841,IF,20180123162042 +coriolis/1900857/profiles/D1900857_037.nc,20090304014600,-42.756,17.642,A,841,IF,20180123162047 +coriolis/1900857/profiles/D1900857_038.nc,20090314014000,-42.273,18.655,A,841,IF,20180123162052 +coriolis/1900857/profiles/D1900857_039.nc,20090324013500,-42.259,18.861,A,841,IF,20180123162056 +coriolis/1900857/profiles/D1900857_040.nc,20090403012900,-42.831,18.220,A,841,IF,20180123162101 +coriolis/1900857/profiles/D1900857_041.nc,20090413012900,-42.717,17.534,A,841,IF,20180123162106 +coriolis/1900857/profiles/D1900857_042.nc,20090423012400,-41.861,17.452,A,841,IF,20180123162110 +coriolis/1900857/profiles/D1900857_043.nc,20090503014800,-42.251,18.841,A,841,IF,20180123162115 +coriolis/1900857/profiles/D1900857_044.nc,20090513012400,-40.177,20.901,I,841,IF,20180123162120 +coriolis/1900857/profiles/D1900857_045.nc,20090523013600,-40.798,23.572,I,841,IF,20180123162124 +coriolis/1900857/profiles/D1900857_046.nc,20090602014900,-41.693,22.925,I,841,IF,20180123162129 +coriolis/1900857/profiles/D1900857_047.nc,20090612013700,-42.331,21.819,I,841,IF,20180123162134 +coriolis/1900857/profiles/D1900857_048.nc,20090622013700,-42.428,21.046,I,841,IF,20180123162138 +coriolis/1900857/profiles/D1900857_049.nc,20090702014400,-42.360,21.011,I,841,IF,20180123162143 +coriolis/1900857/profiles/D1900857_050.nc,20090712014400,-43.099,20.900,I,841,IF,20180123162148 +coriolis/1900857/profiles/D1900857_051.nc,20090722015000,-43.912,20.785,I,841,IF,20180123162152 +coriolis/1900857/profiles/D1900857_052.nc,20090801013900,-43.370,21.608,I,841,IF,20180123162157 +coriolis/1900857/profiles/D1900857_053.nc,20090811014500,-42.063,21.722,I,841,IF,20180123162202 +coriolis/1900857/profiles/D1900857_054.nc,20090821013900,-41.342,21.519,I,841,IF,20180123162207 +coriolis/1900857/profiles/D1900857_055.nc,20090831013900,-41.772,21.362,I,841,IF,20180123162212 +coriolis/1900857/profiles/D1900857_056.nc,20090910015200,-43.340,19.850,A,841,IF,20180123162217 +coriolis/1900857/profiles/D1900857_057.nc,20090920014000,-43.674,20.815,I,841,IF,20180123162221 +coriolis/1900857/profiles/D1900857_058.nc,20090930014600,-43.917,18.741,A,841,IF,20180123162226 +coriolis/1900857/profiles/D1900857_059.nc,20091010014100,-43.822,20.142,I,841,IF,20180123162231 +coriolis/1900857/profiles/D1900857_060.nc,20091020015300,-43.643,20.397,I,841,IF,20180123162235 +coriolis/1900857/profiles/D1900857_061.nc,20091030015900,-43.689,20.329,I,841,IF,20180123162240 +coriolis/1900857/profiles/D1900857_062.nc,20091109015400,-43.292,20.294,I,841,IF,20180123162245 +coriolis/1900857/profiles/D1900857_063.nc,20091119015400,-43.373,20.381,I,841,IF,20180123162249 +coriolis/1900857/profiles/D1900857_064.nc,20091129015400,-43.157,20.975,I,841,IF,20180123162254 +coriolis/1900857/profiles/D1900857_065.nc,20091209014200,-43.132,21.331,I,841,IF,20180123162259 +coriolis/1900857/profiles/D1900857_066.nc,20091219015500,-43.214,21.201,I,841,IF,20180123162303 +coriolis/1900857/profiles/D1900857_067.nc,20091229014900,-43.083,21.179,I,841,IF,20180123162308 +coriolis/1900857/profiles/D1900857_068.nc,20100108014300,-42.677,21.465,I,841,IF,20180123162313 +coriolis/1900857/profiles/D1900857_069.nc,20100118015000,-42.342,21.802,I,841,IF,20180123162317 +coriolis/1900857/profiles/D1900857_070.nc,20100128014400,-42.190,21.324,I,841,IF,20180123162322 +coriolis/1900857/profiles/D1900857_071.nc,20100207015000,-42.640,22.704,I,841,IF,20180123162327 +coriolis/1900857/profiles/D1900857_072.nc,20100217015100,-42.694,23.399,I,841,IF,20180123162331 +coriolis/1900857/profiles/D1900857_073.nc,20100227014500,-43.074,23.959,I,841,IF,20180123162336 +coriolis/1900857/profiles/D1900857_074.nc,20100309015100,-43.272,24.429,I,841,IF,20180123162341 +coriolis/1900857/profiles/D1900857_075.nc,20100319015100,-42.973,25.017,I,841,IF,20180123162345 +coriolis/1900857/profiles/D1900857_076.nc,20100329020400,-42.611,26.216,I,841,IF,20180123162350 +coriolis/1900857/profiles/D1900857_077.nc,20100408020400,-43.195,28.362,I,841,IF,20180123162356 +coriolis/1900857/profiles/D1900857_078.nc,20100418015200,-43.205,29.662,I,841,IF,20180123162400 +coriolis/1900857/profiles/D1900857_079.nc,20100428015900,-43.216,30.171,I,841,IF,20180123162405 +coriolis/1900857/profiles/D1900857_080.nc,20100508014700,-43.167,30.443,I,841,IF,20180123162410 +coriolis/1900857/profiles/D1900857_081.nc,20100518015900,-42.946,30.508,I,841,IF,20180123162414 +coriolis/1900857/profiles/D1900857_082.nc,20100528015400,-42.143,30.682,I,841,IF,20180123162419 +coriolis/1900857/profiles/D1900857_083.nc,20100607015400,-41.351,30.961,I,841,IF,20180123162424 +coriolis/1900857/profiles/D1900857_084.nc,20100617015400,-40.945,31.399,I,841,IF,20180123162428 +coriolis/1900857/profiles/D1900857_085.nc,20100627020700,-40.866,31.842,I,841,IF,20180123162433 +coriolis/1900857/profiles/D1900857_086.nc,20100707014900,-41.037,31.826,I,841,IF,20180123162438 +coriolis/1900857/profiles/D1900857_087.nc,20100717014300,-41.738,31.911,I,841,IF,20180123162443 +coriolis/1900857/profiles/D1900857_088.nc,20100727015600,-42.347,32.495,I,841,IF,20180123162447 +coriolis/1900857/profiles/D1900857_089.nc,20100806015600,-42.301,33.313,I,841,IF,20180123162452 +coriolis/1900857/profiles/D1900857_090.nc,20100816015000,-41.602,33.662,I,841,IF,20180123162457 +coriolis/1900857/profiles/D1900857_091.nc,20100826020200,-41.155,33.068,I,841,IF,20180123162503 +coriolis/1900857/profiles/D1900857_092.nc,20100905015100,-41.308,32.223,I,841,IF,20180123162508 +coriolis/1900857/profiles/D1900857_093.nc,20100915015700,-41.594,32.266,I,841,IF,20180123162513 +coriolis/1900857/profiles/D1900857_094.nc,20100925015700,-41.129,32.264,I,841,IF,20180123162517 +coriolis/1900857/profiles/D1900857_095.nc,20101005015800,-41.321,31.179,I,841,IF,20180123162522 +coriolis/1900857/profiles/D1900857_096.nc,20101015020400,-42.218,30.379,I,841,IF,20180123162527 +coriolis/1900857/profiles/D1900857_097.nc,20101025015200,-43.286,30.563,I,841,IF,20180123162532 +coriolis/1900857/profiles/D1900857_098.nc,20101104021100,-43.620,31.405,I,841,IF,20180123162536 +coriolis/1900857/profiles/D1900857_099.nc,20101114015900,-44.150,31.162,I,841,IF,20180123162541 +coriolis/1900857/profiles/D1900857_100.nc,20101124015300,-44.200,31.208,I,841,IF,20180123162546 +coriolis/1900857/profiles/D1900857_101.nc,20101204020000,-44.052,31.951,I,841,IF,20180123162550 +coriolis/1900857/profiles/D1900857_102.nc,20101214021200,-43.787,32.462,I,841,IF,20180123162555 +coriolis/1900857/profiles/D1900857_103.nc,20101224020600,-43.479,32.967,I,841,IF,20180123162600 +coriolis/1900857/profiles/D1900857_104.nc,20110103020000,-43.111,33.373,I,841,IF,20180123162605 +coriolis/1900857/profiles/D1900857_105.nc,20110113020100,-42.662,33.544,I,841,IF,20180123162610 +coriolis/1900857/profiles/D1900857_106.nc,20110123020100,-42.263,33.798,I,841,IF,20180123162615 +coriolis/1900857/profiles/D1900857_107.nc,20110202020100,-42.154,33.993,I,841,IF,20180123162620 +coriolis/1900857/profiles/D1900857_108.nc,20110212015600,-42.006,34.146,I,841,IF,20180123162625 +coriolis/1900857/profiles/D1900857_109.nc,20110222020200,-42.111,34.195,I,841,IF,20180123162629 +coriolis/1900857/profiles/D1900857_110.nc,20110304015600,-42.211,34.288,I,841,IF,20180123162634 +coriolis/1900857/profiles/D1900857_111.nc,20110314020900,-42.209,34.510,I,841,IF,20180123162639 +coriolis/1900857/profiles/D1900857_112.nc,20110324020300,-42.050,34.816,I,841,IF,20180123162644 +coriolis/1900857/profiles/D1900857_113.nc,20110403020300,-41.913,35.071,I,841,IF,20180123162648 +coriolis/1900857/profiles/D1900857_114.nc,20110413021000,-41.855,35.420,I,841,IF,20180123162653 +coriolis/1900857/profiles/D1900857_115.nc,20110423015800,-41.839,35.903,I,841,IF,20180123162658 +coriolis/1900857/profiles/D1900857_116.nc,20110503015200,-41.911,36.642,I,841,IF,20180123162702 +coriolis/1900857/profiles/D1900857_117.nc,20110513015800,-41.868,37.461,I,841,IF,20180123162707 +coriolis/1900857/profiles/D1900857_118.nc,20110523015900,-41.754,38.423,I,841,IF,20180123162712 +coriolis/1900857/profiles/D1900857_119.nc,20110602015900,-41.843,39.302,I,841,IF,20180123162717 +coriolis/1900857/profiles/D1900857_120.nc,20110612015900,-42.292,40.266,I,841,IF,20180123162722 +coriolis/1900857/profiles/D1900857_121.nc,20110622020000,-42.367,41.302,I,841,IF,20180123162727 +coriolis/1900857/profiles/D1900857_122.nc,20110702020600,-41.135,42.225,I,841,IF,20180123162732 +coriolis/1900857/profiles/D1900857_123.nc,20110712020600,-39.725,41.817,I,841,IF,20180123162737 +coriolis/1900857/profiles/D1900857_124.nc,20110722021300,-39.349,41.503,I,841,IF,20180123162742 +coriolis/1900857/profiles/D1900857_125.nc,20110801020700,-39.311,40.879,I,841,IF,20180123162746 +coriolis/1900857/profiles/D1900857_126.nc,20110811020100,-39.508,39.758,I,841,IF,20180123162751 +coriolis/1900857/profiles/D1900857_127.nc,20110821015500,-40.684,38.785,I,841,IF,20180123162756 +coriolis/1900857/profiles/D1900857_128.nc,20110831015600,-41.362,40.577,I,841,IF,20180123162801 +coriolis/1900857/profiles/D1900857_129.nc,20110910022000,-40.225,41.642,I,841,IF,20180123162806 +coriolis/1900857/profiles/D1900857_130.nc,20110920020200,-40.229,42.082,I,841,IF,20180123162810 +coriolis/1900857/profiles/D1900857_131.nc,20110930020900,-40.616,42.473,I,841,IF,20180123162816 +coriolis/1900857/profiles/D1900857_132.nc,20111010020900,-40.931,42.892,I,841,IF,20180123162820 +coriolis/1900857/profiles/D1900857_133.nc,20111020020300,-41.303,43.488,I,841,IF,20180123162825 +coriolis/1900857/profiles/D1900857_134.nc,20111030012200,-41.809,43.856,I,841,IF,20180123162830 +coriolis/1900857/profiles/D1900857_135.nc,20111109021000,-42.128,44.537,I,841,IF,20180123162834 +coriolis/1900857/profiles/D1900857_136.nc,20111119022200,-42.392,45.901,I,841,IF,20180123162839 +coriolis/1900857/profiles/D1900857_137.nc,20111129020400,-41.689,47.503,I,841,IF,20180123162844 +coriolis/1900857/profiles/D1900857_138.nc,20111209020500,-40.809,47.717,I,841,IF,20180123162849 +coriolis/1900857/profiles/D1900857_139.nc,20111219022300,-40.615,47.300,I,841,IF,20180123162854 +coriolis/1900857/profiles/D1900857_140.nc,20111229020500,-40.557,46.514,I,841,IF,20180123162858 +coriolis/1900857/profiles/D1900857_141.nc,20120108021800,-40.308,46.019,I,841,IF,20180123162903 +coriolis/1900857/profiles/D1900857_142.nc,20120118021200,-39.510,46.132,I,841,IF,20180123162908 +coriolis/1900857/profiles/D1900857_143.nc,20120128020000,-38.586,46.311,I,841,IF,20180123162913 +coriolis/1900857/profiles/D1900857_144.nc,20120207021300,-38.211,47.992,I,841,IF,20180123162917 +coriolis/1900857/profiles/D1900857_145.nc,20120217021300,-39.319,48.629,I,841,IF,20180123162922 +coriolis/1900857/profiles/D1900857_146.nc,20120227020700,-40.170,48.874,I,841,IF,20180123162927 +coriolis/1900857/profiles/D1900857_147.nc,20120308021900,-40.649,47.876,I,841,IF,20180123162931 +coriolis/1900857/profiles/D1900857_148.nc,20120318021400,-39.969,48.372,I,841,IF,20180123162936 +coriolis/1900857/profiles/D1900857_149.nc,20120328020800,-41.064,48.744,I,841,IF,20180123162941 +coriolis/1900857/profiles/D1900857_150.nc,20120407020800,-41.505,48.088,I,841,IF,20180123162946 +coriolis/1900857/profiles/D1900857_151.nc,20120417020900,-42.285,48.591,I,841,IF,20180123162951 +coriolis/1900857/profiles/D1900857_152.nc,20120427021500,-42.589,50.098,I,841,IF,20180123162957 +coriolis/1900857/profiles/D1900857_153.nc,20120507020900,-42.406,52.634,I,841,IF,20180123163001 +coriolis/1900857/profiles/D1900857_154.nc,20120517022800,-40.766,55.224,I,841,IF,20180123163006 +coriolis/1900857/profiles/D1900857_155.nc,20120527022800,-43.075,55.791,I,841,IF,20180123163011 +coriolis/1900857/profiles/D1900857_156.nc,20120606022200,-44.985,59.804,I,841,IF,20180123163015 +coriolis/1900857/profiles/D1900857_157.nc,20120616021000,-44.996,64.681,I,841,IF,20180123163020 +coriolis/1900857/profiles/D1900857_158.nc,20120626021700,-44.887,66.336,I,841,IF,20180123163025 +coriolis/1900857/profiles/D1900857_159.nc,20120706021700,-45.019,68.021,I,841,IF,20180123163029 +coriolis/1900857/profiles/D1900857_160.nc,20120716021100,-45.500,72.147,I,841,IF,20180123163034 +coriolis/1900857/profiles/D1900857_161.nc,20120726021200,-46.144,76.641,I,841,IF,20180123163039 +coriolis/1900857/profiles/D1900857_162.nc,20120805021800,-45.437,77.783,I,841,IF,20180123163044 +coriolis/1900857/profiles/D1900857_163.nc,20120815020000,-44.888,79.415,I,841,IF,20180123163049 +coriolis/1900857/profiles/D1900857_164.nc,20120825021900,-44.433,80.391,I,841,IF,20180123163053 +coriolis/1900857/profiles/D1900857_165.nc,20120904022500,-44.221,81.547,I,841,IF,20180123163058 +coriolis/1900857/profiles/D1900857_166.nc,20120914021900,-44.638,81.697,I,841,IF,20180123163103 +coriolis/1900857/profiles/D1900857_167.nc,20120924022600,-44.720,82.298,I,841,IF,20180123163108 +coriolis/1900857/profiles/D1900857_168.nc,20121004022000,-44.665,83.311,I,841,IF,20180123163113 +coriolis/1900857/profiles/D1900857_169.nc,20121014023200,-45.005,84.557,I,841,IF,20180123163118 +coriolis/1900857/profiles/D1900857_170.nc,20121024022700,-45.694,85.045,I,841,IF,20180123163122 +coriolis/1900857/profiles/D1900857_171.nc,20121103021500,-46.854,85.432,I,841,IF,20180123163127 +coriolis/1900857/profiles/D1900857_172.nc,20121113022700,-47.677,86.520,I,841,IF,20180123163132 +coriolis/1900857/profiles/D1900857_173.nc,20121123023400,-47.550,87.173,I,841,IF,20180123163137 +coriolis/1900857/profiles/D1900857_174.nc,20121203022800,-47.340,86.832,I,841,IF,20180123163142 +coriolis/1900857/profiles/D1900857_175.nc,20121213021600,-47.505,86.604,I,841,IF,20180123163146 +coriolis/1900857/profiles/D1900857_176.nc,20121223022300,-47.883,87.047,I,841,IF,20180123163151 +coriolis/1900857/profiles/D1900857_177.nc,20130102021700,-48.855,89.731,I,841,IF,20180123163156 +coriolis/1900857/profiles/D1900857_178.nc,20130112022900,-47.779,90.009,I,841,IF,20180123163200 +coriolis/1900857/profiles/D1900857_179.nc,20130122022900,-46.935,89.377,I,841,IF,20180123163205 +coriolis/1900857/profiles/D1900857_180.nc,20130201023600,-46.339,89.581,I,841,IF,20180123163210 +coriolis/1900857/profiles/D1900857_181.nc,20130211023000,-45.791,90.806,I,841,IF,20180123163215 +coriolis/1900857/profiles/D1900857_182.nc,20130221023000,-45.697,92.481,I,841,IF,20180123163220 +coriolis/1900857/profiles/D1900857_183.nc,20130303023700,-45.439,93.259,I,841,IF,20180123163225 +coriolis/1900857/profiles/D1900857_184.nc,20130313023100,-44.872,93.926,I,841,IF,20180123163229 +coriolis/1900857/profiles/D1900857_185.nc,20130323023100,-44.429,93.866,I,841,IF,20180123163234 +coriolis/1900857/profiles/D1900857_186.nc,20130402023800,-44.084,93.737,I,841,IF,20180123163239 +coriolis/1900857/profiles/D1900857_187.nc,20130412023800,-43.968,93.406,I,841,IF,20180123163244 +coriolis/1900857/profiles/D1900857_188.nc,20130422023800,-44.083,93.089,I,841,IF,20180123163248 +coriolis/1900857/profiles/D1900857_189.nc,20130502023900,-44.356,92.885,I,841,IF,20180123163253 +coriolis/1900857/profiles/D1900857_190.nc,20130512024500,-44.478,92.737,I,841,IF,20180123163258 +coriolis/1900857/profiles/D1900857_191.nc,20130522030900,-44.344,92.696,I,841,IF,20180123163302 +coriolis/1900857/profiles/D1900857_192.nc,20130601053400,-44.163,92.646,I,841,IF,20180123163307 +coriolis/3902131/profiles/D3902131_001.nc,20180315122140,-6.631,5.003,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_001D.nc,20180313060100,-6.634,5.001,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_002.nc,20180317115820,-6.563,4.967,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_003.nc,20180319115320,-6.499,4.945,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_004.nc,20180321115920,-6.455,4.964,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_005.nc,20180323115540,-6.406,4.947,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_006.nc,20180325121020,-6.354,4.984,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_007.nc,20180327115320,-6.344,4.996,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_008.nc,20180329115720,-6.310,5.013,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_009.nc,20180331120220,-6.260,5.031,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_010.nc,20180402120140,-6.225,5.107,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_011.nc,20180404120920,-6.174,5.162,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_012.nc,20180406115820,-6.141,5.204,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_013.nc,20180408120320,-6.112,5.233,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_014.nc,20180410115720,-6.124,5.292,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_015.nc,20180412120440,-6.161,5.308,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_016.nc,20180414120120,-6.180,5.338,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_017.nc,20180416115720,-6.232,5.389,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_018.nc,20180418115720,-6.314,5.382,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_019.nc,20180420120520,-6.385,5.402,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_020.nc,20180422120340,-6.452,5.416,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_021.nc,20180424120420,-6.495,5.413,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_022.nc,20180426120420,-6.563,5.436,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_023.nc,20180428120420,-6.662,5.438,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_024.nc,20180430120220,-6.724,5.460,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_025.nc,20180502120540,-6.789,5.513,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_026.nc,20180504120320,-6.809,5.537,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_027.nc,20180506121120,-6.812,5.555,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_028.nc,20180508120220,-6.830,5.605,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_029.nc,20180510120320,-6.829,5.633,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_030.nc,20180512115540,-6.800,5.694,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_031.nc,20180514120620,-6.788,5.721,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_032.nc,20180516120120,-6.722,5.733,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_033.nc,20180518120320,-6.708,5.782,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_034.nc,20180520120120,-6.639,5.780,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_035.nc,20180522115840,-6.595,5.822,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_036.nc,20180524120720,-6.605,5.817,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_037.nc,20180526120320,-6.605,5.816,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_038.nc,20180528120120,-6.585,5.770,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_039.nc,20180530120320,-6.609,5.796,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_040.nc,20180601115540,-6.621,5.747,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_041.nc,20180603120220,-6.645,5.734,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_042.nc,20180605120820,-6.671,5.694,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_043.nc,20180607120220,-6.742,5.673,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_044.nc,20180609120020,-6.781,5.642,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_045.nc,20180611120440,-6.842,5.640,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_046.nc,20180613115920,-6.858,5.634,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_047.nc,20180615120020,-6.922,5.653,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_048.nc,20180617120320,-6.994,5.658,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_049.nc,20180619120620,-7.073,5.738,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_050.nc,20180621115940,-7.109,5.804,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_051.nc,20180623120520,-7.088,5.819,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_052.nc,20180625115820,-7.112,5.892,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_053.nc,20180627115720,-7.051,5.971,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_054.nc,20180629115320,-6.977,6.012,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_055.nc,20180701115240,-6.872,6.052,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_056.nc,20180703120120,-6.837,6.050,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_057.nc,20180705115820,-6.771,6.049,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_058.nc,20180707114720,-6.750,6.002,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_059.nc,20180709114120,-6.721,5.946,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_060.nc,20180711120140,-6.706,5.935,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_061.nc,20180713114920,-6.699,5.917,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_062.nc,20180715115620,-6.709,5.895,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_063.nc,20180717114720,-6.740,5.845,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_064.nc,20180719120820,-6.739,5.816,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_065.nc,20180721115040,-6.728,5.773,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_066.nc,20180723120420,-6.730,5.760,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_067.nc,20180802115220,-6.809,5.710,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_068.nc,20180812114620,-6.782,5.660,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_069.nc,20180822120420,-6.808,5.665,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_070.nc,20180901115840,-6.854,5.701,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_071.nc,20180911120320,-7.043,5.811,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_072.nc,20180921115420,-7.188,6.031,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_073.nc,20181001115720,-7.158,6.239,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_074.nc,20181011120420,-6.982,6.307,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_075.nc,20181021115040,-6.942,6.180,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_076.nc,20181031115720,-6.930,6.101,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_077.nc,20181110120620,-7.127,6.011,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_078.nc,20181120115420,-7.403,5.895,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_079.nc,20181130120220,-7.615,5.813,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_080.nc,20181210120340,-7.668,5.743,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_081.nc,20181220121020,-7.405,5.646,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_082.nc,20181230115920,-7.038,5.494,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_083.nc,20190109120820,-6.718,5.378,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_084.nc,20190119120220,-6.570,5.255,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_085.nc,20190129120740,-6.640,5.243,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_086.nc,20190208120620,-6.930,5.245,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_087.nc,20190218120720,-7.224,5.225,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_088.nc,20190228120920,-7.421,5.250,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_089.nc,20190310120720,-7.455,5.394,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_090.nc,20190320120240,-7.328,5.546,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_091.nc,20190330120820,-7.230,5.542,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_092.nc,20190409121520,-7.256,5.406,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_093.nc,20190419120320,-7.157,5.282,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_094.nc,20190429120320,-6.978,5.093,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_095.nc,20190509120140,-6.782,4.836,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_096.nc,20190519120920,-6.707,4.473,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_097.nc,20190529120320,-6.744,4.082,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_098.nc,20190608120720,-6.876,3.625,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_099.nc,20190618120620,-7.003,3.147,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_100.nc,20190628120440,-7.058,2.664,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_101.nc,20190708115720,-7.056,2.244,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_102.nc,20190718120620,-6.983,1.924,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_103.nc,20190728120120,-6.902,1.610,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_104.nc,20190807115720,-6.854,1.383,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_105.nc,20190817121040,-6.743,1.352,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_106.nc,20190827115720,-6.571,1.409,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_107.nc,20190906114320,-6.317,1.418,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_108.nc,20190916114920,-6.138,1.448,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_109.nc,20190926115820,-6.043,1.524,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_110.nc,20191006120240,-6.328,1.555,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_111.nc,20191016120120,-6.798,1.732,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_112.nc,20191026120120,-6.922,2.017,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_113.nc,20191105115820,-6.716,2.316,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_114.nc,20191115120720,-6.411,2.365,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_115.nc,20191125120040,-6.359,2.386,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_116.nc,20191205120320,-6.398,2.315,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_117.nc,20191215120920,-6.495,2.030,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_118.nc,20191225120320,-6.580,1.580,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_119.nc,20200104120720,-6.546,1.302,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_120.nc,20200114110740,-6.304,1.134,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_121.nc,20200124115820,-6.226,1.134,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_122.nc,20200203121320,-6.320,1.109,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_123.nc,20200213114820,-6.201,1.139,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_124.nc,20200223115920,-6.407,0.921,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_125.nc,20200304115740,-6.436,0.957,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_126.nc,20200314114320,-6.532,0.872,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_127.nc,20200324120320,-6.659,0.861,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_128.nc,20200403120120,-6.706,1.047,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_129.nc,20200413120020,-7.189,1.247,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_130.nc,20200423062740,-7.609,0.851,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_131.nc,20200503115920,-8.367,0.195,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_132.nc,20200513121220,-8.542,0.285,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_133.nc,20200523115920,-8.530,0.153,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_134.nc,20200602115420,-8.557,0.637,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_135.nc,20200612121240,-8.283,0.923,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_136.nc,20200622115020,-8.069,0.943,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_137.nc,20200702120520,-7.968,0.842,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_138.nc,20200712121320,-8.210,0.711,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_139.nc,20200722105420,-8.584,0.792,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_140.nc,20200801120140,-8.789,1.201,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_141.nc,20200811120120,-8.850,1.633,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_142.nc,20200821121020,-9.017,1.752,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_143.nc,20200831115720,-9.193,1.844,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_144.nc,20200910120820,-9.273,1.991,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_145.nc,20200920115240,-9.117,2.231,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_146.nc,20200930120420,-8.921,2.367,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_147.nc,20201010115820,-8.761,2.551,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_148.nc,20201020120620,-8.542,2.851,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_149.nc,20201030120520,-8.412,3.081,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_150.nc,20201109120240,-8.405,3.425,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_151.nc,20201119115520,-8.608,3.589,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_152.nc,20201129121320,-8.963,3.683,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_153.nc,20201209120520,-9.078,3.809,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_154.nc,20201219120720,-8.880,3.910,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_155.nc,20201229115840,-8.578,3.897,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_156.nc,20210108120320,-8.309,3.801,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_157.nc,20210118121120,-8.120,3.683,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_158.nc,20210128121420,-8.005,3.532,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_159.nc,20210207122320,-8.033,3.408,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_160.nc,20210217122340,-8.138,3.225,A,838,IF,20211119141420 +coriolis/3902131/profiles/D3902131_161.nc,20210227123720,-8.275,3.033,A,838,IF,20211119141420 +coriolis/6903247/profiles/R6903247_001.nc,20181019054100,34.198,26.008,A,836,IF,20230215104625 +coriolis/6903247/profiles/R6903247_001D.nc,20181018065000,34.204,26.048,A,836,IF,20230112144310 +coriolis/6903247/profiles/R6903247_002.nc,20181020054000,34.198,25.937,A,836,IF,20230215104627 +coriolis/6903247/profiles/R6903247_002D.nc,20181019071600,34.195,25.996,A,836,IF,20230111110246 +coriolis/6903247/profiles/R6903247_003.nc,20181021054100,34.217,25.891,A,836,IF,20230215104628 +coriolis/6903247/profiles/R6903247_003D.nc,20181020064800,34.199,25.926,A,836,IF,20230111110248 +coriolis/6903247/profiles/R6903247_004.nc,20181022054000,34.245,25.844,A,836,IF,20230215104629 +coriolis/6903247/profiles/R6903247_004D.nc,20181021065900,34.218,25.885,A,836,IF,20230111110250 +coriolis/6903247/profiles/R6903247_005.nc,20181023054100,34.293,25.795,A,836,IF,20230215104630 +coriolis/6903247/profiles/R6903247_005D.nc,20181022070300,34.253,25.833,A,836,IF,20230111110252 +coriolis/6903247/profiles/R6903247_006.nc,20181024053300,34.352,25.751,A,836,IF,20230215104632 +coriolis/6903247/profiles/R6903247_006D.nc,20181023071000,34.301,25.784,A,836,IF,20230111110255 +coriolis/6903247/profiles/R6903247_007.nc,20181025053900,34.412,25.751,A,836,IF,20230215104633 +coriolis/6903247/profiles/R6903247_007D.nc,20181024065800,34.359,25.749,A,836,IF,20230111110257 +coriolis/6903247/profiles/R6903247_008.nc,20181026052800,34.471,25.751,A,836,IF,20230215104634 +coriolis/6903247/profiles/R6903247_008D.nc,20181025070900,34.418,25.749,A,836,IF,20230111110300 +coriolis/6903247/profiles/R6903247_009.nc,20181027053400,34.534,25.752,A,836,IF,20230215104635 +coriolis/6903247/profiles/R6903247_009D.nc,20181026065000,34.479,25.750,A,836,IF,20230111110301 +coriolis/6903247/profiles/R6903247_010.nc,20181028054000,34.581,25.780,A,836,IF,20230215104637 +coriolis/6903247/profiles/R6903247_010D.nc,20181027070700,34.540,25.757,A,836,IF,20230111110303 +coriolis/6903247/profiles/R6903247_011.nc,20181029054100,34.629,25.824,A,836,IF,20230215104638 +coriolis/6903247/profiles/R6903247_011D.nc,20181028070700,34.589,25.788,A,836,IF,20230111110305 +coriolis/6903247/profiles/R6903247_012.nc,20181030054200,34.669,25.891,A,836,IF,20230215104640 +coriolis/6903247/profiles/R6903247_012D.nc,20181029070300,34.635,25.834,A,836,IF,20230111110307 +coriolis/6903247/profiles/R6903247_013.nc,20181031053900,34.688,25.956,A,836,IF,20230215104641 +coriolis/6903247/profiles/R6903247_013D.nc,20181030071000,34.673,25.904,A,836,IF,20230111110309 +coriolis/6903247/profiles/R6903247_014.nc,20181101054100,34.707,26.031,A,836,IF,20230215104642 +coriolis/6903247/profiles/R6903247_014D.nc,20181031071200,34.696,25.973,A,836,IF,20230111110311 +coriolis/6903247/profiles/R6903247_015.nc,20181102053300,34.704,26.093,A,836,IF,20230215104643 +coriolis/6903247/profiles/R6903247_015D.nc,20181101070600,34.704,26.039,A,836,IF,20230111110313 +coriolis/6903247/profiles/R6903247_016.nc,20181103053300,34.694,26.150,A,836,IF,20230215104644 +coriolis/6903247/profiles/R6903247_016D.nc,20181102065900,34.700,26.103,A,836,IF,20230111110315 +coriolis/6903247/profiles/R6903247_017.nc,20181104053600,34.683,26.214,A,836,IF,20230215104645 +coriolis/6903247/profiles/R6903247_017D.nc,20181103070500,34.691,26.163,A,836,IF,20230111110317 +coriolis/6903247/profiles/R6903247_018.nc,20181105054100,34.666,26.246,A,836,IF,20230215104646 +coriolis/6903247/profiles/R6903247_018D.nc,20181104065800,34.676,26.220,A,836,IF,20230111110319 +coriolis/6903247/profiles/R6903247_019.nc,20181106053500,34.671,26.274,A,836,IF,20230215104647 +coriolis/6903247/profiles/R6903247_019D.nc,20181105070100,34.664,26.253,A,836,IF,20230111110321 +coriolis/6903247/profiles/R6903247_020.nc,20181107054100,34.697,26.290,A,836,IF,20230215104648 +coriolis/6903247/profiles/R6903247_020D.nc,20181106065600,34.673,26.278,A,836,IF,20230111110323 +coriolis/6903247/profiles/R6903247_021.nc,20181108053200,34.725,26.302,A,836,IF,20230215104649 +coriolis/6903247/profiles/R6903247_021D.nc,20181107065900,34.698,26.289,A,836,IF,20230111110325 +coriolis/6903247/profiles/R6903247_022.nc,20181109053400,34.740,26.333,A,836,IF,20230215104650 +coriolis/6903247/profiles/R6903247_022D.nc,20181108064800,34.723,26.304,A,836,IF,20230111110327 +coriolis/6903247/profiles/R6903247_023.nc,20181110054000,34.766,26.353,A,836,IF,20230215104651 +coriolis/6903247/profiles/R6903247_023D.nc,20181109070600,34.740,26.339,A,836,IF,20230111110329 +coriolis/6903247/profiles/R6903247_024.nc,20181115094000,34.904,26.568,A,836,IF,20230215104653 +coriolis/6903247/profiles/R6903247_024D.nc,20181110065800,34.765,26.353,A,836,IF,20230216154153 +coriolis/6903247/profiles/R6903247_025.nc,20181120094100,35.040,26.572,A,836,IF,20230215104654 +coriolis/6903247/profiles/R6903247_025D.nc,20181115105400,34.903,26.569,A,836,IF,20230215104653 +coriolis/6903247/profiles/R6903247_026.nc,20181125093900,35.059,26.804,A,836,IF,20230215104655 +coriolis/6903247/profiles/R6903247_026D.nc,20181120105400,35.042,26.571,A,836,IF,20230216154154 +coriolis/6903247/profiles/R6903247_027.nc,20181130094100,35.058,26.909,A,836,IF,20230215104657 +coriolis/6903247/profiles/R6903247_027D.nc,20181125105400,35.059,26.807,A,836,IF,20230216154154 +coriolis/6903247/profiles/R6903247_028.nc,20181205093900,34.917,26.976,A,836,IF,20230215104658 +coriolis/6903247/profiles/R6903247_028D.nc,20181130110000,35.053,26.911,A,836,IF,20230216154154 +coriolis/6903247/profiles/R6903247_029.nc,20181210093300,34.727,26.944,A,836,IF,20230215104659 +coriolis/6903247/profiles/R6903247_029D.nc,20181205105600,34.913,26.977,A,836,IF,20230215104658 +coriolis/6903247/profiles/R6903247_030.nc,20181215093700,34.589,26.899,A,836,IF,20230215104700 +coriolis/6903247/profiles/R6903247_030D.nc,20181210105400,34.726,26.947,A,836,IF,20230215104700 +coriolis/6903247/profiles/R6903247_031.nc,20181220093900,34.408,26.883,A,836,IF,20230215104702 +coriolis/6903247/profiles/R6903247_031D.nc,20181215105300,34.581,26.899,A,836,IF,20230215104701 +coriolis/6903247/profiles/R6903247_032.nc,20181225093300,34.240,26.883,A,836,IF,20230215104703 +coriolis/6903247/profiles/R6903247_032D.nc,20181220110000,34.403,26.884,A,836,IF,20230215104702 +coriolis/6903247/profiles/R6903247_033.nc,20181230093500,34.162,26.917,A,836,IF,20230215104704 +coriolis/6903247/profiles/R6903247_033D.nc,20181225105000,34.234,26.887,A,836,IF,20230215104703 +coriolis/6903247/profiles/R6903247_034.nc,20190104093400,34.115,26.941,A,836,IF,20230215104705 +coriolis/6903247/profiles/R6903247_034D.nc,20181230105300,34.161,26.917,A,836,IF,20230215104704 +coriolis/6903247/profiles/R6903247_035.nc,20190109093700,34.119,26.905,A,836,IF,20230215104706 +coriolis/6903247/profiles/R6903247_035D.nc,20190104105300,34.116,26.941,A,836,IF,20230216154154 +coriolis/6903247/profiles/R6903247_036.nc,20190114093200,34.246,26.832,A,836,IF,20230215104707 +coriolis/6903247/profiles/R6903247_036D.nc,20190109105100,34.116,26.903,A,836,IF,20230215104707 +coriolis/6903247/profiles/R6903247_037.nc,20190119093800,34.239,26.824,A,836,IF,20230215104708 +coriolis/6903247/profiles/R6903247_037D.nc,20190114105000,34.246,26.834,A,836,IF,20230215104708 +coriolis/6903247/profiles/R6903247_038.nc,20190124093400,34.188,26.912,A,836,IF,20230215104710 +coriolis/6903247/profiles/R6903247_038D.nc,20190119110200,34.239,26.827,A,836,IF,20230215104709 +coriolis/6903247/profiles/R6903247_039.nc,20190129093200,34.164,26.833,A,836,IF,20230215104711 +coriolis/6903247/profiles/R6903247_039D.nc,20190124105700,34.185,26.916,A,836,IF,20230215104710 +coriolis/6903247/profiles/R6903247_040.nc,20190203093000,34.232,26.677,A,836,IF,20230215104713 +coriolis/6903247/profiles/R6903247_040D.nc,20190129105400,34.167,26.832,A,836,IF,20230216154154 +coriolis/6903247/profiles/R6903247_041.nc,20190208094000,34.339,26.554,A,836,IF,20220918104612 +coriolis/6903247/profiles/R6903247_041D.nc,20190203104400,34.233,26.677,A,836,IF,20220905065934 +coriolis/6903247/profiles/R6903247_042.nc,20190213093100,34.565,26.678,A,836,IF,20220918104613 +coriolis/6903247/profiles/R6903247_042D.nc,20190208105800,34.339,26.556,A,836,IF,20220907144446 +coriolis/6903247/profiles/R6903247_043.nc,20190218093200,34.665,26.875,A,836,IF,20220918104615 +coriolis/6903247/profiles/R6903247_043D.nc,20190213104900,34.567,26.683,A,836,IF,20220905065937 +coriolis/6903247/profiles/R6903247_044.nc,20190223094200,34.678,27.078,A,836,IF,20220918104616 +coriolis/6903247/profiles/R6903247_044D.nc,20190218105000,34.666,26.877,A,836,IF,20220907144446 +coriolis/6903247/profiles/R6903247_045.nc,20190228093600,34.700,27.249,A,836,IF,20220918104618 +coriolis/6903247/profiles/R6903247_045D.nc,20190223110200,34.679,27.080,A,836,IF,20220907144446 +coriolis/6903247/profiles/R6903247_046.nc,20190305093000,34.728,27.281,A,836,IF,20220918104619 +coriolis/6903247/profiles/R6903247_046D.nc,20190228110100,34.699,27.250,A,836,IF,20220905065942 +coriolis/6903247/profiles/R6903247_047.nc,20190310093900,34.879,27.223,A,836,IF,20220918104621 +coriolis/6903247/profiles/R6903247_047D.nc,20190305110000,34.727,27.284,A,836,IF,20220905065943 +coriolis/6903247/profiles/R6903247_048.nc,20190315092800,34.997,27.195,A,836,IF,20220918104622 +coriolis/6903247/profiles/R6903247_048D.nc,20190310105600,34.880,27.225,A,836,IF,20220907144447 +coriolis/6903247/profiles/R6903247_049.nc,20190320093400,35.081,27.195,A,836,IF,20220918104624 +coriolis/6903247/profiles/R6903247_049D.nc,20190315104600,34.998,27.197,A,836,IF,20220905065946 +coriolis/6903247/profiles/R6903247_050.nc,20190325093000,35.104,27.093,A,836,IF,20220918104625 +coriolis/6903247/profiles/R6903247_050D.nc,20190320104900,35.082,27.196,A,836,IF,20220907144447 +coriolis/6903247/profiles/R6903247_051.nc,20190330093900,35.045,26.967,A,836,IF,20220918104627 +coriolis/6903247/profiles/R6903247_051D.nc,20190325104600,35.102,27.090,A,836,IF,20220905065949 +coriolis/6903247/profiles/R6903247_052.nc,20190404093500,35.039,26.821,A,836,IF,20220918104629 +coriolis/6903247/profiles/R6903247_052D.nc,20190330110000,35.043,26.964,A,836,IF,20220907144447 +coriolis/6903247/profiles/R6903247_053.nc,20190409093800,34.966,26.673,A,836,IF,20220918104630 +coriolis/6903247/profiles/R6903247_053D.nc,20190404104900,35.037,26.820,A,836,IF,20220905065952 +coriolis/6903247/profiles/R6903247_054.nc,20190414094100,34.924,26.582,A,836,IF,20220918104632 +coriolis/6903247/profiles/R6903247_054D.nc,20190409110000,34.964,26.673,A,836,IF,20220905065953 +coriolis/6903247/profiles/R6903247_055.nc,20190419094000,34.844,26.303,A,836,IF,20220918104633 +coriolis/6903247/profiles/R6903247_055D.nc,20190414105700,34.925,26.581,A,836,IF,20220905065954 +coriolis/6903247/profiles/R6903247_056.nc,20190424095100,34.748,25.686,A,836,IF,20220918104634 +coriolis/6903247/profiles/R6903247_056D.nc,20190419105600,34.842,26.299,A,836,IF,20220907144447 +coriolis/6903247/profiles/R6903247_057.nc,20190429094800,34.950,25.527,A,836,IF,20220918104635 +coriolis/6903247/profiles/R6903247_057D.nc,20190424111500,34.749,25.676,A,836,IF,20220905065957 +coriolis/6903247/profiles/R6903247_058.nc,20190504094500,34.899,25.578,A,836,IF,20220918104636 +coriolis/6903247/profiles/R6903247_058D.nc,20190429110400,34.951,25.530,A,836,IF,20220905065959 +coriolis/6903247/profiles/R6903247_059.nc,20190509095700,34.654,25.499,A,836,IF,20220918104637 +coriolis/6903247/profiles/R6903247_059D.nc,20190504105900,34.899,25.580,A,836,IF,20220905070000 +coriolis/6903247/profiles/R6903247_060.nc,20190514093800,34.625,25.322,A,836,IF,20220918104638 +coriolis/6903247/profiles/R6903247_060D.nc,20190509111000,34.654,25.501,A,836,IF,20220905070001 +coriolis/6903247/profiles/R6903247_061.nc,20190519093300,34.443,24.915,A,836,IF,20220918104639 +coriolis/6903247/profiles/R6903247_061D.nc,20190514105600,34.624,25.320,A,836,IF,20220907144447 +coriolis/6903247/profiles/R6903247_062.nc,20190524094200,34.534,24.226,A,836,IF,20220918104641 +coriolis/6903247/profiles/R6903247_062D.nc,20190519104600,34.444,24.916,A,836,IF,20220907144448 +coriolis/6903247/profiles/R6903247_063.nc,20190529093100,34.610,24.721,A,836,IF,20220918104642 +coriolis/6903247/profiles/R6903247_063D.nc,20190524105800,34.535,24.227,A,836,IF,20220907144448 +coriolis/6903247/profiles/R6903247_064.nc,20190603093900,34.472,24.242,A,836,IF,20220918104644 +coriolis/6903247/profiles/R6903247_064D.nc,20190529104900,34.606,24.723,A,836,IF,20220907154418 +coriolis/6903247/profiles/R6903247_065.nc,20190608092800,34.218,24.470,A,836,IF,20220918104645 +coriolis/6903247/profiles/R6903247_065D.nc,20190603105400,34.473,24.245,A,836,IF,20220905070008 +coriolis/6903247/profiles/R6903247_066.nc,20190613093600,34.700,24.348,A,836,IF,20220918104647 +coriolis/6903247/profiles/R6903247_066D.nc,20190608104300,34.215,24.469,A,836,IF,20220905070009 +coriolis/6903247/profiles/R6903247_067.nc,20190618093700,34.561,24.337,A,836,IF,20220918104648 +coriolis/6903247/profiles/R6903247_067D.nc,20190613105100,34.701,24.350,A,836,IF,20220905070011 +coriolis/6903247/profiles/R6903247_068.nc,20190623094000,34.515,24.369,A,836,IF,20220918104650 +coriolis/6903247/profiles/R6903247_068D.nc,20190618104700,34.564,24.336,A,836,IF,20220907154418 +coriolis/6903247/profiles/R6903247_069.nc,20190628094000,34.367,24.722,A,836,IF,20220918104652 +coriolis/6903247/profiles/R6903247_069D.nc,20190623105800,34.512,24.370,A,836,IF,20220907154419 +coriolis/6903247/profiles/R6903247_070.nc,20190703093800,34.703,24.274,A,836,IF,20220918104653 +coriolis/6903247/profiles/R6903247_070D.nc,20190628105100,34.363,24.722,A,836,IF,20220905070015 +coriolis/6903247/profiles/R6903247_071.nc,20190708093300,34.360,24.740,A,836,IF,20220918104653 +coriolis/6903247/profiles/R6903247_071D.nc,20190703105000,34.703,24.272,A,836,IF,20220907154419 +coriolis/6903247/profiles/R6903247_072.nc,20190713093900,34.229,24.767,A,836,IF,20220918104655 +coriolis/6903247/profiles/R6903247_072D.nc,20190708104500,34.358,24.744,A,836,IF,20220907154419 +coriolis/6903247/profiles/R6903247_073.nc,20190718093600,34.049,24.808,A,836,IF,20220918104656 +coriolis/6903247/profiles/R6903247_073D.nc,20190713105300,34.225,24.767,A,836,IF,20220907154419 +coriolis/6903247/profiles/R6903247_074.nc,20190723094500,33.938,24.888,A,836,IF,20220918104658 +coriolis/6903247/profiles/R6903247_074D.nc,20190718105300,34.047,24.808,A,836,IF,20220907154420 +coriolis/6903247/profiles/R6903247_075.nc,20190728093500,33.878,24.944,A,836,IF,20220918104659 +coriolis/6903247/profiles/R6903247_075D.nc,20190723105700,33.935,24.887,A,836,IF,20220907154420 +coriolis/6903247/profiles/R6903247_076.nc,20190802093500,33.843,24.958,A,836,IF,20220918104700 +coriolis/6903247/profiles/R6903247_076D.nc,20190728104600,33.875,24.943,A,836,IF,20220907154420 +coriolis/6903247/profiles/R6903247_077.nc,20190807094000,33.801,25.064,A,836,IF,20220918104701 +coriolis/6903247/profiles/R6903247_077D.nc,20190802104600,33.841,24.959,A,836,IF,20220907154420 +coriolis/6903247/profiles/R6903247_078.nc,20190812093800,33.745,25.186,A,836,IF,20220918104703 +coriolis/6903247/profiles/R6903247_078D.nc,20190807105900,33.798,25.067,A,836,IF,20220907154421 +coriolis/6903247/profiles/R6903247_079.nc,20190817093600,33.816,25.218,A,836,IF,20220918104704 +coriolis/6903247/profiles/R6903247_079D.nc,20190812105200,33.746,25.190,A,836,IF,20220907154421 +coriolis/6903247/profiles/R6903247_080.nc,20190822093700,33.930,25.287,A,836,IF,20220918104706 +coriolis/6903247/profiles/R6903247_080D.nc,20190817104800,33.816,25.220,A,836,IF,20220907154421 +coriolis/6903247/profiles/R6903247_081.nc,20190827094300,34.039,25.301,A,836,IF,20220918104707 +coriolis/6903247/profiles/R6903247_081D.nc,20190822104900,33.931,25.288,A,836,IF,20220907154421 +coriolis/6903247/profiles/R6903247_082.nc,20190901093400,34.132,25.322,A,836,IF,20220918104708 +coriolis/6903247/profiles/R6903247_082D.nc,20190827105200,34.041,25.302,A,836,IF,20220905070035 +coriolis/6903247/profiles/R6903247_083.nc,20190906093800,34.205,25.366,A,836,IF,20220918104710 +coriolis/6903247/profiles/R6903247_083D.nc,20190901105100,34.132,25.323,A,836,IF,20220907154422 +coriolis/6903247/profiles/R6903247_084.nc,20190911094300,34.352,25.360,A,836,IF,20220918104712 +coriolis/6903247/profiles/R6903247_084D.nc,20190906104800,34.206,25.366,A,836,IF,20220907154422 +coriolis/6903247/profiles/R6903247_085.nc,20190916093500,34.418,25.288,A,836,IF,20220918104713 +coriolis/6903247/profiles/R6903247_085D.nc,20190911105300,34.353,25.360,A,836,IF,20220907154422 +coriolis/6903247/profiles/R6903247_086.nc,20190921093600,34.408,25.271,A,836,IF,20220918104714 +coriolis/6903247/profiles/R6903247_086D.nc,20190916105000,34.417,25.286,A,836,IF,20220907154423 +coriolis/6903247/profiles/R6903247_087.nc,20190926094100,34.430,25.336,A,836,IF,20220918104716 +coriolis/6903247/profiles/R6903247_087D.nc,20190921104600,34.406,25.271,A,836,IF,20220905070044 +coriolis/6903247/profiles/R6903247_088.nc,20191001093600,34.518,25.394,A,836,IF,20220918104717 +coriolis/6903247/profiles/R6903247_088D.nc,20190926105700,34.431,25.338,A,836,IF,20220905070045 +coriolis/6903247/profiles/R6903247_089.nc,20191006093500,34.590,25.396,A,836,IF,20220918104719 +coriolis/6903247/profiles/R6903247_089D.nc,20191001105300,34.520,25.399,A,836,IF,20220907154423 +coriolis/6903247/profiles/R6903247_090.nc,20191011095600,34.669,25.433,A,836,IF,20220918104720 +coriolis/6903247/profiles/R6903247_090D.nc,20191006105200,34.590,25.398,A,836,IF,20220907154423 +coriolis/6903247/profiles/R6903247_091.nc,20191016094100,34.718,25.560,A,836,IF,20220918104722 +coriolis/6903247/profiles/R6903247_091D.nc,20191011111100,34.670,25.433,A,836,IF,20220907154424 +coriolis/6903247/profiles/R6903247_092.nc,20191021095300,34.766,25.595,A,836,IF,20220918104723 +coriolis/6903247/profiles/R6903247_092D.nc,20191016110200,34.724,25.565,A,836,IF,20220907154424 +coriolis/6903247/profiles/R6903247_093.nc,20191026095400,34.810,25.633,A,836,IF,20220918104725 +coriolis/6903247/profiles/R6903247_093D.nc,20191021111000,34.769,25.598,A,836,IF,20220907154424 +coriolis/6903247/profiles/R6903247_094.nc,20191031095700,34.827,25.617,A,836,IF,20220918104726 +coriolis/6903247/profiles/R6903247_094D.nc,20191026110500,34.810,25.635,A,836,IF,20220907154424 +coriolis/6903247/profiles/R6903247_095.nc,20191105095500,34.893,25.591,A,836,IF,20220918104727 +coriolis/6903247/profiles/R6903247_095D.nc,20191031110700,34.829,25.619,A,836,IF,20220907154425 +coriolis/6903247/profiles/R6903247_096.nc,20191110095900,34.888,25.566,A,836,IF,20220918104728 +coriolis/6903247/profiles/R6903247_096D.nc,20191105110900,34.896,25.596,A,836,IF,20220907154425 +coriolis/6903247/profiles/R6903247_097.nc,20191115095000,34.955,25.373,A,836,IF,20220918104729 +coriolis/6903247/profiles/R6903247_097D.nc,20191110110900,34.890,25.564,A,836,IF,20220907154425 +coriolis/6903247/profiles/R6903247_098.nc,20191120093500,34.911,25.205,A,836,IF,20220918104731 +coriolis/6903247/profiles/R6903247_098D.nc,20191115110400,34.956,25.374,A,836,IF,20220907154426 +coriolis/6903247/profiles/R6903247_099.nc,20191125093300,34.775,25.085,A,836,IF,20220918104732 +coriolis/6903247/profiles/R6903247_099D.nc,20191120104700,34.912,25.206,A,836,IF,20220907154426 +coriolis/6903247/profiles/R6903247_100.nc,20191130093300,34.706,25.059,A,836,IF,20220918104734 +coriolis/6903247/profiles/R6903247_100D.nc,20191125105000,34.773,25.083,A,836,IF,20220907154426 +coriolis/6903247/profiles/R6903247_101.nc,20191205093400,34.693,25.050,A,836,IF,20220918104736 +coriolis/6903247/profiles/R6903247_101D.nc,20191130104500,34.707,25.059,A,836,IF,20220907154426 +coriolis/6903247/profiles/R6903247_102.nc,20191210094100,34.702,24.977,A,836,IF,20220918104736 +coriolis/6903247/profiles/R6903247_102D.nc,20191205110200,34.694,25.050,A,836,IF,20220905070112 +coriolis/6903247/profiles/R6903247_103.nc,20191215093900,34.770,24.845,A,836,IF,20220918104737 +coriolis/6903247/profiles/R6903247_103D.nc,20191210105500,34.705,24.978,A,836,IF,20220905070114 +coriolis/6903247/profiles/R6903247_104.nc,20191220094100,35.024,24.462,A,836,IF,20220918104738 +coriolis/6903247/profiles/R6903247_104D.nc,20191215110200,34.771,24.847,A,836,IF,20220905070116 +coriolis/6903247/profiles/R6903247_105.nc,20191225094600,35.045,24.530,A,836,IF,20220918104740 +coriolis/6903247/profiles/R6903247_105D.nc,20191220105500,35.026,24.462,A,836,IF,20220907154426 +coriolis/6903247/profiles/R6903247_106.nc,20191230093100,35.061,24.387,A,836,IF,20220918104741 +coriolis/6903247/profiles/R6903247_106D.nc,20191225110400,35.043,24.534,A,836,IF,20220907154427 +coriolis/6903247/profiles/R6903247_107.nc,20200104093000,34.973,24.415,A,836,IF,20220918104743 +coriolis/6903247/profiles/R6903247_107D.nc,20191230104800,35.063,24.387,A,836,IF,20220905070122 +coriolis/6903247/profiles/R6903247_108.nc,20200109095400,34.913,24.253,A,836,IF,20220918104744 +coriolis/6903247/profiles/R6903247_108D.nc,20200104104200,34.972,24.414,A,836,IF,20220905070124 +coriolis/6903247/profiles/R6903247_109.nc,20200114093800,35.093,23.947,A,836,IF,20220918104746 +coriolis/6903247/profiles/R6903247_109D.nc,20200109112000,34.912,24.248,A,836,IF,20220905070125 +coriolis/6903247/profiles/R6903247_110.nc,20200119093400,35.138,23.779,A,836,IF,20220918104747 +coriolis/6903247/profiles/R6903247_110D.nc,20200114105900,35.093,23.946,A,836,IF,20220907154427 +coriolis/6903247/profiles/R6903247_111.nc,20200124093200,35.109,23.566,A,836,IF,20220918104749 +coriolis/6903247/profiles/R6903247_111D.nc,20200119105200,35.135,23.779,A,836,IF,20220905070129 +coriolis/6903247/profiles/R6903247_112.nc,20200129092600,35.277,23.263,A,836,IF,20220918104751 +coriolis/6903247/profiles/R6903247_112D.nc,20200124104600,35.109,23.562,A,836,IF,20220905070131 +coriolis/6903247/profiles/R6903247_113.nc,20200203093000,35.406,23.044,A,836,IF,20220918104752 +coriolis/6903247/profiles/R6903247_113D.nc,20200129105200,35.280,23.267,A,836,IF,20220905070133 +coriolis/6903247/profiles/R6903247_114.nc,20200208093200,35.742,22.955,A,836,IF,20220918104753 +coriolis/6903247/profiles/R6903247_114D.nc,20200203104900,35.403,23.048,A,836,IF,20220905070135 +coriolis/6903247/profiles/R6903247_115.nc,20200213093200,35.768,22.959,A,836,IF,20220918104754 +coriolis/6903247/profiles/R6903247_115D.nc,20200208104600,35.741,22.954,A,836,IF,20220907154427 +coriolis/6903247/profiles/R6903247_116.nc,20200218093700,35.664,23.037,A,836,IF,20220918104754 +coriolis/6903247/profiles/R6903247_116D.nc,20200213105000,35.767,22.957,A,836,IF,20220907154428 +coriolis/6903247/profiles/R6903247_117.nc,20200223093800,35.871,23.052,A,836,IF,20220918104756 +coriolis/6903247/profiles/R6903247_117D.nc,20200218105800,35.665,23.038,A,836,IF,20220905070140 +coriolis/6903247/profiles/R6903247_118.nc,20200228093200,35.723,22.764,A,836,IF,20220918104757 +coriolis/6903247/profiles/R6903247_118D.nc,20200223105800,35.870,23.050,A,836,IF,20220905070142 +coriolis/6903247/profiles/R6903247_119.nc,20200304093200,35.768,22.892,A,836,IF,20220918104759 +coriolis/6903247/profiles/R6903247_119D.nc,20200228105600,35.722,22.768,A,836,IF,20220907154428 +coriolis/6903247/profiles/R6903247_120.nc,20200309093300,35.789,23.026,A,836,IF,20220918104800 +coriolis/6903247/profiles/R6903247_120D.nc,20200304110100,35.762,22.894,A,836,IF,20220907154428 +coriolis/6903247/profiles/R6903247_121.nc,20200314093200,35.712,22.944,A,836,IF,20220918104802 +coriolis/6903247/profiles/R6903247_121D.nc,20200309104600,35.790,23.026,A,836,IF,20220907154429 +coriolis/6903247/profiles/R6903247_122.nc,20200319093200,35.895,23.028,A,836,IF,20220918104803 +coriolis/6903247/profiles/R6903247_122D.nc,20200314105000,35.711,22.948,A,836,IF,20220905070149 +coriolis/6903247/profiles/R6903247_123.nc,20200324093700,35.686,23.184,A,836,IF,20220918104805 +coriolis/6903247/profiles/R6903247_123D.nc,20200319105600,35.894,23.024,A,836,IF,20220907154429 +coriolis/6903247/profiles/R6903247_124.nc,20200329094100,35.630,22.907,A,836,IF,20220918104806 +coriolis/6903247/profiles/R6903247_124D.nc,20200324105700,35.685,23.188,A,836,IF,20220907154430 +coriolis/6903247/profiles/R6903247_125.nc,20200403095400,35.828,23.070,A,836,IF,20220918104808 +coriolis/6903247/profiles/R6903247_125D.nc,20200329105500,35.626,22.909,A,836,IF,20220907154430 +coriolis/6903247/profiles/R6903247_126.nc,20200408094400,35.702,23.140,A,836,IF,20220918104809 +coriolis/6903247/profiles/R6903247_126D.nc,20200403111100,35.829,23.065,A,836,IF,20220905070157 +coriolis/6903247/profiles/R6903247_127.nc,20200413093700,35.680,23.038,A,836,IF,20220918104810 +coriolis/6903247/profiles/R6903247_127D.nc,20200408110800,35.702,23.138,A,836,IF,20220905070158 +coriolis/6903247/profiles/R6903247_128.nc,20200418094400,35.823,22.979,A,836,IF,20220918104811 +coriolis/6903247/profiles/R6903247_128D.nc,20200413105300,35.681,23.039,A,836,IF,20220907154430 +coriolis/6903247/profiles/R6903247_129.nc,20200423095500,35.855,23.042,A,836,IF,20220918104813 +coriolis/6903247/profiles/R6903247_129D.nc,20200418110000,35.822,22.980,A,836,IF,20220905070202 +coriolis/6903247/profiles/R6903247_130.nc,20200428094800,35.976,22.968,A,836,IF,20220918104814 +coriolis/6903247/profiles/R6903247_130D.nc,20200423111300,35.856,23.038,A,836,IF,20220905070204 +coriolis/6903247/profiles/R6903247_131.nc,20200503095500,36.058,22.868,A,836,IF,20220918104816 +coriolis/6903247/profiles/R6903247_131D.nc,20200428110000,35.977,22.968,A,836,IF,20220905070206 +coriolis/6903247/profiles/R6903247_132.nc,20200508095300,36.165,22.736,A,836,IF,20220918104818 +coriolis/6903247/profiles/R6903247_132D.nc,20200503111900,36.056,22.870,A,836,IF,20220905070208 +coriolis/6903247/profiles/R6903247_133.nc,20200513093500,36.281,22.623,A,836,IF,20220918104819 +coriolis/6903247/profiles/R6903247_133D.nc,20200508110400,36.161,22.732,A,836,IF,20220905070210 +coriolis/6903247/profiles/R6903247_134.nc,20200518093900,36.359,22.560,A,836,IF,20220918104821 +coriolis/6903247/profiles/R6903247_134D.nc,20200513104800,36.282,22.625,A,836,IF,20220907154430 +coriolis/6903247/profiles/R6903247_135.nc,20200523100000,36.318,22.526,A,836,IF,20220905070214 +coriolis/6903247/profiles/R6903247_135D.nc,20200518105700,36.361,22.561,A,836,IF,20220907154431 +coriolis/6903247/profiles/R6903247_136.nc,20200528093300,36.156,22.486,A,836,IF,20220918104822 +coriolis/6903247/profiles/R6903247_136D.nc,20200523111700,36.317,22.531,A,836,IF,20220905070214 +coriolis/6903247/profiles/R6903247_137.nc,20200602100000,35.770,22.730,A,836,IF,20220905070217 +coriolis/6903247/profiles/R6903247_137D.nc,20200528131100,36.156,22.488,A,836,IF,20220907154431 +coriolis/6903247/profiles/R6903247_138.nc,20200607094000,35.770,22.667,A,836,IF,20220918104823 +coriolis/6903247/profiles/R6903247_138D.nc,20200602111400,35.769,22.730,A,836,IF,20220905070218 +coriolis/6903247/profiles/R6903247_139.nc,20200612093700,35.841,22.542,A,836,IF,20220918104823 +coriolis/6903247/profiles/R6903247_139D.nc,20200607105000,35.768,22.663,A,836,IF,20220907154431 +coriolis/6903247/profiles/R6903247_140.nc,20200617093800,36.086,22.468,A,836,IF,20220918104825 +coriolis/6903247/profiles/R6903247_140D.nc,20200612104700,35.842,22.543,A,836,IF,20220907154432 +coriolis/6903247/profiles/R6903247_141.nc,20200622094200,36.216,22.579,A,836,IF,20220918104825 +coriolis/6903247/profiles/R6903247_141D.nc,20200617105100,36.083,22.472,A,836,IF,20220905070221 +coriolis/6903247/profiles/R6903247_142.nc,20200627093400,36.281,22.806,A,836,IF,20220918104827 +coriolis/6903247/profiles/R6903247_142D.nc,20200622105900,36.214,22.586,A,836,IF,20220905070222 +coriolis/6903247/profiles/R6903247_143.nc,20200702093700,36.513,22.730,A,836,IF,20220918104827 +coriolis/6903247/profiles/R6903247_143D.nc,20200627104400,36.283,22.809,A,836,IF,20220907154432 +coriolis/6903247/profiles/R6903247_144.nc,20200707094000,36.451,22.558,A,836,IF,20220918104829 +coriolis/6903247/profiles/R6903247_144D.nc,20200702104700,36.515,22.727,A,836,IF,20220907154432 +coriolis/6903247/profiles/R6903247_145.nc,20200712093600,36.088,22.502,A,836,IF,20220918104829 +coriolis/6903247/profiles/R6903247_145D.nc,20200707105200,36.451,22.557,A,836,IF,20220907154433 +coriolis/6903247/profiles/R6903247_146.nc,20200717093900,35.719,22.074,A,836,IF,20220918104831 +coriolis/6903247/profiles/R6903247_146D.nc,20200712104400,36.089,22.506,A,836,IF,20220907154433 +coriolis/6903247/profiles/R6903247_147.nc,20200722093500,35.531,21.118,A,836,IF,20220918104831 +coriolis/6903247/profiles/R6903247_147D.nc,20200717105000,35.716,22.071,A,836,IF,20220907154433 +coriolis/6903247/profiles/R6903247_148.nc,20200727093500,35.803,20.792,A,836,IF,20220918104832 +coriolis/6903247/profiles/R6903247_148D.nc,20200722104400,35.531,21.116,A,836,IF,20220907154433 +coriolis/6903247/profiles/R6903247_149.nc,20200801093600,35.984,20.959,A,836,IF,20220918104834 +coriolis/6903247/profiles/R6903247_149D.nc,20200727104500,35.803,20.791,A,836,IF,20220907154433 +coriolis/6903247/profiles/R6903247_150.nc,20200806093600,36.078,21.853,A,836,IF,20220918104834 +coriolis/6903247/profiles/R6903247_150D.nc,20200801104400,35.984,20.958,A,836,IF,20220905070233 +coriolis/6903247/profiles/R6903247_151.nc,20200811093700,35.308,21.857,A,836,IF,20220918104836 +coriolis/6903247/profiles/R6903247_151D.nc,20200806104900,36.075,21.861,A,836,IF,20220907154434 +coriolis/6903247/profiles/R6903247_152.nc,20200816093400,35.206,21.533,A,836,IF,20220918104836 +coriolis/6903247/profiles/R6903247_152D.nc,20200811104900,35.305,21.856,A,836,IF,20220907154434 +coriolis/6903247/profiles/R6903247_153.nc,20200821094400,35.364,21.120,A,836,IF,20220918104837 +coriolis/6903247/profiles/R6903247_153D.nc,20200816104400,35.205,21.530,A,836,IF,20220907154434 +coriolis/6903247/profiles/R6903247_154.nc,20200826093700,35.727,20.998,A,836,IF,20220918104839 +coriolis/6903247/profiles/R6903247_154D.nc,20200821105500,35.365,21.117,A,836,IF,20220907154435 +coriolis/6903247/profiles/R6903247_155.nc,20200831093500,36.239,21.654,A,836,IF,20220918104839 +coriolis/6903247/profiles/R6903247_155D.nc,20200826104600,35.728,20.998,A,836,IF,20220907154435 +coriolis/6903247/profiles/R6903247_156.nc,20200905093700,36.031,22.180,A,836,IF,20220918104841 +coriolis/6903247/profiles/R6903247_156D.nc,20200831104800,36.238,21.655,A,836,IF,20220907154435 +coriolis/6903247/profiles/R6903247_157.nc,20200910094000,35.472,21.914,A,836,IF,20220918104841 +coriolis/6903247/profiles/R6903247_157D.nc,20200905105200,36.028,22.178,A,836,IF,20220905070241 +coriolis/6903247/profiles/R6903247_158.nc,20200915094500,35.543,21.131,A,836,IF,20220918104843 +coriolis/6903247/profiles/R6903247_158D.nc,20200910105000,35.469,21.912,A,836,IF,20220907154435 +coriolis/6903247/profiles/R6903247_159.nc,20200920093800,35.619,20.812,A,836,IF,20220918104843 +coriolis/6903247/profiles/R6903247_159D.nc,20200915105300,35.543,21.129,A,836,IF,20220907154435 +coriolis/6903247/profiles/R6903247_160.nc,20200925093600,35.918,20.680,A,836,IF,20220918104845 +coriolis/6903247/profiles/R6903247_160D.nc,20200920105200,35.617,20.811,A,836,IF,20220907154436 +coriolis/6903247/profiles/R6903247_161.nc,20200930094200,36.034,20.771,A,836,IF,20220918104845 +coriolis/6903247/profiles/R6903247_161D.nc,20200925104400,35.918,20.685,A,836,IF,20220907154436 +coriolis/6903247/profiles/R6903247_162.nc,20201005093500,35.990,21.048,A,836,IF,20220918104847 +coriolis/6903247/profiles/R6903247_162D.nc,20200930105400,36.031,20.770,A,836,IF,20220907154436 +coriolis/6903247/profiles/R6903247_163.nc,20201010093600,36.176,21.754,A,836,IF,20220918104848 +coriolis/6903247/profiles/R6903247_163D.nc,20201005105300,35.991,21.048,A,836,IF,20220907154436 +coriolis/6903247/profiles/R6903247_164.nc,20201015093200,35.401,21.963,A,836,IF,20220918104848 +coriolis/6903247/profiles/R6903247_164D.nc,20201010104400,36.176,21.760,A,836,IF,20220907154437 +coriolis/6903247/profiles/R6903247_165.nc,20201020094200,35.973,21.380,A,836,IF,20220918104850 +coriolis/6903247/profiles/R6903247_165D.nc,20201015104000,35.403,21.961,A,836,IF,20220907154437 +coriolis/6903247/profiles/R6903247_166.nc,20201025093400,35.501,22.131,A,836,IF,20220918104850 +coriolis/6903247/profiles/R6903247_166D.nc,20201020105200,35.974,21.381,A,836,IF,20220907154437 +coriolis/6903247/profiles/R6903247_167.nc,20201030094100,35.909,21.351,A,836,IF,20220918104852 +coriolis/6903247/profiles/R6903247_167D.nc,20201025104900,35.499,22.130,A,836,IF,20220907154438 +coriolis/6903247/profiles/R6903247_168.nc,20201104093700,35.548,22.131,A,836,IF,20220918104852 +coriolis/6903247/profiles/R6903247_168D.nc,20201030104800,35.908,21.353,A,836,IF,20220905070256 +coriolis/6903247/profiles/R6903247_169.nc,20201109093200,35.972,21.448,A,836,IF,20220918104853 +coriolis/6903247/profiles/R6903247_169D.nc,20201104105300,35.546,22.129,A,836,IF,20220905070258 +coriolis/6903247/profiles/R6903247_170.nc,20201114093200,35.385,22.049,A,836,IF,20220918104855 +coriolis/6903247/profiles/R6903247_170D.nc,20201109103800,35.974,21.449,A,836,IF,20220907154438 +coriolis/6903247/profiles/R6903247_171.nc,20201119093200,35.830,21.358,A,836,IF,20220918104855 +coriolis/6903247/profiles/R6903247_171D.nc,20201114104300,35.382,22.049,A,836,IF,20220905070300 +coriolis/6903247/profiles/R6903247_172.nc,20201124093400,35.650,22.258,A,836,IF,20220918104857 +coriolis/6903247/profiles/R6903247_172D.nc,20201119104500,35.833,21.358,A,836,IF,20220905070301 +coriolis/6903247/profiles/R6903247_173.nc,20201129093300,35.861,21.274,A,836,IF,20220918104858 +coriolis/6903247/profiles/R6903247_173D.nc,20201124104900,35.648,22.258,A,836,IF,20220907154438 +coriolis/6903247/profiles/R6903247_174.nc,20201204093700,35.530,22.056,A,836,IF,20220918104859 +coriolis/6903247/profiles/R6903247_174D.nc,20201129104500,35.865,21.275,A,836,IF,20220905070304 +coriolis/6903247/profiles/R6903247_175.nc,20201209093700,35.968,21.410,A,836,IF,20220918104900 +coriolis/6903247/profiles/R6903247_175D.nc,20201204104900,35.528,22.055,A,836,IF,20220905070306 +coriolis/6903247/profiles/R6903247_176.nc,20201214093600,35.602,22.077,A,836,IF,20220918104901 +coriolis/6903247/profiles/R6903247_176D.nc,20201209105600,35.973,21.415,A,836,IF,20220905070307 +coriolis/6903247/profiles/R6903247_177.nc,20201219093800,35.969,21.134,A,836,IF,20220918104902 +coriolis/6903247/profiles/R6903247_177D.nc,20201214104900,35.598,22.074,A,836,IF,20220905070308 +coriolis/6903247/profiles/R6903247_178.nc,20201224093200,36.252,21.388,A,836,IF,20220918104903 +coriolis/6903247/profiles/R6903247_178D.nc,20201219105100,35.972,21.134,A,836,IF,20220905070309 +coriolis/6903247/profiles/R6903247_179.nc,20201229093300,36.156,22.091,A,836,IF,20220918104904 +coriolis/6903247/profiles/R6903247_179D.nc,20201224104800,36.252,21.391,A,836,IF,20220907154438 +coriolis/6903247/profiles/R6903247_180.nc,20210103093900,35.401,21.322,A,836,IF,20220918104905 +coriolis/6903247/profiles/R6903247_180D.nc,20201229105000,36.155,22.094,A,836,IF,20220905070311 +coriolis/6903247/profiles/R6903247_181.nc,20210108093000,35.782,21.992,A,836,IF,20220918104906 +coriolis/6903247/profiles/R6903247_181D.nc,20210103105200,35.406,21.318,A,836,IF,20220907154438 +coriolis/6903247/profiles/R6903247_182.nc,20210113093300,35.713,21.283,A,836,IF,20220918104907 +coriolis/6903247/profiles/R6903247_182D.nc,20210108104200,35.781,21.992,A,836,IF,20220907154439 +coriolis/6903247/profiles/R6903247_183.nc,20210118093000,36.215,21.690,A,836,IF,20220918104908 +coriolis/6903247/profiles/R6903247_183D.nc,20210113105300,35.716,21.286,A,836,IF,20220905070315 +coriolis/6903247/profiles/R6903247_184.nc,20210123093000,36.237,21.972,A,836,IF,20220918104909 +coriolis/6903247/profiles/R6903247_184D.nc,20210118105200,36.215,21.688,A,836,IF,20220905070316 +coriolis/6903247/profiles/R6903247_185.nc,20210128093400,36.169,22.164,A,836,IF,20220918104910 +coriolis/6903247/profiles/R6903247_185D.nc,20210123104800,36.236,21.975,A,836,IF,20220905070318 +coriolis/6903247/profiles/R6903247_186.nc,20210202093400,35.984,22.313,A,836,IF,20220918104911 +coriolis/6903247/profiles/R6903247_186D.nc,20210128104200,36.167,22.165,A,836,IF,20220905070319 +coriolis/6903247/profiles/R6903247_187.nc,20210207093700,35.791,22.455,A,836,IF,20220918104912 +coriolis/6903247/profiles/R6903247_187D.nc,20210202105300,35.984,22.314,A,836,IF,20220905070321 +coriolis/6903247/profiles/R6903247_188.nc,20210212093600,35.486,22.439,A,836,IF,20220918104913 +coriolis/6903247/profiles/R6903247_188D.nc,20210207104900,35.788,22.454,A,836,IF,20220907154439 +coriolis/6903247/profiles/R6903247_189.nc,20210217093400,35.188,22.314,A,836,IF,20220918104914 +coriolis/6903247/profiles/R6903247_189D.nc,20210212104700,35.485,22.440,A,836,IF,20220905070323 +coriolis/6903247/profiles/R6903247_190.nc,20210222094000,35.028,22.105,A,836,IF,20220918104915 +coriolis/6903247/profiles/R6903247_190D.nc,20210217104900,35.185,22.312,A,836,IF,20220907154439 +coriolis/6903247/profiles/R6903247_191.nc,20210227093600,35.118,21.986,A,836,IF,20220918104916 +coriolis/6903247/profiles/R6903247_191D.nc,20210222105400,35.027,22.103,A,836,IF,20220907154440 +coriolis/6903247/profiles/R6903247_192.nc,20210304094000,35.019,21.888,A,836,IF,20220918104917 +coriolis/6903247/profiles/R6903247_192D.nc,20210227104900,35.119,21.988,A,836,IF,20220905070327 +coriolis/6903247/profiles/R6903247_193.nc,20210309093200,34.959,21.574,A,836,IF,20220918104918 +coriolis/6903247/profiles/R6903247_193D.nc,20210304105200,35.018,21.885,A,836,IF,20220905070328 +coriolis/6903247/profiles/R6903247_194.nc,20210314093400,35.230,21.185,A,836,IF,20220918104919 +coriolis/6903247/profiles/R6903247_194D.nc,20210309105400,34.960,21.569,A,836,IF,20220905070329 +coriolis/6903247/profiles/R6903247_195.nc,20210319093700,35.695,21.037,A,836,IF,20220918104920 +coriolis/6903247/profiles/R6903247_195D.nc,20210314104700,35.232,21.183,A,836,IF,20220905070330 +coriolis/6903247/profiles/R6903247_196.nc,20210324093600,35.977,21.896,A,836,IF,20220918104921 +coriolis/6903247/profiles/R6903247_196D.nc,20210319105300,35.697,21.039,A,836,IF,20220905070332 +coriolis/6903247/profiles/R6903247_197.nc,20210329093600,35.521,22.278,A,836,IF,20220918104921 +coriolis/6903247/profiles/R6903247_197D.nc,20210324105100,35.975,21.900,A,836,IF,20220905070333 +coriolis/6903247/profiles/R6903247_198.nc,20210403092900,35.460,22.937,A,836,IF,20220918104922 +coriolis/6903247/profiles/R6903247_198D.nc,20210329104700,35.520,22.279,A,836,IF,20220907154440 +coriolis/6903247/profiles/R6903247_199.nc,20210408092500,35.764,22.991,A,836,IF,20220918104924 +coriolis/6903247/profiles/R6903247_199D.nc,20210403104300,35.459,22.939,A,836,IF,20220905070336 +coriolis/6903247/profiles/R6903247_200.nc,20210413093600,35.724,22.984,A,836,IF,20220918104925 +coriolis/6903247/profiles/R6903247_200D.nc,20210408103400,35.765,22.992,A,836,IF,20220905070337 +coriolis/6903247/profiles/R6903247_201.nc,20210418093300,35.810,22.972,A,836,IF,20220918104926 +coriolis/6903247/profiles/R6903247_201D.nc,20210413105200,35.724,22.983,A,836,IF,20220907154440 +coriolis/6903247/profiles/R6903247_202.nc,20210423093400,35.841,22.974,A,836,IF,20220918104927 +coriolis/6903247/profiles/R6903247_202D.nc,20210418104800,35.810,22.971,A,836,IF,20220905070339 +coriolis/6903247/profiles/R6903247_203.nc,20210428094800,35.770,22.848,A,836,IF,20220918104928 +coriolis/6903247/profiles/R6903247_203D.nc,20210423104500,35.843,22.973,A,836,IF,20220905070341 +coriolis/6903247/profiles/R6903247_204.nc,20210503093600,35.743,22.712,A,836,IF,20220918104929 +coriolis/6903247/profiles/R6903247_204D.nc,20210428111000,35.771,22.845,A,836,IF,20220907154441 +coriolis/6903247/profiles/R6903247_205.nc,20210508094200,35.870,22.594,A,836,IF,20220918104930 +coriolis/6903247/profiles/R6903247_205D.nc,20210503104200,35.742,22.711,A,836,IF,20220907154441 +coriolis/6903247/profiles/R6903247_206.nc,20210513094400,35.685,22.843,A,836,IF,20220918104931 +coriolis/6903247/profiles/R6903247_206D.nc,20210508105600,35.868,22.595,A,836,IF,20220907154441 +coriolis/6903247/profiles/R6903247_207.nc,20210518093200,35.699,22.937,A,836,IF,20220918104932 +coriolis/6903247/profiles/R6903247_207D.nc,20210513105500,35.683,22.846,A,836,IF,20220905070345 +coriolis/6903247/profiles/R6903247_208.nc,20210523094500,35.653,23.025,A,836,IF,20220918104933 +coriolis/6903247/profiles/R6903247_208D.nc,20210518104600,35.700,22.943,A,836,IF,20220905070347 +coriolis/6903247/profiles/R6903247_209.nc,20210528093900,35.506,23.042,A,836,IF,20220918104934 +coriolis/6903247/profiles/R6903247_209D.nc,20210523105600,35.653,23.024,A,836,IF,20220905070348 +coriolis/6903247/profiles/R6903247_210.nc,20210602093000,35.379,22.896,A,836,IF,20220918104935 +coriolis/6903247/profiles/R6903247_210D.nc,20210528104900,35.505,23.041,A,836,IF,20220905070349 +coriolis/6903247/profiles/R6903247_211.nc,20210607093400,35.368,22.873,A,836,IF,20220918104936 +coriolis/6903247/profiles/R6903247_211D.nc,20210602104100,35.380,22.892,A,836,IF,20220907154442 +coriolis/6903247/profiles/R6903247_212.nc,20210612094300,35.407,22.834,A,836,IF,20220918104937 +coriolis/6903247/profiles/R6903247_212D.nc,20210607104500,35.366,22.873,A,836,IF,20220907154442 +coriolis/6903247/profiles/R6903247_213.nc,20210617093600,35.397,22.652,A,836,IF,20220918104938 +coriolis/6903247/profiles/R6903247_213D.nc,20210612104700,35.406,22.835,A,836,IF,20220907154442 +coriolis/6903247/profiles/R6903247_214.nc,20210622093200,35.309,22.494,A,836,IF,20220918104939 +coriolis/6903247/profiles/R6903247_214D.nc,20210617104500,35.397,22.654,A,836,IF,20220907154442 +coriolis/6903247/profiles/R6903247_215.nc,20210627093800,35.246,22.400,A,836,IF,20220918104940 +coriolis/6903247/profiles/R6903247_215D.nc,20210622103800,35.309,22.493,A,836,IF,20220907154443 +coriolis/6903247/profiles/R6903247_216.nc,20210702093200,35.174,22.186,A,836,IF,20220918104941 +coriolis/6903247/profiles/R6903247_216D.nc,20210627104500,35.245,22.398,A,836,IF,20220907154443 +coriolis/6903247/profiles/R6903247_217.nc,20210707093400,35.756,21.491,A,836,IF,20220918104942 +coriolis/6903247/profiles/R6903247_217D.nc,20210702104200,35.171,22.183,A,836,IF,20220907154443 +coriolis/6903247/profiles/R6903247_218.nc,20210712093200,35.332,21.437,A,836,IF,20220918104943 +coriolis/6903247/profiles/R6903247_218D.nc,20210707104300,35.757,21.490,A,836,IF,20220907154443 +coriolis/6903247/profiles/R6903247_219.nc,20210717094200,35.493,20.920,A,836,IF,20220918104944 +coriolis/6903247/profiles/R6903247_219D.nc,20210712103700,35.333,21.435,A,836,IF,20220907154443 +coriolis/6903247/profiles/R6903247_220.nc,20210722093100,35.541,21.032,A,836,IF,20220918104945 +coriolis/6903247/profiles/R6903247_220D.nc,20210717105300,35.494,20.921,A,836,IF,20220907154444 +coriolis/6903247/profiles/R6903247_221.nc,20210727093300,35.424,20.719,A,836,IF,20220918104946 +coriolis/6903247/profiles/R6903247_221D.nc,20210722104000,35.538,21.029,A,836,IF,20220907154444 +coriolis/6903247/profiles/R6903247_222.nc,20210801093500,35.651,20.524,A,836,IF,20220918104947 +coriolis/6903247/profiles/R6903247_222D.nc,20210727104000,35.421,20.719,A,836,IF,20220905070404 +coriolis/6903247/profiles/R6903247_223.nc,20210806093300,35.882,20.625,A,836,IF,20220918104948 +coriolis/6903247/profiles/R6903247_223D.nc,20210801105100,35.650,20.526,A,836,IF,20220907154444 +coriolis/6903247/profiles/R6903247_224.nc,20210811094100,35.725,20.448,A,836,IF,20220918104950 +coriolis/6903247/profiles/R6903247_224D.nc,20210806104100,35.881,20.623,A,836,IF,20220905070407 +coriolis/6903247/profiles/R6903247_225.nc,20210816093200,35.657,20.148,A,836,IF,20220918104950 +coriolis/6903247/profiles/R6903247_225D.nc,20210811104900,35.723,20.450,A,836,IF,20220907154444 +coriolis/6903247/profiles/R6903247_226.nc,20210821093400,35.634,19.971,A,836,IF,20220918104951 +coriolis/6903247/profiles/R6903247_226D.nc,20210816104200,35.656,20.149,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_227.nc,20210826093400,35.703,19.836,A,836,IF,20220918104953 +coriolis/6903247/profiles/R6903247_227D.nc,20210821104500,35.634,19.970,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_228.nc,20210831092900,35.834,19.676,A,836,IF,20220918104954 +coriolis/6903247/profiles/R6903247_228D.nc,20210826104100,35.703,19.836,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_229.nc,20210905093400,36.072,19.592,A,836,IF,20220918104955 +coriolis/6903247/profiles/R6903247_229D.nc,20210831103600,35.833,19.677,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_230.nc,20210910093300,36.374,19.638,A,836,IF,20220918104956 +coriolis/6903247/profiles/R6903247_230D.nc,20210905104100,36.071,19.592,A,836,IF,20220905070414 +coriolis/6903247/profiles/R6903247_231.nc,20210915093400,36.581,19.851,A,836,IF,20220918104957 +coriolis/6903247/profiles/R6903247_231D.nc,20210910104000,36.374,19.640,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_232.nc,20210920094200,36.695,19.956,A,836,IF,20220918104957 +coriolis/6903247/profiles/R6903247_232D.nc,20210915104300,36.580,19.853,A,836,IF,20220907154445 +coriolis/6903247/profiles/R6903247_233.nc,20210925094400,36.858,19.977,A,836,IF,20220918104958 +coriolis/6903247/profiles/R6903247_233D.nc,20210920105100,36.695,19.954,A,836,IF,20220907154446 +coriolis/6903247/profiles/R6903247_234.nc,20210930093400,37.151,20.109,A,836,IF,20220918104958 +coriolis/6903247/profiles/R6903247_234D.nc,20210925105500,36.859,19.977,A,836,IF,20220907154446 +coriolis/6903247/profiles/R6903247_235.nc,20211005093200,37.369,20.438,A,836,IF,20220918104959 +coriolis/6903247/profiles/R6903247_235D.nc,20210930104500,37.153,20.109,A,836,IF,20220907154446 +coriolis/6903247/profiles/R6903247_236.nc,20211010093400,37.470,20.634,A,836,IF,20220918105000 +coriolis/6903247/profiles/R6903247_236D.nc,20211005104000,37.370,20.438,A,836,IF,20220907154447 +coriolis/6903247/profiles/R6903247_237.nc,20211015093200,37.522,20.800,A,836,IF,20220918105001 +coriolis/6903247/profiles/R6903247_237D.nc,20211010104300,37.471,20.634,A,836,IF,20220905070422 +coriolis/6903247/profiles/R6903247_238.nc,20211020093800,37.386,20.967,A,836,IF,20220918105002 +coriolis/6903247/profiles/R6903247_238D.nc,20211015105400,37.520,20.804,A,836,IF,20220907154447 +coriolis/6903247/profiles/R6903247_239.nc,20211025095200,37.277,21.035,A,836,IF,20220918105003 +coriolis/6903247/profiles/R6903247_239D.nc,20211020104900,37.386,20.966,A,836,IF,20220907154447 +coriolis/6903247/profiles/R6903247_240.nc,20211030093800,37.143,20.992,A,836,IF,20220918105003 +coriolis/6903247/profiles/R6903247_240D.nc,20211025110300,37.278,21.032,A,836,IF,20220905070426 +coriolis/6903247/profiles/R6903247_241.nc,20211104093300,37.021,21.086,A,836,IF,20220918105004 +coriolis/6903247/profiles/R6903247_241D.nc,20211030104800,37.143,20.992,A,836,IF,20220907154448 +coriolis/6903247/profiles/R6903247_242.nc,20211109093000,36.751,21.279,A,836,IF,20220918105004 +coriolis/6903247/profiles/R6903247_242D.nc,20211104104200,37.022,21.088,A,836,IF,20220907154448 +coriolis/6903247/profiles/R6903247_243.nc,20211114093600,36.694,21.496,A,836,IF,20220918105006 +coriolis/6903247/profiles/R6903247_243D.nc,20211109104000,36.753,21.282,A,836,IF,20220905070430 +coriolis/6903247/profiles/R6903247_244.nc,20211119092800,36.583,21.638,A,836,IF,20220918105006 +coriolis/6903247/profiles/R6903247_244D.nc,20211114104800,36.696,21.498,A,836,IF,20220905070431 +coriolis/6903247/profiles/R6903247_245.nc,20211124093500,36.497,21.844,A,836,IF,20220918105008 +coriolis/6903247/profiles/R6903247_245D.nc,20211119103700,36.586,21.636,A,836,IF,20220907154448 +coriolis/6903247/profiles/R6903247_246.nc,20211129093400,36.384,22.023,A,836,IF,20220918105008 +coriolis/6903247/profiles/R6903247_246D.nc,20211124104300,36.495,21.844,A,836,IF,20220907154449 +coriolis/6903247/profiles/R6903247_247.nc,20211204093200,36.237,22.176,A,836,IF,20220918105009 +coriolis/6903247/profiles/R6903247_247D.nc,20211129105000,36.383,22.025,A,836,IF,20220907154449 +coriolis/6903247/profiles/R6903247_248.nc,20211209093500,36.073,22.291,A,836,IF,20220918105010 +coriolis/6903247/profiles/R6903247_248D.nc,20211204105100,36.234,22.177,A,836,IF,20220905070436 +coriolis/6903247/profiles/R6903247_249.nc,20211214093300,35.824,22.388,A,836,IF,20220918105010 +coriolis/6903247/profiles/R6903247_249D.nc,20211209104600,36.070,22.297,A,836,IF,20220907154449 +coriolis/6903247/profiles/R6903247_250.nc,20211219094200,35.479,22.293,A,836,IF,20220918105011 +coriolis/6903247/profiles/R6903247_250D.nc,20211214104600,35.821,22.388,A,836,IF,20220905070439 +coriolis/6903247/profiles/R6903247_251.nc,20211224093800,35.197,22.157,A,836,IF,20220918105011 +coriolis/6903247/profiles/R6903247_251D.nc,20211219105400,35.478,22.291,A,836,IF,20220905070440 +coriolis/6903247/profiles/R6903247_252.nc,20211229093600,35.060,22.021,A,836,IF,20220918105012 +coriolis/6903247/profiles/R6903247_252D.nc,20211224105400,35.197,22.157,A,836,IF,20220905070441 +coriolis/6903247/profiles/R6903247_253.nc,20220103093400,35.051,21.753,A,836,IF,20220918105013 +coriolis/6903247/profiles/R6903247_253D.nc,20211229104300,35.059,22.019,A,836,IF,20220905070443 +coriolis/6903247/profiles/R6903247_254.nc,20220108093200,35.359,21.097,A,836,IF,20220918105014 +coriolis/6903247/profiles/R6903247_254D.nc,20220103104700,35.052,21.753,A,836,IF,20220907154449 +coriolis/6903247/profiles/R6903247_255.nc,20220113093400,36.085,21.240,A,836,IF,20220918105015 +coriolis/6903247/profiles/R6903247_255D.nc,20220108104100,35.362,21.094,A,836,IF,20220905070445 +coriolis/6903247/profiles/R6903247_256.nc,20220118093000,35.763,21.970,A,836,IF,20220918105016 +coriolis/6903247/profiles/R6903247_256D.nc,20220113105100,36.086,21.244,A,836,IF,20220907154449 +coriolis/6903247/profiles/R6903247_257.nc,20220123093300,35.200,21.746,A,836,IF,20220918105017 +coriolis/6903247/profiles/R6903247_257D.nc,20220118104200,35.758,21.971,A,836,IF,20220905070447 +coriolis/6903247/profiles/R6903247_258.nc,20220128092900,35.053,21.598,A,836,IF,20220918105018 +coriolis/6903247/profiles/R6903247_258D.nc,20220123105100,35.197,21.746,A,836,IF,20220905070448 +coriolis/6903247/profiles/R6903247_259.nc,20220202093200,35.059,21.285,A,836,IF,20220918105019 +coriolis/6903247/profiles/R6903247_259D.nc,20220128104700,35.052,21.596,A,836,IF,20220905070449 +coriolis/6903247/profiles/R6903247_260.nc,20220207093200,35.361,20.858,A,836,IF,20220918105020 +coriolis/6903247/profiles/R6903247_260D.nc,20220202104000,35.060,21.282,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_261.nc,20220212092900,35.961,21.200,A,836,IF,20220918105021 +coriolis/6903247/profiles/R6903247_261D.nc,20220207105000,35.366,20.856,A,836,IF,20220905070452 +coriolis/6903247/profiles/R6903247_262.nc,20220217093900,35.313,21.589,A,836,IF,20220918105022 +coriolis/6903247/profiles/R6903247_262D.nc,20220212104000,35.963,21.207,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_263.nc,20220222093400,35.405,20.932,A,836,IF,20220919074224 +coriolis/6903247/profiles/R6903247_263D.nc,20220217105400,35.311,21.587,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_264.nc,20220227093000,35.875,21.940,A,836,IF,20220918105024 +coriolis/6903247/profiles/R6903247_264D.nc,20220222104400,35.409,20.933,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_265.nc,20220304092800,35.240,21.900,A,836,IF,20220918105025 +coriolis/6903247/profiles/R6903247_265D.nc,20220227105100,35.872,21.944,A,836,IF,20220905070456 +coriolis/6903247/profiles/R6903247_266.nc,20220309093900,35.673,20.897,A,836,IF,20220918105026 +coriolis/6903247/profiles/R6903247_266D.nc,20220304104100,35.236,21.896,A,836,IF,20220905070457 +coriolis/6903247/profiles/R6903247_267.nc,20220314093400,36.042,21.907,A,836,IF,20220918105027 +coriolis/6903247/profiles/R6903247_267D.nc,20220309105400,35.680,20.898,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_268.nc,20220319093000,36.080,22.453,A,836,IF,20220918105028 +coriolis/6903247/profiles/R6903247_268D.nc,20220314104600,36.042,21.909,A,836,IF,20220907154450 +coriolis/6903247/profiles/R6903247_269.nc,20220324093800,36.192,22.225,A,836,IF,20220918105028 +coriolis/6903247/profiles/R6903247_269D.nc,20220319104500,36.079,22.451,A,836,IF,20220907154451 +coriolis/6903247/profiles/R6903247_270.nc,20220329093600,36.311,22.563,A,836,IF,20220918105029 +coriolis/6903247/profiles/R6903247_270D.nc,20220324104800,36.189,22.225,A,836,IF,20220907154451 +coriolis/6903247/profiles/R6903247_271.nc,20220403093700,36.221,22.762,A,836,IF,20220918105029 +coriolis/6903247/profiles/R6903247_271D.nc,20220329104700,36.311,22.565,A,836,IF,20220905070502 +coriolis/6903247/profiles/R6903247_272.nc,20220408093800,36.404,22.656,A,836,IF,20220918105030 +coriolis/6903247/profiles/R6903247_272D.nc,20220403105700,36.219,22.761,A,836,IF,20220905070504 +coriolis/6903247/profiles/R6903247_273.nc,20220413094400,36.549,22.861,A,836,IF,20220918105031 +coriolis/6903247/profiles/R6903247_273D.nc,20220408105400,36.405,22.660,A,836,IF,20220905070505 +coriolis/6903247/profiles/R6903247_274.nc,20220418094800,36.537,22.860,A,836,IF,20220918105031 +coriolis/6903247/profiles/R6903247_274D.nc,20220413105300,36.551,22.861,A,836,IF,20220905070508 +coriolis/6903247/profiles/R6903247_275.nc,20220423095300,36.596,22.856,A,836,IF,20220918105032 +coriolis/6903247/profiles/R6903247_275D.nc,20220418110400,36.537,22.859,A,836,IF,20220905070509 +coriolis/6903247/profiles/R6903247_276.nc,20220428094800,36.643,22.788,A,836,IF,20220918105032 +coriolis/6903247/profiles/R6903247_276D.nc,20220423110400,36.597,22.858,A,836,IF,20220905070510 +coriolis/6903247/profiles/R6903247_277.nc,20220503094000,36.638,22.702,A,836,IF,20220918105033 +coriolis/6903247/profiles/R6903247_277D.nc,20220428105600,36.643,22.789,A,836,IF,20220907154451 +coriolis/6903247/profiles/R6903247_278.nc,20220508093000,36.651,22.725,A,836,IF,20220918105033 +coriolis/6903247/profiles/R6903247_278D.nc,20220503105300,36.639,22.704,A,836,IF,20220907154451 +coriolis/6903247/profiles/R6903247_279.nc,20220513093100,36.650,22.715,A,836,IF,20220918105034 +coriolis/6903247/profiles/R6903247_279D.nc,20220508104500,36.650,22.723,A,836,IF,20220905070513 +coriolis/6903247/profiles/R6903247_280.nc,20220518093800,36.607,22.704,A,836,IF,20220918105035 +coriolis/6903247/profiles/R6903247_280D.nc,20220513104000,36.651,22.715,A,836,IF,20220907154451 +coriolis/6903247/profiles/R6903247_281.nc,20220523095200,36.669,22.649,A,836,IF,20220918105035 +coriolis/6903247/profiles/R6903247_281D.nc,20220518104000,36.609,22.702,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_282.nc,20220528094400,36.693,22.757,A,836,IF,20220918105036 +coriolis/6903247/profiles/R6903247_282D.nc,20220523110200,36.670,22.649,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_283.nc,20220602094100,36.691,22.756,A,836,IF,20220918105036 +coriolis/6903247/profiles/R6903247_283D.nc,20220528105500,36.695,22.757,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_284.nc,20220607094900,36.610,22.610,A,836,IF,20220918105037 +coriolis/6903247/profiles/R6903247_284D.nc,20220602104500,36.691,22.755,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_285.nc,20220612092800,36.309,22.508,A,836,IF,20220918105038 +coriolis/6903247/profiles/R6903247_285D.nc,20220607110000,36.610,22.607,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_286.nc,20220617094100,36.000,22.603,A,836,IF,20220918105039 +coriolis/6903247/profiles/R6903247_286D.nc,20220612103600,36.310,22.512,A,836,IF,20220907154452 +coriolis/6903247/profiles/R6903247_287.nc,20220622093400,35.737,22.364,A,836,IF,20220918105040 +coriolis/6903247/profiles/R6903247_287D.nc,20220617104700,35.998,22.605,A,836,IF,20220907154453 +coriolis/6903247/profiles/R6903247_288.nc,20220627093200,35.261,22.450,A,836,IF,20220918105040 +coriolis/6903247/profiles/R6903247_288D.nc,20220622104300,35.735,22.364,A,836,IF,20220907154453 +coriolis/6903247/profiles/R6903247_289.nc,20220702093400,34.960,22.511,A,836,IF,20220918105041 +coriolis/6903247/profiles/R6903247_289D.nc,20220627103700,35.260,22.449,A,836,IF,20220907154453 +coriolis/6903247/profiles/R6903247_290.nc,20220707093200,34.964,22.239,A,836,IF,20220918105043 +coriolis/6903247/profiles/R6903247_290D.nc,20220702104000,34.958,22.509,A,836,IF,20220907154453 +coriolis/6903247/profiles/R6903247_291.nc,20220712093500,35.107,22.266,A,836,IF,20220918105044 +coriolis/6903247/profiles/R6903247_291D.nc,20220707104100,34.965,22.235,A,836,IF,20220907154453 +coriolis/6903247/profiles/R6903247_292.nc,20220713093800,35.096,22.339,A,836,IF,20220918105044 +coriolis/6903247/profiles/R6903247_292D.nc,20220712104800,35.107,22.267,A,836,IF,20220907154454 +coriolis/6903247/profiles/R6903247_293.nc,20220714093600,35.076,22.403,A,836,IF,20220918105045 +coriolis/6903247/profiles/R6903247_293D.nc,20220713104500,35.095,22.338,A,836,IF,20220907154454 +coriolis/6903247/profiles/R6903247_294.nc,20220715093200,35.043,22.451,A,836,IF,20220918105046 +coriolis/6903247/profiles/R6903247_294D.nc,20220714105600,35.072,22.403,A,836,IF,20220907154454 +coriolis/6903247/profiles/R6903247_295.nc,20220716093200,34.982,22.472,A,836,IF,20221107104724 +coriolis/6903247/profiles/R6903247_295D.nc,20220715125100,35.013,22.457,A,836,IF,20230407124150 +coriolis/6903247/profiles/R6903247_296.nc,20220717093100,34.935,22.463,A,836,IF,20221107104725 +coriolis/6903247/profiles/R6903247_296D.nc,20220716104000,34.978,22.472,A,836,IF,20221108105157 +coriolis/6903247/profiles/R6903247_297.nc,20220718093600,34.892,22.415,A,836,IF,20221107104727 +coriolis/6903247/profiles/R6903247_297D.nc,20220717103800,34.934,22.460,A,836,IF,20221108105158 +coriolis/6903247/profiles/R6903247_298.nc,20220719093500,34.841,22.335,A,836,IF,20221107104729 +coriolis/6903247/profiles/R6903247_298D.nc,20220718104600,34.890,22.409,A,836,IF,20221108105158 +coriolis/6903247/profiles/R6903247_299.nc,20220720093200,34.808,22.226,A,836,IF,20221107104730 +coriolis/6903247/profiles/R6903247_299D.nc,20220719104700,34.839,22.326,A,836,IF,20221107104729 +coriolis/6903247/profiles/R6903247_300.nc,20220721093800,34.816,22.142,A,836,IF,20221107104731 +coriolis/6903247/profiles/R6903247_300D.nc,20220720104500,34.809,22.220,A,836,IF,20221107104730 +coriolis/6903247/profiles/R6903247_301.nc,20220722094400,34.854,22.089,A,836,IF,20221107104732 +coriolis/6903247/profiles/R6903247_301D.nc,20220721104200,34.817,22.144,A,836,IF,20221108105158 +coriolis/6903247/profiles/R6903247_302.nc,20220723094200,34.903,22.055,A,836,IF,20221107104732 +coriolis/6903247/profiles/R6903247_302D.nc,20220722105300,34.854,22.087,A,836,IF,20221108105159 +coriolis/6903247/profiles/R6903247_303.nc,20220724093900,34.950,22.029,A,836,IF,20221107104733 +coriolis/6903247/profiles/R6903247_303D.nc,20220723105000,34.903,22.048,A,836,IF,20221108105159 +coriolis/6903247/profiles/R6903247_304.nc,20220725094200,34.996,22.016,A,836,IF,20221107104734 +coriolis/6903247/profiles/R6903247_304D.nc,20220724104700,34.950,22.026,A,836,IF,20221108105200 +coriolis/6903247/profiles/R6903247_305.nc,20220726093100,35.035,22.008,A,836,IF,20221107104736 +coriolis/6903247/profiles/R6903247_305D.nc,20220725104800,34.996,22.011,A,836,IF,20221108105201 +coriolis/6903247/profiles/R6903247_306.nc,20220727093300,35.068,22.013,A,836,IF,20221107104737 +coriolis/6903247/profiles/R6903247_306D.nc,20220726103600,35.036,22.005,A,836,IF,20221108105201 +coriolis/6903247/profiles/R6903247_307.nc,20220728093900,35.081,22.038,A,836,IF,20221107104738 +coriolis/6903247/profiles/R6903247_307D.nc,20220727104600,35.071,22.013,A,836,IF,20221108105202 +coriolis/6903247/profiles/R6903247_308.nc,20220729094100,35.074,22.087,A,836,IF,20221107104739 +coriolis/6903247/profiles/R6903247_308D.nc,20220728104500,35.081,22.040,A,836,IF,20221108105202 +coriolis/6903247/profiles/R6903247_309.nc,20220730093900,35.055,22.173,A,836,IF,20221107104739 +coriolis/6903247/profiles/R6903247_309D.nc,20220729104600,35.074,22.088,A,836,IF,20221108105203 +coriolis/6903247/profiles/R6903247_310.nc,20220731094300,35.006,22.289,A,836,IF,20221107104740 +coriolis/6903247/profiles/R6903247_310D.nc,20220730105200,35.052,22.177,A,836,IF,20221108105204 +coriolis/6903247/profiles/R6903247_311.nc,20220801093200,34.951,22.404,A,836,IF,20221107104741 +coriolis/6903247/profiles/R6903247_311D.nc,20220731105200,35.004,22.289,A,836,IF,20221108105205 +coriolis/6903247/profiles/R6903247_312.nc,20220802093300,34.888,22.497,A,836,IF,20221107104742 +coriolis/6903247/profiles/R6903247_312D.nc,20220801103800,34.949,22.404,A,836,IF,20221108105205 +coriolis/6903247/profiles/R6903247_313.nc,20220803094200,34.828,22.551,A,836,IF,20221107104743 +coriolis/6903247/profiles/R6903247_313D.nc,20220802104000,34.885,22.496,A,836,IF,20221108105205 +coriolis/6903247/profiles/R6903247_314.nc,20220804094100,34.768,22.570,A,836,IF,20221107104744 +coriolis/6903247/profiles/R6903247_314D.nc,20220803105500,34.824,22.550,A,836,IF,20221108105205 +coriolis/6903247/profiles/R6903247_315.nc,20220805094000,34.724,22.566,A,836,IF,20221107104745 +coriolis/6903247/profiles/R6903247_315D.nc,20220804105200,34.761,22.568,A,836,IF,20221108105206 +coriolis/6903247/profiles/R6903247_316.nc,20220806093700,34.697,22.537,A,836,IF,20221107104746 +coriolis/6903247/profiles/R6903247_316D.nc,20220805104700,34.720,22.564,A,836,IF,20221108105206 +coriolis/6903247/profiles/R6903247_317.nc,20220807093100,34.685,22.498,A,836,IF,20221107104747 +coriolis/6903247/profiles/R6903247_317D.nc,20220806104400,34.695,22.534,A,836,IF,20221108105207 +coriolis/6903247/profiles/R6903247_318.nc,20220808094200,34.672,22.451,A,836,IF,20221107104749 +coriolis/6903247/profiles/R6903247_318D.nc,20220807103700,34.684,22.497,A,836,IF,20221108105207 +coriolis/6903247/profiles/R6903247_319.nc,20220809093200,34.668,22.366,A,836,IF,20221107104749 +coriolis/6903247/profiles/R6903247_319D.nc,20220808105000,34.670,22.449,A,836,IF,20221108105207 +coriolis/6903247/profiles/R6903247_320.nc,20220814093400,34.778,21.964,A,836,IF,20221107104751 +coriolis/6903247/profiles/R6903247_320D.nc,20220809103900,34.664,22.360,A,836,IF,20221107104750 +coriolis/6903247/profiles/R6903247_321.nc,20220819093400,34.968,21.908,A,836,IF,20221107104752 +coriolis/6903247/profiles/R6903247_321D.nc,20220814104500,34.777,21.964,A,836,IF,20221108105208 +coriolis/6903247/profiles/R6903247_322.nc,20220824093600,35.078,21.970,A,836,IF,20221107104753 +coriolis/6903247/profiles/R6903247_322D.nc,20220819103900,34.971,21.905,A,836,IF,20221108105208 +coriolis/6903247/profiles/R6903247_323.nc,20220829093800,34.888,21.938,A,836,IF,20221107104754 +coriolis/6903247/profiles/R6903247_323D.nc,20220824104300,35.078,21.971,A,836,IF,20221108105209 +coriolis/6903247/profiles/R6903247_324.nc,20220903093400,34.830,21.739,A,836,IF,20221107104755 +coriolis/6903247/profiles/R6903247_324D.nc,20220829104900,34.887,21.936,A,836,IF,20221108105209 +coriolis/6903247/profiles/R6903247_325.nc,20220908093200,34.947,21.378,A,836,IF,20221107104756 +coriolis/6903247/profiles/R6903247_325D.nc,20220903104400,34.828,21.738,A,836,IF,20221108105209 +coriolis/6903247/profiles/R6903247_326.nc,20220913093400,35.332,21.192,A,836,IF,20221107104757 +coriolis/6903247/profiles/R6903247_326D.nc,20220908104200,34.947,21.375,A,836,IF,20221108105209 +coriolis/6903247/profiles/R6903247_327.nc,20220918093500,35.576,21.046,A,836,IF,20221107104758 +coriolis/6903247/profiles/R6903247_327D.nc,20220913104300,35.333,21.192,A,836,IF,20221107104757 +coriolis/6903247/profiles/R6903247_328.nc,20220923094000,35.695,20.988,A,836,IF,20221107104758 +coriolis/6903247/profiles/R6903247_328D.nc,20220918104200,35.576,21.045,A,836,IF,20221108105210 +coriolis/6903247/profiles/R6903247_329.nc,20220928093900,35.685,21.013,A,836,IF,20221107104759 +coriolis/6903247/profiles/R6903247_329D.nc,20220923105200,35.697,20.987,A,836,IF,20221107104759 +coriolis/6903247/profiles/R6903247_330.nc,20221003093400,35.715,20.965,A,836,IF,20221107104800 +coriolis/6903247/profiles/R6903247_330D.nc,20220928104800,35.684,21.014,A,836,IF,20221107104759 +coriolis/6903247/profiles/R6903247_331.nc,20221008093400,35.628,20.860,A,836,IF,20221107104801 +coriolis/6903247/profiles/R6903247_331D.nc,20221003104700,35.715,20.966,A,836,IF,20221108105210 +coriolis/6903247/profiles/R6903247_332.nc,20221013093200,35.762,20.723,A,836,IF,20221107104802 +coriolis/6903247/profiles/R6903247_332D.nc,20221008104400,35.630,20.859,A,836,IF,20221108105210 +coriolis/6903247/profiles/R6903247_333.nc,20221018093400,35.871,20.684,A,836,IF,20221107104802 +coriolis/6903247/profiles/R6903247_333D.nc,20221013104100,35.763,20.723,A,836,IF,20221108105211 +coriolis/6903247/profiles/R6903247_334.nc,20221023093100,35.940,20.781,A,836,IF,20221107104803 +coriolis/6903247/profiles/R6903247_334D.nc,20221018104200,35.869,20.686,A,836,IF,20221108105212 +coriolis/6903247/profiles/R6903247_335.nc,20221028093800,36.017,20.970,A,836,IF,20221107104804 +coriolis/6903247/profiles/R6903247_335D.nc,20221023103700,35.940,20.781,A,836,IF,20221107104803 +coriolis/6903247/profiles/R6903247_336.nc,20221102093900,36.371,21.514,A,836,IF,20221107104805 +coriolis/6903247/profiles/R6903247_336D.nc,20221028105200,36.019,20.977,A,836,IF,20221108105212 +coriolis/6903247/profiles/R6903247_337.nc,20221107093500,36.040,22.199,A,836,IF,20221107104806 +coriolis/6903247/profiles/R6903247_337D.nc,20221102104600,36.371,21.518,A,836,IF,20221108105212 +coriolis/6903247/profiles/R6903247_338.nc,20221112093400,35.668,22.059,A,836,IF,20221114163302 +coriolis/6903247/profiles/R6903247_338D.nc,20221107104300,36.039,22.200,A,836,IF,20221114163300 +coriolis/6903247/profiles/R6903247_339.nc,20221117093200,35.456,21.936,A,836,IF,20221117115519 +coriolis/6903247/profiles/R6903247_339D.nc,20221112104600,35.665,22.055,A,836,IF,20221117115517 +coriolis/6903247/profiles/R6903247_340.nc,20221122093400,35.279,21.855,A,836,IF,20221122151839 +coriolis/6903247/profiles/R6903247_340D.nc,20221117104200,35.456,21.938,A,836,IF,20221123095815 +coriolis/6903247/profiles/R6903247_341.nc,20221127092800,35.179,21.803,A,836,IF,20221127104632 +coriolis/6903247/profiles/R6903247_341D.nc,20221122104900,35.279,21.855,A,836,IF,20221128095836 +coriolis/6903247/profiles/R6903247_342.nc,20221202094100,35.165,21.701,A,836,IF,20221202110250 +coriolis/6903247/profiles/R6903247_342D.nc,20221127104100,35.180,21.801,A,836,IF,20221202110248 +coriolis/6903247/profiles/R6903247_343.nc,20221207093800,35.136,21.654,A,836,IF,20221207114524 +coriolis/6903247/profiles/R6903247_343D.nc,20221202104800,35.166,21.700,A,836,IF,20221207114522 +coriolis/6903247/profiles/R6903247_344.nc,20221212093200,35.081,21.691,A,836,IF,20221212110127 +coriolis/6903247/profiles/R6903247_344D.nc,20221207105000,35.137,21.655,A,836,IF,20221212110125 +coriolis/6903247/profiles/R6903247_345.nc,20221217093400,34.964,21.673,A,836,IF,20221217104714 +coriolis/6903247/profiles/R6903247_345D.nc,20221212104500,35.080,21.695,A,836,IF,20221217104711 +coriolis/6903247/profiles/R6903247_346.nc,20221222093400,34.856,21.615,A,836,IF,20221222110129 +coriolis/6903247/profiles/R6903247_346D.nc,20221217104000,34.965,21.674,A,836,IF,20221222110127 +coriolis/6903247/profiles/R6903247_347.nc,20221227093100,34.733,21.497,A,836,IF,20221227104531 +coriolis/6903247/profiles/R6903247_347D.nc,20221222104300,34.856,21.614,A,836,IF,20230103094207 +coriolis/6903247/profiles/R6903247_348.nc,20230101093300,34.839,21.363,A,836,IF,20230101110110 +coriolis/6903247/profiles/R6903247_348D.nc,20221227104000,34.733,21.496,A,836,IF,20230103094207 +coriolis/6903247/profiles/R6903247_349.nc,20230106094100,34.944,21.250,A,836,IF,20230106104558 +coriolis/6903247/profiles/R6903247_349D.nc,20230101104300,34.840,21.361,A,836,IF,20230109105147 +coriolis/6903247/profiles/R6903247_350.nc,20230111093200,34.925,21.175,A,836,IF,20230111110331 +coriolis/6903247/profiles/R6903247_350D.nc,20230106105500,34.940,21.249,A,836,IF,20230112144311 +coriolis/6903247/profiles/R6903247_351.nc,20230116092800,34.965,20.989,A,836,IF,20230116104559 +coriolis/6903247/profiles/R6903247_351D.nc,20230111104400,34.922,21.173,A,836,IF,20230118094217 +coriolis/6903247/profiles/R6903247_352.nc,20230121093300,34.936,20.777,A,836,IF,20230121104606 +coriolis/6903247/profiles/R6903247_352D.nc,20230116103900,34.964,20.991,A,836,IF,20230123104306 +coriolis/6903247/profiles/R6903247_353.nc,20230126093200,34.943,20.807,A,836,IF,20230126104532 +coriolis/6903247/profiles/R6903247_353D.nc,20230121105000,34.936,20.776,A,836,IF,20230127084149 +coriolis/6903247/profiles/R6903247_354.nc,20230131093600,34.927,20.639,A,836,IF,20230131104606 +coriolis/6903247/profiles/R6903247_354D.nc,20230126104300,34.939,20.807,A,836,IF,20230131104604 +coriolis/6903247/profiles/R6903247_355.nc,20230205094000,34.859,20.545,A,836,IF,20230205104526 +coriolis/6903247/profiles/R6903247_355D.nc,20230131104700,34.926,20.641,A,836,IF,20230208114142 +coriolis/6903247/profiles/R6903247_356.nc,20230210094200,34.864,20.505,A,836,IF,20230210104601 +coriolis/6903247/profiles/R6903247_356D.nc,20230205105200,34.857,20.544,A,836,IF,20230213094256 +coriolis/6903247/profiles/R6903247_357.nc,20230215093100,34.715,20.486,A,836,IF,20230215104714 +coriolis/6903247/profiles/R6903247_357D.nc,20230210105600,34.866,20.503,A,836,IF,20230215104713 +coriolis/6903247/profiles/R6903247_358.nc,20230220093900,34.575,20.322,A,836,IF,20230220104604 +coriolis/6903247/profiles/R6903247_358D.nc,20230215104900,34.714,20.483,A,836,IF,20230220104602 +coriolis/6903247/profiles/R6903247_359.nc,20230225093400,34.517,20.135,A,836,IF,20230225104652 +coriolis/6903247/profiles/R6903247_359D.nc,20230220104600,34.575,20.321,A,836,IF,20230225104648 +coriolis/6903247/profiles/R6903247_360.nc,20230302093400,34.643,19.822,A,836,IF,20230302104626 +coriolis/6903247/profiles/R6903247_360D.nc,20230225104700,34.518,20.137,A,836,IF,20230302104624 +coriolis/6903247/profiles/R6903247_361.nc,20230307092800,34.802,19.749,A,836,IF,20230307104613 +coriolis/6903247/profiles/R6903247_361D.nc,20230302104400,34.639,19.822,A,836,IF,20230307104611 +coriolis/6903247/profiles/R6903247_362.nc,20230312093100,34.897,19.566,A,836,IF,20230312104623 +coriolis/6903247/profiles/R6903247_362D.nc,20230307104400,34.806,19.749,A,836,IF,20230312104621 +coriolis/6903247/profiles/R6903247_363.nc,20230317093400,34.919,19.397,A,836,IF,20230317104559 +coriolis/6903247/profiles/R6903247_363D.nc,20230312104200,34.896,19.566,A,836,IF,20230320084230 +coriolis/6903247/profiles/R6903247_364.nc,20230322093700,34.939,19.247,A,836,IF,20230322104846 +coriolis/6903247/profiles/R6903247_364D.nc,20230317104700,34.917,19.397,A,836,IF,20230323144144 +coriolis/6903247/profiles/R6903247_365.nc,20230327093200,35.017,19.271,A,836,IF,20230406104757 +coriolis/6903247/profiles/R6903247_365D.nc,20230322105600,34.939,19.245,A,836,IF,20230407124151 +coriolis/6903247/profiles/R6903247_366.nc,20230401093600,35.019,19.171,A,836,IF,20230406104757 +coriolis/6903247/profiles/R6903247_366D.nc,20230327104100,35.017,19.274,A,836,IF,20230406104757 +coriolis/6903247/profiles/R6903247_367.nc,20230406093300,34.956,18.858,A,836,IF,20230406104758 +coriolis/6903247/profiles/R6903247_367D.nc,20230401105100,35.018,19.173,A,836,IF,20230406104758 +coriolis/6903247/profiles/R6903247_368.nc,20230411093300,34.980,18.614,A,836,IF,20230411104740 +coriolis/6903247/profiles/R6903247_368D.nc,20230406104200,34.956,18.858,A,836,IF,20230412074152 +coriolis/6903247/profiles/R6903247_369.nc,20230416093700,34.876,18.533,A,836,IF,20230416104653 +coriolis/6903247/profiles/R6903247_369D.nc,20230411105200,34.977,18.610,A,836,IF,20230416104652 +coriolis/6903247/profiles/R6903247_370.nc,20230421093800,34.786,18.548,A,836,IF,20230421104614 +coriolis/6903247/profiles/R6903247_370D.nc,20230416104900,34.875,18.533,A,836,IF,20230424084214 +coriolis/6903247/profiles/R6903247_371.nc,20230426093200,34.685,18.574,A,836,IF,20230426104753 +coriolis/6903247/profiles/R6903247_371D.nc,20230421105300,34.787,18.547,A,836,IF,20230426144220 +csio/2902696/profiles/D2902696_001.nc,20160922143700,12.014,114.521,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_002.nc,20160927150000,12.107,114.569,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_003.nc,20161002151600,12.174,114.594,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_004.nc,20161007152400,12.252,114.634,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_005.nc,20161012153400,12.321,114.663,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_006.nc,20161017155700,12.387,114.648,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_007.nc,20161022161300,12.396,114.604,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_008.nc,20161027164200,12.365,114.599,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_009.nc,20161101171100,12.272,114.588,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_010.nc,20161106174100,12.143,114.566,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_011.nc,20161111181200,12.002,114.583,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_012.nc,20161116184500,11.882,114.666,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_013.nc,20161121192100,11.803,114.782,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_014.nc,20161126200300,11.739,114.914,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_015.nc,20161201202600,11.745,115.042,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_016.nc,20161206205700,11.761,115.163,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_017.nc,20161211212400,11.809,115.276,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_018.nc,20161216213900,11.899,115.395,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_019.nc,20161221221400,12.018,115.435,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_020.nc,20161226223000,12.148,115.481,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_021.nc,20161231225000,12.268,115.505,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_022.nc,20170105232300,12.326,115.536,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_023.nc,20170110234200,12.376,115.629,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_024.nc,20170116000500,12.446,115.720,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_025.nc,20170121003400,12.520,115.788,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_026.nc,20170126005700,12.573,115.899,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_027.nc,20170131013900,12.655,116.006,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_028.nc,20170205022100,12.782,116.114,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_029.nc,20170210024900,12.927,116.182,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_030.nc,20170215031900,13.042,116.213,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_031.nc,20170220040100,13.112,116.201,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_032.nc,20170225053600,13.089,116.224,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_033.nc,20170302060000,13.054,116.227,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_034.nc,20170307060700,13.005,116.233,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_035.nc,20170312064600,12.976,116.285,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_036.nc,20170317070200,12.998,116.328,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_037.nc,20170322073500,13.005,116.323,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_038.nc,20170327080900,12.985,116.322,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_039.nc,20170401083900,12.981,116.296,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_040.nc,20170406091300,12.983,116.262,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_041.nc,20170411094400,12.975,116.223,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_042.nc,20170416100200,12.966,116.232,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_043.nc,20170421101500,12.971,116.231,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_044.nc,20170426103400,12.957,116.268,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_045.nc,20170501105000,12.970,116.289,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_046.nc,20170506110900,12.953,116.317,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_047.nc,20170511115900,12.932,116.384,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_048.nc,20170516121500,12.919,116.471,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_049.nc,20170521123500,12.908,116.589,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_050.nc,20170526131200,12.918,116.666,P,871,HZ,20210108081813 +csio/2902696/profiles/D2902696_051.nc,20170531134900,12.914,116.732,P,871,HZ,20210108081813 +csiro/5900865/profiles/D5900865_001.nc,20050828062807,-9.768,115.852,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_002.nc,20050907074419,-9.308,115.599,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_003.nc,20050917073843,-9.576,116.044,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_004.nc,20050927072325,-9.940,116.328,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_005.nc,20051007070832,-10.181,115.972,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_006.nc,20051017065346,-9.850,115.557,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_007.nc,20051027063714,-9.697,115.373,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_008.nc,20051106073952,-10.120,115.762,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_009.nc,20051116073851,-11.141,115.873,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_010.nc,20051126073237,-11.865,115.674,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_011.nc,20051206071817,-11.803,115.676,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_012.nc,20051216070243,-11.481,115.596,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_013.nc,20051226064716,-11.406,115.530,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_014.nc,20060105073025,-11.855,115.452,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_015.nc,20060115073033,-12.474,115.100,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_016.nc,20060125072925,-12.713,115.076,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_017.nc,20060204072633,-12.125,114.893,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_018.nc,20060214071051,-11.396,114.355,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_019.nc,20060224065539,-10.992,113.614,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_020.nc,20060306064043,-10.966,113.193,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_021.nc,20060316072208,-11.155,113.022,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_022.nc,20060326062400,-11.122,113.051,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_023.nc,20060405071703,-11.079,112.733,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_024.nc,20060415063600,-10.973,112.494,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_025.nc,20060425070322,-10.923,112.494,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_026.nc,20060505064727,-11.112,112.720,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_027.nc,20060515071222,-11.017,112.711,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_028.nc,20060525070825,-11.051,112.401,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_029.nc,20060604070904,-11.048,112.036,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_030.nc,20060614070421,-10.960,111.719,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_031.nc,20060624070303,-11.362,111.272,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_032.nc,20060704065419,-11.379,111.011,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_033.nc,20060714063825,-10.753,110.796,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_034.nc,20060724065724,-10.346,111.041,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_035.nc,20060803065529,-10.027,111.100,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_036.nc,20060813064800,-10.412,111.266,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_037.nc,20060823065258,-10.876,111.170,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_038.nc,20060902065237,-11.217,110.498,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_039.nc,20060912064350,-11.089,110.326,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_040.nc,20060922064808,-10.649,110.063,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_041.nc,20061002064532,-10.372,109.917,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_042.nc,20061012063000,-10.510,110.126,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_043.nc,20061022062400,-11.308,110.235,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_044.nc,20061101063000,-11.834,110.033,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_045.nc,20061111063000,-12.035,109.833,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_046.nc,20061121064800,-11.611,109.863,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_047.nc,20061201063600,-11.180,109.750,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_048.nc,20061211064200,-11.547,109.680,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_049.nc,20061221063600,-12.976,109.612,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_050.nc,20061231063600,-13.709,110.083,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_051.nc,20070110064200,-12.834,110.360,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_052.nc,20070120064200,-11.308,110.098,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_053.nc,20070130063600,-10.595,110.233,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_054.nc,20070209063600,-11.386,110.253,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_055.nc,20070219063000,-12.633,110.066,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_056.nc,20070301060815,-12.926,110.433,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_057.nc,20070311063000,-11.982,110.398,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_058.nc,20070321063600,-11.422,110.446,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_059.nc,20070331062400,-11.767,110.392,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_060.nc,20070410063000,-12.490,110.226,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_061.nc,20070420063600,-12.853,110.548,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_062.nc,20070430063600,-12.340,110.752,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_063.nc,20070510063600,-11.754,110.619,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_064.nc,20070520063600,-11.614,110.480,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_065.nc,20070530063000,-11.591,110.322,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_066.nc,20070609063000,-11.438,109.942,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_067.nc,20070619062400,-10.908,109.200,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_068.nc,20070629063600,-10.028,108.619,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_069.nc,20070709063600,-9.654,108.490,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_070.nc,20070719063600,-9.479,108.416,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_071.nc,20070729062400,-9.358,108.325,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_072.nc,20070808063000,-9.296,108.295,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_073.nc,20070818062400,-9.370,108.398,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_074.nc,20070828064200,-9.482,108.326,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_075.nc,20070907063600,-9.632,107.843,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_076.nc,20070917064200,-9.278,107.480,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_077.nc,20070927063600,-9.093,107.774,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_078.nc,20071007064800,-9.187,107.964,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_079.nc,20071017064257,-9.694,107.896,I,841,CS,20150427120048 +csiro/5900865/profiles/D5900865_080.nc,20071027064118,-9.439,107.711,I,841,CS,20150427120048 +incois/2902269/profiles/R2902269_000.nc,20190123143509,15.535,64.933,I,844,IN,20190130124122 +incois/2902269/profiles/R2902269_001.nc,20190202134500,15.501,64.722,I,844,IN,20190205183539 +incois/2902269/profiles/R2902269_002.nc,20190212135000,15.565,64.460,I,844,IN,20190215183331 +incois/2902269/profiles/R2902269_003.nc,20190222134153,15.709,64.173,I,844,IN,20190225183536 +incois/2902269/profiles/R2902269_004.nc,20190304134600,15.828,63.962,I,844,IN,20190307183530 +incois/2902269/profiles/R2902269_005.nc,20190314144547,15.849,63.788,I,844,IN,20190317183448 +incois/2902269/profiles/R2902269_006.nc,20190324134800,15.979,63.449,I,844,IN,20190327183442 +incois/2902269/profiles/R2902269_007.nc,20190403134500,16.046,63.059,I,844,IN,20190406183743 +incois/2902269/profiles/R2902269_008.nc,20190413140831,15.978,62.880,I,844,IN,20190416183636 +incois/2902269/profiles/R2902269_009.nc,20190423135700,15.890,62.677,I,844,IN,20190426183254 +incois/2902269/profiles/R2902269_010.nc,20190503134500,15.761,62.608,I,844,IN,20190527105649 +incois/2902269/profiles/R2902269_011.nc,20190513135100,15.516,62.538,I,844,IN,20190516183539 +incois/2902269/profiles/R2902269_012.nc,20190523134700,15.341,62.485,I,844,IN,20190610074225 +incois/2902269/profiles/R2902269_013.nc,20190602135200,15.205,62.298,I,844,IN,20191015005424 +incois/2902269/profiles/R2902269_014.nc,20190612135600,15.424,62.166,I,844,IN,20190803052117 +incois/2902269/profiles/R2902269_015.nc,20190622140200,15.608,62.036,I,844,IN,20190625183556 +incois/2902269/profiles/R2902269_016.nc,20190702140300,15.689,61.942,I,844,IN,20190705183329 +incois/2902269/profiles/R2902269_017.nc,20190712135700,15.710,62.120,I,844,IN,20190715183548 +incois/2902269/profiles/R2902269_018.nc,20190722135300,15.541,62.227,I,844,IN,20190802045559 +incois/2902269/profiles/R2902269_019.nc,20190801135600,15.489,62.287,I,844,IN,20190804183712 +incois/2902269/profiles/R2902269_020.nc,20190811141019,15.366,62.452,I,844,IN,20190814183336 +incois/2902269/profiles/R2902269_021.nc,20190821140648,15.052,62.678,I,844,IN,20190903103119 +incois/2902269/profiles/R2902269_022.nc,20190831135600,14.953,62.836,I,844,IN,20190903183338 +incois/2902269/profiles/R2902269_023.nc,20190910135100,14.869,63.033,I,844,IN,20190919053228 +incois/2902269/profiles/R2902269_024.nc,20190920135800,14.970,63.243,I,844,IN,20191014212038 +incois/2902269/profiles/R2902269_025.nc,20190930135200,14.994,63.532,I,844,IN,20191004135349 +incois/2902269/profiles/R2902269_026.nc,20191010140632,15.070,63.577,I,844,IN,20191105165908 +incois/2902269/profiles/R2902269_027.nc,20191020141100,14.989,63.557,I,844,IN,20191105121655 +incois/2902269/profiles/R2902269_028.nc,20191030135400,14.985,63.379,I,844,IN,20191121132446 +incois/2902269/profiles/R2902269_029.nc,20191109140100,14.865,63.278,I,844,IN,20191121101315 +incois/2902269/profiles/R2902269_030.nc,20191119135100,14.953,63.054,I,844,IN,20191122183351 +incois/2902269/profiles/R2902269_031.nc,20191129143429,14.951,62.980,I,844,IN,20200101141211 +incois/2902269/profiles/R2902269_032.nc,20191209142234,14.826,62.923,I,844,IN,20200101152816 +incois/2902269/profiles/R2902269_033.nc,20191219135300,15.046,62.858,I,844,IN,20200203112337 +incois/2902269/profiles/R2902269_034.nc,20191229135700,15.510,62.732,I,844,IN,20200101183358 +incois/2902269/profiles/R2902269_035.nc,20200108154155,15.561,62.706,I,844,IN,20200203142623 +incois/2902269/profiles/R2902269_036.nc,20200118133400,15.469,62.701,I,844,IN,20200121183742 +incois/2902269/profiles/R2902269_037.nc,20200128143149,15.443,62.596,I,844,IN,20200131183108 +incois/2902269/profiles/R2902269_038.nc,20200207133600,15.792,62.407,I,844,IN,20200210183629 +incois/2902269/profiles/R2902269_039.nc,20200217141752,16.504,62.136,I,844,IN,20200220183349 +incois/2902269/profiles/R2902269_040.nc,20200227135700,16.867,62.135,I,844,IN,20200301184214 +incois/2902269/profiles/R2902269_041.nc,20200308134500,16.812,62.211,I,844,IN,20200311183355 +incois/2902269/profiles/R2902269_042.nc,20200318150431,16.620,62.176,I,844,IN,20200403231428 +incois/2902269/profiles/R2902269_043.nc,20200328134900,16.606,62.006,I,844,IN,20210222094419 +incois/2902269/profiles/R2902269_044.nc,20200407132900,16.720,61.908,I,844,IN,20200507050209 +incois/2902269/profiles/R2902269_045.nc,20200417133200,16.764,61.726,I,844,IN,20200507045051 +incois/2902269/profiles/R2902269_046.nc,20200427133700,16.751,61.664,I,844,IN,20200507023104 +incois/2902269/profiles/R2902269_047.nc,20200507134900,16.631,61.502,I,844,IN,20210222101906 +incois/2902269/profiles/R2902269_048.nc,20200517135000,16.646,61.314,I,844,IN,20200520183400 +incois/2902269/profiles/R2902269_049.nc,20200527142531,16.794,61.387,I,844,IN,20200619105422 +incois/2902269/profiles/R2902269_050.nc,20200606135400,16.651,61.552,I,844,IN,20200609184022 +incois/2902269/profiles/R2902269_051.nc,20200616135700,16.436,61.729,I,844,IN,20200619183547 +incois/2902269/profiles/R2902269_052.nc,20200626145941,16.167,61.956,I,844,IN,20200629183535 +incois/2902269/profiles/R2902269_053.nc,20200706135400,16.073,62.243,I,844,IN,20200709183547 +incois/2902269/profiles/R2902269_054.nc,20200716140300,15.910,62.455,I,844,IN,20200719183633 +incois/2902269/profiles/R2902269_055.nc,20200726140600,15.925,62.484,I,844,IN,20200729183647 +incois/2902269/profiles/R2902269_056.nc,20200805135200,15.948,62.495,I,844,IN,20200809183738 +jma/4902252/profiles/D4902252_001.nc,20150426233904,38.725,-138.807,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_002.nc,20150506222809,38.852,-138.489,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_003.nc,20150517074538,38.604,-138.134,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_004.nc,20150527075351,38.230,-138.156,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_005.nc,20150606092016,37.946,-138.507,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_006.nc,20150617075051,37.923,-139.096,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_007.nc,20150627081651,38.180,-139.454,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_008.nc,20150707090810,38.405,-139.452,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_009.nc,20150717074714,38.412,-139.233,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_010.nc,20150727081138,38.084,-139.062,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_011.nc,20150806085601,37.668,-139.177,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_012.nc,20150816073856,37.426,-139.477,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_013.nc,20150826080456,37.343,-139.962,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_014.nc,20150905090826,37.329,-140.487,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_015.nc,20150915074759,37.470,-141.072,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_016.nc,20150925080014,37.733,-141.387,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_017.nc,20151005091923,38.017,-141.257,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_018.nc,20151015075833,38.078,-140.905,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_019.nc,20151025080858,37.890,-140.608,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_020.nc,20151104090650,37.581,-140.519,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_021.nc,20151114074524,37.389,-140.608,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_022.nc,20151124090908,37.307,-140.679,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_023.nc,20151204074111,37.286,-140.784,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_024.nc,20151214090427,37.276,-140.751,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_025.nc,20151224074144,37.296,-140.673,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_026.nc,20160103083801,37.327,-140.602,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_027.nc,20160113091450,37.363,-140.537,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_028.nc,20160123080908,37.425,-140.502,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_029.nc,20160202085724,37.504,-140.460,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_030.nc,20160212083107,37.671,-140.433,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_031.nc,20160222091117,37.797,-140.331,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_032.nc,20160303080244,37.822,-140.212,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_033.nc,20160313091042,37.869,-140.092,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_034.nc,20160323075504,37.904,-139.923,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_035.nc,20160402090636,37.923,-139.717,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_036.nc,20160412074650,37.833,-139.518,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_037.nc,20160422091336,37.747,-139.315,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_038.nc,20160502075356,37.724,-139.232,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_042.nc,20160611070144,39.182,-138.465,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_043.nc,20160621074542,39.318,-138.533,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_044.nc,20160701090920,39.444,-138.565,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_045.nc,20160711074606,39.628,-138.498,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_046.nc,20160721090211,39.780,-138.423,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_047.nc,20160731075832,39.863,-138.323,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_048.nc,20160810090207,39.874,-138.187,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_049.nc,20160820075630,39.823,-138.080,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_050.nc,20160830090745,39.709,-138.071,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_051.nc,20160909074309,39.492,-138.116,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_052.nc,20160919090954,39.274,-138.281,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_053.nc,20160929074543,39.046,-138.549,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_054.nc,20161009090351,38.832,-138.829,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_055.nc,20161019075536,38.687,-139.001,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_056.nc,20161029082101,38.465,-139.079,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_057.nc,20161108065714,38.302,-139.133,P,863,JA,20200115031520 +jma/4902252/profiles/D4902252_058.nc,20161118090145,38.130,-139.188,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_059.nc,20161128090655,38.006,-139.267,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_060.nc,20161208082345,37.926,-139.339,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_061.nc,20161218074806,37.853,-139.426,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_062.nc,20161228085911,37.804,-139.418,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_063.nc,20170107085749,37.780,-139.392,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_064.nc,20170117081307,37.736,-139.276,P,863,JA,20200115031518 +jma/4902252/profiles/D4902252_065.nc,20170127090141,37.720,-139.088,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_066.nc,20170206090554,37.713,-138.946,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_067.nc,20170216082444,37.742,-138.890,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_068.nc,20170226070748,37.727,-138.859,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_069.nc,20170308085147,37.752,-138.862,P,863,JA,20200115031519 +jma/4902252/profiles/D4902252_070.nc,20170318085912,37.770,-138.857,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_071.nc,20170328085835,37.843,-138.854,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_072.nc,20170407085742,37.883,-138.857,P,863,JA,20200115031517 +jma/4902252/profiles/D4902252_073.nc,20170417085926,37.939,-138.879,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_074.nc,20170427081925,37.983,-138.925,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_075.nc,20170507090334,38.012,-138.995,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_076.nc,20170517085708,38.040,-139.044,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_077.nc,20170527080337,38.100,-139.089,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_078.nc,20170606085612,38.154,-139.147,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_079.nc,20170616090335,38.205,-139.225,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_080.nc,20170626075205,38.231,-139.233,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_081.nc,20170706090305,38.305,-139.269,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_082.nc,20170716075134,38.390,-139.298,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_083.nc,20170726075509,38.466,-139.381,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_084.nc,20170805073859,38.538,-139.571,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_085.nc,20170815091527,38.710,-139.809,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_086.nc,20170825090114,38.814,-139.800,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_087.nc,20170904084501,38.740,-139.893,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_088.nc,20170914090318,38.860,-140.137,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_089.nc,20170924091457,38.894,-140.113,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_090.nc,20171004074846,38.843,-140.347,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_091.nc,20171014090901,38.999,-140.524,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_092.nc,20171024074240,39.069,-140.501,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_093.nc,20171103080536,39.151,-140.499,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_094.nc,20171113090614,39.120,-140.579,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_095.nc,20171123090509,39.074,-140.610,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_097.nc,20171213073759,38.846,-139.768,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_098.nc,20171223081209,38.879,-139.632,P,863,JA,20200115041520 +jma/4902252/profiles/D4902252_099.nc,20180102091209,38.770,-139.671,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_100.nc,20180112074641,38.698,-139.699,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_101.nc,20180122090820,38.738,-139.530,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_102.nc,20180201074305,38.696,-139.436,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_103.nc,20180211080106,38.622,-139.471,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_104.nc,20180221092037,-99.999,-999.999,,863,JA,20200115041517 +jma/4902252/profiles/D4902252_105.nc,20180303082904,-99.999,-999.999,,863,JA,20200115041517 +jma/4902252/profiles/D4902252_106.nc,20180313091156,-99.999,-999.999,,863,JA,20200115041517 +jma/4902252/profiles/D4902252_107.nc,20180323081857,-99.999,-999.999,,863,JA,20200115041517 +jma/4902252/profiles/D4902252_108.nc,20180402091028,-99.999,-999.999,,863,JA,20200115041519 +jma/4902252/profiles/D4902252_109.nc,20180412075626,-99.999,-999.999,,863,JA,20200115041518 +jma/4902252/profiles/D4902252_110.nc,20180422091627,38.474,-139.155,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_111.nc,20180502080053,38.581,-139.114,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_112.nc,20180512092256,38.690,-139.076,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_113.nc,20180522075416,38.848,-139.014,P,863,JA,20200115041517 +jma/4902252/profiles/D4902252_114.nc,20180601081356,38.877,-138.904,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_115.nc,20180611092936,38.850,-138.871,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_116.nc,20180621082243,38.831,-138.828,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_117.nc,20180701091609,38.833,-138.768,P,863,JA,20200115041518 +jma/4902252/profiles/D4902252_118.nc,20180711091550,38.817,-138.755,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_119.nc,20180721074351,38.761,-138.772,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_120.nc,20180731081222,38.734,-138.798,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_121.nc,20180810092746,38.699,-138.782,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_122.nc,20180820083433,38.672,-138.711,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_123.nc,20180830092641,38.665,-138.675,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_124.nc,20180909082444,38.673,-138.583,P,863,JA,20200115041519 +jma/4902252/profiles/D4902252_125.nc,20180919092004,38.668,-138.522,P,863,JA,20200115041519 +kma/2901746/profiles/D2901746_089.nc,20170202175344,36.936,133.306,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_090.nc,20170209163407,36.971,133.264,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_091.nc,20170216165759,37.062,133.247,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_092.nc,20170223171411,37.084,133.243,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_093.nc,20170302173631,37.050,133.225,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_094.nc,20170309175547,37.039,133.229,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_095.nc,20170316163609,37.039,133.235,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_096.nc,20170323165526,37.045,133.213,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_097.nc,20170330171528,37.087,133.093,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_098.nc,20170406173530,37.102,133.037,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_099.nc,20170413175753,37.140,133.024,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_100.nc,20170420163812,37.150,133.026,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_101.nc,20170427165900,37.158,133.043,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_102.nc,20170504172252,37.166,133.076,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_103.nc,20170511173603,37.225,133.051,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_104.nc,20170518175737,37.290,133.007,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_105.nc,20170525163928,37.373,133.028,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_106.nc,20170601165844,37.354,133.042,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_107.nc,20170608171849,37.330,133.081,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_108.nc,20170615173716,37.357,133.066,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_109.nc,20170622180022,37.366,133.071,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_110.nc,20170629164044,37.330,133.042,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_111.nc,20170706170218,37.394,132.987,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_112.nc,20170713172051,37.497,132.992,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_113.nc,20170720174136,37.507,133.121,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_114.nc,20170727175834,37.471,133.194,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_115.nc,20170803164247,37.472,133.227,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_116.nc,20170810170031,37.464,133.316,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_117.nc,20170817171947,37.440,133.368,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_118.nc,20170824173952,37.393,133.419,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_119.nc,20170831180256,37.331,133.317,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_120.nc,20170907181911,37.316,133.325,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_121.nc,20170914170148,37.336,133.348,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_122.nc,20170921172022,37.420,133.275,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_123.nc,20170928174107,37.468,133.254,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_124.nc,20171005175940,37.509,133.145,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_125.nc,20171012181854,37.586,133.168,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_126.nc,20171019170048,37.964,133.168,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_127.nc,20171026172004,38.005,133.189,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_128.nc,20171102173920,37.822,133.137,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_129.nc,20171109180055,37.811,132.846,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_130.nc,20171116182057,38.028,132.903,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_131.nc,20171123170337,38.095,132.917,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_132.nc,20171130171949,38.308,133.029,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_133.nc,20171207173905,38.504,133.103,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_134.nc,20171214175954,38.652,133.211,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_135.nc,20171221181655,38.817,133.175,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_136.nc,20171228170104,38.917,133.169,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_137.nc,20180104171717,39.100,133.128,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_138.nc,20180111173805,39.267,133.036,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_139.nc,20180118175853,39.495,132.933,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_140.nc,20180125181723,39.593,132.498,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_141.nc,20180201183640,39.774,131.952,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_142.nc,20180208171748,39.767,131.562,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_143.nc,20180215173532,39.539,131.225,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_144.nc,20180222175706,39.130,130.602,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_145.nc,20180301181622,38.675,130.877,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_146.nc,20180308183453,38.770,131.714,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_147.nc,20180315171733,38.856,132.123,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_148.nc,20180322173517,38.964,132.373,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_149.nc,20180329175433,39.056,132.684,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_150.nc,20180405181522,39.156,132.803,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_151.nc,20180412183524,39.226,132.847,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_152.nc,20180419171500,39.346,132.932,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_153.nc,20180426173244,39.589,132.998,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_154.nc,20180503175247,39.699,133.037,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_155.nc,20180510181117,39.906,133.194,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_156.nc,20180517183122,40.179,133.504,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_157.nc,20180524171227,40.394,133.801,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_158.nc,20180531173012,40.571,134.067,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_159.nc,20180607174928,40.686,134.428,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_160.nc,20180614180930,40.829,134.830,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_161.nc,20180621182846,40.919,135.299,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_162.nc,20180628170955,41.014,135.677,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_163.nc,20180705172653,41.055,135.902,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_164.nc,20180712174523,41.131,136.078,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_165.nc,20180719180353,41.334,136.251,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_166.nc,20180726174753,41.465,136.247,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_167.nc,20180802184358,41.524,136.103,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_168.nc,20180809172420,41.499,135.927,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_169.nc,20180816174250,41.458,135.856,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_170.nc,20180823180206,41.496,135.876,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_171.nc,20180830175651,41.693,135.582,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_172.nc,20180906183953,41.877,135.451,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_173.nc,20180913172147,41.991,135.370,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_174.nc,20180920173931,42.156,135.218,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_175.nc,20180927175848,42.241,135.038,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_176.nc,20181004180112,42.233,134.761,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_177.nc,20181011183720,42.148,134.542,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_178.nc,20181018185637,42.020,134.343,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_179.nc,20181025173659,41.903,134.082,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_180.nc,20181101175443,41.808,133.857,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_181.nc,20181108180751,41.650,133.696,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_182.nc,20181115183318,41.621,133.513,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_183.nc,20181122185318,41.535,133.394,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_184.nc,20181129184934,41.408,133.285,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_185.nc,20181206175342,41.270,133.302,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_186.nc,20181213181126,41.134,133.385,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_187.nc,20181220180006,40.978,133.598,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_188.nc,20181227184913,40.666,133.712,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_189.nc,20190103185613,40.508,133.808,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_190.nc,20190110183927,40.432,133.699,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_191.nc,20190117180722,40.429,133.599,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_192.nc,20190124182638,40.478,133.475,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_193.nc,20190131184726,40.709,133.274,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_194.nc,20190207190424,40.803,133.085,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_195.nc,20190214184606,40.617,133.049,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_196.nc,20190221180319,40.461,133.153,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_197.nc,20190228181321,40.415,133.408,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_198.nc,20190307184152,40.645,133.620,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_199.nc,20190314190022,40.690,133.595,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_200.nc,20190321185417,40.772,133.261,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_201.nc,20190328180044,41.040,133.159,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_202.nc,20190404181742,41.110,133.728,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_203.nc,20190411180314,40.745,133.788,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_204.nc,20190418185700,40.452,133.616,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_205.nc,20190425190056,40.257,133.646,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_206.nc,20190502184324,40.173,133.796,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_207.nc,20190509181337,40.079,133.844,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_208.nc,20190516180910,40.090,133.845,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_209.nc,20190523185209,40.139,133.765,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_210.nc,20190530190821,40.276,133.791,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_211.nc,20190606185135,40.264,133.888,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_212.nc,20190613180935,40.216,134.131,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_213.nc,20190620181546,40.196,134.204,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_214.nc,20190627184546,40.200,134.214,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_215.nc,20190704190505,40.205,134.315,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_216.nc,20190711185901,40.277,134.425,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_217.nc,20190718184043,40.323,134.499,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_218.nc,20190725182225,40.316,134.497,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_219.nc,20190801180843,40.322,134.444,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_220.nc,20190808185842,40.431,134.336,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_221.nc,20190815190758,40.593,134.552,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_222.nc,20190822184940,40.640,134.911,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_223.nc,20190829181734,40.643,135.042,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_224.nc,20190905181350,40.621,135.185,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_225.nc,20190912175837,40.542,135.186,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_226.nc,20190919191133,40.583,135.058,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_227.nc,20190926185619,40.541,134.936,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_228.nc,20191003184108,40.502,134.823,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_229.nc,20191010182202,40.440,134.892,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_230.nc,20191017180516,40.430,134.884,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_231.nc,20191024190556,40.445,134.939,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_232.nc,20191031190430,40.389,134.932,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_233.nc,20191107184747,40.274,134.965,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_234.nc,20191114182537,40.154,135.010,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_235.nc,20191121181413,40.123,134.993,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_236.nc,20191128190019,39.973,134.974,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_237.nc,20191205191241,39.710,135.060,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_238.nc,20191212185423,39.539,134.993,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_239.nc,20191219183738,39.443,134.842,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_240.nc,20191226182138,39.405,134.706,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_241.nc,20200102180452,39.409,134.660,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_242.nc,20200109191315,39.446,134.681,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_243.nc,20200116190151,39.474,134.698,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_244.nc,20200123184548,39.533,134.769,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_245.nc,20200130182903,39.587,134.830,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_246.nc,20200206181045,39.622,134.922,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_247.nc,20200213190824,39.627,135.005,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_248.nc,20200220191134,39.649,135.032,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_249.nc,20200227185144,39.635,135.046,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_250.nc,20200305183542,39.704,135.261,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_251.nc,20200312181810,39.639,135.482,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_252.nc,20200319190026,39.540,135.685,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_253.nc,20200326191727,39.469,135.800,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_254.nc,20200402185906,39.390,135.902,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_255.nc,20200409184134,39.231,135.816,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_256.nc,20200416182534,39.081,135.605,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_257.nc,20200423181021,39.160,135.527,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_258.nc,20200430191233,39.103,135.514,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_259.nc,20200507190849,39.055,135.457,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_260.nc,20200514184859,39.050,135.493,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_261.nc,20200521183213,38.999,135.602,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_262.nc,20200528181527,38.930,135.637,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_263.nc,20200604190656,38.862,135.520,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_264.nc,20200611191442,38.858,135.337,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_265.nc,20200618185710,38.805,135.187,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_266.nc,20200625183938,38.752,135.157,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_267.nc,20200702182253,38.825,135.216,P,846,KM,20210405160133 +kma/2901746/profiles/D2901746_268.nc,20200709180607,38.851,135.031,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_269.nc,20200716191731,38.785,134.801,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_270.nc,20200723190435,38.647,134.507,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_271.nc,20200730184618,38.634,134.356,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_272.nc,20200806182932,38.533,134.209,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_273.nc,20200813181332,38.565,134.076,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_274.nc,20200820193153,38.554,133.999,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_275.nc,20200827191246,38.504,134.008,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_276.nc,20200903185343,38.426,134.003,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_277.nc,20200910183743,38.417,134.070,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_278.nc,20200917182057,38.209,133.698,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_279.nc,20200924193657,38.346,133.606,P,846,KM,20210610142922 +kma/2901746/profiles/D2901746_280.nc,20201001192012,38.410,133.450,P,846,KM,20210610142922 +kma/2901746/profiles/R2901746_001.nc,,37.312,130.451,P,846,KM,20150702072915 +kma/2901746/profiles/R2901746_004.nc,,37.431,130.554,P,846,KM,20150702072915 +kma/2901746/profiles/R2901746_005.nc,,37.469,130.504,P,846,KM,20150702072915 +kma/2901746/profiles/R2901746_006.nc,,37.597,130.438,P,846,KM,20150708021928 +kma/2901746/profiles/R2901746_007.nc,,37.570,130.543,P,846,KM,20150710002004 +kma/2901746/profiles/R2901746_008.nc,,37.642,130.600,P,846,KM,20150717082004 +kma/2901746/profiles/R2901746_009.nc,,37.707,130.671,P,846,KM,20150724012004 +kma/2901746/profiles/R2901746_010.nc,,37.643,131.032,P,846,KM,20150731012005 +kma/2901746/profiles/R2901746_011.nc,,37.277,130.972,P,846,KM,20150807012004 +kma/2901746/profiles/R2901746_012.nc,,37.082,131.144,P,846,KM,20150817012004 +kma/2901746/profiles/R2901746_013.nc,,37.059,130.971,P,846,KM,20150821002005 +kma/2901746/profiles/R2901746_014.nc,,36.761,130.642,P,846,KM,20150828012005 +kma/2901746/profiles/R2901746_015.nc,,36.689,130.552,P,846,KM,20150904012004 +kma/2901746/profiles/R2901746_016.nc,,36.661,130.470,P,846,KM,20150911022004 +kma/2901746/profiles/R2901746_017.nc,,36.980,130.349,P,846,KM,20150921012005 +kma/2901746/profiles/R2901746_018.nc,,37.152,130.436,P,846,KM,20150925012004 +kma/2901746/profiles/R2901746_019.nc,,37.031,130.380,P,846,KM,20151002012005 +kma/2901746/profiles/R2901746_020.nc,,36.930,130.074,P,846,KM,20151009012005 +kma/2901746/profiles/R2901746_021.nc,,36.836,130.066,P,846,KM,20151020092021 +kma/2901746/profiles/R2901746_022.nc,,36.826,130.221,P,846,KM,20151023002004 +kma/2901746/profiles/R2901746_023.nc,,36.980,130.147,P,846,KM,20151030012005 +kma/2901746/profiles/R2901746_024.nc,,37.105,130.107,P,846,KM,20151106012005 +kma/2901746/profiles/R2901746_025.nc,,37.220,130.094,P,846,KM,20151113072004 +kma/2901746/profiles/R2901746_026.nc,,37.463,130.106,P,846,KM,20151120002004 +kma/2901746/profiles/R2901746_027.nc,,37.750,130.401,P,846,KM,20151127032007 +kma/2901746/profiles/R2901746_028.nc,,37.725,130.768,P,846,KM,20151204032008 +kma/2901746/profiles/R2901746_029.nc,,37.420,131.196,P,846,KM,20151211032009 +kma/2901746/profiles/R2901746_030.nc,,37.329,131.133,P,846,KM,20151218032009 +kma/2901746/profiles/R2901746_031.nc,,37.203,130.978,P,846,KM,20151225032008 +kma/2901746/profiles/R2901746_032.nc,,36.963,130.805,P,846,KM,20160101032009 +kma/2901746/profiles/R2901746_033.nc,,37.234,130.570,P,846,KM,20160108032009 +kma/2901746/profiles/R2901746_034.nc,,37.352,130.824,P,846,KM,20160115032009 +kma/2901746/profiles/R2901746_035.nc,,37.070,131.093,P,846,KM,20160122032008 +kma/2901746/profiles/R2901746_036.nc,,36.706,131.170,P,846,KM,20160129032008 +kma/2901746/profiles/R2901746_037.nc,,36.683,130.686,P,846,KM,20160205032009 +kma/2901746/profiles/R2901746_038.nc,,37.003,130.713,P,846,KM,20160212032008 +kma/2901746/profiles/R2901746_039.nc,,37.070,130.874,P,846,KM,20160219032008 +kma/2901746/profiles/R2901746_040.nc,,36.905,131.274,P,846,KM,20160226032008 +kma/2901746/profiles/R2901746_041.nc,,36.881,131.435,P,846,KM,20160304032009 +kma/2901746/profiles/R2901746_042.nc,,36.997,131.497,P,846,KM,20160311032008 +kma/2901746/profiles/R2901746_043.nc,,36.838,131.564,P,846,KM,20160318032009 +kma/2901746/profiles/R2901746_044.nc,,36.805,131.747,P,846,KM,20160325032009 +kma/2901746/profiles/R2901746_045.nc,,37.082,131.950,P,846,KM,20160401032008 +kma/2901746/profiles/R2901746_046.nc,,37.201,131.982,P,846,KM,20160408032009 +kma/2901746/profiles/R2901746_047.nc,,37.261,132.099,P,846,KM,20160415032008 +kma/2901746/profiles/R2901746_048.nc,,37.169,132.135,P,846,KM,20160422032009 +kma/2901746/profiles/R2901746_049.nc,,36.984,132.242,P,846,KM,20160429032009 +kma/2901746/profiles/R2901746_050.nc,,36.941,132.237,P,846,KM,20160506032009 +kma/2901746/profiles/R2901746_051.nc,,36.979,132.321,P,846,KM,20160513032009 +kma/2901746/profiles/R2901746_052.nc,,36.899,132.502,P,846,KM,20160520032009 +kma/2901746/profiles/R2901746_053.nc,,36.977,132.527,P,846,KM,20160527032009 +kma/2901746/profiles/R2901746_054.nc,,36.504,132.547,P,846,KM,20160603032008 +kma/2901746/profiles/R2901746_055.nc,,36.385,132.563,P,846,KM,20160610032009 +kma/2901746/profiles/R2901746_056.nc,,36.549,132.706,P,846,KM,20160617032009 +kma/2901746/profiles/R2901746_057.nc,,36.468,132.836,P,846,KM,20160629034814 +kma/2901746/profiles/R2901746_058.nc,,36.440,132.882,P,846,KM,20160701032009 +kma/2901746/profiles/R2901746_059.nc,,36.423,132.820,P,846,KM,20160708032009 +kma/2901746/profiles/R2901746_060.nc,,36.331,132.810,P,846,KM,20160715032008 +kma/2901746/profiles/R2901746_061.nc,,36.231,132.817,P,846,KM,20160722032008 +kma/2901746/profiles/R2901746_062.nc,,36.231,132.804,P,846,KM,20160729032008 +kma/2901746/profiles/R2901746_063.nc,,36.290,132.807,P,846,KM,20160805032008 +kma/2901746/profiles/R2901746_064.nc,,36.336,132.793,P,846,KM,20160812032009 +kma/2901746/profiles/R2901746_066.nc,,36.500,132.822,P,846,KM,20160826032009 +kma/2901746/profiles/R2901746_067.nc,,36.616,132.860,P,846,KM,20160902032008 +kma/2901746/profiles/R2901746_068.nc,,36.694,132.903,P,846,KM,20160909032009 +kma/2901746/profiles/R2901746_069.nc,,36.733,133.005,P,846,KM,20160916032009 +kma/2901746/profiles/R2901746_070.nc,,36.806,133.088,P,846,KM,20160923032009 +kma/2901746/profiles/R2901746_071.nc,,36.843,133.160,P,846,KM,20160930032009 +kma/2901746/profiles/R2901746_072.nc,,36.846,133.174,P,846,KM,20161007032009 +kma/2901746/profiles/R2901746_073.nc,,36.876,133.181,P,846,KM,20161014032008 +kma/2901746/profiles/R2901746_074.nc,,36.862,133.191,P,846,KM,20161021032009 +kma/2901746/profiles/R2901746_075.nc,,36.877,133.217,P,846,KM,20161028032009 +kma/2901746/profiles/R2901746_076.nc,,36.916,133.153,P,846,KM,20161104032009 +kordi/2901780/profiles/R2901780_001.nc,20171106085000,36.223,158.147,P,846,KO,20180514080736 +kordi/2901780/profiles/R2901780_002.nc,20171109053636,36.418,158.245,P,846,KO,20180514080759 +kordi/2901780/profiles/R2901780_003.nc,20171112031919,36.595,158.443,P,846,KO,20180514080901 +kordi/2901780/profiles/R2901780_004.nc,20171115001411,36.699,158.757,P,846,KO,20180514080930 +kordi/2901780/profiles/R2901780_005.nc,20171117210607,36.785,158.906,P,846,KO,20180514081001 +kordi/2901780/profiles/R2901780_006.nc,20171120181757,36.858,159.048,P,846,KO,20180514081027 +kordi/2901780/profiles/R2901780_007.nc,20171123151759,36.853,159.139,P,846,KO,20180514081055 +kordi/2901780/profiles/R2901780_009.nc,20171129090240,36.941,159.210,P,846,KO,20180514081135 +kordi/2901780/profiles/R2901780_010.nc,20171202061442,36.908,159.206,P,846,KO,20180514081202 +kordi/2901780/profiles/R2901780_011.nc,20171205040022,36.901,159.222,P,846,KO,20180514081240 +kordi/2901780/profiles/R2901780_012.nc,20171208032009,36.794,159.361,P,846,KO,20180514081304 +kordi/2901780/profiles/R2901780_013.nc,20171210224346,36.725,159.432,P,846,KO,20180514081327 +kordi/2901780/profiles/R2901780_014.nc,20171213193135,36.641,159.482,P,846,KO,20180514081347 +kordi/2901780/profiles/R2901780_015.nc,20171216173343,36.591,159.489,P,846,KO,20180514081414 +kordi/2901780/profiles/R2901780_016.nc,20171219165909,36.625,159.559,P,846,KO,20180514081434 +kordi/2901780/profiles/R2901780_017.nc,20171222162451,36.570,159.546,P,846,KO,20180514082015 +kordi/2901780/profiles/R2901780_019.nc,20171228072203,36.520,159.440,P,846,KO,20180514082110 +kordi/2901780/profiles/R2901780_020.nc,20171231054101,36.447,159.390,P,846,KO,20180514082137 +kordi/2901780/profiles/R2901780_021.nc,20180103032304,36.349,159.286,P,846,KO,20180514082208 +kordi/2901780/profiles/R2901780_022.nc,20180106025125,36.353,159.188,P,846,KO,20180514090447 +kordi/2901780/profiles/R2901780_023.nc,20180108224353,36.331,159.097,P,846,KO,20180514082259 +kordi/2901780/profiles/R2901780_024.nc,20180111202909,36.449,159.001,P,846,KO,20180514082324 +kordi/2901780/profiles/R2901780_025.nc,20180114180038,36.449,158.773,P,846,KO,20180514082416 +kordi/2901780/profiles/R2901780_026.nc,20180117162655,36.408,158.681,P,846,KO,20180514082453 +kordi/2901780/profiles/R2901780_027.nc,20180120155242,36.435,158.542,P,846,KO,20180514082600 +kordi/2901780/profiles/R2901780_029.nc,20180126083219,36.517,158.319,P,846,KO,20180514082804 +kordi/2901780/profiles/R2901780_030.nc,20180129061239,36.619,158.212,P,846,KO,20180514082823 +kordi/2901780/profiles/R2901780_031.nc,20180201043108,36.659,158.060,P,846,KO,20180514082847 +kordi/2901780/profiles/R2901780_032.nc,20180204003658,36.744,157.993,P,846,KO,20180514082920 +kordi/2901780/profiles/R2901780_033.nc,20180206214925,36.823,157.832,P,846,KO,20180514082955 +kordi/2901780/profiles/R2901780_034.nc,20180209192808,36.879,157.742,P,846,KO,20180514083023 +kordi/2901780/profiles/R2901780_035.nc,20180212175931,36.828,157.628,P,846,KO,20180514083106 +kordi/2901780/profiles/R2901780_036.nc,20180215155430,36.962,157.588,P,846,KO,20180514083135 +kordi/2901780/profiles/R2901780_037.nc,20180218120240,37.069,157.526,P,846,KO,20180514083202 +kordi/2901780/profiles/R2901780_038.nc,20180221092222,37.130,157.535,P,846,KO,20180514083227 +kordi/2901780/profiles/R2901780_039.nc,20180224070235,37.129,157.379,P,846,KO,20180514083252 +kordi/2901780/profiles/R2901780_040.nc,20180227043315,37.141,157.311,P,846,KO,20180514083328 +kordi/2901780/profiles/R2901780_041.nc,20180302040850,37.194,157.250,P,846,KO,20180514083421 +kordi/2901780/profiles/R2901780_042.nc,20180304234534,37.232,157.187,P,846,KO,20180514083439 +kordi/2901780/profiles/R2901780_043.nc,20180307212226,37.286,157.084,P,846,KO,20180514083508 +kordi/2901780/profiles/R2901780_044.nc,20180310192302,37.282,156.951,P,846,KO,20180514083529 +kordi/2901780/profiles/R2901780_045.nc,20180313173628,37.320,156.817,P,846,KO,20180514083603 +kordi/2901780/profiles/R2901780_046.nc,20180316170134,37.379,156.651,P,846,KO,20180514083626 +kordi/2901780/profiles/R2901780_048.nc,20180322092223,37.379,156.403,P,846,KO,20180514083713 +kordi/2901780/profiles/R2901780_049.nc,20180325070514,37.547,156.020,P,846,KO,20180514083740 +kordi/2901780/profiles/R2901780_050.nc,20180328041045,37.752,155.678,P,846,KO,20180514083813 +kordi/2901780/profiles/R2901780_051.nc,20180331033343,37.941,155.497,P,846,KO,20180514084115 +kordi/2901780/profiles/R2901780_052.nc,20180402234645,38.117,155.284,P,846,KO,20180514084140 +kordi/2901780/profiles/R2901780_053.nc,20180405205546,38.216,155.063,P,846,KO,20190416060429 +kordi/2901780/profiles/R2901780_054.nc,20180408192001,38.231,154.830,P,846,KO,20180514084229 +kordi/2901780/profiles/R2901780_055.nc,20180411170312,38.221,154.531,P,846,KO,20180514084249 +kordi/2901780/profiles/R2901780_056.nc,20180414162852,38.144,154.189,P,846,KO,20180514084303 +kordi/2901780/profiles/R2901780_058.nc,20180420083710,38.025,153.772,P,846,KO,20180514085050 +kordi/2901780/profiles/R2901780_059.nc,20180423061016,37.982,153.577,P,846,KO,20180514085147 +kordi/2901780/profiles/R2901780_060.nc,20180426063457,37.889,153.496,P,846,KO,20180514085231 +kordi/2901780/profiles/R2901780_061.nc,20180429013332,37.836,153.531,P,846,KO,20180514085322 +kordi/2901780/profiles/R2901780_062.nc,20180501225642,37.812,153.689,P,846,KO,20180514085510 +kordi/2901780/profiles/R2901780_063.nc,20180504205023,37.808,153.848,P,846,KO,20180514085526 +kordi/2901780/profiles/R2901780_064.nc,20180507184344,37.774,154.059,P,846,KO,20180514085607 +kordi/2901780/profiles/R2901780_065.nc,20180510163002,37.713,154.332,P,846,KO,20180514085621 +kordi/2901780/profiles/R2901780_066.nc,20180513155708,37.617,154.722,P,846,KO,20180514085635 +kordi/2901780/profiles/R2901780_068.nc,20180519082215,37.534,155.213,P,846,KO,20180520065024 +kordi/2901780/profiles/R2901780_069.nc,20180522065156,37.441,155.468,P,846,KO,20180524125029 +kordi/2901780/profiles/R2901780_070.nc,20180525043400,37.061,155.649,P,846,KO,20180527065025 +kordi/2901780/profiles/R2901780_071.nc,20180528012939,36.627,155.502,P,846,KO,20180530065024 +kordi/2901780/profiles/R2901780_072.nc,20180531003423,36.210,155.471,P,846,KO,20180602005020 +kordi/2901780/profiles/R2901780_073.nc,20180602204411,35.860,155.542,P,846,KO,20180603185025 +kordi/2901780/profiles/R2901780_074.nc,20180605181045,35.544,155.901,P,846,KO,20180606125026 +kordi/2901780/profiles/R2901780_075.nc,20180608155815,35.130,156.014,P,846,KO,20180609125024 +kordi/2901780/profiles/R2901780_076.nc,20180611170251,34.780,155.978,P,846,KO,20180612125021 +kordi/2901780/profiles/R2901780_077.nc,20180614111707,34.460,155.924,P,846,KO,20180616125022 +kordi/2901780/profiles/R2901780_078.nc,20180617092039,34.024,155.770,P,846,KO,20180619125023 +kordi/2901780/profiles/R2901780_079.nc,20180620065142,33.572,155.607,P,846,KO,20180622125025 +kordi/2901780/profiles/R2901780_080.nc,20180623054152,33.178,155.426,P,846,KO,20180625065022 +kordi/2901780/profiles/R2901780_081.nc,20180626032744,32.958,155.350,P,846,KO,20180628065022 +kordi/2901780/profiles/R2901780_082.nc,20180629003215,32.807,155.278,P,846,KO,20180701005020 +kordi/2901780/profiles/R2901780_083.nc,20180701214420,32.717,155.323,P,846,KO,20180702185022 +kordi/2901780/profiles/R2901780_084.nc,20180704200006,32.488,155.397,P,846,KO,20180705185024 +kordi/2901780/profiles/R2901780_085.nc,20180707173627,32.286,155.465,P,846,KO,20180708125023 +kordi/2901780/profiles/R2901780_086.nc,20180710163005,32.156,155.363,P,846,KO,20180711125022 +kordi/2901780/profiles/R2901780_087.nc,20180713173449,32.146,155.062,P,846,KO,20180714125020 +kordi/2901780/profiles/R2901780_089.nc,20180719091903,32.162,154.731,P,846,KO,20180721125022 +kordi/2901780/profiles/R2901780_090.nc,20180722064934,32.174,154.511,P,846,KO,20180724065023 +kordi/2901780/profiles/R2901780_091.nc,20180725061430,32.190,154.360,P,846,KO,20180727065021 +meds/4901079/profiles/D4901079_001.nc,20070526101300,41.898,-60.787,A,846,ME,20150522211907 +meds/4901079/profiles/D4901079_002.nc,20070605070700,42.050,-60.270,A,846,ME,20150522211907 +meds/4901079/profiles/D4901079_003.nc,20070615070200,42.367,-60.534,A,846,ME,20150522211907 +meds/4901079/profiles/D4901079_004.nc,20070625065700,42.517,-61.240,A,846,ME,20150522211907 +meds/4901079/profiles/D4901079_005.nc,20070705051600,42.204,-61.750,A,846,ME,20150522211907 +meds/4901079/profiles/D4901079_006.nc,20070715065500,41.700,-62.298,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_007.nc,20070725051000,41.018,-63.324,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_008.nc,20070804064800,39.962,-63.949,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_009.nc,20070814033100,39.199,-60.941,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_010.nc,20070824050200,40.204,-58.268,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_011.nc,20070903045900,40.831,-60.088,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_012.nc,20070913063700,38.624,-59.268,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_014.nc,20071003063100,39.878,-54.623,A,846,ME,20150522211908 +meds/4901079/profiles/D4901079_015.nc,20071013062700,39.901,-53.066,A,846,ME,20150522211909 +meds/4901079/profiles/D4901079_016.nc,20071023062300,40.839,-54.685,A,846,ME,20150522211909 +meds/4901079/profiles/D4901079_017.nc,20071102062100,40.256,-55.410,A,846,ME,20150522211910 +meds/4901079/profiles/D4901079_018.nc,20071112043600,38.838,-54.497,A,846,ME,20150522211910 +meds/4901079/profiles/D4901079_019.nc,20071122043200,39.570,-51.450,A,846,ME,20150522211910 +meds/4901079/profiles/D4901079_020.nc,20071202043000,39.787,-48.210,A,846,ME,20150522211910 +meds/4901079/profiles/D4901079_021.nc,20071212060700,39.666,-46.452,A,846,ME,20150522211910 +meds/4901079/profiles/D4901079_022.nc,20071222042500,38.524,-46.680,A,846,ME,20190128141833 +meds/4901079/profiles/D4901079_023.nc,20080101060400,37.154,-47.260,A,846,ME,20150522211911 +meds/4901079/profiles/D4901079_024.nc,20080111041800,36.220,-47.566,A,846,ME,20150522211911 +meds/4901079/profiles/D4901079_025.nc,20080121055400,35.352,-47.023,A,846,ME,20150522211911 +meds/4901079/profiles/D4901079_026.nc,20080131040900,35.382,-46.232,A,846,ME,20150522211911 +meds/4901079/profiles/D4901079_027.nc,20080210071800,36.041,-45.515,A,846,ME,20150522211911 +meds/4901079/profiles/D4901079_028.nc,20080220040000,37.115,-45.584,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_029.nc,20080301064300,37.848,-45.023,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_030.nc,20080311035400,38.394,-44.601,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_031.nc,20080321073500,38.359,-45.157,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_032.nc,20080331065800,37.176,-44.664,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_033.nc,20080410071600,35.653,-44.499,A,846,ME,20150522211912 +meds/4901079/profiles/D4901079_034.nc,20080420034200,35.430,-43.888,A,846,ME,20150522211914 +meds/4901079/profiles/D4901079_035.nc,20080430082200,35.907,-43.471,A,846,ME,20150522211916 +meds/4901079/profiles/D4901079_036.nc,20080510033400,36.505,-43.410,A,846,ME,20150522211916 +meds/4901079/profiles/D4901079_037.nc,20080520065200,36.972,-43.852,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_038.nc,20080530064600,37.711,-44.272,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_039.nc,20080609064200,38.649,-45.796,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_040.nc,20080619045800,39.019,-47.625,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_041.nc,20080629063500,38.131,-47.117,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_042.nc,20080709070700,39.006,-47.901,A,846,ME,20150522211917 +meds/4901079/profiles/D4901079_043.nc,20080719044500,37.931,-46.613,A,846,ME,20150522211918 +meds/4901079/profiles/D4901079_044.nc,20080729062200,38.989,-46.140,A,846,ME,20150522211918 +meds/4901079/profiles/D4901079_045.nc,20080808061900,40.263,-47.484,A,846,ME,20150522211918 +meds/4901079/profiles/D4901079_046.nc,20080818061500,40.508,-47.990,A,846,ME,20150522211918 +meds/4901079/profiles/D4901079_047.nc,20080828042800,41.002,-46.628,A,846,ME,20150522211918 +meds/4901079/profiles/D4901079_048.nc,20080907061000,42.909,-46.006,A,846,ME,20160303160050 +meds/4901079/profiles/D4901079_049.nc,20080917060200,43.269,-43.067,A,846,ME,20160303160051 +meds/4901079/profiles/D4901079_050.nc,20080927060000,42.050,-41.597,A,846,ME,20160303160051 +meds/4901079/profiles/D4901079_051.nc,20081007041300,40.885,-42.107,A,846,ME,20160303160051 +meds/4901079/profiles/D4901079_052.nc,20081017065100,39.786,-43.143,A,846,ME,20150522211919 +meds/4901079/profiles/D4901079_053.nc,20081027040600,38.996,-43.525,A,846,ME,20150522211919 +meds/4901079/profiles/D4901079_054.nc,20081106073900,38.898,-42.892,A,846,ME,20150522211919 +meds/4901079/profiles/D4901079_055.nc,20081116035600,39.223,-42.206,A,846,ME,20150522211920 +meds/4901079/profiles/D4901079_056.nc,20081126053300,39.913,-41.956,A,846,ME,20150522211920 +meds/4901079/profiles/D4901079_057.nc,20081206070400,40.087,-42.010,A,846,ME,20150522211920 +meds/4901079/profiles/D4901079_058.nc,20081216064000,40.187,-42.120,A,846,ME,20150522211920 +meds/4901079/profiles/D4901079_059.nc,20081226033700,40.281,-42.271,A,846,ME,20150522211920 +meds/4901079/profiles/D4901079_060.nc,20090105065500,39.867,-42.588,A,846,ME,20150522211921 +meds/4901079/profiles/D4901079_061.nc,20090115033100,40.480,-43.234,A,846,ME,20150522211921 +meds/4901079/profiles/D4901079_062.nc,20090125050700,40.032,-41.143,A,846,ME,20150522211921 +meds/4901079/profiles/D4901079_064.nc,20090214063800,39.709,-39.986,A,846,ME,20150522211922 +meds/4901079/profiles/D4901079_065.nc,20090224031100,39.822,-41.303,A,846,ME,20150522211922 +meds/4901079/profiles/D4901079_066.nc,20090306044700,39.858,-42.797,A,846,ME,20150522211922 +meds/4901079/profiles/D4901079_067.nc,20090316062500,40.093,-43.306,A,846,ME,20150522211922 +meds/4901079/profiles/D4901079_068.nc,20090326044000,40.066,-43.474,A,846,ME,20150522211922 +meds/4901079/profiles/D4901079_069.nc,20090405061600,39.710,-44.132,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_070.nc,20090415042700,39.630,-44.483,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_071.nc,20090425060600,40.140,-44.009,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_072.nc,20090505042100,40.348,-44.994,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_073.nc,20090515060000,39.587,-45.308,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_074.nc,20090525073200,39.397,-45.307,A,846,ME,20150522211923 +meds/4901079/profiles/D4901079_075.nc,20090604055000,39.503,-45.723,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_076.nc,20090614040100,39.737,-45.147,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_078.nc,20090704035300,39.958,-44.151,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_079.nc,20090714070600,41.353,-43.753,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_080.nc,20090724034400,42.193,-43.769,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_081.nc,20090803063200,42.199,-44.259,A,846,ME,20150522211924 +meds/4901079/profiles/D4901079_082.nc,20090813050100,42.798,-43.391,A,846,ME,20150522211925 +meds/4901079/profiles/D4901079_083.nc,20090823064000,42.900,-42.017,A,846,ME,20150522211925 +meds/4901079/profiles/D4901079_084.nc,20090902061300,42.117,-40.092,A,846,ME,20150522211925 +meds/4901079/profiles/D4901079_085.nc,20090912063600,42.893,-39.969,A,846,ME,20150522211925 +meds/4901079/profiles/D4901079_086.nc,20090922063000,43.025,-39.800,A,846,ME,20150522211925 +meds/4901079/profiles/D4901079_087.nc,20091002044300,43.559,-39.679,A,846,ME,20150522211926 +meds/4901079/profiles/D4901079_088.nc,20091012043900,43.848,-39.759,A,846,ME,20150522211926 +meds/4901079/profiles/D4901079_089.nc,20091022061500,43.816,-39.858,A,846,ME,20150522211927 +meds/4901079/profiles/D4901079_090.nc,20091101061200,43.855,-39.977,A,846,ME,20150522211927 +meds/4901079/profiles/D4901079_091.nc,20091111042600,43.659,-40.205,A,846,ME,20150522211927 +meds/4901079/profiles/D4901079_092.nc,20091121060300,43.713,-39.881,A,846,ME,20150522211927 +meds/4901079/profiles/D4901079_093.nc,20091201041600,43.744,-39.541,A,846,ME,20150522211927 +meds/4901079/profiles/D4901079_094.nc,20091211061300,43.546,-38.817,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_095.nc,20091221040500,43.199,-37.998,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_096.nc,20091231060900,43.082,-37.407,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_097.nc,20100110035400,43.163,-36.460,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_098.nc,20100120060800,43.434,-35.652,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_099.nc,20100130034300,43.827,-35.842,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_100.nc,20100209033700,44.038,-36.461,A,846,ME,20150522211928 +meds/4901079/profiles/D4901079_101.nc,20100219055900,43.623,-36.816,A,846,ME,20150522211929 +meds/4901079/profiles/D4901079_102.nc,20100301050800,43.393,-37.965,A,846,ME,20150522211929 +meds/4901079/profiles/D4901079_103.nc,20100311055700,43.146,-38.376,A,846,ME,20150522211929 +meds/4901079/profiles/D4901079_104.nc,20100321041200,42.812,-38.987,A,846,ME,20150522211929 +meds/4901079/profiles/D4901079_105.nc,20100331142100,42.322,-38.674,A,846,ME,20150522211929 +meds/4901079/profiles/D4901079_106.nc,20100410054800,42.470,-38.475,A,846,ME,20150522211930 +meds/4901079/profiles/D4901079_107.nc,20100420054500,42.599,-37.332,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_108.nc,20100430061600,42.167,-35.834,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_109.nc,20100510060900,42.273,-34.168,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_110.nc,20100520035700,42.967,-33.774,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_111.nc,20100530063500,43.185,-34.071,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_112.nc,20100609035100,43.637,-33.563,A,846,ME,20150522211931 +meds/4901079/profiles/D4901079_113.nc,20100619034800,44.077,-33.651,A,846,ME,20150522211932 +meds/4901079/profiles/D4901079_114.nc,20100629061300,44.273,-33.473,A,846,ME,20150522211932 +meds/4901079/profiles/D4901079_115.nc,20100709034100,43.780,-33.192,A,846,ME,20150522211932 +meds/4901079/profiles/D4901079_116.nc,20100719063300,43.270,-33.372,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_117.nc,20100729034000,43.224,-33.887,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_118.nc,20100808065400,43.524,-34.221,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_119.nc,20100818060900,43.680,-34.165,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_120.nc,20100828064400,43.630,-34.613,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_121.nc,20100907050600,44.007,-35.173,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_122.nc,20100917063300,44.277,-35.463,A,846,ME,20150522211933 +meds/4901079/profiles/D4901079_123.nc,20100927044600,44.661,-35.202,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_124.nc,20101007062000,44.583,-35.072,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_125.nc,20101017043300,44.377,-34.926,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_126.nc,20101027060800,43.911,-35.076,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_127.nc,20101106054800,43.312,-35.080,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_128.nc,20101116055600,42.726,-35.268,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_129.nc,20101126044100,42.173,-34.687,A,846,ME,20150522211934 +meds/4901079/profiles/D4901079_130.nc,20101206061700,42.099,-33.902,A,846,ME,20150522211935 +meds/4901079/profiles/D4901079_131.nc,20101216035700,42.376,-33.456,A,846,ME,20150522211935 +meds/4901079/profiles/D4901079_132.nc,20101226061200,43.010,-33.257,A,846,ME,20150522211935 +meds/4901079/profiles/D4901079_133.nc,20110105042900,43.609,-33.198,A,846,ME,20150522211935 +meds/4901079/profiles/D4901079_134.nc,20110115060300,44.158,-33.524,A,846,ME,20150522211936 +meds/4901079/profiles/R4901079_135.nc,20110125042100,44.638,-33.846,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_136.nc,20110204055900,45.178,-33.581,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_137.nc,20110214055500,45.165,-32.794,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_138.nc,20110224063100,44.879,-32.341,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_139.nc,20110306055000,44.684,-32.169,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_140.nc,20110316040500,44.489,-32.318,A,846,ME,20150529155022 +meds/4901079/profiles/R4901079_141.nc,20110326054100,44.298,-32.466,A,846,ME,20150529155023 +meds/4901079/profiles/R4901079_142.nc,20110405060500,44.099,-32.882,A,846,ME,20150529155023 +meds/4901079/profiles/R4901079_143.nc,20110415035100,44.195,-33.245,A,846,ME,20150529155023 +meds/4901079/profiles/R4901079_144.nc,20110425055300,44.326,-33.072,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_145.nc,20110505034400,44.207,-32.736,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_146.nc,20110515061300,43.741,-32.571,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_147.nc,20110525033800,43.424,-32.878,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_148.nc,20110604062700,43.460,-33.051,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_149.nc,20110614032600,43.630,-33.003,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_150.nc,20110624064500,43.627,-32.592,A,846,ME,20150529155024 +meds/4901079/profiles/R4901079_151.nc,20110704045800,43.475,-32.112,A,846,ME,20150529155025 +meds/4901079/profiles/R4901079_152.nc,20110714063700,43.000,-32.061,A,846,ME,20150529155025 +meds/4901079/profiles/R4901079_153.nc,20110724062700,42.503,-32.514,A,846,ME,20150522211941 +meds/4901079/profiles/R4901079_154.nc,20110803062300,42.328,-32.861,A,846,ME,20150522211941 +meds/4901079/profiles/R4901079_155.nc,20110813061300,42.395,-33.332,A,846,ME,20150522211941 +meds/4901079/profiles/R4901079_156.nc,20110823042300,42.570,-33.902,A,846,ME,20150522211941 +meds/4901079/profiles/R4901079_157.nc,20110902061700,42.685,-34.318,A,846,ME,20150522211941 +meds/4901079/profiles/R4901079_158.nc,20110912040600,43.098,-34.455,A,846,ME,20150527194028 +meds/4901079/profiles/R4901079_159.nc,20110922054500,43.311,-34.011,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_160.nc,20111002035200,43.507,-33.267,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_161.nc,20111012034400,43.585,-32.656,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_162.nc,20111022055500,43.522,-31.579,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_163.nc,20111101033000,43.194,-31.235,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_164.nc,20111111054600,42.900,-30.953,A,846,ME,20150522211942 +meds/4901079/profiles/R4901079_165.nc,20111121045700,42.782,-30.720,A,846,ME,20150522211943 +meds/4901079/profiles/R4901079_166.nc,20111201062900,43.040,-30.173,A,846,ME,20150522211943 +meds/4901079/profiles/R4901079_167.nc,20111211030200,43.257,-30.433,A,846,ME,20150522211943 +meds/4901079/profiles/R4901079_168.nc,20111221060000,42.946,-30.903,A,846,ME,20150522211943 +meds/4901079/profiles/R4901079_169.nc,20111231034200,42.674,-31.642,A,846,ME,20150522211944 +meds/4901079/profiles/R4901079_170.nc,20120110051500,42.885,-32.577,A,846,ME,20150522211944 +meds/4901079/profiles/R4901079_171.nc,20120120054500,43.671,-32.726,A,846,ME,20150522211944 +meds/4901079/profiles/R4901079_173.nc,20120209032100,44.175,-30.455,A,846,ME,20150522211944 +meds/4901079/profiles/R4901079_174.nc,20120219052400,43.730,-30.509,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_175.nc,20120229060400,43.087,-31.195,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_176.nc,20120310062800,42.597,-31.937,A,846,ME,20150522211944 +meds/4901079/profiles/R4901079_177.nc,20120320062200,42.563,-32.306,A,846,ME,20150522211945 +meds/4901079/profiles/R4901079_178.nc,20120330061700,42.647,-32.665,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_179.nc,20120409042800,43.143,-32.824,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_180.nc,20120419055200,43.734,-33.174,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_181.nc,20120429042700,44.325,-32.985,A,846,ME,20150527194029 +meds/4901079/profiles/R4901079_182.nc,20120509055700,44.665,-31.889,A,846,ME,20150527194030 +meds/4901079/profiles/R4901079_183.nc,20120519040600,44.349,-30.916,A,846,ME,20150527194030 +meds/4901079/profiles/R4901079_184.nc,20120529053800,43.901,-30.499,A,846,ME,20150527194030 +meds/4901079/profiles/R4901079_185.nc,20120608071300,43.571,-30.472,A,846,ME,20150522211946 +nmdis/2901623/profiles/R2901623_000.nc,20100517041900,-0.025,92.214,I,841,NM,20181127084941 +nmdis/2901623/profiles/R2901623_000D.nc,20100514033500,0.012,92.284,I,841,NM,20181127084942 +nmdis/2901623/profiles/R2901623_001.nc,20100527042500,-0.103,91.756,I,841,NM,20181127084942 +nmdis/2901623/profiles/R2901623_002.nc,20100606041900,0.044,91.313,I,841,NM,20181127084943 +nmdis/2901623/profiles/R2901623_003.nc,20100616041900,0.110,90.866,I,841,NM,20181127084943 +nmdis/2901623/profiles/R2901623_004.nc,20100626042500,-0.204,90.628,I,841,NM,20181127084943 +nmdis/2901623/profiles/R2901623_005.nc,20100706040700,-0.278,90.459,I,841,NM,20181127084944 +nmdis/2901623/profiles/R2901623_006.nc,20100716040700,0.094,89.722,I,841,NM,20181127084944 +nmdis/2901623/profiles/R2901623_007.nc,20100726041300,0.097,89.226,I,841,NM,20181127084945 +nmdis/2901623/profiles/R2901623_008.nc,20100805041300,0.324,89.093,I,841,NM,20181127084945 +nmdis/2901623/profiles/R2901623_009.nc,20100815041300,0.513,89.552,I,841,NM,20181127084945 +nmdis/2901623/profiles/R2901623_010.nc,20100825041900,0.893,90.579,I,841,NM,20181127084946 +nmdis/2901623/profiles/R2901623_011.nc,20100904042500,1.113,91.951,I,841,NM,20181127084946 +nmdis/2901623/profiles/R2901623_012.nc,20100914041300,1.335,92.747,I,841,NM,20181127084947 +nmdis/2901623/profiles/R2901623_013.nc,20100924041300,1.982,92.419,I,841,NM,20181127084947 +nmdis/2901623/profiles/R2901623_014.nc,20101004042500,1.741,92.299,I,841,NM,20181127084947 +nmdis/2901623/profiles/R2901623_015.nc,20101014041900,1.132,92.193,I,841,NM,20181127084948 +nmdis/2901623/profiles/R2901623_016.nc,20101024041300,1.107,92.500,I,841,NM,20181127084948 +nmdis/2901623/profiles/R2901623_017.nc,20101103042500,1.055,93.310,I,841,NM,20181127084949 +nmdis/2901623/profiles/R2901623_018.nc,20101113041900,1.294,93.291,I,841,NM,20181127084949 +nmdis/2901623/profiles/R2901623_019.nc,20101123041800,1.114,93.093,I,841,NM,20181127084949 +nmdis/2901623/profiles/R2901623_020.nc,20101203042400,1.214,93.174,I,841,NM,20181127084950 +nmdis/2901623/profiles/R2901623_021.nc,20101213041200,1.635,93.123,I,841,NM,20181127084950 +nmdis/2901623/profiles/R2901623_022.nc,20101223041800,1.665,93.532,I,841,NM,20181127084951 +nmdis/2901623/profiles/R2901623_023.nc,20110102041800,1.216,94.194,I,841,NM,20181127084951 +nmdis/2901623/profiles/R2901623_024.nc,20110112041200,1.097,94.498,I,841,NM,20181127084952 +nmdis/2901623/profiles/R2901623_025.nc,20110122041200,1.177,94.944,I,841,NM,20181127084952 +nmdis/2901623/profiles/R2901623_026.nc,20110201041200,1.621,94.402,I,841,NM,20181127084952 +nmdis/2901623/profiles/R2901623_027.nc,20110211042400,1.997,93.882,I,841,NM,20181127084953 +nmdis/2901623/profiles/R2901623_028.nc,20110221040600,2.047,93.754,I,841,NM,20181127084953 +nmdis/2901623/profiles/R2901623_029.nc,20110303042400,1.924,93.486,I,841,NM,20181127084954 +nmdis/2901623/profiles/R2901623_030.nc,20110313043000,1.605,93.444,I,841,NM,20181127084954 +nmdis/2901623/profiles/R2901623_031.nc,20110323041800,1.514,93.229,I,841,NM,20181127084954 +nmdis/2901623/profiles/R2901623_032.nc,20110402041200,1.226,93.242,I,841,NM,20181127084955 +nmdis/2901623/profiles/R2901623_033.nc,20110412041800,0.871,93.084,I,841,NM,20181127084955 +nmdis/2901623/profiles/R2901623_034.nc,20110422043600,0.671,93.018,I,841,NM,20181127084956 +nmdis/2901623/profiles/R2901623_035.nc,20110502043000,0.553,93.405,I,841,NM,20181127084956 +nmdis/2901623/profiles/R2901623_036.nc,20110512041800,0.723,93.470,I,841,NM,20181127084956 +nmdis/2901623/profiles/R2901623_037.nc,20110522041800,1.190,93.894,I,841,NM,20181127084957 +nmdis/2901623/profiles/R2901623_038.nc,20110601041200,1.239,94.346,I,841,NM,20181127084957 +nmdis/2901623/profiles/R2901623_039.nc,20110611043000,0.775,94.966,I,841,NM,20181127084958 +nmdis/2901623/profiles/R2901623_040.nc,20110621041700,0.673,94.817,I,841,NM,20181127084958 +nmdis/2901623/profiles/R2901623_041.nc,20110701041700,0.618,95.269,I,841,NM,20181127084958 +nmdis/2901623/profiles/R2901623_042.nc,20110711041700,0.757,95.356,I,841,NM,20181127084959 +nmdis/2901623/profiles/R2901623_043.nc,20110721042300,0.942,95.524,I,841,NM,20181127084959 +nmdis/2901623/profiles/R2901623_044.nc,20110731042300,1.478,95.574,I,841,NM,20181127085000 +nmdis/2901623/profiles/R2901623_045.nc,20110810042300,1.411,95.803,I,841,NM,20181127085000 +nmdis/2901623/profiles/R2901623_046.nc,20110820042300,1.619,95.646,I,841,NM,20181127085000 +nmdis/2901623/profiles/R2901623_047.nc,20110830042300,1.949,95.854,I,841,NM,20181127085001 +nmdis/2901623/profiles/R2901623_048.nc,20110909042300,1.953,95.812,I,841,NM,20181127085001 +nmdis/2901623/profiles/R2901623_049.nc,20110919042900,2.110,95.658,I,841,NM,20181127085002 +nmdis/2901623/profiles/R2901623_050.nc,20110929042300,2.037,95.818,I,841,NM,20181127085002 +nmdis/2901623/profiles/R2901623_051.nc,20111009042300,2.064,96.036,I,841,NM,20181127085002 +nmdis/2901623/profiles/R2901623_052.nc,20111019042300,2.221,95.810,I,841,NM,20181127085003 +nmdis/2901623/profiles/R2901623_053.nc,20111029022900,2.326,95.722,I,841,NM,20181127085003 +nmdis/2901623/profiles/R2901623_054.nc,20111107235900,2.518,95.628,I,841,NM,20181127085004 +nmdis/2901623/profiles/R2901623_055.nc,20111118024700,3.031,94.958,I,841,NM,20181127085004 +nmdis/2901623/profiles/R2901623_056.nc,20111128011100,2.968,94.961,I,841,NM,20181127085004 +nmdis/2901623/profiles/R2901623_057.nc,20111208003500,3.462,94.896,I,841,NM,20181127085005 +nmdis/2901623/profiles/R2901623_058.nc,20111218014600,3.502,94.753,I,841,NM,20181127085005 +nmdis/2901623/profiles/R2901623_059.nc,20111228021000,3.779,94.516,I,841,NM,20181127085006 +nmdis/2901623/profiles/R2901623_060.nc,20120107031000,3.197,94.406,I,841,NM,20181127085006 +nmdis/2901623/profiles/R2901623_061.nc,20120117031000,3.554,94.604,I,841,NM,20181127085006 +nmdis/2901623/profiles/R2901623_062.nc,20120127023400,3.840,94.443,I,841,NM,20181127085007 +nmdis/2901623/profiles/R2901623_063.nc,20120206041600,3.460,94.114,I,841,NM,20181127085007 +nmdis/2901623/profiles/R2901623_064.nc,20120216042200,2.660,94.294,I,841,NM,20181127085008 +nmdis/2901623/profiles/R2901623_065.nc,20120226041000,2.561,94.511,I,841,NM,20181127085008 +nmdis/2901623/profiles/R2901623_066.nc,20120307042200,2.954,93.976,I,841,NM,20181127085009 +nmdis/2901623/profiles/R2901623_067.nc,20120317040400,3.001,93.720,I,841,NM,20181127085009 +nmdis/2901623/profiles/R2901623_068.nc,20120327042200,2.881,93.671,I,841,NM,20181127085009 +nmdis/2901623/profiles/R2901623_069.nc,20120406042800,3.063,93.806,I,841,NM,20181127085010 +nmdis/2901623/profiles/R2901623_070.nc,20120416042200,3.636,93.660,I,841,NM,20181127085010 +nmdis/2901623/profiles/R2901623_071.nc,20120426040400,4.053,93.480,I,841,NM,20181127085011 +nmdis/2901623/profiles/R2901623_072.nc,20120506042800,4.092,93.308,I,841,NM,20181127085011 +nmdis/2901623/profiles/R2901623_073.nc,20120516041600,3.845,93.163,I,841,NM,20181127085011 +nmdis/2901623/profiles/R2901623_074.nc,20120526041600,3.693,93.051,I,841,NM,20181127085012 +nmdis/2901623/profiles/R2901623_075.nc,20120605042800,3.626,93.182,I,841,NM,20181127085012 +nmdis/2901623/profiles/R2901623_076.nc,20120615042200,3.436,93.355,I,841,NM,20181127085013 +nmdis/2901623/profiles/R2901623_077.nc,20120625041600,3.494,93.259,I,841,NM,20181127085013 +nmdis/2901623/profiles/R2901623_078.nc,20120705041000,3.877,93.283,I,841,NM,20181127085013 +nmdis/2901623/profiles/R2901623_079.nc,20120715033900,3.742,93.705,I,841,NM,20181127085014 +nmdis/2901623/profiles/R2901623_080.nc,20120725032100,3.796,93.691,I,841,NM,20181127085014 +nmdis/2901623/profiles/R2901623_081.nc,20120804040300,3.064,93.535,I,841,NM,20181127085015 +nmdis/2901623/profiles/R2901623_082.nc,20120814042700,2.423,93.655,I,841,NM,20181127085015 +nmdis/2901623/profiles/R2901623_083.nc,20120824042700,2.343,93.847,I,841,NM,20181127085015 +nmdis/2901623/profiles/R2901623_084.nc,20120903042100,2.423,93.757,I,841,NM,20181127085016 +nmdis/2901623/profiles/R2901623_085.nc,20120913041500,2.369,93.502,I,841,NM,20181127085016 +nmdis/2901623/profiles/R2901623_086.nc,20120923042700,2.262,93.373,I,841,NM,20181127085017 +nmdis/2901623/profiles/R2901623_087.nc,20121003043300,2.395,93.833,I,841,NM,20181127085017 +nmdis/2901623/profiles/R2901623_088.nc,20121013042700,3.107,93.943,I,841,NM,20181127085017 +nmdis/2901623/profiles/R2901623_089.nc,20121023035700,4.110,94.244,I,841,NM,20181127085018 +nmdis/2901623/profiles/R2901623_090.nc,20121102034500,4.160,94.479,I,841,NM,20181127085018 +nmdis/2901623/profiles/R2901623_091.nc,20121112041500,4.004,93.989,I,841,NM,20181127085019 +nmdis/2901623/profiles/R2901623_092.nc,20121122031500,3.513,94.264,I,841,NM,20181127085019 +nmdis/2901623/profiles/R2901623_093.nc,20121202023900,4.071,94.576,I,841,NM,20181127085019 +nmdis/2901623/profiles/R2901623_094.nc,20121212040900,3.622,94.374,I,841,NM,20181127085020 +nmdis/2901623/profiles/R2901623_095.nc,20121222030900,3.386,94.607,I,841,NM,20181127085020 +nmdis/2901623/profiles/R2901623_096.nc,20130101014500,3.388,94.766,I,841,NM,20181127085021 diff --git a/argopy/tests/test_data/33499f0838e0d2c8d423e8610590d7e4f9515877454c7fe20dfaf7f70926b0d9.ncHeader b/argopy/tests/test_data/33499f0838e0d2c8d423e8610590d7e4f9515877454c7fe20dfaf7f70926b0d9.ncHeader new file mode 100644 index 00000000..8a92fe73 --- /dev/null +++ b/argopy/tests/test_data/33499f0838e0d2c8d423e8610590d7e4f9515877454c7fe20dfaf7f70926b0d9.ncHeader @@ -0,0 +1,689 @@ +netcdf ArgoFloats-synthetic-BGC_637f_2bee_852e.nc { + dimensions: + row = 5041; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.01180728f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.01180728f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=5041, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=5041, bbp700_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0438f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0803f, 3.5186f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=5041, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=5041, chla_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=5041); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 0.1697397f, 19.58223f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=5041, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=5041, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=5041); + :_FillValue = 99999; // int + :actual_range = 1, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=5041, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.667699E-4f, 0.5660256f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.4718581f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.009437162f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=5041, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=5041, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 6.57517E-5f, 1.100864f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 0.8742118f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01748424f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=5041, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=5041, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -8.08818E-5f, 1.255575f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.255584f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02511167f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=5041, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=5041, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01326383f, 1309.106f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1308.671f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 65.43353f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=5041, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=5041, downwelling_par_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :long_name = "Dissolved oxygen"; + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=5041); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=5041); + :actual_range = 8.415855f, 99999.0f; // float + + char doxy_adjusted_qc(row=5041, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char doxy_qc(row=5041, doxy_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=5041); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=5041); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 3.829968f, 10.41807f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=5041); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=5041); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=5041, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=5041, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 7.990134f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=5041, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=5041, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=5041, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=5041); + :_ChunkSizes = 106, 787; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.649095E-7f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=5041, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=5041, pres_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.767f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=5041, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=5041, psal_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.884f, 11.566f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=5041); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=5041, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=5041, temp_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=5041); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:31Z (local files) +2024-09-25T05:50:31Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1651363200.0&time%3C=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json b/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json new file mode 100644 index 00000000..1d825b4d --- /dev/null +++ b/argopy/tests/test_data/3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670.json @@ -0,0 +1,61 @@ +{ + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://erddap.ifremer.fr/erddap/tabledap/allDatasets.subset", "https://erddap.ifremer.fr/erddap/tabledap/allDatasets", "https://erddap.ifremer.fr/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude (or negative Depth), m)\nmaxAltitude (Maximum Altitude (or negative Depth), m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of \"files\" Service)\n... (10 more variables)\n", "", "", "https://erddap.ifremer.fr/erddap/info/allDatasets/index.json", "https://erddap.ifremer.fr/erddap", "", "", "Ifremer", "allDatasets"], + ["https://erddap.ifremer.fr/erddap/griddap/OACP-Argo-Global", "", "", "https://erddap.ifremer.fr/erddap/griddap/OACP-Argo-Global.graph", "https://erddap.ifremer.fr/erddap/wms/OACP-Argo-Global/request", "", "public", "2000-2015 climatology of the Subtropical Mode Waters and Permanent Pycnocline properties in the World Ocean", "Maps of properties from OAC-P estimates. Thermohaline computing using gsw oceanographic toolbox\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nGLOBAL_PPD (Permanent pycnocline depth, m)\nGLOBAL_PPD_er (Error of the permanent pycnocline depth estimate, m)\nGLOBAL_PPH (Permanent pycnocline total thickness, m)\nGLOBAL_PPH_er (Error of the permanent pycnocline total thickness estimate, m)\nGLOBAL_PPHTOP (Permanent pycnocline top thickness, m)\nGLOBAL_PPHTOP_er (Error of the permanent pycnocline top thickness estimate)\nGLOBAL_PPHBTO (Permanent pycnocline bottom thickness, m)\nGLOBAL_PPHBTO_er (Error of the permanent pycnocline bottom thickness estimate, m)\nGLOBAL_PPTEMP (Temperature at the depth of the permanent pycnocline, deg C)\nGLOBAL_PPPOTTEMP (Potential temperature at the depth of the permanent pycnocline (referenced to the surface), deg C)\nGLOBAL_PPCONSTEMP (Conservative temperature at the depth of the permanent pycnocline, deg C)\nGLOBAL_PPPSAL (Practical salinity at the depth of the permanent pycnocline, PSU)\nGLOBAL_PPABSAL (Absolute salinity at the depth of the permanent pycnocline, g/kg)\nGLOBAL_PPSIG0 (Potential density referenced to the surface at the depth of the permanent pycnocline)\nGLOBAL_PPPLPV (Planetary potential vorticity at the depth of the permanent pycnocline, m^-1 s^-1)\nGLOBAL_PPBFRQ (Brunt-Vaisala frequency squared at the depth of the permanent pycnocline, s^-2)\nGLOBAL_MWD (Mode water depth, m)\nGLOBAL_MWH (Mode water thickness, m)\nGLOBAL_MWTEMP (Temperature at the depth of the mode water, deg C)\nGLOBAL_MWPOTTEMP (Potential temperature at the depth of the mode water (referenced to the surface), deg C)\nGLOBAL_MWCONSTEMP (Conservative temperature at the depth of the mode water, deg C)\nGLOBAL_MWPSAL (Practical salinity at the depth of the mode water, PSU)\nGLOBAL_MWABSAL (Absolute salinity at the depth of the mode water, g/kg)\nGLOBAL_MWSIG0 (Potential density referenced to the surface at the depth of the mode water)\nGLOBAL_MWPLPV (Planetary potential vorticity at the depth of the mode water, m^-1 s^-1)\nGLOBAL_MWBFRQ (Brunt-Vaisala frequency squared at the depth of the mode water, s^-2)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/OACP-Argo-Global_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/OACP-Argo-Global_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/OACP-Argo-Global/index.json", "https://doi.org/10.17882/56503", "https://erddap.ifremer.fr/erddap/rss/OACP-Argo-Global.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=OACP-Argo-Global&showErrors=false&email=", "LOPS/Ifremer", "OACP-Argo-Global"], + ["", "", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.graph", "", "", "public", "Argo Float Measurements", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nfileNumber (File Number)\ndata_type\nformat_version (File format version)\nhandbook_version (Data handbook version)\nreference_date_time (Date of reference for Julian days, seconds since 1970-01-01T00:00:00Z)\ndate_creation (Date of file creation, seconds since 1970-01-01T00:00:00Z)\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\nplatform_number (Float unique identifier)\nproject_name (Name of the project)\npi_name (Name of the principal investigator)\n... (49 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", "https://argo.ucsd.edu/", "https://erddap.ifremer.fr/erddap/rss/ArgoFloats.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats&showErrors=false&email=", "Argo", "ArgoFloats"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.subset", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.graph", "", "", "public", "Argo float synthetic vertical profiles : BGC data", "Argo float synthetic vertical profiles : BGC data\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nwmo_inst_type (Coded instrument type)\ndata_type\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\npi_name (Name of the principal investigator)\nbbp470 (Particle backscattering at 470 nanometers, m-1)\nbbp470_qc\nbbp470_adjusted\nbbp470_adjusted_qc\nbbp470_adjusted_error\nbbp532 (Particle backscattering at 532 nanometers, m-1)\nbbp532_qc\nbbp532_adjusted\nbbp532_adjusted_qc\nbbp532_adjusted_error\nbbp700 (Particle backscattering at 700 nanometers, m-1)\nbbp700_qc (quality flag)\nbbp700_adjusted (Particle backscattering at 700 nanometers, m-1)\nbbp700_adjusted_qc (quality flag)\nbbp700_adjusted_error (Contains the error on the adjusted values as determined by the delayed mode QC process, m-1)\nbbp700_2 (Particle backscattering at 700 nanometers, m-1)\nbbp700_2_qc\nbbp700_2_adjusted\nbbp700_2_adjusted_qc\nbbp700_2_adjusted_error\nbisulfide (micromole/kg)\nbisulfide_qc\nbisulfide_adjusted\n... (168 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats-synthetic-BGC_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats-synthetic-BGC_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", "http://www.argodatamgt.org/Documentation", "https://erddap.ifremer.fr/erddap/rss/ArgoFloats-synthetic-BGC.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats-synthetic-BGC&showErrors=false&email=", "Argo", "ArgoFloats-synthetic-BGC"], + ["", "", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.graph", "", "", "public", "Argo Reference Measurements", "Argo float vertical profiles to be used in DMQC. The free-moving nature of profiling floats means that most float measurements are without accompanying in-situ ground truth values for absolute calibration (such as those afforded by shipboard CTD measurements). Therefore Argo delayed-mode procedures for checking sensor drifts and offsets in salinity rely on reference datasets and statistical methods. Dataset assembled by John Gilson (SCRIPPS)\n\ncdm_data_type = Other\nVARIABLES:\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform_number\ncycle_number\npi_name\ntime (seconds since 1970-01-01T00:00:00Z)\npres (Pressure)\ntemp (Temperature)\nptmp\npsal\nn_levels\nn_prof\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats-reference_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats-reference_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", "http://www.argodatamgt.org/DMQC/Reference-data-base", "https://erddap.ifremer.fr/erddap/rss/ArgoFloats-reference.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats-reference&showErrors=false&email=", "Argo", "ArgoFloats-reference"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-index.subset", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-index", "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-index.graph", "", "", "public", "ArgoFloats index", "Argo detailed index. Gathers data available at ftp://ftp.ifremer.fr/ifremer/argo/ar_index_global_prof.txt\n\ncdm_data_type = Other\nVARIABLES:\nfile\ndate (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nocean\nprofiler_type\ninstitution\ndate_update (Date of update, seconds since 1970-01-01T00:00:00Z)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats-index_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats-index_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/ArgoFloats-index/index.json", "http://www.argodatamgt.org/DMQC/Reference-data-base", "https://erddap.ifremer.fr/erddap/rss/ArgoFloats-index.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats-index&showErrors=false&email=", "Argo", "ArgoFloats-index"], + ["", "", "", "", "", "", "log in", "CTD Reference Measurements", "Conductivity, Temperature, Depth (CTD) Reference Measurements. Argo data from a local source.\n\ncdm_data_type = Other\nVARIABLES:\npres (Pressure)\nptmp\npsal\ntemp (Temperature)\nsource\nqclevel\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "", "", "", "", "", "", "Argo", "ArgoFloats-reference-CTD"], + ["https://erddap.ifremer.fr/erddap/griddap/SST_Anomalies_Caledonie", "", "", "https://erddap.ifremer.fr/erddap/griddap/SST_Anomalies_Caledonie.graph", "https://erddap.ifremer.fr/erddap/wms/SST_Anomalies_Caledonie/request", "", "public", "Daily MUR SST, Final product", "A merged, multi-sensor L4 Foundation Sea Surface Temperature (SST) analysis product from Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, kelvin)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SST_Anomalies_Caledonie_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SST_Anomalies_Caledonie_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SST_Anomalies_Caledonie/index.json", "https://podaac.jpl.nasa.gov/ws/metadata/dataset/?format=iso&shortName=MUR-JPL-L4-GLOB-v04.1", "https://erddap.ifremer.fr/erddap/rss/SST_Anomalies_Caledonie.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SST_Anomalies_Caledonie&showErrors=false&email=", "Jet Propulsion Laboratory", "SST_Anomalies_Caledonie"], + ["https://erddap.ifremer.fr/erddap/griddap/OS_DYFAMED_1994-2014_D_TSO2", "", "", "https://erddap.ifremer.fr/erddap/griddap/OS_DYFAMED_1994-2014_D_TSO2.graph", "", "", "public", "EMSO Ligure DYFAMED Time Series from 1994 to 2014 (43\u00b025N, 7\u00b052E)", "EMSO Ligure DYFAMED Time Series from 1994 to 2014 (43\u00b025N - 7\u00b052E). In the framework of the French MOOSE program, a fixed point observatory in the Ligurian Sea (so called DYFAMED) performs since 1991 physical, biogeochemical and biological observations of the water column structure. This observatory is hosted and managed by the Oceanological Observatory in Villefranche-sur-Mer (CNRS-SU)\n\ncdm_data_type = Profile\nVARIABLES (all of which use the dimensions [time][PRES]):\nTEMP (Sea temperature in-situ ITS-90 scale, degree_Celsius)\nPSAL (Practical salinity, PSU)\nDOXY (Dissolved oxygen, micromole/kg)\nTEMP_QC (quality flag for TEMP)\nPSAL_QC (quality flag for PSAL)\nDOXY_QC (quality flag for DOXY)\n", "", "", "https://erddap.ifremer.fr/erddap/info/OS_DYFAMED_1994-2014_D_TSO2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/OS_DYFAMED_1994-2014_D_TSO2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=OS_DYFAMED_1994-2014_D_TSO2&showErrors=false&email=", "IMEV Villefranche-sur-mer", "OS_DYFAMED_1994-2014_D_TSO2"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/drifter_hourly_qc.subset", "https://erddap.ifremer.fr/erddap/tabledap/drifter_hourly_qc", "https://erddap.ifremer.fr/erddap/tabledap/drifter_hourly_qc.graph", "", "https://erddap.ifremer.fr/erddap/files/drifter_hourly_qc/", "public", "Global Drifter Program - 1 Hour Interpolated QC Drifter Data", "Global Drifter Program hourly drifting buoy collection. Quality control interpolated (interpolation via mathematical model fitting) data. Hourly Drifter data product exists from early 2000's to present, well suited for observing smaller-scale oceanic processes. NOAA-Atlantic Oceanographic & Meteorological Laboratory (AOML) data from a local source. The hourly QC dataset is updated on a quarterly basis, i.e. every 3 months, in delayed mode, but the data processing team has experienced unforeseen setbacks. The GDP is working as quickly as possible to update the dataset. Please reference the acknowledgment attribute to cite the dataset's DOI.\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Global Drifter Program Buoy ID)\nWMO (World Meteorological Organization buoy identification number)\nexpno (Experiment number, count)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlon360 (Longitude, degrees_east)\nsst (fitted sea water temperature, Kelvin)\nsst1 (fitted non-diurnal sea water temperature, Kelvin)\nsst2 (fitted diurnal sea water temperature, Kelvin)\nerr_sst (standard uncertainty of fitted sea water temperature, Kelvin)\nerr_sst1 (standard uncertainty of fitted non-diurnal sea water temperature, Kelvin)\nerr_sst2 (standard uncertainty of fitted diurnal sea water temperature, Kelvin)\nflg_sst (fitted sea water temperature quality flag, dimensionless)\nflg_sst1 (fitted non-diurnal sea water temperature quality flag, dimensionless)\nflg_sst2 (fitted diurnal sea water temperature quality flag, dimensionless)\nve (Eastward velocity, m/s)\nvn (Northward velocity, m/s)\nerr_lat (95% confidence interval in latitude, degrees_north)\nerr_lon (95% confidence interval in longitude, degrees_east)\nerr_ve (95% confidence interval in eastward velocity, m/s)\n... (33 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/drifter_hourly_qc_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/drifter_hourly_qc_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/drifter_hourly_qc/index.json", "https://www.aoml.noaa.gov/phod/dac/dirall.html", "https://erddap.ifremer.fr/erddap/rss/drifter_hourly_qc.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=drifter_hourly_qc&showErrors=false&email=", "NOAA Atlantic Oceanographic and Meteorological Laboratory", "drifter_hourly_qc"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/drifter_6hour_qc.subset", "https://erddap.ifremer.fr/erddap/tabledap/drifter_6hour_qc", "https://erddap.ifremer.fr/erddap/tabledap/drifter_6hour_qc.graph", "", "https://erddap.ifremer.fr/erddap/files/drifter_6hour_qc/", "public", "Global Drifter Program - 6 Hour Interpolated QC Drifter Data", "Global Drifter Program 6-hourly drifting buoy collection. Quality control krigged (interpolation method) data. 6-Hour Drifter data product exists from 1979 to present, well suited for observing larger-scale oceanic processes. NOAA-Atlantic Oceanographic & Meteorological Laboratory (AOML) data from a local source. The six-hourly QC dataset is updated on a quarterly basis, i.e. every 3 months, in delayed mode. Please reference the acknowledgment attribute to cite the dataset's DOI.\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Global Drifter Program Buoy ID)\nWMO (World Meteorological Organization buoy identification number)\nexpno (Experiment number, count)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlon360 (Longitude, degrees_east)\nsst (Sea Surface Bulk Temperature, degree_C)\nerr_sst (degree_C)\nve\nvn\nerr_lat\nerr_lon\ntypebuoy (Buoy type (see https://www.aoml.noaa.gov/phod/dac/dirall.html))\ndeploy_date (Deployment date and time, seconds since 1970-01-01T00:00:00Z)\ndeploy_lat (Deployment latitude, degrees_north)\ndeploy_lon (Deployment longitude, degrees_east)\nstart_date (First good date and time derived by DAC quality control, seconds since 1970-01-01T00:00:00Z)\nstart_lat (First good latitude derived by DAC quality control, degrees_north)\nstart_lon (First good longitude derived by DAC quality control, degrees_east)\nend_date (Last good date and time derived by DAC quality control, seconds since 1970-01-01T00:00:00Z)\nend_lat (Last good latitude derived by DAC quality control, degrees_north)\nend_lon (Last good longitude derived by DAC quality control, degrees_east)\n... (23 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/drifter_6hour_qc_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/drifter_6hour_qc_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/drifter_6hour_qc/index.json", "https://www.aoml.noaa.gov/phod/dac/dirall.html", "https://erddap.ifremer.fr/erddap/rss/drifter_6hour_qc.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=drifter_6hour_qc&showErrors=false&email=", "NOAA Atlantic Oceanographic and Meteorological Laboratory", "drifter_6hour_qc"], + ["https://erddap.ifremer.fr/erddap/griddap/HF_75c7_5b60_95d8", "", "", "https://erddap.ifremer.fr/erddap/griddap/HF_75c7_5b60_95d8.graph", "https://erddap.ifremer.fr/erddap/wms/HF_75c7_5b60_95d8/request", "", "public", "Global Ocean - In Situ Observation Copernicus", "The data set consists of maps of total velocity of the surface current averaged over a time interval of 1 hour around the cardinal hour. Surface ocean velocities estimated by High Frequency (HF) Radar are representative of the upper 0.3-2.5 meters of the ocean. The main objective of near real time processing is to produce the best product from available data at the time of processing. Total velocities are derived using least square fit that maps radial velocities measured from individual sites onto a cartesian grid. The final product is a map of the horizontal components of the ocean currents on a regular grid in the area of overlap of two or more radar stations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nEWCT (West-east current component, m s-1)\nNSCT (South-north current component, m s-1)\nEWCS (Standard deviation of surface eastward sea water velocity, m s-1)\nNSCS (Standard deviation of surface northward sea water velocity, m s-1)\nCCOV (Covariance of surface sea water velocity, m2 s-2)\nGDOP (Geometrical dilution of precision, 1)\nPOSITION_QC (Position quality flag, 1)\nQCflag (Overall quality flag, 1)\nVART_QC (Variance threshold quality flag, 1)\nGDOP_QC (GDOP threshold quality flag, 1)\nDDNS_QC (Data density threshold quality flag, 1)\nCSPD_QC (Velocity threshold quality flag, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/HF_75c7_5b60_95d8_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/HF_75c7_5b60_95d8_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/HF_75c7_5b60_95d8/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/HF_75c7_5b60_95d8.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=HF_75c7_5b60_95d8&showErrors=false&email=", "AZTI; Ifremer", "HF_75c7_5b60_95d8"], + ["https://erddap.ifremer.fr/erddap/griddap/HF_ac49_84ad_3eb6", "", "", "https://erddap.ifremer.fr/erddap/griddap/HF_ac49_84ad_3eb6.graph", "https://erddap.ifremer.fr/erddap/wms/HF_ac49_84ad_3eb6/request", "", "public", "Global Ocean - In Situ Observation Copernicus", "Surface ocean velocities estimated from High Frequency (HF)-Radar are representative of the upper 2.4 meters of the ocean. The main objective of near-real time processing is to produce the best product from available data at the time of processing. Radial velocity measurements are obtained from individual radar sites through the U.S. HF-Radar Network. Hourly radial data are processed by unweighted least squares on a 6km resolution grid of the Alaskan North Slope to produce near real-time surface current maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nEWCT (West-east current component, m s-1)\nNSCT (South-north current component, m s-1)\nEWCS (Standard deviation of surface eastward sea water velocity, m s-1)\nNSCS (Standard deviation of surface northward sea water velocity, m s-1)\nGDOP (Geometrical dilution of precision, 1)\nPOSITION_QC (Position quality flag, 1)\nQCflag (Overall quality flag, 1)\nVART_QC (Variance threshold quality flag, 1)\nGDOP_QC (GDOP threshold quality flag, 1)\nDDNS_QC (Data density threshold quality flag, 1)\nCSPD_QC (Velocity threshold quality flag, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/HF_ac49_84ad_3eb6_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/HF_ac49_84ad_3eb6_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/HF_ac49_84ad_3eb6/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/HF_ac49_84ad_3eb6.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=HF_ac49_84ad_3eb6&showErrors=false&email=", "UAF; ONC; CORDC - Coastal Observing Research and Development Center", "HF_ac49_84ad_3eb6"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/copernicus-fos.subset", "https://erddap.ifremer.fr/erddap/tabledap/copernicus-fos", "https://erddap.ifremer.fr/erddap/tabledap/copernicus-fos.graph", "", "https://erddap.ifremer.fr/erddap/files/copernicus-fos/", "public", "Global Ocean, In Situ Observation Copernicus (Copernicus Fishing Observing System)", "Global Ocean - In Situ Observation Copernicus. The Recopesca Project : a new example of participative approach to collect fisheries and in situ environmental data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_name\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nTIME_QC (Time quality flag)\nDC_REFERENCE (Station/Location unique identifier in data centre)\nDATA_MODE\nDIRECTION (Direction of the profiles)\ndepth (m)\nDEPH_QC (Depth quality flag)\nTEMP (Sea temperature, degree_C)\nTEMP_QC (Sea temperature quality flag)\nPSAL (Practical salinity, 0.001)\nPSAL_QC\nOSAT (Oxygen saturation, %)\nOSAT_QC\nDOXY (Dissolved oxygen, mmol m-3)\nDOXY_QC\nTUR4 (Turbidity, 1)\nTUR4_QC\nFLUO (Fluorescence)\nFLUO_QC\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/copernicus-fos_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/copernicus-fos_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/copernicus-fos/index.json", "https://archimer.ifremer.fr/doc/00024/13500", "https://erddap.ifremer.fr/erddap/rss/copernicus-fos.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=copernicus-fos&showErrors=false&email=", "IFREMER", "copernicus-fos"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/ariane_trajectories_qualitative.subset", "https://erddap.ifremer.fr/erddap/tabledap/ariane_trajectories_qualitative", "https://erddap.ifremer.fr/erddap/tabledap/ariane_trajectories_qualitative.graph", "", "https://erddap.ifremer.fr/erddap/files/ariane_trajectories_qualitative/", "public", "Numerical lagrangian data issued from river sources in Indonesia (2016-2020) - Ariane trajectories qualitative", "This file is the raw output of Ariane software.\n\ncdm_data_type = Other\nVARIABLES:\ninit_x (Initial position in i, No dimension)\ninit_y (Initial position in j, No dimension)\ninit_z (Initial position in k, No dimension)\ninit_t (Initial position in l (time), See global attributes...)\ninit_age (Initial age (time), seconds)\ninit_transp (Initial transport, m3/s)\nfinal_x (Final position in x (or i), No dimension)\nfinal_y (Final position in y (or j), No dimension)\nfinal_z (Final position in z (or k), No dimension)\nfinal_t (Final position in t (time), See global attributes...)\nfinal_age (Final Age., seconds)\nfinal_transp (Final transport, m3/s)\n", "", "", "https://erddap.ifremer.fr/erddap/info/ariane_trajectories_qualitative/index.json", "https://doi.org/10.12770/8dea4c5c-f2c2-4771-9372-9ce60c878c49", "https://erddap.ifremer.fr/erddap/rss/ariane_trajectories_qualitative.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=ariane_trajectories_qualitative&showErrors=false&email=", "IRD", "ariane_trajectories_qualitative"], + ["", "", "https://erddap.ifremer.fr/erddap/tabledap/coast_status", "https://erddap.ifremer.fr/erddap/tabledap/coast_status.graph", "", "https://erddap.ifremer.fr/erddap/files/coast_status/", "public", "Numerical lagrangian data issued from river sources in Indonesia (2016-2020) - Coast status", "This file contains time series of simulated particle status with respect to their fate (stranding, out of domain, still at sea)\n\ncdm_data_type = Other\nVARIABLES:\nptc_id (particle ID)\nriver_index (Particle River Index)\nd_covered_zone (Diagonal Of The Covered Zone, m)\nptc_distance (Particle Trajectory Distance, m)\ntime (Stranding Itime, seconds since 1970-01-01T00:00:00Z)\nstranding_iT\nstranding_jT\nstranding_age (days)\nstranding_zone\n", "", "", "https://erddap.ifremer.fr/erddap/info/coast_status/index.json", "https://doi.org/10.12770/8dea4c5c-f2c2-4771-9372-9ce60c878c49", "https://erddap.ifremer.fr/erddap/rss/coast_status.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=coast_status&showErrors=false&email=", "IRD", "coast_status"], + ["https://erddap.ifremer.fr/erddap/griddap/histo_coord", "", "", "https://erddap.ifremer.fr/erddap/griddap/histo_coord.graph", "https://erddap.ifremer.fr/erddap/wms/histo_coord/request", "https://erddap.ifremer.fr/erddap/files/histo_coord/", "public", "Numerical lagrangian data issued from river sources in Indonesia (2016-2020) - Histo coord", "This file contains time series of 2D-histogram of simulated particles (computed as the sum of particles per grid cell)\n\ncdm_data_type = TimeSeries\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhist (2D histogram of particles)\nhist_release_time (2D histogram of particles)\nhist_stop_coast (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_CISADANE (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_CILIWUNG (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_CITARUM (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_SEMARANG (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_SURABAYA (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_SOLO (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_TELUK_BENOA (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_JOGJA (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_PELABUHAN_RATU (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_BATANG_KANDIS (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_DELI (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_BATANG_HARI (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_MUSI (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_KAPUAS (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_BARITO (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_TALLO (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_MAHAKAM (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_KAYAN (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_AMBON (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_DIGUL (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\nhist_stop_coast_MAMBERAMO (2D histogram of particles (trajectory stop once below 0.0010 grid cell from coast))\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/histo_coord_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/histo_coord_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/histo_coord/index.json", "https://doi.org/10.12770/8dea4c5c-f2c2-4771-9372-9ce60c878c49", "https://erddap.ifremer.fr/erddap/rss/histo_coord.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=histo_coord&showErrors=false&email=", "IRD", "histo_coord"], + ["https://erddap.ifremer.fr/erddap/griddap/traj_lonlat_init_t0", "", "", "https://erddap.ifremer.fr/erddap/griddap/traj_lonlat_init_t0.graph", "", "https://erddap.ifremer.fr/erddap/files/traj_lonlat_init_t0/", "public", "Numerical lagrangian data issued from river sources in Indonesia (2016-2020) - Traj lonlat init t0", "This file contains trajectories of simulated particles in grid indices and lat/lon coordinates. The position remains unchanged once the particle is considered as stranded.\n\ncdm_data_type = Trajectory\nVARIABLES (all of which use the dimensions [frame][ntraj]):\ntraj_lon_init_t0 (Longitude of trajectory vs time since simu t0, degrees_east)\ntraj_lat_init_t0 (Latitude of trajectory vs time since simu t0, degrees_north)\ntraj_iU_init_t0 (longitude index of trajectory vs time since simu t0)\ntraj_jV_init_t0 (latitude index of trajectory vs time since simu t0)\n", "", "", "https://erddap.ifremer.fr/erddap/info/traj_lonlat_init_t0/index.json", "https://doi.org/10.12770/8dea4c5c-f2c2-4771-9372-9ce60c878c49", "https://erddap.ifremer.fr/erddap/rss/traj_lonlat_init_t0.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=traj_lonlat_init_t0&showErrors=false&email=", "IRD", "traj_lonlat_init_t0"], + ["", "", "https://erddap.ifremer.fr/erddap/tabledap/OceanGlidersGDACTrajectories", "https://erddap.ifremer.fr/erddap/tabledap/OceanGlidersGDACTrajectories.graph", "", "", "public", "OceanGliders GDAC trajectories", "OceanGliders GDAC trajectories\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_deployment\ntime (Epoch time, seconds since 1970-01-01T00:00:00Z)\nJULD\nlatitude (Measurement latitude, degrees_north)\nlongitude (Measurement longitude, degrees_east)\nTIME_QC (Quality flag)\nJULD_QC\nPOSITION_QC (Quality flag)\nPSAL (Practical salinity, PSU)\nTEMP (Sea temperature in-situ ITS-90 scale, degree_Celsius)\nCNDC (Electrical conductivity, mhos/m)\nPRES (Sea water pressure, equals 0 at sea-level, decibar)\nPSAL_QC (Quality flag)\nTEMP_QC (Quality flag)\nCNDC_QC (Quality flag)\nPRES_QC (Quality flag)\nPSAL_UNCERTAINTY (PSU)\nTEMP_UNCERTAINTY\nCNDC_UNCERTAINTY\nPRES_UNCERTAINTY\nMOLAR_DOXY\nTEMP_DOXY\nBPHASE_DOXY\nDPHASE_DOXY\nRPHASE_DOXY\nMOLAR_DOXY_QC\nTEMP_DOXY_QC\n... (19 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/OceanGlidersGDACTrajectories_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/OceanGlidersGDACTrajectories_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/OceanGlidersGDACTrajectories/index.json", "http://www.ego-network.org/", "https://erddap.ifremer.fr/erddap/rss/OceanGlidersGDACTrajectories.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=OceanGlidersGDACTrajectories&showErrors=false&email=", "IFREMER", "OceanGlidersGDACTrajectories"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BAL_AGG_V2.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BAL_AGG_V2", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BAL_AGG_V2.graph", "", "", "public", "SDC Baltic Sea Aggregation V2", "Data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Obs Date, seconds since 1970-01-01T00:00:00Z)\nstation_id\nplatform\nobs_date_qc\nlatitude (degrees_north)\nlongitude (degrees_east)\nposition_qc\ndepth (m)\ndepth_qc (Depth)\ntemp (Temperature)\ntemp_qc\npsal\npsal_qc\ntype (Data type)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BAL_AGG_V2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BAL_AGG_V2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BAL_AGG_V2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_BAL_AGG_V2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BAL_AGG_V2&showErrors=false&email=", "SeaDataNet", "SDC_BAL_AGG_V2"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_AGG_V2.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_AGG_V2", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_AGG_V2.graph", "", "", "public", "SDC Black Sea Aggregation V2", "Data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Obs Date, seconds since 1970-01-01T00:00:00Z)\nstation_id\nplatform\nobs_date_qc\nlatitude (degrees_north)\nlongitude (degrees_east)\nposition_qc\ndepth (m)\ndepth_qc (Depth)\ntemp (Temperature)\ntemp_qc\npsal\npsal_qc\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_AGG_V2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_AGG_V2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_AGG_V2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_AGG_V2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_AGG_V2&showErrors=false&email=", "SeaDataNet", "SDC_BLS_AGG_V2"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_GLO_AGG_V2.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_GLO_AGG_V2", "https://erddap.ifremer.fr/erddap/tabledap/SDC_GLO_AGG_V2.graph", "", "", "public", "SDC Global Ocean Aggregation V2", "Data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Obs Date, seconds since 1970-01-01T00:00:00Z)\nstation_id\nplatform\nobs_date_qc\nlatitude (degrees_north)\nlongitude (degrees_east)\nposition_qc\ndepth (m)\ndepth_qc (Depth)\ntemp (Temperature)\ntemp_qc\npsal\npsal_qc\ntype (Data type)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_GLO_AGG_V2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_GLO_AGG_V2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_GLO_AGG_V2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_GLO_AGG_V2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_GLO_AGG_V2&showErrors=false&email=", "SeaDataNet", "SDC_GLO_AGG_V2"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_MED_AGG_V2.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_MED_AGG_V2", "https://erddap.ifremer.fr/erddap/tabledap/SDC_MED_AGG_V2.graph", "", "", "public", "SDC Mediterranean Sea Aggregation V2", "Data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Obs Date, seconds since 1970-01-01T00:00:00Z)\nstation_id\nplatform\nobs_date_qc\nlatitude (degrees_north)\nlongitude (degrees_east)\nposition_qc\ndepth (m)\ndepth_qc (Depth)\ntemp (Temperature)\ntemp_qc\npsal\npsal_qc\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_AGG_V2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_AGG_V2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_AGG_V2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_AGG_V2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_AGG_V2&showErrors=false&email=", "SeaDataNet", "SDC_MED_AGG_V2"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_NATL_AGG_V2.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_NATL_AGG_V2", "https://erddap.ifremer.fr/erddap/tabledap/SDC_NATL_AGG_V2.graph", "", "", "public", "SDC North Atlantic Aggregation V2", "Data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Obs Date, seconds since 1970-01-01T00:00:00Z)\nstation_id\nplatform\nobs_date_qc\nlatitude (degrees_north)\nlongitude (degrees_east)\nposition_qc\ndepth (m)\ndepth_qc (Depth)\ntemp (Temperature)\ntemp_qc\npsal\npsal_qc\ntype (Data type)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NATL_AGG_V2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NATL_AGG_V2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NATL_AGG_V2/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_NATL_AGG_V2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NATL_AGG_V2&showErrors=false&email=", "SeaDataNet", "SDC_NATL_AGG_V2"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V1_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V1_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BAL_CLIM_TS_V1_m/request", "", "public", "SDC_BalticSea_Climatology_TS_V1_monthly", "The SDC_BAL_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for Baltic Sea including the seasonal and monthly fields for period 1955-2014 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Baltic Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (sea water temperature, degree_C)\nITS_90_water_temperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nITS_90_water_temperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nITS_90_water_temperature_relerr (Relative error of sea water temperature, 1)\nWater_body_salinity (sea water salinity, PSU)\nWater_body_salinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nWater_body_salinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nWater_body_salinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BAL_CLIM_TS_V1_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BAL_CLIM_TS_V1_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BAL_CLIM_TS_V1_m/index.json", "???", "https://erddap.ifremer.fr/erddap/rss/SDC_BAL_CLIM_TS_V1_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BAL_CLIM_TS_V1_m&showErrors=false&email=", "SeaDataNet", "SDC_BAL_CLIM_TS_V1_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V1_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V1_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BAL_CLIM_TS_V1_s/request", "", "public", "SDC_BalticSea_Climatology_TS_V1_seasonal", "The SDC_BAL_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for Baltic Sea including the seasonal and monthly fields for period 1955-2014 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Baltic Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (sea water temperature, degree_C)\nITS_90_water_temperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nITS_90_water_temperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nITS_90_water_temperature_relerr (Relative error of sea water temperature, 1)\nWater_body_salinity (sea water salinity, PSU)\nWater_body_salinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nWater_body_salinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nWater_body_salinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BAL_CLIM_TS_V1_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BAL_CLIM_TS_V1_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BAL_CLIM_TS_V1_s/index.json", "https://doi.org/10.13155/57039", "https://erddap.ifremer.fr/erddap/rss/SDC_BAL_CLIM_TS_V1_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BAL_CLIM_TS_V1_s&showErrors=false&email=", "SeaDataNet", "SDC_BAL_CLIM_TS_V1_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V2_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V2_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BAL_CLIM_TS_V2_m/request", "", "public", "SDC_BalticSea_Climatology_TS_V2_monthly", "The SDC_BAL_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for Baltic Sea including the seasonal and monthly fields for period 1955-2014 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Baltic Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (sea water temperature, 1e-3)\nITS_90_water_temperature_L1 (sea water temperature masked using relative error threshold 0.3, 1e-3)\nITS_90_water_temperature_L2 (sea water temperature masked using relative error threshold 0.5, 1e-3)\nITS_90_water_temperature_relerr (Relative error of sea water temperature, 1)\nWater_body_salinity (sea water salinity, PSU)\nWater_body_salinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nWater_body_salinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nWater_body_salinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BAL_CLIM_TS_V2_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BAL_CLIM_TS_V2_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BAL_CLIM_TS_V2_m/index.json", "http://dx.doix.org/10.12770/110c8c5a-6655-4a39-a4bd-f0f80f849eeb", "https://erddap.ifremer.fr/erddap/rss/SDC_BAL_CLIM_TS_V2_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BAL_CLIM_TS_V2_m&showErrors=false&email=", "SeaDataNet", "SDC_BAL_CLIM_TS_V2_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V2_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BAL_CLIM_TS_V2_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BAL_CLIM_TS_V2_s/request", "", "public", "SDC_BalticSea_Climatology_TS_V2_seasonal", "The SDC_BAL_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for Baltic Sea including the seasonal and monthly fields for period 1955-2014 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Baltic Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (sea water temperature, 1e-3)\nITS_90_water_temperature_L1 (sea water temperature masked using relative error threshold 0.3, 1e-3)\nITS_90_water_temperature_L2 (sea water temperature masked using relative error threshold 0.5, 1e-3)\nITS_90_water_temperature_relerr (Relative error of sea water temperature, 1)\nWater_body_salinity (sea water salinity, PSU)\nWater_body_salinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nWater_body_salinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nWater_body_salinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BAL_CLIM_TS_V2_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BAL_CLIM_TS_V2_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BAL_CLIM_TS_V2_s/index.json", "http://dx.doix.org/10.12770/110c8c5a-6655-4a39-a4bd-f0f80f849eeb", "https://erddap.ifremer.fr/erddap/rss/SDC_BAL_CLIM_TS_V2_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BAL_CLIM_TS_V2_s&showErrors=false&email=", "SeaDataNet", "SDC_BAL_CLIM_TS_V2_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V1_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V1_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BLS_CLIM_TS_V1_m/request", "", "public", "SDC_BlackSea_Climatology_TS_V1_monthly", "The SDC_BLS_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for Black Sea including the seasonal and monthly fields for period 1955-2017 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Black Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (1e-3)\nITS_90_water_temperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, 1e-3)\nITS_90_water_temperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, 1e-3)\nITS_90_water_temperature_relerr (Relative error of ITS-90 water temperature, 1)\nWater_body_salinity (1e-3)\nWater_body_salinity_L1 (Water_body_salinity masked using relative error threshold 0.3, 1e-3)\nWater_body_salinity_L2 (Water_body_salinity masked using relative error threshold 0.5, 1e-3)\nWater_body_salinity_relerr (Relative error of Water_body_salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_CLIM_TS_V1_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_CLIM_TS_V1_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_CLIM_TS_V1_m/index.json", "https://dx.doi.org/10.12770/ad2d0efc-7191-4949-8092-796397106290", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_CLIM_TS_V1_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_CLIM_TS_V1_m&showErrors=false&email=", "SeaDataNet", "SDC_BLS_CLIM_TS_V1_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V1_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V1_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BLS_CLIM_TS_V1_s/request", "", "public", "SDC_BlackSea_Climatology_TS_V1_seasonal", "The SDC_BLS_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for Black Sea including the seasonal and monthly fields for period 1955-2017 and seasonal fields for 6 decades starting from 1955 to 2014. The climatic fields were computed from the integrated Black Sea dataset that combines data extracted from the 3 major sources: 1) SeaDataNet infrastructure, 2) World Ocean Database 2018, and 3) Coriolis Ocean Dataset for Reanalysis. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.3.1.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nITS_90_water_temperature (1e-3)\nITS_90_water_temperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, 1e-3)\nITS_90_water_temperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, 1e-3)\nITS_90_water_temperature_relerr (Relative error of ITS-90 water temperature, 1)\nWater_body_salinity (1e-3)\nWater_body_salinity_L1 (Water_body_salinity masked using relative error threshold 0.3, 1e-3)\nWater_body_salinity_L2 (Water_body_salinity masked using relative error threshold 0.5, 1e-3)\nWater_body_salinity_relerr (Relative error of Water_body_salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_CLIM_TS_V1_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_CLIM_TS_V1_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_CLIM_TS_V1_s/index.json", "https://dx.doi.org/10.12770/ad2d0efc-7191-4949-8092-796397106290", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_CLIM_TS_V1_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_CLIM_TS_V1_s&showErrors=false&email=", "SeaDataNet", "SDC_BLS_CLIM_TS_V1_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V2_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V2_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BLS_CLIM_TS_V2_m/request", "", "public", "SDC_BlackSea_Climatology_TS_V2_monthly", "The SDC_BLS_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for Black Sea \n including the seasonal and monthly fields for period 1955-2019 and 2 subperiods, and the annual and seasonal fields \n for 6 decades starting from 1955 to 2019. The climatic fields were computed from the integrated Black Sea \n dataset that combines data extracted from the 3 major sources: \n 1) SeaDataNet infrastructure, 2) World Ocean Database, and 3) Coriolis Ocean Dataset for Reanalysis. \n The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.6.4.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature, 1e-3)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, 1e-3)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, 1e-3)\nTemperature_relerr (Relative error of ITS-90 water temperature, 1)\nSalinity (Water_body_salinity, 1e-3)\nSalinity_L1 (Water_body_salinity masked using relative error threshold 0.3, 1e-3)\nSalinity_L2 (Water_body_salinity masked using relative error threshold 0.5, 1e-3)\nSalinity_relerr (Relative error of Water_body_salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_CLIM_TS_V2_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_CLIM_TS_V2_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_CLIM_TS_V2_m/index.json", "https://doi.org/10.12770/847f1627-f39f-40af-b3b0-a2f6d29ff4dc", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_CLIM_TS_V2_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_CLIM_TS_V2_m&showErrors=false&email=", "SeaDataNet", "SDC_BLS_CLIM_TS_V2_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V2_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_BLS_CLIM_TS_V2_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_BLS_CLIM_TS_V2_s/request", "", "public", "SDC_BlackSea_Climatology_TS_V2_seasonal", "The SDC_BLS_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for Black Sea \n including the seasonal and monthly fields for period 1955-2019 and 2 subperiods, and the annual and seasonal fields \n for 6 decades starting from 1955 to 2019. The climatic fields were computed from the integrated Black Sea \n dataset that combines data extracted from the 3 major sources: \n 1) SeaDataNet infrastructure, 2) World Ocean Database, and 3) Coriolis Ocean Dataset for Reanalysis. \n The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions), version 2.6.4.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature, 1e-3)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, 1e-3)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, 1e-3)\nTemperature_relerr (Relative error of ITS-90 water temperature, 1)\nSalinity (Water_body_salinity, 1e-3)\nSalinity_L1 (Water_body_salinity masked using relative error threshold 0.3, 1e-3)\nSalinity_L2 (Water_body_salinity masked using relative error threshold 0.5, 1e-3)\nSalinity_relerr (Relative error of Water_body_salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_CLIM_TS_V2_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_CLIM_TS_V2_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_CLIM_TS_V2_s/index.json", "https://doi.org/10.12770/847f1627-f39f-40af-b3b0-a2f6d29ff4dc", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_CLIM_TS_V2_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_CLIM_TS_V2_s&showErrors=false&email=", "SeaDataNet", "SDC_BLS_CLIM_TS_V2_s"], + ["", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_DATA_TS_V1.subset", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_DATA_TS_V1", "https://erddap.ifremer.fr/erddap/tabledap/SDC_BLS_DATA_TS_V1.graph", "", "", "public", "SDC_BlackSea_Collection_TS_V1", "Ocean Data View (ODV) Network Common Data Format (NetCDF) Export File V2.0. Data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\ntime (Decimal Gregorian Days of the station, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nCruise\nData_set_name\nDiscipline\nCategory\nVariables_measured\nData_format\nData_format_version\nData_size\nData_set_creation_date\nDatum\nMeasuring_area_type\nStation\nWater_depth (m)\nDepth_reference\nMinimum_instrument_depth (m)\nMaximum_instrument_depth (m)\nStart_date\nStart_time\nEnd_date\nEnd_time\nVertical_resolution\nVertical_resolution_unit\nType\n... (37 more variables)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_BLS_DATA_TS_V1_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_BLS_DATA_TS_V1_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_BLS_DATA_TS_V1/index.json", "https://www.seadatanet.org/Products", "https://erddap.ifremer.fr/erddap/rss/SDC_BLS_DATA_TS_V1.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_BLS_DATA_TS_V1&showErrors=false&email=", "SeaDataNet", "SDC_BLS_DATA_TS_V1"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V1_1", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V1_1.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_GLO_CLIM_TS_V1_1/request", "", "public", "SDC_GlobalOcean_Climatology_TS_V1_1", "SDC_GLO_CLIM_T_1900-2017_025_January_V1_1 product contains Temperature Climatologies for Global Ocean for period 1900-2017. The climatic fields were computed from World Ocean Database 2013 data set. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis), version 2.3.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_GLO_CLIM_TS_V1_1_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_GLO_CLIM_TS_V1_1_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_GLO_CLIM_TS_V1_1/index.json", "https://dx.doi.org/doi_of_doc", "https://erddap.ifremer.fr/erddap/rss/SDC_GLO_CLIM_TS_V1_1.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_GLO_CLIM_TS_V1_1&showErrors=false&email=", "SeaDataNet", "SDC_GLO_CLIM_TS_V1_1"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V1_2", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V1_2.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_GLO_CLIM_TS_V1_2/request", "", "public", "SDC_GlobalOcean_Climatology_TS_V1_2", "SDC_GLO_CLIM_T_2003-2017_025_January_V1_2 product contains Temperature Climatologies for Global Ocean for period 2003-2017. The climatic fields were computed from World Ocean Database 2013 data set. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis), version 2.3.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_GLO_CLIM_TS_V1_2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_GLO_CLIM_TS_V1_2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_GLO_CLIM_TS_V1_2/index.json", "https://dx.doi.org/doi_of_doc", "https://erddap.ifremer.fr/erddap/rss/SDC_GLO_CLIM_TS_V1_2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_GLO_CLIM_TS_V1_2&showErrors=false&email=", "SeaDataNet", "SDC_GLO_CLIM_TS_V1_2"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_1", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_1.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_GLO_CLIM_TS_V2_1/request", "", "public", "SDC_GlobalOcean_Climatology_TS_V2_1", "SDC_GLO_CLIM_T_1900-2017_025_V2_1 product contains Temperature Climatologies for Global Ocean for period 1900-2017. The climatic fields were computed from World Ocean Database 2013 data set. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis), version 2.3.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_GLO_CLIM_TS_V2_1_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_GLO_CLIM_TS_V2_1_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_GLO_CLIM_TS_V2_1/index.json", "http://dx.doix.org/10.12770/98d22ac0-5398-4889-8f8e-8f28273b548b", "https://erddap.ifremer.fr/erddap/rss/SDC_GLO_CLIM_TS_V2_1.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_GLO_CLIM_TS_V2_1&showErrors=false&email=", "SeaDataNet", "SDC_GLO_CLIM_TS_V2_1"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_2", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_2.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_GLO_CLIM_TS_V2_2/request", "", "public", "SDC_GlobalOcean_Climatology_TS_V2_2", "SDC_GLO_CLIM_T_2003-2017_025_V2_2 product contains Temperature Climatologies for Global Ocean for period 2003-2017. The climatic fields were computed from World Ocean Database 2013 data set. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis), version 2.3.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_GLO_CLIM_TS_V2_2_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_GLO_CLIM_TS_V2_2_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_GLO_CLIM_TS_V2_2/index.json", "http://dx.doix.org/10.12770/98d22ac0-5398-4889-8f8e-8f28273b548b", "https://erddap.ifremer.fr/erddap/rss/SDC_GLO_CLIM_TS_V2_2.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_GLO_CLIM_TS_V2_2&showErrors=false&email=", "SeaDataNet", "SDC_GLO_CLIM_TS_V2_2"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V1_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V1_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V1_m/request", "", "public", "SDC_MedSea_Climatology_TS_V1_monthly", "SDC_MED_CLIM_TS_V1 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature, degree_C)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of ITS-90 water temperature, 1)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V1_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V1_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V1_m/index.json", "https://doi.org/10.13155/57036", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V1_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V1_m&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V1_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V1_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V1_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V1_s/request", "", "public", "SDC_MedSea_Climatology_TS_V1_seasonal", "SDC_MED_CLIM_TS_V1 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature, degree_C)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of ITS-90 water temperature, 1)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V1_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V1_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V1_s/index.json", "https://doi.org/10.13155/57036", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V1_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V1_s&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V1_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_m_pre_post_emt", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_m_pre_post_emt.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V2_m_pre_post_emt/request", "", "public", "SDC_MedSea_Climatology_TS_V2_monthly_pre_post_east_mediterranean_transient", "SDC_MED_CLIM_TS_V2 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (Sea Water In Situ Temperature, degree_C)\nTemperature_L1 (Sea Water In Situ Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Sea Water In Situ Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Sea Water In Situ Temperature, 1)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V2_m_pre_post_emt_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V2_m_pre_post_emt_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V2_m_pre_post_emt/index.json", "https://doi.org/10.12770/ad07a55f-5de7-4abc-ba89-8899b16c4b59", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V2_m_pre_post_emt.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V2_m_pre_post_emt&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V2_m_pre_post_emt"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_m_whole_period", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_m_whole_period.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V2_m_whole_period/request", "", "public", "SDC_MedSea_Climatology_TS_V2_monthly_whole_period", "SDC_MED_CLIM_TS_V2 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (Sea Water In Situ Temperature, degree_C)\nTemperature_L1 (Sea Water In Situ Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Sea Water In Situ Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Sea Water In Situ Temperature, 1)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V2_m_whole_period_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V2_m_whole_period_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V2_m_whole_period/index.json", "https://doi.org/10.12770/ad07a55f-5de7-4abc-ba89-8899b16c4b59", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V2_m_whole_period.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V2_m_whole_period&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V2_m_whole_period"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_decades", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_decades.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V2_s_decades/request", "", "public", "SDC_MedSea_Climatology_TS_V2_seasonal_decades", "SDC_MED_CLIM_TS_V2 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5)\nTemperature_relerr (Relative error of ITS-90 water temperature)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V2_s_decades_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V2_s_decades_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V2_s_decades/index.json", "https://doi.org/10.12770/ad07a55f-5de7-4abc-ba89-8899b16c4b59", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V2_s_decades.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V2_s_decades&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V2_s_decades"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_pre_post_emt", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_pre_post_emt.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V2_s_pre_post_emt/request", "", "public", "SDC_MedSea_Climatology_TS_V2_seasonal_pre_post_emt", "SDC_MED_CLIM_TS_V2 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5)\nTemperature_relerr (Relative error of ITS-90 water temperature)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V2_s_pre_post_emt_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V2_s_pre_post_emt_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V2_s_pre_post_emt/index.json", "https://doi.org/10.12770/ad07a55f-5de7-4abc-ba89-8899b16c4b59", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V2_s_pre_post_emt.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V2_s_pre_post_emt&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V2_s_pre_post_emt"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_whole_period", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_MED_CLIM_TS_V2_s_whole_period.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_MED_CLIM_TS_V2_s_whole_period/request", "", "public", "SDC_MedSea_Climatology_TS_V2_seasonal_whole_period", "SDC_MED_CLIM_TS_V2 product contains Temperature and Salinity climatological fields for the Mediterranean Sea computed from SeaDataNet infrastructure and CORA (Coriolis Ocean dataset for ReAnalysis) integrated dataset. The computation was done with the DIVAnd (Data-Interpolating Variational Analysis in n dimensions) version 2.4.0\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (ITS-90 water temperature)\nTemperature_L1 (ITS-90 water temperature masked using relative error threshold 0.3)\nTemperature_L2 (ITS-90 water temperature masked using relative error threshold 0.5)\nTemperature_relerr (Relative error of ITS-90 water temperature)\nSalinity (Water body salinity, PSU)\nSalinity_L1 (Water body salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Water body salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Water body salinity, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_MED_CLIM_TS_V2_s_whole_period_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_MED_CLIM_TS_V2_s_whole_period_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_MED_CLIM_TS_V2_s_whole_period/index.json", "https://doi.org/10.12770/ad07a55f-5de7-4abc-ba89-8899b16c4b59", "https://erddap.ifremer.fr/erddap/rss/SDC_MED_CLIM_TS_V2_s_whole_period.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_MED_CLIM_TS_V2_s_whole_period&showErrors=false&email=", "SeaDataNet", "SDC_MED_CLIM_TS_V2_s_whole_period"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_025_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_025_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V1_025_m/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V1_025_monthly", "The SDC_NAT_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1955-2015 and seasonal fields for 6 decades starting from 1955 to 2015. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (degree_C)\nTemperature_err (Error standard deviation of Temperature, degree_C)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, per mille)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, per mille)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, per mille)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V1_025_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V1_025_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V1_025_m/index.json", "https://doi.org/10.13155/57037", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V1_025_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V1_025_m&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V1_025_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_025_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_025_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V1_025_s/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V1_025_seasonal", "The SDC_NAT_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1955-2015 and seasonal fields for 6 decades starting from 1955 to 2015. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (degree_C)\nTemperature_err (Error standard deviation of Temperature, degree_C)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, per mille)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, per mille)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, per mille)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V1_025_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V1_025_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V1_025_s/index.json", "https://doi.org/10.13155/57037", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V1_025_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V1_025_s&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V1_025_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_050_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_050_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V1_050_m/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V1_050_monthly", "The SDC_NAT_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1955-2015 and seasonal fields for 6 decades starting from 1955 to 2015. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (degree_C)\nTemperature_err (Error standard deviation of Temperature, degree_C)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, per mille)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, per mille)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, per mille)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V1_050_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V1_050_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V1_050_m/index.json", "https://doi.org/10.13155/57037", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V1_050_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V1_050_m&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V1_050_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_050_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V1_050_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V1_050_s/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V1_050_seasonal", "The SDC_NAT_CLIM_TS_V1 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1955-2015 and seasonal fields for 6 decades starting from 1955 to 2015. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (degree_C)\nTemperature_err (Error standard deviation of Temperature, degree_C)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, per mille)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, per mille)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, per mille)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V1_050_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V1_050_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V1_050_s/index.json", "https://doi.org/10.13155/57037", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V1_050_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V1_050_s&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V1_050_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V2_050_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V2_050_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V2_050_m/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V2_050_monthly", "The SDC_NAT_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1950-2019 and seasonal fields for 6 decades starting from 1950 to 2019. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, 1e-3)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, 1e-3)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, 1e-3)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (PSU)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V2_050_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V2_050_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V2_050_m/index.json", "https://doi.org/10.12770/1b6d60ea-8b08-44df-8f47-671b32d9d580", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V2_050_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V2_050_m&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V2_050_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V2_050_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NAT_CLIM_TS_V2_050_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NAT_CLIM_TS_V2_050_s/request", "", "public", "SDC_NorthAtlanticOcean_Climatology_TS_V2_050_seasonal", "The SDC_NAT_CLIM_TS_V2 product contains Temperature and Salinity Climatologies for the North Atlantic Ocean including the seasonal and monthly fields for period 1950-2019 and seasonal fields for 6 decades starting from 1950 to 2019. Two resolutions have been processed : 1/2\u00c2\u00b0 and 1/4\u00c2\u00b0. The climatic fields were computed from the integrated North Atlantic Ocean dataset that combines data extracted from the 2 major sources: SeaDataNet infrastructure and Coriolis Ocean Dataset for Reanalysis (CORA). The computation was done with the DIVA software, version 4.7.2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, 1e-3)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, 1e-3)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, 1e-3)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (PSU)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of Salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NAT_CLIM_TS_V2_050_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NAT_CLIM_TS_V2_050_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NAT_CLIM_TS_V2_050_s/index.json", "https://doi.org/10.12770/1b6d60ea-8b08-44df-8f47-671b32d9d580", "https://erddap.ifremer.fr/erddap/rss/SDC_NAT_CLIM_TS_V2_050_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NAT_CLIM_TS_V2_050_s&showErrors=false&email=", "SeaDataNet", "SDC_NAT_CLIM_TS_V2_050_s"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NS_CLIM_TS_V1_m", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NS_CLIM_TS_V1_m.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NS_CLIM_TS_V1_m/request", "", "public", "SDC_NorthSea_Climatology_TS_V1_monthly", "Merged dataset. Royal Belgian Institute of Natural Sciences, Operational Directorate Natural Environment, Belgian Marine Data Centre data from a local source.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NS_CLIM_TS_V1_m_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NS_CLIM_TS_V1_m_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NS_CLIM_TS_V1_m/index.json", "https://doi.org/10.13155/57330", "https://erddap.ifremer.fr/erddap/rss/SDC_NS_CLIM_TS_V1_m.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NS_CLIM_TS_V1_m&showErrors=false&email=", "SeaDataNet", "SDC_NS_CLIM_TS_V1_m"], + ["https://erddap.ifremer.fr/erddap/griddap/SDC_NS_CLIM_TS_V1_s", "", "", "https://erddap.ifremer.fr/erddap/griddap/SDC_NS_CLIM_TS_V1_s.graph", "https://erddap.ifremer.fr/erddap/wms/SDC_NS_CLIM_TS_V1_s/request", "", "public", "SDC_NorthSea_Climatology_TS_V1_seasonal", "Merged dataset. Royal Belgian Institute of Natural Sciences, Operational Directorate Natural Environment, Belgian Marine Data Centre data from a local source.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTemperature (sea water temperature, degree_C)\nTemperature_L1 (sea water temperature masked using relative error threshold 0.3, degree_C)\nTemperature_L2 (sea water temperature masked using relative error threshold 0.5, degree_C)\nTemperature_relerr (Relative error of sea water temperature, 1)\nSalinity (sea water salinity, PSU)\nSalinity_L1 (sea water salinity masked using relative error threshold 0.3, PSU)\nSalinity_L2 (sea water salinity masked using relative error threshold 0.5, PSU)\nSalinity_relerr (Relative error of sea water salinity, 1)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/SDC_NS_CLIM_TS_V1_s_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/SDC_NS_CLIM_TS_V1_s_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/SDC_NS_CLIM_TS_V1_s/index.json", "https://doi.org/10.13155/57330", "https://erddap.ifremer.fr/erddap/rss/SDC_NS_CLIM_TS_V1_s.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDC_NS_CLIM_TS_V1_s&showErrors=false&email=", "SeaDataNet", "SDC_NS_CLIM_TS_V1_s"], + ["https://erddap.ifremer.fr/erddap/griddap/gebco2021", "", "", "https://erddap.ifremer.fr/erddap/griddap/gebco2021.graph", "", "", "public", "The GEBCO_2021 Grid, a continuous terrain model for oceans and land at 15 arc-second intervals", "The GEBCO_2021 Grid - a continuous terrain model for oceans and land at 15 arc-second intervals. The GEBCO_2021 Grid is a continuous, global terrain model for ocean and land with a spatial resolution of 15 arc seconds.The grid uses as a 'base-map' Version 2.2 of the SRTM15+ data set (Tozer et al, 2019). This data set is a fusion of land topography with measured and estimated seafloor topography. It is augmented with gridded bathymetric data sets developed as part of the Nippon Foundation-GEBCO Seabed 2030 Project.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelevation (Elevation relative to sea level, m)\n", "https://erddap.ifremer.fr/erddap/metadata/fgdc/xml/gebco2021_fgdc.xml", "https://erddap.ifremer.fr/erddap/metadata/iso19115/xml/gebco2021_iso19115.xml", "https://erddap.ifremer.fr/erddap/info/gebco2021/index.json", "https://www.gebco.net", "https://erddap.ifremer.fr/erddap/rss/gebco2021.rss", "https://erddap.ifremer.fr/erddap/subscriptions/add.html?datasetID=gebco2021&showErrors=false&email=", "GEBCO, BODC .", "gebco2021"] + ] + } +} diff --git a/argopy/tests/test_data/33acf641a9eba548ad0d2b929d92f3f61beb2aec7cf942be1d1f75c5026365a8.ncHeader b/argopy/tests/test_data/33acf641a9eba548ad0d2b929d92f3f61beb2aec7cf942be1d1f75c5026365a8.ncHeader new file mode 100644 index 00000000..e23fdda1 --- /dev/null +++ b/argopy/tests/test_data/33acf641a9eba548ad0d2b929d92f3f61beb2aec7cf942be1d1f75c5026365a8.ncHeader @@ -0,0 +1,438 @@ +netcdf ArgoFloats-synthetic-BGC_f6c4_1f61_132d.nc { + dimensions: + row = 16486; + bbp700_adjusted_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + float bbp700_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.475482E-5f, 0.01296046f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.950965E-6f, 0.002592091f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=16486, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.04015f, 4.0661f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=16486, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=16486); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 0, 65; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660_adjusted(row=16486); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=16486); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=16486, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=16486); + :_FillValue = 99999; // int + :actual_range = 0, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=16486, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.5832065f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01166413f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=16486, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 1.075224f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02150448f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=16486, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.310853f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02621705f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=16486, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1408.257f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 70.41285f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=16486, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy_adjusted(row=16486); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=16486); + :actual_range = 2.644278f, 99999.0f; // float + + char doxy_adjusted_qc(row=16486, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=16486); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.00095666666667, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=16486); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.999, -47.00874350000001; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate_adjusted(row=16486); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=16486); + :actual_range = 0.7363588f, 99999.0f; // float + + char nitrate_adjusted_qc(row=16486, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total_adjusted(row=16486); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=16486); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=16486, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=16486, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=16486); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -7.4505806E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=16486, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 35.02467f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 1.046394f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=16486, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 12.905f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=16486); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=16486, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=16486); + :_CoordinateAxisType = "Time"; + :actual_range = 1.063557316224E9, 1.72658856E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=16486); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.00874350000001; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.00095666666667; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.00874350000001; // double + :geospatial_lon_min = -54.999; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:57Z (local files) +2024-09-25T05:50:57Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres_adjusted%3E=0&pres_adjusted%3C=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.00095666666667; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-17T15:56:00Z"; + :time_coverage_start = "2003-09-14T16:35:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.999; // double +} diff --git a/argopy/tests/test_data/33e947c1d24507fd7f92858e2716362f171d6867398fc893ce46f1cfa8a41973.nc b/argopy/tests/test_data/33e947c1d24507fd7f92858e2716362f171d6867398fc893ce46f1cfa8a41973.nc new file mode 100644 index 00000000..4169b8c0 Binary files /dev/null and b/argopy/tests/test_data/33e947c1d24507fd7f92858e2716362f171d6867398fc893ce46f1cfa8a41973.nc differ diff --git a/argopy/tests/test_data/3404fc17d902df206ea9c9cb7adac78b68ae3bf3b1473620d6247367f1d9c423.nc b/argopy/tests/test_data/3404fc17d902df206ea9c9cb7adac78b68ae3bf3b1473620d6247367f1d9c423.nc new file mode 100644 index 00000000..b572f74a Binary files /dev/null and b/argopy/tests/test_data/3404fc17d902df206ea9c9cb7adac78b68ae3bf3b1473620d6247367f1d9c423.nc differ diff --git a/argopy/tests/test_data/34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6.nc b/argopy/tests/test_data/34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6.nc new file mode 100644 index 00000000..621bef49 Binary files /dev/null and b/argopy/tests/test_data/34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6.nc differ diff --git a/argopy/tests/test_data/36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a.json b/argopy/tests/test_data/36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a.json new file mode 100644 index 00000000..27bde1ff --- /dev/null +++ b/argopy/tests/test_data/36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a.json @@ -0,0 +1,1136 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/", + "pav:authoredOn": "2023-11-24 09:35:13.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP_CNDC", + "skos:altLabel": "", + "dc:date": "2023-11-24 09:35:13.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature sensor for conductivity on a CTD" + }, + "dc:identifier": "SDN:R25::CTD_TEMP_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Specific temperature sensor used with conductivity to calculate salinity on a CTD" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/1/" + }, + "dce:identifier": "SDN:R25::FLUOROMETER_CHLA", + "pav:version": "1", + "skos:notation": "SDN:R25::FLUOROMETER_CHLA", + "skos:altLabel": "FLUOROMETER_CHLA", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CHLA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring chlorophyll-a concentration" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/1/" + }, + "dce:identifier": "SDN:R25::EM", + "pav:version": "1", + "skos:notation": "SDN:R25::EM", + "skos:altLabel": "EM", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Electromagnetic sensor" + }, + "dc:identifier": "SDN:R25::EM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Electromagnetic sensor package measuring velocity and turbulence" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "skos:altLabel": "BACKSCATTERINGMETER_BBP470", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nanometers" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP470", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 470 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "skos:altLabel": "BACKSCATTERINGMETER_BBP700", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nanometers" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP700", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 700 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/1/" + }, + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "pav:version": "1", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "skos:altLabel": "SPECTROPHOTOMETER_BISULFIDE", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_BISULFIDE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring bisulfide concentration" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/1/" + }, + "dce:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "pav:version": "1", + "skos:notation": "SDN:R25::FLOATCLOCK_MTIME", + "skos:altLabel": "FLOATCLOCK_MTIME", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Clock on float measuring time" + }, + "dc:identifier": "SDN:R25::FLOATCLOCK_MTIME", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/1/" + }, + "dce:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "pav:version": "1", + "skos:notation": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "skos:altLabel": "SPECTROPHOTOMETER_NITRATE", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate" + }, + "dc:identifier": "SDN:R25::SPECTROPHOTOMETER_NITRATE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spectrophotometer measuring nitrate concentration" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/1/" + }, + "dce:identifier": "SDN:R25::IDO_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::IDO_DOXY", + "skos:altLabel": "IDO_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Integrated Dissolved Oxygen (IDO) sensor measuring dissolved oxygen" + }, + "dc:identifier": "SDN:R25::IDO_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A type of electrochemical dissolved oxygen sensor called Integrated Dissolved Oxygen (IDO)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR490", + "skos:altLabel": "RADIOMETER_DOWN_IRR490", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 490 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/1/" + }, + "dce:identifier": "SDN:R25::CTD_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_CNDC", + "skos:altLabel": "CTD_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "dc:identifier": "SDN:R25::CTD_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring conductivity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:altLabel": "ACOUSTIC_GEOLOCATION", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor measuring geolocation" + }, + "dc:identifier": "SDN:R25::ACOUSTIC_GEOLOCATION", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor for geolocation" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/1/" + }, + "dce:identifier": "SDN:R25::ACOUSTIC", + "pav:version": "1", + "skos:notation": "SDN:R25::ACOUSTIC", + "skos:altLabel": "ACOUSTIC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "dc:identifier": "SDN:R25::ACOUSTIC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Acoustic sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/1/" + }, + "dce:identifier": "SDN:R25::STS_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_TEMP", + "skos:altLabel": "STS_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "dc:identifier": "SDN:R25::STS_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring temperature" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "skos:altLabel": "BACKSCATTERINGMETER_TURBIDITY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_TURBIDITY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring turbidity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD412", + "skos:altLabel": "RADIOMETER_UP_RAD412", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD412", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 412 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/1/" + }, + "dce:identifier": "SDN:R25::TRANSISTOR_PH", + "pav:version": "1", + "skos:notation": "SDN:R25::TRANSISTOR_PH", + "skos:altLabel": "TRANSISTOR_PH", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "dc:identifier": "SDN:R25::TRANSISTOR_PH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transistor measuring pH" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/1/" + }, + "dce:identifier": "SDN:R25::FLUOROMETER_CDOM", + "pav:version": "1", + "skos:notation": "SDN:R25::FLUOROMETER_CDOM", + "skos:altLabel": "FLUOROMETER_CDOM", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "dc:identifier": "SDN:R25::FLUOROMETER_CDOM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fluorometer measuring Colored Dissolved Organic Matter (CDOM)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR443", + "skos:altLabel": "RADIOMETER_DOWN_IRR443", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR443", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 443 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_PAR", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_PAR", + "skos:altLabel": "RADIOMETER_PAR", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "dc:identifier": "SDN:R25::RADIOMETER_PAR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring Photosynthetically Active Radiation (PAR)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/1/" + }, + "dce:identifier": "SDN:R25::CTD_TEMP", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_TEMP", + "skos:altLabel": "CTD_TEMP", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "dc:identifier": "SDN:R25::CTD_TEMP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring temperature" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR412", + "skos:altLabel": "RADIOMETER_DOWN_IRR412", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR412", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 412 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD490", + "skos:altLabel": "RADIOMETER_UP_RAD490", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 490 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/1/" + }, + "dce:identifier": "SDN:R25::STS_CNDC", + "pav:version": "1", + "skos:notation": "SDN:R25::STS_CNDC", + "skos:altLabel": "STS_CNDC", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "dc:identifier": "SDN:R25::STS_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface Temperature and Salinity (STS) sensor measuring conductivity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/1/" + }, + "dce:identifier": "SDN:R25::OPTODE_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R25::OPTODE_DOXY", + "skos:altLabel": "OPTODE_DOXY", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Optode measuring dissolved oxygen" + }, + "dc:identifier": "SDN:R25::OPTODE_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An optical dissolved oxygen sensor, also known as optode" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR555", + "skos:altLabel": "RADIOMETER_DOWN_IRR555", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR555", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 555 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/", + "pav:authoredOn": "2019-10-11 15:06:36.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/1/" + }, + "dce:identifier": "SDN:R25::CTD_PRES", + "pav:version": "1", + "skos:notation": "SDN:R25::CTD_PRES", + "skos:altLabel": "CTD_PRES", + "dc:date": "2019-10-11 15:06:36.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "dc:identifier": "SDN:R25::CTD_PRES", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Conductivity Temperature Depth (CTD) sensors package measuring pressure" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/1/" + }, + "dce:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "pav:version": "1", + "skos:notation": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:altLabel": "TRANSMISSOMETER_CP660", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nanometers" + }, + "dc:identifier": "SDN:R25::TRANSMISSOMETER_CP660", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmissometer measuring attenuation at 660 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/1/" + }, + "dce:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "pav:version": "1", + "skos:notation": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "skos:altLabel": "BACKSCATTERINGMETER_BBP532", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nanometers" + }, + "dc:identifier": "SDN:R25::BACKSCATTERINGMETER_BBP532", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Backscattering meter measuring backscattering at 532 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD555", + "skos:altLabel": "RADIOMETER_UP_RAD555", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD555", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 555 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_UP_RAD443", + "skos:altLabel": "RADIOMETER_UP_RAD443", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_UP_RAD443", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring upwelling radiance at 443 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/", + "pav:authoredOn": "2021-02-09 15:34:44.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/1/" + }, + "dce:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "pav:version": "1", + "skos:notation": "SDN:R25::RADIOMETER_DOWN_IRR380", + "skos:altLabel": "RADIOMETER_DOWN_IRR380", + "dc:date": "2021-02-09 15:34:44.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nanometers" + }, + "dc:identifier": "SDN:R25::RADIOMETER_DOWN_IRR380", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Radiometer measuring downwelling irradiance at 380 nm wavelength" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLOATCLOCK_MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/IDO_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC_GEOLOCATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/ACOUSTIC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSISTOR_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/FLUOROMETER_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/STS_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/OPTODE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/CTD_PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/TRANSMISSOMETER_CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/BACKSCATTERINGMETER_BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_DOWN_IRR380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R25/current/RADIOMETER_UP_RAD443/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing sensor types mounted on Argo floats. Argo netCDF variable SENSOR is populated by R25 altLabel.", + "dc:title": "Argo sensor types", + "skos:prefLabel": "Argo sensor types", + "owl:versionInfo": "3", + "dc:date": "2023-11-25 02:00:04.0", + "skos:altLabel": "SENSOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "SENSOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R25" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/3795115e1bc0e253b8ef101a54a0d9c1b31ebfb22447701720b5ddba56e67eb7.ncHeader b/argopy/tests/test_data/3795115e1bc0e253b8ef101a54a0d9c1b31ebfb22447701720b5ddba56e67eb7.ncHeader new file mode 100644 index 00000000..ecdf460e --- /dev/null +++ b/argopy/tests/test_data/3795115e1bc0e253b8ef101a54a0d9c1b31ebfb22447701720b5ddba56e67eb7.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_5d4c_7cde_337a.nc { + dimensions: + row = 22799; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 209; + variables: + int config_mission_number(row=22799); + :_FillValue = 99999; // int + :actual_range = 1, 21; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=22799); + :_FillValue = 99999; // int + :actual_range = 0, 326; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=22799, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=22799, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=22799); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 3.2E-4, 1.0; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=22799); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -19.996963333333333, -16.009000000000015; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=22799, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=22799, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=22799); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 100.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = -1.1f, 100.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 2.001f, 5.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=22799, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=22799, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 41.972f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 18.3306f, 36.8f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.08984f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=22799, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=22799, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 14.222f, 30.476f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 14.222f, 30.476f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=22799); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=22799, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=22799, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=22799); + :_CoordinateAxisType = "Time"; + :actual_range = 8.7020658E8, 1.725663563E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=22799, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=22799, vertical_sampling_scheme_strlen=209); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -16.009000000000015; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 1.0; // double + :geospatial_lat_min = 3.2E-4; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -16.009000000000015; // double + :geospatial_lon_min = -19.996963333333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:07Z (local files) +2024-09-24T08:52:07Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres%3E=0&pres%3C=100.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 1.0; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 3.2E-4; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2024-09-06T22:59:23Z"; + :time_coverage_start = "1997-07-29T20:03:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -19.996963333333333; // double +} diff --git a/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc b/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc new file mode 100644 index 00000000..0f8d3798 Binary files /dev/null and b/argopy/tests/test_data/37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a.nc differ diff --git a/argopy/tests/test_data/38afb063c3e76deda3f018e527c0d657fb61d562ae06280a4d135ef77dcf8517.ncHeader b/argopy/tests/test_data/38afb063c3e76deda3f018e527c0d657fb61d562ae06280a4d135ef77dcf8517.ncHeader new file mode 100644 index 00000000..f684d351 --- /dev/null +++ b/argopy/tests/test_data/38afb063c3e76deda3f018e527c0d657fb61d562ae06280a4d135ef77dcf8517.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_24e3_6697_30c1.nc { + dimensions: + row = 109; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=109); + :_FillValue = 99999; // int + :actual_range = 2, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=109); + :_FillValue = 99999; // int + :actual_range = 34, 34; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=109, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=109, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=109); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 18.983, 18.983; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=109); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -58.11900000000003, -58.11900000000003; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=109, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=109, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=109); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2007.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2007.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=109, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=109, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 34.89f, 37.463f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 34.89f, 37.463f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=109, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=109, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.644f, 27.266f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 3.644f, 27.266f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=109); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=109, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=109, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=109); + :_CoordinateAxisType = "Time"; + :actual_range = 1.51375308E9, 1.51375308E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=109, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=109, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -58.11900000000003; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 18.983; // double + :geospatial_lat_min = 18.983; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -58.11900000000003; // double + :geospatial_lon_min = -58.11900000000003; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:44Z (local files) +2024-09-24T08:52:44Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%226902746%22&cycle_number=~%2234%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 18.983; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 18.983; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2017-12-20T06:58:00Z"; + :time_coverage_start = "2017-12-20T06:58:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -58.11900000000003; // double +} diff --git a/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json b/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json new file mode 100644 index 00000000..982930f9 --- /dev/null +++ b/argopy/tests/test_data/39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009.json @@ -0,0 +1,1006 @@ +{ + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "_NCProperties", "String", "version=2,netcdf=4.8.1,hdf5=1.10.8"], + ["attribute", "NC_GLOBAL", "cdm_altitude_proxy", "String", "pres"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TrajectoryProfile"], + ["attribute", "NC_GLOBAL", "cdm_profile_variables", "String", "cycle_number, latitude, longitude, time"], + ["attribute", "NC_GLOBAL", "cdm_trajectory_variables", "String", "platform_number"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "Argo"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "http://www.argodatamgt.org/Documentation"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "181.706"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TrajectoryProfile"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "82.99017"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-99.999"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "181.706"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-999.999"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile))"], + ["attribute", "NC_GLOBAL", "id", "String", "https://doi.org/10.17882/42182"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.argodatamgt.org/Documentation"], + ["attribute", "NC_GLOBAL", "institution", "String", "Argo"], + ["attribute", "NC_GLOBAL", "keywords", "String", "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "82.99017"], + ["attribute", "NC_GLOBAL", "references", "String", "http://www.argodatamgt.org/Documentation"], + ["attribute", "NC_GLOBAL", "software_version", "String", "1.18 (version 11.01.2024 for ARGO_simplified_profile)"], + ["attribute", "NC_GLOBAL", "source", "String", "Argo float"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-99.999"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v55"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"], + ["attribute", "NC_GLOBAL", "summary", "String", "Argo float synthetic vertical profiles : BGC data"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-5days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2024-09-17T13:26:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2002-09-08T23:02:51Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Argo float synthetic vertical profiles : BGC data"], + ["attribute", "NC_GLOBAL", "user_manual_version", "String", "1.0"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-999.999"], + ["variable", "wmo_inst_type", "", "String", ""], + ["attribute", "wmo_inst_type", "_ChunkSizes", "int", "44, 4"], + ["attribute", "wmo_inst_type", "conventions", "String", "Argo reference table 8"], + ["attribute", "wmo_inst_type", "ioos_category", "String", "Unknown"], + ["attribute", "wmo_inst_type", "long_name", "String", "Coded instrument type"], + ["variable", "data_type", "", "String", ""], + ["attribute", "data_type", "_ChunkSizes", "int", "32"], + ["attribute", "data_type", "conventions", "String", "Argo reference table 1"], + ["attribute", "data_type", "ioos_category", "String", "Unknown"], + ["attribute", "data_type", "long_name", "String", "Data type"], + ["variable", "date_update", "", "double", ""], + ["attribute", "date_update", "_ChunkSizes", "int", "14"], + ["attribute", "date_update", "actual_range", "double", "1.606286282E9, 1.726590709E9"], + ["attribute", "date_update", "ioos_category", "String", "Time"], + ["attribute", "date_update", "long_name", "String", "Date of update of this file"], + ["attribute", "date_update", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "date_update", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "pi_name", "", "String", ""], + ["attribute", "pi_name", "_ChunkSizes", "int", "44, 64"], + ["attribute", "pi_name", "ioos_category", "String", "Identifier"], + ["attribute", "pi_name", "long_name", "String", "Name of the principal investigator"], + ["variable", "bbp470", "", "float", ""], + ["attribute", "bbp470", "_FillValue", "float", "99999.0"], + ["attribute", "bbp470", "actual_range", "float", "-0.004590931, 4.83112"], + ["attribute", "bbp470", "cf_standard_name", "String", "-"], + ["attribute", "bbp470", "long_name", "String", "Particle backscattering at 470 nanometers"], + ["attribute", "bbp470", "sdn_parameter_urn", "String", "SDN:P01::BB117B01"], + ["attribute", "bbp470", "units", "String", "m-1"], + ["attribute", "bbp470", "valid_max", "float", "NaN"], + ["attribute", "bbp470", "valid_min", "float", "NaN"], + ["variable", "bbp470_qc", "", "String", ""], + ["variable", "bbp470_adjusted", "", "float", ""], + ["variable", "bbp470_adjusted_qc", "", "String", ""], + ["variable", "bbp470_adjusted_error", "", "float", ""], + ["variable", "bbp532", "", "float", ""], + ["attribute", "bbp532", "_FillValue", "float", "99999.0"], + ["attribute", "bbp532", "actual_range", "float", "-0.003267109, 234.3274"], + ["attribute", "bbp532", "cf_standard_name", "String", "-"], + ["attribute", "bbp532", "long_name", "String", "Particle backscattering at 532 nanometers"], + ["attribute", "bbp532", "sdn_parameter_urn", "String", "SDN:P01::BB117G01"], + ["attribute", "bbp532", "units", "String", "m-1"], + ["attribute", "bbp532", "valid_max", "float", "NaN"], + ["attribute", "bbp532", "valid_min", "float", "NaN"], + ["variable", "bbp532_qc", "", "String", ""], + ["variable", "bbp532_adjusted", "", "float", ""], + ["attribute", "bbp532_adjusted", "actual_range", "float", "4.364551E-4, 0.04183484"], + ["variable", "bbp532_adjusted_qc", "", "String", ""], + ["variable", "bbp532_adjusted_error", "", "float", ""], + ["variable", "bbp700", "", "float", ""], + ["attribute", "bbp700", "_ChunkSizes", "int", "44, 751"], + ["attribute", "bbp700", "_FillValue", "float", "99999.0"], + ["attribute", "bbp700", "actual_range", "float", "-1.550486E7, 1.146227E33"], + ["attribute", "bbp700", "C_format", "String", "%.7f"], + ["attribute", "bbp700", "cf_standard_name", "String", "-"], + ["attribute", "bbp700", "FORTRAN_format", "String", "F.7"], + ["attribute", "bbp700", "long_name", "String", "Particle backscattering at 700 nanometers"], + ["attribute", "bbp700", "resolution", "float", "1.0E-7"], + ["attribute", "bbp700", "sdn_parameter_urn", "String", "SDN:P01::BB117NIR"], + ["attribute", "bbp700", "units", "String", "m-1"], + ["attribute", "bbp700", "valid_max", "float", "NaN"], + ["attribute", "bbp700", "valid_min", "float", "NaN"], + ["variable", "bbp700_qc", "", "String", ""], + ["attribute", "bbp700_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "bbp700_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "bbp700_qc", "long_name", "String", "quality flag"], + ["variable", "bbp700_adjusted", "", "float", ""], + ["attribute", "bbp700_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "bbp700_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "bbp700_adjusted", "actual_range", "float", "-0.004745516, 2.202253"], + ["attribute", "bbp700_adjusted", "C_format", "String", "%.7f"], + ["attribute", "bbp700_adjusted", "FORTRAN_format", "String", "F.7"], + ["attribute", "bbp700_adjusted", "long_name", "String", "Particle backscattering at 700 nanometers"], + ["attribute", "bbp700_adjusted", "resolution", "float", "1.0E-7"], + ["attribute", "bbp700_adjusted", "units", "String", "m-1"], + ["variable", "bbp700_adjusted_qc", "", "String", ""], + ["attribute", "bbp700_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "bbp700_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "bbp700_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "bbp700_adjusted_error", "", "float", ""], + ["attribute", "bbp700_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "bbp700_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "bbp700_adjusted_error", "actual_range", "float", "4.503E-6, 0.0152778"], + ["attribute", "bbp700_adjusted_error", "C_format", "String", "%.7f"], + ["attribute", "bbp700_adjusted_error", "FORTRAN_format", "String", "F.7"], + ["attribute", "bbp700_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "bbp700_adjusted_error", "resolution", "float", "1.0E-7"], + ["attribute", "bbp700_adjusted_error", "units", "String", "m-1"], + ["variable", "bbp700_2", "", "float", ""], + ["attribute", "bbp700_2", "_FillValue", "float", "99999.0"], + ["attribute", "bbp700_2", "actual_range", "float", "1.624241E-4, 5.602355"], + ["attribute", "bbp700_2", "cf_standard_name", "String", "-"], + ["attribute", "bbp700_2", "long_name", "String", "Particle backscattering at 700 nanometers"], + ["attribute", "bbp700_2", "sdn_parameter_urn", "String", "SDN:P01::BB117NIR"], + ["attribute", "bbp700_2", "units", "String", "m-1"], + ["attribute", "bbp700_2", "valid_max", "float", "NaN"], + ["attribute", "bbp700_2", "valid_min", "float", "NaN"], + ["variable", "bbp700_2_qc", "", "String", ""], + ["variable", "bbp700_2_adjusted", "", "float", ""], + ["variable", "bbp700_2_adjusted_qc", "", "String", ""], + ["variable", "bbp700_2_adjusted_error", "", "float", ""], + ["variable", "bisulfide", "", "float", ""], + ["attribute", "bisulfide", "_FillValue", "float", "99999.0"], + ["attribute", "bisulfide", "actual_range", "float", "-3.086484, 416.9727"], + ["attribute", "bisulfide", "cf_standard_name", "String", "-"], + ["attribute", "bisulfide", "long_name", "String", "Bisulfide"], + ["attribute", "bisulfide", "sdn_parameter_urn", "String", "SDN:P01::H2SXZZ01"], + ["attribute", "bisulfide", "units", "String", "micromole/kg"], + ["attribute", "bisulfide", "valid_max", "float", "NaN"], + ["attribute", "bisulfide", "valid_min", "float", "NaN"], + ["variable", "bisulfide_qc", "", "String", ""], + ["variable", "bisulfide_adjusted", "", "float", ""], + ["variable", "bisulfide_adjusted_qc", "", "String", ""], + ["variable", "bisulfide_adjusted_error", "", "float", ""], + ["variable", "cdom", "", "float", ""], + ["attribute", "cdom", "_ChunkSizes", "int", "44, 751"], + ["attribute", "cdom", "_FillValue", "float", "99999.0"], + ["attribute", "cdom", "actual_range", "float", "-24.8148, 64808.86"], + ["attribute", "cdom", "C_format", "String", "%.3f"], + ["attribute", "cdom", "cf_standard_name", "String", "-"], + ["attribute", "cdom", "FORTRAN_format", "String", "F.3"], + ["attribute", "cdom", "long_name", "String", "Concentration of coloured dissolved organic matter in sea water"], + ["attribute", "cdom", "resolution", "float", "0.001"], + ["attribute", "cdom", "sdn_parameter_urn", "String", "SDN:P01::CDOMZZ01"], + ["attribute", "cdom", "units", "String", "ppb"], + ["attribute", "cdom", "valid_max", "float", "NaN"], + ["attribute", "cdom", "valid_min", "float", "NaN"], + ["variable", "cdom_qc", "", "String", ""], + ["attribute", "cdom_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "cdom_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "cdom_qc", "long_name", "String", "quality flag"], + ["variable", "cdom_adjusted", "", "float", ""], + ["attribute", "cdom_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "cdom_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "cdom_adjusted", "C_format", "String", "%.3f"], + ["attribute", "cdom_adjusted", "FORTRAN_format", "String", "F.3"], + ["attribute", "cdom_adjusted", "long_name", "String", "Concentration of coloured dissolved organic matter in sea water"], + ["attribute", "cdom_adjusted", "resolution", "float", "0.001"], + ["attribute", "cdom_adjusted", "units", "String", "ppb"], + ["variable", "cdom_adjusted_qc", "", "String", ""], + ["attribute", "cdom_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "cdom_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "cdom_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "cdom_adjusted_error", "", "float", ""], + ["attribute", "cdom_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "cdom_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "cdom_adjusted_error", "C_format", "String", "%.3f"], + ["attribute", "cdom_adjusted_error", "FORTRAN_format", "String", "F.3"], + ["attribute", "cdom_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "cdom_adjusted_error", "resolution", "float", "0.001"], + ["attribute", "cdom_adjusted_error", "units", "String", "ppb"], + ["variable", "chla", "", "float", ""], + ["attribute", "chla", "_ChunkSizes", "int", "44, 751"], + ["attribute", "chla", "_FillValue", "float", "99999.0"], + ["attribute", "chla", "actual_range", "float", "-4.9608, 33553.33"], + ["attribute", "chla", "C_format", "String", "%.4f"], + ["attribute", "chla", "cf_standard_name", "String", "mass_concentration_of_chlorophyll_a_in_sea_water"], + ["attribute", "chla", "FORTRAN_format", "String", "F.4"], + ["attribute", "chla", "long_name", "String", "Chlorophyll-A"], + ["attribute", "chla", "resolution", "float", "0.025"], + ["attribute", "chla", "sdn_parameter_urn", "String", "SDN:P01::CPHLPR01"], + ["attribute", "chla", "standard_name", "String", "mass_concentration_of_chlorophyll_a_in_sea_water"], + ["attribute", "chla", "units", "String", "mg/m3"], + ["attribute", "chla", "valid_max", "float", "NaN"], + ["attribute", "chla", "valid_min", "float", "NaN"], + ["variable", "chla_qc", "", "String", ""], + ["attribute", "chla_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "chla_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "chla_qc", "long_name", "String", "quality flag"], + ["variable", "chla_adjusted", "", "float", ""], + ["attribute", "chla_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "chla_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "chla_adjusted", "actual_range", "float", "-2.502, 8388.452"], + ["attribute", "chla_adjusted", "C_format", "String", "%.4f"], + ["attribute", "chla_adjusted", "FORTRAN_format", "String", "F.4"], + ["attribute", "chla_adjusted", "long_name", "String", "Chlorophyll-A"], + ["attribute", "chla_adjusted", "resolution", "float", "0.025"], + ["attribute", "chla_adjusted", "standard_name", "String", "mass_concentration_of_chlorophyll_a_in_sea_water"], + ["attribute", "chla_adjusted", "units", "String", "mg/m3"], + ["variable", "chla_adjusted_qc", "", "String", ""], + ["attribute", "chla_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "chla_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "chla_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "chla_adjusted_error", "", "float", ""], + ["attribute", "chla_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "chla_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "chla_adjusted_error", "actual_range", "float", "0.0, 1536.899"], + ["attribute", "chla_adjusted_error", "C_format", "String", "%.4f"], + ["attribute", "chla_adjusted_error", "FORTRAN_format", "String", "F.4"], + ["attribute", "chla_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "chla_adjusted_error", "resolution", "float", "0.025"], + ["attribute", "chla_adjusted_error", "units", "String", "mg/m3"], + ["variable", "cndc", "", "float", ""], + ["attribute", "cndc", "_FillValue", "float", "99999.0"], + ["attribute", "cndc", "cf_standard_name", "String", "sea_water_electrical_conductivity"], + ["attribute", "cndc", "long_name", "String", "Electrical conductivity"], + ["attribute", "cndc", "sdn_parameter_urn", "String", "SDN:P01::CNDCST01"], + ["attribute", "cndc", "units", "String", "mhos/m"], + ["attribute", "cndc", "valid_max", "float", "8.5"], + ["attribute", "cndc", "valid_min", "float", "0.0"], + ["variable", "cndc_qc", "", "String", ""], + ["variable", "cndc_adjusted", "", "float", ""], + ["variable", "cndc_adjusted_qc", "", "String", ""], + ["variable", "cndc_adjusted_error", "", "float", ""], + ["variable", "cp660", "", "float", ""], + ["attribute", "cp660", "_FillValue", "float", "99999.0"], + ["attribute", "cp660", "actual_range", "float", "-0.7720053, 903.757"], + ["attribute", "cp660", "cf_standard_name", "String", "-"], + ["attribute", "cp660", "long_name", "String", "Particle beam attenuation at 660 nanometers"], + ["attribute", "cp660", "sdn_parameter_urn", "String", "SDN:P01::ATT650AC"], + ["attribute", "cp660", "units", "String", "m-1"], + ["attribute", "cp660", "valid_max", "float", "NaN"], + ["attribute", "cp660", "valid_min", "float", "NaN"], + ["variable", "cp660_qc", "", "String", ""], + ["variable", "cp660_adjusted", "", "float", ""], + ["variable", "cp660_adjusted_qc", "", "String", ""], + ["variable", "cp660_adjusted_error", "", "float", ""], + ["variable", "downwelling_par", "", "float", ""], + ["attribute", "downwelling_par", "_ChunkSizes", "int", "44, 751"], + ["attribute", "downwelling_par", "_FillValue", "float", "99999.0"], + ["attribute", "downwelling_par", "actual_range", "float", "-10811.9, 5885.509"], + ["attribute", "downwelling_par", "C_format", "String", "%.3f"], + ["attribute", "downwelling_par", "cf_standard_name", "String", "downwelling_photosynthetic_photon_flux_in_sea_water"], + ["attribute", "downwelling_par", "FORTRAN_format", "String", "F.3"], + ["attribute", "downwelling_par", "long_name", "String", "Downwelling photosynthetic available radiation"], + ["attribute", "downwelling_par", "resolution", "float", "0.001"], + ["attribute", "downwelling_par", "sdn_parameter_urn", "String", "SDN:P01::DWIRRXUD"], + ["attribute", "downwelling_par", "standard_name", "String", "downwelling_photosynthetic_photon_flux_in_sea_water"], + ["attribute", "downwelling_par", "units", "String", "microMoleQuanta/m^2/sec"], + ["attribute", "downwelling_par", "valid_max", "float", "NaN"], + ["attribute", "downwelling_par", "valid_min", "float", "NaN"], + ["variable", "downwelling_par_qc", "", "String", ""], + ["attribute", "downwelling_par_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "downwelling_par_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "downwelling_par_qc", "long_name", "String", "quality flag"], + ["variable", "downwelling_par_adjusted", "", "float", ""], + ["attribute", "downwelling_par_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "downwelling_par_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "downwelling_par_adjusted", "actual_range", "float", "-1.063595, 3418.62"], + ["attribute", "downwelling_par_adjusted", "C_format", "String", "%.3f"], + ["attribute", "downwelling_par_adjusted", "FORTRAN_format", "String", "F.3"], + ["attribute", "downwelling_par_adjusted", "long_name", "String", "Downwelling photosynthetic available radiation"], + ["attribute", "downwelling_par_adjusted", "resolution", "float", "0.001"], + ["attribute", "downwelling_par_adjusted", "standard_name", "String", "downwelling_photosynthetic_photon_flux_in_sea_water"], + ["attribute", "downwelling_par_adjusted", "units", "String", "microMoleQuanta/m^2/sec"], + ["variable", "downwelling_par_adjusted_qc", "", "String", ""], + ["attribute", "downwelling_par_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "downwelling_par_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "downwelling_par_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "downwelling_par_adjusted_error", "", "float", ""], + ["attribute", "downwelling_par_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "downwelling_par_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "downwelling_par_adjusted_error", "actual_range", "float", "0.03, 170.931"], + ["attribute", "downwelling_par_adjusted_error", "C_format", "String", "%.3f"], + ["attribute", "downwelling_par_adjusted_error", "FORTRAN_format", "String", "F.3"], + ["attribute", "downwelling_par_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "downwelling_par_adjusted_error", "resolution", "float", "0.001"], + ["attribute", "downwelling_par_adjusted_error", "units", "String", "microMoleQuanta/m^2/sec"], + ["variable", "down_irradiance380", "", "float", ""], + ["attribute", "down_irradiance380", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance380", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance380", "actual_range", "float", "-4.619619, 3.230546"], + ["attribute", "down_irradiance380", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance380", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance380", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance380", "long_name", "String", "Downwelling irradiance at 380 nanometers"], + ["attribute", "down_irradiance380", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance380", "sdn_parameter_urn", "String", "SDN:P01::RXUD380E"], + ["attribute", "down_irradiance380", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance380", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance380", "valid_min", "float", "NaN"], + ["variable", "down_irradiance380_qc", "", "String", ""], + ["attribute", "down_irradiance380_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance380_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance380_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance380_adjusted", "", "float", ""], + ["attribute", "down_irradiance380_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance380_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance380_adjusted", "actual_range", "float", "-2.519592E-4, 1.332115"], + ["attribute", "down_irradiance380_adjusted", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance380_adjusted", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance380_adjusted", "long_name", "String", "Downwelling irradiance at 380 nanometers"], + ["attribute", "down_irradiance380_adjusted", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance380_adjusted", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance380_adjusted_qc", "", "String", ""], + ["attribute", "down_irradiance380_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance380_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance380_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance380_adjusted_error", "", "float", ""], + ["attribute", "down_irradiance380_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance380_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance380_adjusted_error", "actual_range", "float", "2.5E-5, 0.0266423"], + ["attribute", "down_irradiance380_adjusted_error", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance380_adjusted_error", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance380_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "down_irradiance380_adjusted_error", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance380_adjusted_error", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance412", "", "float", ""], + ["attribute", "down_irradiance412", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance412", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance412", "actual_range", "float", "-6.789255, 3.602709"], + ["attribute", "down_irradiance412", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance412", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance412", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance412", "long_name", "String", "Downwelling irradiance at 412 nanometers"], + ["attribute", "down_irradiance412", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance412", "sdn_parameter_urn", "String", "SDN:P01::RXUD412E"], + ["attribute", "down_irradiance412", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance412", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance412", "valid_min", "float", "NaN"], + ["variable", "down_irradiance412_qc", "", "String", ""], + ["attribute", "down_irradiance412_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance412_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance412_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance412_adjusted", "", "float", ""], + ["attribute", "down_irradiance412_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance412_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance412_adjusted", "actual_range", "float", "-1.132386E-4, 2.465978"], + ["attribute", "down_irradiance412_adjusted", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance412_adjusted", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance412_adjusted", "long_name", "String", "Downwelling irradiance at 412 nanometers"], + ["attribute", "down_irradiance412_adjusted", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance412_adjusted", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance412_adjusted_qc", "", "String", ""], + ["attribute", "down_irradiance412_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance412_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance412_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance412_adjusted_error", "", "float", ""], + ["attribute", "down_irradiance412_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance412_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance412_adjusted_error", "actual_range", "float", "2.5E-5, 0.04931956"], + ["attribute", "down_irradiance412_adjusted_error", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance412_adjusted_error", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance412_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "down_irradiance412_adjusted_error", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance412_adjusted_error", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance443", "", "float", ""], + ["attribute", "down_irradiance443", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance443", "actual_range", "float", "-6.086391, 2.60921"], + ["attribute", "down_irradiance443", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance443", "long_name", "String", "Downwelling irradiance at 443 nanometers"], + ["attribute", "down_irradiance443", "sdn_parameter_urn", "String", "SDN:P01::RXUD443E"], + ["attribute", "down_irradiance443", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance443", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance443", "valid_min", "float", "NaN"], + ["variable", "down_irradiance443_qc", "", "String", ""], + ["variable", "down_irradiance443_adjusted", "", "float", ""], + ["variable", "down_irradiance443_adjusted_qc", "", "String", ""], + ["variable", "down_irradiance443_adjusted_error", "", "float", ""], + ["variable", "down_irradiance490", "", "float", ""], + ["attribute", "down_irradiance490", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance490", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance490", "actual_range", "float", "-8.113294, 6.532184"], + ["attribute", "down_irradiance490", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance490", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance490", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance490", "long_name", "String", "Downwelling irradiance at 490 nanometers"], + ["attribute", "down_irradiance490", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance490", "sdn_parameter_urn", "String", "SDN:P01::RXUD490E"], + ["attribute", "down_irradiance490", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance490", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance490", "valid_min", "float", "NaN"], + ["variable", "down_irradiance490_qc", "", "String", ""], + ["attribute", "down_irradiance490_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance490_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance490_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance490_adjusted", "", "float", ""], + ["attribute", "down_irradiance490_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance490_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance490_adjusted", "actual_range", "float", "-0.3623228, 2.750976"], + ["attribute", "down_irradiance490_adjusted", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance490_adjusted", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance490_adjusted", "long_name", "String", "Downwelling irradiance at 490 nanometers"], + ["attribute", "down_irradiance490_adjusted", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance490_adjusted", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance490_adjusted_qc", "", "String", ""], + ["attribute", "down_irradiance490_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance490_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "down_irradiance490_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "down_irradiance490_adjusted_error", "", "float", ""], + ["attribute", "down_irradiance490_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "down_irradiance490_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance490_adjusted_error", "actual_range", "float", "2.5E-5, 0.05501953"], + ["attribute", "down_irradiance490_adjusted_error", "C_format", "String", "%.6f"], + ["attribute", "down_irradiance490_adjusted_error", "FORTRAN_format", "String", "F.6"], + ["attribute", "down_irradiance490_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "down_irradiance490_adjusted_error", "resolution", "float", "1.0E-6"], + ["attribute", "down_irradiance490_adjusted_error", "units", "String", "W/m^2/nm"], + ["variable", "down_irradiance555", "", "float", ""], + ["attribute", "down_irradiance555", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance555", "actual_range", "float", "-5.775234, 1.963763"], + ["attribute", "down_irradiance555", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance555", "long_name", "String", "Downwelling irradiance at 555 nanometers"], + ["attribute", "down_irradiance555", "sdn_parameter_urn", "String", "SDN:P01::RXUD555E"], + ["attribute", "down_irradiance555", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance555", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance555", "valid_min", "float", "NaN"], + ["variable", "down_irradiance555_qc", "", "String", ""], + ["variable", "down_irradiance555_adjusted", "", "float", ""], + ["variable", "down_irradiance555_adjusted_qc", "", "String", ""], + ["variable", "down_irradiance555_adjusted_error", "", "float", ""], + ["variable", "down_irradiance665", "", "float", ""], + ["attribute", "down_irradiance665", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance665", "actual_range", "float", "2.313544E-4, 0.5582202"], + ["attribute", "down_irradiance665", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance665", "long_name", "String", "Downwelling irradiance at 665 nanometers"], + ["attribute", "down_irradiance665", "sdn_parameter_urn", "String", "SDN:P01::RXUD665E"], + ["attribute", "down_irradiance665", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance665", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance665", "valid_min", "float", "NaN"], + ["variable", "down_irradiance665_qc", "", "String", ""], + ["variable", "down_irradiance665_adjusted", "", "float", ""], + ["variable", "down_irradiance665_adjusted_qc", "", "String", ""], + ["variable", "down_irradiance665_adjusted_error", "", "float", ""], + ["variable", "down_irradiance670", "", "float", ""], + ["attribute", "down_irradiance670", "_FillValue", "float", "99999.0"], + ["attribute", "down_irradiance670", "actual_range", "float", "6.188E-5, 1.316882"], + ["attribute", "down_irradiance670", "cf_standard_name", "String", "-"], + ["attribute", "down_irradiance670", "long_name", "String", "Downwelling irradiance at 670 nanometers"], + ["attribute", "down_irradiance670", "sdn_parameter_urn", "String", "SDN:P01::RXUD670E"], + ["attribute", "down_irradiance670", "units", "String", "W/m^2/nm"], + ["attribute", "down_irradiance670", "valid_max", "float", "NaN"], + ["attribute", "down_irradiance670", "valid_min", "float", "NaN"], + ["variable", "down_irradiance670_qc", "", "String", ""], + ["variable", "down_irradiance670_adjusted", "", "float", ""], + ["variable", "down_irradiance670_adjusted_qc", "", "String", ""], + ["variable", "down_irradiance670_adjusted_error", "", "float", ""], + ["variable", "doxy", "", "float", ""], + ["attribute", "doxy", "_ChunkSizes", "int", "44, 751"], + ["attribute", "doxy", "_FillValue", "float", "99999.0"], + ["attribute", "doxy", "actual_range", "float", "-1.505E8, 3.83667E7"], + ["attribute", "doxy", "C_format", "String", "%.3f"], + ["attribute", "doxy", "cf_standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy", "FORTRAN_format", "String", "F.3"], + ["attribute", "doxy", "long_name", "String", "Dissolved oxygen"], + ["attribute", "doxy", "resolution", "float", "0.001"], + ["attribute", "doxy", "sdn_parameter_urn", "String", "SDN:P01::DOXMZZXX"], + ["attribute", "doxy", "standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy", "units", "String", "micromole/kg"], + ["attribute", "doxy", "valid_max", "float", "600.0"], + ["attribute", "doxy", "valid_min", "float", "-5.0"], + ["variable", "doxy_qc", "", "String", ""], + ["attribute", "doxy_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "doxy_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "doxy_qc", "long_name", "String", "quality flag"], + ["variable", "doxy_adjusted", "", "float", ""], + ["attribute", "doxy_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "doxy_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "doxy_adjusted", "actual_range", "float", "-1.61178E8, 1.205848E7"], + ["attribute", "doxy_adjusted", "C_format", "String", "%.3f"], + ["attribute", "doxy_adjusted", "FORTRAN_format", "String", "F.3"], + ["attribute", "doxy_adjusted", "long_name", "String", "Dissolved oxygen"], + ["attribute", "doxy_adjusted", "resolution", "float", "0.001"], + ["attribute", "doxy_adjusted", "standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy_adjusted", "units", "String", "micromole/kg"], + ["attribute", "doxy_adjusted", "valid_max", "float", "600.0"], + ["attribute", "doxy_adjusted", "valid_min", "float", "-5.0"], + ["variable", "doxy_adjusted_qc", "", "String", ""], + ["attribute", "doxy_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "doxy_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "doxy_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "doxy_adjusted_error", "", "float", ""], + ["attribute", "doxy_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "doxy_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "doxy_adjusted_error", "actual_range", "float", "-107.438, 4667.415"], + ["attribute", "doxy_adjusted_error", "C_format", "String", "%.3f"], + ["attribute", "doxy_adjusted_error", "FORTRAN_format", "String", "F.3"], + ["attribute", "doxy_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "doxy_adjusted_error", "resolution", "float", "0.001"], + ["attribute", "doxy_adjusted_error", "units", "String", "micromole/kg"], + ["variable", "doxy2", "", "float", ""], + ["attribute", "doxy2", "_FillValue", "float", "99999.0"], + ["attribute", "doxy2", "actual_range", "float", "-11.57892, 795.2488"], + ["attribute", "doxy2", "cf_standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy2", "long_name", "String", "Dissolved oxygen"], + ["attribute", "doxy2", "sdn_parameter_urn", "String", "SDN:P01::DOXMZZXX"], + ["attribute", "doxy2", "units", "String", "micromole/kg"], + ["attribute", "doxy2", "valid_max", "float", "NaN"], + ["attribute", "doxy2", "valid_min", "float", "NaN"], + ["variable", "doxy2_qc", "", "String", ""], + ["variable", "doxy2_adjusted", "", "float", ""], + ["attribute", "doxy2_adjusted", "actual_range", "float", "10.80821, 388.1978"], + ["variable", "doxy2_adjusted_qc", "", "String", ""], + ["variable", "doxy2_adjusted_error", "", "float", ""], + ["attribute", "doxy2_adjusted_error", "actual_range", "float", "0.6184019, 17.94662"], + ["variable", "doxy3", "", "float", ""], + ["attribute", "doxy3", "_FillValue", "float", "99999.0"], + ["attribute", "doxy3", "actual_range", "float", "9.468297, 303.2113"], + ["attribute", "doxy3", "cf_standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy3", "long_name", "String", "Dissolved oxygen"], + ["attribute", "doxy3", "sdn_parameter_urn", "String", "SDN:P01::DOXMZZXX"], + ["attribute", "doxy3", "units", "String", "micromole/kg"], + ["attribute", "doxy3", "valid_max", "float", "NaN"], + ["attribute", "doxy3", "valid_min", "float", "NaN"], + ["variable", "doxy3_qc", "", "String", ""], + ["variable", "doxy3_adjusted", "", "float", ""], + ["attribute", "doxy3_adjusted", "actual_range", "float", "18.36615, 322.6472"], + ["variable", "doxy3_adjusted_qc", "", "String", ""], + ["variable", "doxy3_adjusted_error", "", "float", ""], + ["attribute", "doxy3_adjusted_error", "actual_range", "float", "8.0, 9.0"], + ["variable", "nitrate", "", "float", ""], + ["attribute", "nitrate", "_FillValue", "float", "99999.0"], + ["attribute", "nitrate", "actual_range", "float", "-2440.82, 2203.922"], + ["attribute", "nitrate", "cf_standard_name", "String", "moles_of_nitrate_per_unit_mass_in_sea_water"], + ["attribute", "nitrate", "long_name", "String", "Nitrate"], + ["attribute", "nitrate", "sdn_parameter_urn", "String", "SDN:P01::MDMAP005"], + ["attribute", "nitrate", "units", "String", "micromole/kg"], + ["attribute", "nitrate", "valid_max", "float", "NaN"], + ["attribute", "nitrate", "valid_min", "float", "NaN"], + ["variable", "nitrate_qc", "", "String", ""], + ["variable", "nitrate_adjusted", "", "float", ""], + ["attribute", "nitrate_adjusted", "actual_range", "float", "-393.3362, 557.9073"], + ["variable", "nitrate_adjusted_qc", "", "String", ""], + ["variable", "nitrate_adjusted_error", "", "float", ""], + ["attribute", "nitrate_adjusted_error", "actual_range", "float", "-1.115299, 10001.9"], + ["variable", "ph_in_situ_total", "", "float", ""], + ["attribute", "ph_in_situ_total", "_FillValue", "float", "99999.0"], + ["attribute", "ph_in_situ_total", "actual_range", "float", "-26822.05, 3.698129E22"], + ["attribute", "ph_in_situ_total", "cf_standard_name", "String", "sea_water_ph_reported_on_total_scale"], + ["attribute", "ph_in_situ_total", "long_name", "String", "pH"], + ["attribute", "ph_in_situ_total", "sdn_parameter_urn", "String", "SDN:P01::PHMASSXX"], + ["attribute", "ph_in_situ_total", "units", "String", "dimensionless"], + ["attribute", "ph_in_situ_total", "valid_max", "float", "NaN"], + ["attribute", "ph_in_situ_total", "valid_min", "float", "NaN"], + ["variable", "ph_in_situ_total_qc", "", "String", ""], + ["variable", "ph_in_situ_total_adjusted", "", "float", ""], + ["attribute", "ph_in_situ_total_adjusted", "actual_range", "float", "-714.0168, 1352.24"], + ["variable", "ph_in_situ_total_adjusted_qc", "", "String", ""], + ["variable", "ph_in_situ_total_adjusted_error", "", "float", ""], + ["attribute", "ph_in_situ_total_adjusted_error", "actual_range", "float", "-0.05696383, 160.0694"], + ["variable", "pres", "", "float", ""], + ["attribute", "pres", "_ChunkSizes", "int", "44, 751"], + ["attribute", "pres", "_CoordinateAxisType", "String", "Height"], + ["attribute", "pres", "_FillValue", "float", "99999.0"], + ["attribute", "pres", "actual_range", "float", "-5.3, 10000.0"], + ["attribute", "pres", "axis", "String", "Z"], + ["attribute", "pres", "C_format", "String", "%.3f"], + ["attribute", "pres", "cf_standard_name", "String", "sea_water_pressure"], + ["attribute", "pres", "FORTRAN_format", "String", "F.3"], + ["attribute", "pres", "long_name", "String", "Sea water pressure, equals 0 at sea-level"], + ["attribute", "pres", "resolution", "float", "0.001"], + ["attribute", "pres", "sdn_parameter_urn", "String", "SDN:P01::PRESPR01"], + ["attribute", "pres", "standard_name", "String", "sea_water_pressure"], + ["attribute", "pres", "units", "String", "decibar"], + ["attribute", "pres", "valid_max", "float", "12000.0"], + ["attribute", "pres", "valid_min", "float", "0.0"], + ["variable", "pres_qc", "", "String", ""], + ["attribute", "pres_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "pres_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "pres_qc", "long_name", "String", "quality flag"], + ["variable", "pres_adjusted", "", "float", ""], + ["attribute", "pres_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "pres_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "pres_adjusted", "actual_range", "float", "-557.6254, 10000.5"], + ["attribute", "pres_adjusted", "axis", "String", "Z"], + ["attribute", "pres_adjusted", "C_format", "String", "%.3f"], + ["attribute", "pres_adjusted", "FORTRAN_format", "String", "F.3"], + ["attribute", "pres_adjusted", "long_name", "String", "Sea water pressure, equals 0 at sea-level"], + ["attribute", "pres_adjusted", "resolution", "float", "0.001"], + ["attribute", "pres_adjusted", "standard_name", "String", "sea_water_pressure"], + ["attribute", "pres_adjusted", "units", "String", "decibar"], + ["attribute", "pres_adjusted", "valid_max", "float", "12000.0"], + ["attribute", "pres_adjusted", "valid_min", "float", "0.0"], + ["variable", "pres_adjusted_qc", "", "String", ""], + ["attribute", "pres_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "pres_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "pres_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "pres_adjusted_error", "", "float", ""], + ["attribute", "pres_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "pres_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "pres_adjusted_error", "actual_range", "float", "1.998542, 20.0"], + ["attribute", "pres_adjusted_error", "C_format", "String", "%.3f"], + ["attribute", "pres_adjusted_error", "FORTRAN_format", "String", "F.3"], + ["attribute", "pres_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "pres_adjusted_error", "resolution", "float", "0.001"], + ["attribute", "pres_adjusted_error", "units", "String", "decibar"], + ["variable", "psal", "", "float", ""], + ["attribute", "psal", "_ChunkSizes", "int", "44, 751"], + ["attribute", "psal", "_FillValue", "float", "99999.0"], + ["attribute", "psal", "actual_range", "float", "-249.898, 175.11"], + ["attribute", "psal", "C_format", "String", "%.4f"], + ["attribute", "psal", "cf_standard_name", "String", "sea_water_salinity"], + ["attribute", "psal", "FORTRAN_format", "String", "F.4"], + ["attribute", "psal", "long_name", "String", "Practical salinity"], + ["attribute", "psal", "resolution", "float", "1.0E-4"], + ["attribute", "psal", "sdn_parameter_urn", "String", "SDN:P01::PSALST01"], + ["attribute", "psal", "standard_name", "String", "sea_water_salinity"], + ["attribute", "psal", "units", "String", "psu"], + ["attribute", "psal", "valid_max", "float", "41.0"], + ["attribute", "psal", "valid_min", "float", "2.0"], + ["variable", "psal_qc", "", "String", ""], + ["attribute", "psal_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "psal_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "psal_qc", "long_name", "String", "quality flag"], + ["variable", "psal_adjusted", "", "float", ""], + ["attribute", "psal_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "psal_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "psal_adjusted", "actual_range", "float", "-0.0335, 99.9999"], + ["attribute", "psal_adjusted", "C_format", "String", "%.4f"], + ["attribute", "psal_adjusted", "FORTRAN_format", "String", "F.4"], + ["attribute", "psal_adjusted", "long_name", "String", "Practical salinity"], + ["attribute", "psal_adjusted", "resolution", "float", "1.0E-4"], + ["attribute", "psal_adjusted", "standard_name", "String", "sea_water_salinity"], + ["attribute", "psal_adjusted", "units", "String", "psu"], + ["attribute", "psal_adjusted", "valid_max", "float", "41.0"], + ["attribute", "psal_adjusted", "valid_min", "float", "2.0"], + ["variable", "psal_adjusted_qc", "", "String", ""], + ["attribute", "psal_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "psal_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "psal_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "psal_adjusted_error", "", "float", ""], + ["attribute", "psal_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "psal_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "psal_adjusted_error", "actual_range", "float", "4.626246E-4, 8.499573E31"], + ["attribute", "psal_adjusted_error", "C_format", "String", "%.4f"], + ["attribute", "psal_adjusted_error", "FORTRAN_format", "String", "F.4"], + ["attribute", "psal_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "psal_adjusted_error", "resolution", "float", "1.0E-4"], + ["attribute", "psal_adjusted_error", "units", "String", "psu"], + ["variable", "temp", "", "float", ""], + ["attribute", "temp", "_ChunkSizes", "int", "44, 751"], + ["attribute", "temp", "_FillValue", "float", "99999.0"], + ["attribute", "temp", "actual_range", "float", "-9.9, 693233.6"], + ["attribute", "temp", "C_format", "String", "%.3f"], + ["attribute", "temp", "cf_standard_name", "String", "sea_water_temperature"], + ["attribute", "temp", "FORTRAN_format", "String", "F.3"], + ["attribute", "temp", "long_name", "String", "Sea temperature in-situ ITS-90 scale"], + ["attribute", "temp", "resolution", "float", "0.001"], + ["attribute", "temp", "sdn_parameter_urn", "String", "SDN:P01::TEMPST01"], + ["attribute", "temp", "standard_name", "String", "sea_water_temperature"], + ["attribute", "temp", "units", "String", "degree_Celsius"], + ["attribute", "temp", "valid_max", "float", "40.0"], + ["attribute", "temp", "valid_min", "float", "-2.5"], + ["variable", "temp_qc", "", "String", ""], + ["attribute", "temp_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "temp_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "temp_qc", "long_name", "String", "quality flag"], + ["variable", "temp_adjusted", "", "float", ""], + ["attribute", "temp_adjusted", "_ChunkSizes", "int", "44, 751"], + ["attribute", "temp_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "temp_adjusted", "actual_range", "float", "-4.368, 99.9999"], + ["attribute", "temp_adjusted", "C_format", "String", "%.3f"], + ["attribute", "temp_adjusted", "FORTRAN_format", "String", "F.3"], + ["attribute", "temp_adjusted", "long_name", "String", "Sea temperature in-situ ITS-90 scale"], + ["attribute", "temp_adjusted", "resolution", "float", "0.001"], + ["attribute", "temp_adjusted", "standard_name", "String", "sea_water_temperature"], + ["attribute", "temp_adjusted", "units", "String", "degree_Celsius"], + ["attribute", "temp_adjusted", "valid_max", "float", "40.0"], + ["attribute", "temp_adjusted", "valid_min", "float", "-2.5"], + ["variable", "temp_adjusted_qc", "", "String", ""], + ["attribute", "temp_adjusted_qc", "_ChunkSizes", "int", "44, 751"], + ["attribute", "temp_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "temp_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "temp_adjusted_error", "", "float", ""], + ["attribute", "temp_adjusted_error", "_ChunkSizes", "int", "44, 751"], + ["attribute", "temp_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "temp_adjusted_error", "actual_range", "float", "0.002, 0.01"], + ["attribute", "temp_adjusted_error", "C_format", "String", "%.3f"], + ["attribute", "temp_adjusted_error", "FORTRAN_format", "String", "F.3"], + ["attribute", "temp_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "temp_adjusted_error", "resolution", "float", "0.001"], + ["attribute", "temp_adjusted_error", "units", "String", "degree_Celsius"], + ["variable", "turbidity", "", "float", ""], + ["attribute", "turbidity", "_FillValue", "float", "99999.0"], + ["attribute", "turbidity", "actual_range", "float", "-0.32, 406.0"], + ["attribute", "turbidity", "cf_standard_name", "String", "sea_water_turbidity"], + ["attribute", "turbidity", "long_name", "String", "Sea water turbidity"], + ["attribute", "turbidity", "sdn_parameter_urn", "String", "SDN:P01::TURBXXXX"], + ["attribute", "turbidity", "units", "String", "ntu"], + ["attribute", "turbidity", "valid_max", "float", "NaN"], + ["attribute", "turbidity", "valid_min", "float", "NaN"], + ["variable", "turbidity_qc", "", "String", ""], + ["variable", "turbidity_adjusted", "", "float", ""], + ["variable", "turbidity_adjusted_qc", "", "String", ""], + ["variable", "turbidity_adjusted_error", "", "float", ""], + ["variable", "up_radiance412", "", "float", ""], + ["attribute", "up_radiance412", "_FillValue", "float", "99999.0"], + ["attribute", "up_radiance412", "actual_range", "float", "-0.09925444, 0.04983798"], + ["attribute", "up_radiance412", "cf_standard_name", "String", "upwelling_radiance_in_sea_water"], + ["attribute", "up_radiance412", "long_name", "String", "Upwelling radiance at 412 nanometers"], + ["attribute", "up_radiance412", "sdn_parameter_urn", "String", "SDN:P01::RXUU412L"], + ["attribute", "up_radiance412", "units", "String", "W/m^2/nm/sr"], + ["attribute", "up_radiance412", "valid_max", "float", "NaN"], + ["attribute", "up_radiance412", "valid_min", "float", "NaN"], + ["variable", "up_radiance412_qc", "", "String", ""], + ["variable", "up_radiance412_adjusted", "", "float", ""], + ["variable", "up_radiance412_adjusted_qc", "", "String", ""], + ["variable", "up_radiance412_adjusted_error", "", "float", ""], + ["variable", "up_radiance443", "", "float", ""], + ["attribute", "up_radiance443", "_FillValue", "float", "99999.0"], + ["attribute", "up_radiance443", "actual_range", "float", "-0.09781187, 0.04152927"], + ["attribute", "up_radiance443", "cf_standard_name", "String", "upwelling_radiance_in_sea_water"], + ["attribute", "up_radiance443", "long_name", "String", "Upwelling radiance at 443 nanometers"], + ["attribute", "up_radiance443", "sdn_parameter_urn", "String", "SDN:P01::RXUU443L"], + ["attribute", "up_radiance443", "units", "String", "W/m^2/nm/sr"], + ["attribute", "up_radiance443", "valid_max", "float", "NaN"], + ["attribute", "up_radiance443", "valid_min", "float", "NaN"], + ["variable", "up_radiance443_qc", "", "String", ""], + ["variable", "up_radiance443_adjusted", "", "float", ""], + ["variable", "up_radiance443_adjusted_qc", "", "String", ""], + ["variable", "up_radiance443_adjusted_error", "", "float", ""], + ["variable", "up_radiance490", "", "float", ""], + ["attribute", "up_radiance490", "_FillValue", "float", "99999.0"], + ["attribute", "up_radiance490", "actual_range", "float", "-0.1053933, 0.02600059"], + ["attribute", "up_radiance490", "cf_standard_name", "String", "upwelling_radiance_in_sea_water"], + ["attribute", "up_radiance490", "long_name", "String", "Upwelling radiance at 490 nanometers"], + ["attribute", "up_radiance490", "sdn_parameter_urn", "String", "SDN:P01::RXUU490L"], + ["attribute", "up_radiance490", "units", "String", "W/m^2/nm/sr"], + ["attribute", "up_radiance490", "valid_max", "float", "NaN"], + ["attribute", "up_radiance490", "valid_min", "float", "NaN"], + ["variable", "up_radiance490_qc", "", "String", ""], + ["variable", "up_radiance490_adjusted", "", "float", ""], + ["variable", "up_radiance490_adjusted_qc", "", "String", ""], + ["variable", "up_radiance490_adjusted_error", "", "float", ""], + ["variable", "up_radiance555", "", "float", ""], + ["attribute", "up_radiance555", "_FillValue", "float", "99999.0"], + ["attribute", "up_radiance555", "actual_range", "float", "-0.06012661, 0.007257868"], + ["attribute", "up_radiance555", "cf_standard_name", "String", "upwelling_radiance_in_sea_water"], + ["attribute", "up_radiance555", "long_name", "String", "Upwelling radiance at 555 nanometers"], + ["attribute", "up_radiance555", "sdn_parameter_urn", "String", "SDN:P01::RXUU555L"], + ["attribute", "up_radiance555", "units", "String", "W/m^2/nm/sr"], + ["attribute", "up_radiance555", "valid_max", "float", "NaN"], + ["attribute", "up_radiance555", "valid_min", "float", "NaN"], + ["variable", "up_radiance555_qc", "", "String", ""], + ["variable", "up_radiance555_adjusted", "", "float", ""], + ["variable", "up_radiance555_adjusted_qc", "", "String", ""], + ["variable", "up_radiance555_adjusted_error", "", "float", ""], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "_FillValue", "double", "99999.0"], + ["attribute", "latitude", "actual_range", "double", "-99.999, 82.99017"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "90.0"], + ["attribute", "latitude", "colorBarMinimum", "double", "-90.0"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude of the station, best estimate"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["attribute", "latitude", "valid_max", "double", "90.0"], + ["attribute", "latitude", "valid_min", "double", "-90.0"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "_FillValue", "double", "99999.0"], + ["attribute", "longitude", "actual_range", "double", "-999.999, 181.706"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "180.0"], + ["attribute", "longitude", "colorBarMinimum", "double", "-180.0"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude of the station, best estimate"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["attribute", "longitude", "valid_max", "double", "180.0"], + ["attribute", "longitude", "valid_min", "double", "-180.0"], + ["variable", "position_qc", "", "char", ""], + ["attribute", "position_qc", "actual_range", "char", "1, 9"], + ["attribute", "position_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "position_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "position_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "position_qc", "long_name", "String", "Quality on position (latitude and longitude)"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.031526171996E9, 1.72657956E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "conventions", "String", "Relative julian days with decimal part (as parts of day)"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"], + ["attribute", "time", "source_name", "String", "JULD"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "time_qc", "", "char", ""], + ["attribute", "time_qc", "actual_range", "char", "1, 9"], + ["attribute", "time_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "time_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "time_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "time_qc", "long_name", "String", "Quality on date and time"], + ["variable", "direction", "", "String", ""], + ["attribute", "direction", "_ChunkSizes", "int", "44"], + ["attribute", "direction", "colorBarMaximum", "double", "360.0"], + ["attribute", "direction", "colorBarMinimum", "double", "0.0"], + ["attribute", "direction", "conventions", "String", "A: ascending profiles, D: descending profiles"], + ["attribute", "direction", "ioos_category", "String", "Currents"], + ["attribute", "direction", "long_name", "String", "Direction of the station profiles"], + ["variable", "platform_number", "", "String", ""], + ["attribute", "platform_number", "cf_role", "String", "trajectory_id"], + ["attribute", "platform_number", "conventions", "String", "WMO float identifier : A9IIIII"], + ["attribute", "platform_number", "ioos_category", "String", "Identifier"], + ["attribute", "platform_number", "long_name", "String", "Float unique identifier"], + ["variable", "platform_type", "", "String", ""], + ["attribute", "platform_type", "_ChunkSizes", "int", "44, 32"], + ["attribute", "platform_type", "conventions", "String", "Argo reference table 23"], + ["attribute", "platform_type", "ioos_category", "String", "Unknown"], + ["attribute", "platform_type", "long_name", "String", "Type of float"], + ["variable", "cycle_number", "", "int", ""], + ["attribute", "cycle_number", "_FillValue", "int", "99999"], + ["attribute", "cycle_number", "actual_range", "int", "0, 1051"], + ["attribute", "cycle_number", "cf_role", "String", "profile_id"], + ["attribute", "cycle_number", "colorBarMaximum", "double", "100.0"], + ["attribute", "cycle_number", "colorBarMinimum", "double", "0.0"], + ["attribute", "cycle_number", "conventions", "String", "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"], + ["attribute", "cycle_number", "long_name", "String", "Float cycle number"], + ["variable", "config_mission_number", "", "int", ""], + ["attribute", "config_mission_number", "_ChunkSizes", "int", "44"], + ["attribute", "config_mission_number", "_FillValue", "int", "99999"], + ["attribute", "config_mission_number", "actual_range", "int", "-1, 999"], + ["attribute", "config_mission_number", "colorBarMaximum", "double", "100.0"], + ["attribute", "config_mission_number", "colorBarMinimum", "double", "0.0"], + ["attribute", "config_mission_number", "conventions", "String", "1...N, 1 : first complete mission"], + ["attribute", "config_mission_number", "ioos_category", "String", "Statistics"], + ["attribute", "config_mission_number", "long_name", "String", "Unique number denoting the missions performed by the float"], + ["variable", "data_centre", "", "String", ""], + ["attribute", "data_centre", "_ChunkSizes", "int", "44, 2"], + ["attribute", "data_centre", "conventions", "String", "Argo reference table 4"], + ["attribute", "data_centre", "ioos_category", "String", "Unknown"], + ["attribute", "data_centre", "long_name", "String", "Data centre in charge of float data processing"], + ["variable", "profile_bbp470_qc", "", "String", ""], + ["attribute", "profile_bbp470_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_bbp470_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_bbp470_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_bbp532_qc", "", "String", ""], + ["attribute", "profile_bbp532_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_bbp532_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_bbp532_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_bbp700_2_qc", "", "String", ""], + ["attribute", "profile_bbp700_2_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_bbp700_2_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_bbp700_2_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_bbp700_qc", "", "String", ""], + ["attribute", "profile_bbp700_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_bbp700_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_bbp700_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_bbp700_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_bbp700_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_bbp700_qc", "long_name", "String", "Global quality flag of BBP700 profile"], + ["variable", "profile_bisulfide_qc", "", "String", ""], + ["attribute", "profile_bisulfide_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_bisulfide_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_bisulfide_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_cdom_qc", "", "String", ""], + ["attribute", "profile_cdom_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_cdom_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_cdom_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_cdom_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_cdom_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_cdom_qc", "long_name", "String", "Global quality flag of CDOM profile"], + ["variable", "profile_chla_qc", "", "String", ""], + ["attribute", "profile_chla_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_chla_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_chla_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_chla_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_chla_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_chla_qc", "long_name", "String", "Global quality flag of CHLA profile"], + ["variable", "profile_cndc_qc", "", "String", ""], + ["attribute", "profile_cndc_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_cndc_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_cndc_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_cp660_qc", "", "String", ""], + ["attribute", "profile_cp660_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_cp660_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_cp660_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance380_qc", "", "String", ""], + ["attribute", "profile_down_irradiance380_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance380_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance380_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance412_qc", "", "String", ""], + ["attribute", "profile_down_irradiance412_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance412_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance412_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance443_qc", "", "String", ""], + ["attribute", "profile_down_irradiance443_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance443_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance443_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance490_qc", "", "String", ""], + ["attribute", "profile_down_irradiance490_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance490_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance490_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance555_qc", "", "String", ""], + ["attribute", "profile_down_irradiance555_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance555_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance555_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance665_qc", "", "String", ""], + ["attribute", "profile_down_irradiance665_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance665_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance665_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_down_irradiance670_qc", "", "String", ""], + ["attribute", "profile_down_irradiance670_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_down_irradiance670_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_down_irradiance670_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_downwelling_par_qc", "", "String", ""], + ["attribute", "profile_downwelling_par_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_downwelling_par_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_downwelling_par_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_downwelling_par_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_downwelling_par_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_downwelling_par_qc", "long_name", "String", "Global quality flag of DOWNWELLING_PAR profile"], + ["variable", "profile_doxy_qc", "", "String", ""], + ["attribute", "profile_doxy_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_doxy_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_doxy_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_doxy_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_doxy_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_doxy_qc", "long_name", "String", "Global quality flag of DOXY profile"], + ["variable", "profile_doxy2_qc", "", "String", ""], + ["attribute", "profile_doxy2_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_doxy2_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_doxy2_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_doxy3_qc", "", "String", ""], + ["attribute", "profile_doxy3_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_doxy3_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_doxy3_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_nitrate_qc", "", "String", ""], + ["attribute", "profile_nitrate_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_nitrate_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_nitrate_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_ph_in_situ_total_qc", "", "String", ""], + ["attribute", "profile_ph_in_situ_total_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_ph_in_situ_total_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_ph_in_situ_total_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_pres_qc", "", "String", ""], + ["attribute", "profile_pres_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_pres_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_pres_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_pres_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_pres_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_pres_qc", "long_name", "String", "Global quality flag of PRES profile"], + ["variable", "profile_psal_qc", "", "String", ""], + ["attribute", "profile_psal_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_psal_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_psal_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_psal_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_psal_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_psal_qc", "long_name", "String", "Global quality flag of PSAL profile"], + ["variable", "profile_temp_qc", "", "String", ""], + ["attribute", "profile_temp_qc", "_ChunkSizes", "int", "44"], + ["attribute", "profile_temp_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_temp_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_temp_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_temp_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_temp_qc", "long_name", "String", "Global quality flag of TEMP profile"], + ["variable", "profile_turbidity_qc", "", "String", ""], + ["attribute", "profile_turbidity_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_turbidity_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_turbidity_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_up_radiance412_qc", "", "String", ""], + ["attribute", "profile_up_radiance412_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_up_radiance412_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_up_radiance412_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_up_radiance443_qc", "", "String", ""], + ["attribute", "profile_up_radiance443_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_up_radiance443_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_up_radiance443_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_up_radiance490_qc", "", "String", ""], + ["attribute", "profile_up_radiance490_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_up_radiance490_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_up_radiance490_qc", "ioos_category", "String", "Quality"], + ["variable", "profile_up_radiance555_qc", "", "String", ""], + ["attribute", "profile_up_radiance555_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_up_radiance555_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_up_radiance555_qc", "ioos_category", "String", "Quality"] + ] + } +} diff --git a/argopy/tests/test_data/3a521d6229d9cee668a1fdd89fcf803fcfae2b9d18e6b9c93b4f46f2f278629b.ncHeader b/argopy/tests/test_data/3a521d6229d9cee668a1fdd89fcf803fcfae2b9d18e6b9c93b4f46f2f278629b.ncHeader new file mode 100644 index 00000000..c09fc157 --- /dev/null +++ b/argopy/tests/test_data/3a521d6229d9cee668a1fdd89fcf803fcfae2b9d18e6b9c93b4f46f2f278629b.ncHeader @@ -0,0 +1,763 @@ +netcdf ArgoFloats-synthetic-BGC_ff2e_e9fa_cc0c.nc { + dimensions: + row = 1432; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.001550337f, 0.01180728f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.001550337f, 0.01180728f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=1432, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=1432, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 0.724f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=1432, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=1432, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.2586286f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.5566913f, 3.5186f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=1432, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=1432, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=1432); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 9; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=1432); + :_FillValue = 99999.0f; // float + :actual_range = 0.2175275f, 0.9949439f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=1432); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=1432); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=1432, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=1432, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=1432); + :_FillValue = 99999; // int + :actual_range = 1, 145; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=1432, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.667699E-4f, 0.4301661f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.4299567f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.008599133f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=1432, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=1432, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 7.233927E-5f, 0.7693607f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 0.7692769f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01538554f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=1432, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=1432, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -8.08818E-5f, 0.9237587f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 0.9237961f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01847592f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=1432, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=1432, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.5117059f, 1083.984f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1083.439f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 54.17194f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=1432, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=1432, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 277.7341f, 344.6638f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 296.7589f, 354.268f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.383679f, 17.84084f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=1432, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=1432, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=1432); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.063523333333336, 56.94360833333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=1432); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.544945, -47.436168333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=1432); + :_FillValue = 99999.0f; // float + :actual_range = 5.760849f, 9.83035f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=1432); + :actual_range = 3.272496f, 99999.0f; // float + + float nitrate_adjusted_error(row=1432); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=1432, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=1432, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=1432); + :_FillValue = 99999.0f; // float + :actual_range = 8.093273f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=1432); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=1432); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=1432, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=1432, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=1432, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=1432); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=1432); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004125f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=1432, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=1432, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 27.411f, 34.764f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.022f, 34.774f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.005f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=1432, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=1432, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.937f, 8.6839f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.937f, 7.881f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=1432, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=1432, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=1432); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.65870072E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=1432); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.436168333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.94360833333333; // double + :geospatial_lat_min = 55.063523333333336; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.436168333333335; // double + :geospatial_lon_min = -53.544945; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:40:18Z (local files) +2024-09-24T12:40:18Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1651363200.0&time%3C=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.94360833333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.063523333333336; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2022-07-24T22:12:00Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.544945; // double +} diff --git a/argopy/tests/test_data/3a6da1b027346db6f51ff448646b5f723fbc03385de68fdd4365909c12171fe1.nc b/argopy/tests/test_data/3a6da1b027346db6f51ff448646b5f723fbc03385de68fdd4365909c12171fe1.nc new file mode 100644 index 00000000..e8d50062 Binary files /dev/null and b/argopy/tests/test_data/3a6da1b027346db6f51ff448646b5f723fbc03385de68fdd4365909c12171fe1.nc differ diff --git a/argopy/tests/test_data/3b10495d5b70484c9eda7a5572af79fceb3ba19166e3733b9638f578e7803e89.nc b/argopy/tests/test_data/3b10495d5b70484c9eda7a5572af79fceb3ba19166e3733b9638f578e7803e89.nc new file mode 100644 index 00000000..e0c93c7c Binary files /dev/null and b/argopy/tests/test_data/3b10495d5b70484c9eda7a5572af79fceb3ba19166e3733b9638f578e7803e89.nc differ diff --git a/argopy/tests/test_data/3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff.json b/argopy/tests/test_data/3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff.json new file mode 100644 index 00000000..f178fec0 --- /dev/null +++ b/argopy/tests/test_data/3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff.json @@ -0,0 +1,1982 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::841", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "841", + "skos:notation": "SDN:R08::841", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::841", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/1/" + }, + "dce:identifier": "SDN:R08::838", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + "skos:notation": "SDN:R08::838", + "skos:altLabel": "838", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::838", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-D deep profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/1/" + }, + "dce:identifier": "SDN:R08::831", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + }, + "skos:notation": "SDN:R08::831", + "skos:altLabel": "831", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PALACE float" + }, + "dc:identifier": "SDN:R08::831", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PALACE profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/2/" + }, + "dce:identifier": "SDN:R08::887", + "pav:version": "2", + "skos:notation": "SDN:R08::887", + "skos:altLabel": "887", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR" + }, + "dc:identifier": "SDN:R08::887", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, RBR float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/1/" + }, + "dce:identifier": "SDN:R08::880", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "skos:notation": "SDN:R08::880", + "skos:altLabel": "880", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::880", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/1/" + }, + "dce:identifier": "SDN:R08::877", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::877", + "skos:altLabel": "877", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX float with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::877", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/2/" + }, + "dce:identifier": "SDN:R08::881", + "pav:version": "2", + "skos:notation": "SDN:R08::881", + "skos:altLabel": "881", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "HM4000" + }, + "dc:identifier": "SDN:R08::881", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "HM4000 float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::851", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with SBE conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "851", + "skos:notation": "SDN:R08::851", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::851", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/1/" + }, + "dce:identifier": "SDN:R08::847", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::847", + "skos:altLabel": "847", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::847", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/1/" + }, + "dce:identifier": "SDN:R08::848", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + "skos:notation": "SDN:R08::848", + "skos:altLabel": "848", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-EM float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::848", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-EM profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR IV" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::835", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR IV" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "835", + "skos:notation": "SDN:R08::835", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::835", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/1/" + }, + "dce:identifier": "SDN:R08::837", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + }, + "skos:notation": "SDN:R08::837", + "skos:altLabel": "837", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR-C float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::837", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR-C profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/1/" + }, + "pav:authoredOn": "2024-04-19 16:29:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/2/" + }, + "dce:identifier": "SDN:R08::883", + "pav:version": "2", + "skos:notation": "SDN:R08::883", + "skos:altLabel": "883", + "dc:date": "2024-04-19 16:29:58.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX_D deep float with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::883", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX_D deep profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/1/" + }, + "dce:identifier": "SDN:R08::879", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "skos:notation": "SDN:R08::879", + "skos:altLabel": "879", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::879", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/2/" + }, + "dce:identifier": "SDN:R08::885", + "pav:version": "2", + "skos:notation": "SDN:R08::885", + "skos:altLabel": "885", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, RBR" + }, + "dc:identifier": "SDN:R08::885", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, RBR float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/1/" + }, + "dce:identifier": "SDN:R08::859", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::859", + "skos:altLabel": "859", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with no conductivity" + }, + "dc:identifier": "SDN:R08::859", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with no conductivity" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/1/" + }, + "dce:identifier": "SDN:R08::861", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::861", + "skos:altLabel": "861", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::861", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/1/" + }, + "dce:identifier": "SDN:R08::858", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::858", + "skos:altLabel": "858", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with TSK conductivity sensor" + }, + "dc:identifier": "SDN:R08::858", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Tsurumi-Seiki Co., Ltd (TSK) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/1/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR CTS4 generation with dual board" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::836", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR III" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "836", + "skos:notation": "SDN:R08::836", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R08::836", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/2/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/1/" + }, + "dce:identifier": "SDN:R08::843", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + }, + "skos:notation": "SDN:R08::843", + "skos:altLabel": "843", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "POPS ice platform using PROVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::843", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Polar Ocean Profiling System (POPS) ice platform using PROVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/1/" + }, + "dce:identifier": "SDN:R08::878", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "skos:notation": "SDN:R08::878", + "skos:altLabel": "878", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::878", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/2/" + }, + "dce:identifier": "SDN:R08::889", + "pav:version": "2", + "skos:notation": "SDN:R08::889", + "skos:altLabel": "889", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR" + }, + "dc:identifier": "SDN:R08::889", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, RBR float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/2/" + }, + "dce:identifier": "SDN:R08::888", + "pav:version": "2", + "skos:notation": "SDN:R08::888", + "skos:altLabel": "888", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE" + }, + "dc:identifier": "SDN:R08::888", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR_V - Jumbo, SBE float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/2/" + }, + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR V with Seabird CTD sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::834", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR V SBE" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:39:49.0", + "skos:altLabel": "834", + "skos:notation": "SDN:R08::834", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + } + ], + "pav:version": "2", + "dce:identifier": "SDN:R08::834" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/1/" + }, + "dce:identifier": "SDN:R08::863", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + "skos:notation": "SDN:R08::863", + "skos:altLabel": "863", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Navis-A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::863", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Navis-A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/1/" + }, + "dce:identifier": "SDN:R08::844", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + "skos:notation": "SDN:R08::844", + "skos:altLabel": "844", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ARVOR float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::844", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ARVOR profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/2/" + }, + "dce:identifier": "SDN:R08::886", + "pav:version": "2", + "skos:notation": "SDN:R08::886", + "skos:altLabel": "886", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE" + }, + "dc:identifier": "SDN:R08::886", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC_MRV, SBE float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/1/" + }, + "dce:identifier": "SDN:R08::853", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + }, + "skos:notation": "SDN:R08::853", + "skos:altLabel": "853", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::853", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/1/" + }, + "dce:identifier": "SDN:R08::864", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + }, + "skos:notation": "SDN:R08::864", + "skos:altLabel": "864", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::864", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::842", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "842", + "skos:notation": "SDN:R08::842", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::842", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/1/" + }, + "dce:identifier": "SDN:R08::845", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::845", + "skos:altLabel": "845", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::845", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/2/" + }, + "dce:identifier": "SDN:R08::890", + "pav:version": "2", + "skos:notation": "SDN:R08::890", + "skos:altLabel": "890", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE" + }, + "dc:identifier": "SDN:R08::890", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, SBE float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/1/" + }, + "dce:identifier": "SDN:R08::875", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "skos:notation": "SDN:R08::875", + "skos:altLabel": "875", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with RBR conductivity sensor" + }, + "dc:identifier": "SDN:R08::875", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with RBR conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::852", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with FSI conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "852", + "skos:notation": "SDN:R08::852", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::852", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/1/" + }, + "dce:identifier": "SDN:R08::856", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::856", + "skos:altLabel": "856", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::856", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/2/" + }, + "dce:identifier": "SDN:R08::884", + "pav:version": "2", + "skos:notation": "SDN:R08::884", + "skos:altLabel": "884", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO_BGC, SBE" + }, + "dc:identifier": "SDN:R08::884", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO_BGC, SBE float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/1/" + }, + "dce:identifier": "SDN:R08::862", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + "skos:notation": "SDN:R08::862", + "skos:altLabel": "862", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::862", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SOLO-D profiling deep float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/1/" + }, + "dce:identifier": "SDN:R08::854", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + "skos:notation": "SDN:R08::854", + "skos:altLabel": "854", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2A float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::854", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2A profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "PROVOR profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::840", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "840", + "skos:notation": "SDN:R08::840", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::840", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/1/" + }, + "dce:identifier": "SDN:R08::865", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + "skos:notation": "SDN:R08::865", + "skos:altLabel": "865", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NOVA float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::865", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NOVA profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/", + "pav:authoredOn": "2024-04-19 16:28:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/1/" + }, + "dce:identifier": "SDN:R08::872", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + "skos:notation": "SDN:R08::872", + "skos:altLabel": "872", + "dc:date": "2024-04-19 16:28:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "S2X" + }, + "dc:identifier": "SDN:R08::872", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "S2X profiling float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/1/" + }, + "dce:identifier": "SDN:R08::846", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + "skos:notation": "SDN:R08::846", + "skos:altLabel": "846", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::846", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/2/" + }, + "dce:identifier": "SDN:R08::891", + "pav:version": "2", + "skos:notation": "SDN:R08::891", + "skos:altLabel": "891", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR" + }, + "dc:identifier": "SDN:R08::891", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR_III - Jumbo, RBR float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "SOLO profiling float with no conductivity sensor" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R08::850", + "skos:prefLabel": { + "@language": "en", + "@value": "SOLO float with no conductivity sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:28:54.0", + "skos:altLabel": "850", + "skos:notation": "SDN:R08::850", + "skos:broader": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + } + ], + "pav:version": "1", + "dce:identifier": "SDN:R08::850", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/1/" + }, + "dce:identifier": "SDN:R08::839", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + "skos:notation": "SDN:R08::839", + "skos:altLabel": "839", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PROVOR-II float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::839", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "PROVOR-II profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/", + "pav:authoredOn": "2021-02-01 14:29:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/1/" + }, + "dce:identifier": "SDN:R08::876", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + "skos:notation": "SDN:R08::876", + "skos:altLabel": "876", + "dc:date": "2021-02-01 14:29:14.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "ALTO float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::876", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ALTO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/1/" + }, + "pav:authoredOn": "2023-10-05 14:39:49.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/2/" + }, + "dce:identifier": "SDN:R08::882", + "pav:version": "2", + "skos:notation": "SDN:R08::882", + "skos:altLabel": "882", + "dc:date": "2023-10-05 14:39:49.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "XUANWU" + }, + "dc:identifier": "SDN:R08::882", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "XUANWU float" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/1/" + }, + "dce:identifier": "SDN:R08::857", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::857", + "skos:altLabel": "857", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with FSI conductivity sensor" + }, + "dc:identifier": "SDN:R08::857", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with Falmouth Scientific Inc. (FSI) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/1/" + }, + "dce:identifier": "SDN:R08::860", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + "skos:notation": "SDN:R08::860", + "skos:altLabel": "860", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NEMO float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::860", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NEMO profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/1/" + }, + "dce:identifier": "SDN:R08::849", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + "skos:notation": "SDN:R08::849", + "skos:altLabel": "849", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX-D deep float with SBE conductivity sensor" + }, + "dc:identifier": "SDN:R08::849", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "APEX-D profiling float with Sea-Bird Scientific (SBE) conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/", + "pav:authoredOn": "2020-05-03 20:28:54.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/1/" + }, + "dce:identifier": "SDN:R08::855", + "pav:version": "1", + "skos:broader": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + "skos:notation": "SDN:R08::855", + "skos:altLabel": "855", + "dc:date": "2020-05-03 20:28:54.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NINJA float with no conductivity sensor" + }, + "dc:identifier": "SDN:R08::855", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "NINJA profiling float with no conductivity sensor" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/841/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/838/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/831/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/887/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/880/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/877/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/881/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/851/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/847/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/848/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/835/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/837/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/883/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/879/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/885/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/859/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/861/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/858/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/836/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/843/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/878/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/889/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/888/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/834/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/863/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/844/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/886/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/853/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/864/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/842/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/845/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/890/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/875/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/852/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/856/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/884/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/862/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/854/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/840/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/865/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/872/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/846/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/891/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/850/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/839/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/876/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/882/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/857/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/860/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/855/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R08/current/849/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Subset of instrument type codes from the World Meteorological Organization (WMO) Common Code Table C-3 (CCT C-3) 1770, named 'Instrument make and type for water temperature profile measurement with fall rate equation coefficients' and available here: https://library.wmo.int/doc_num.php?explnum_id=11283. Argo netCDF variable WMO_INST_TYPE is populated by R08 altLabel.", + "dc:title": "Argo instrument types", + "skos:prefLabel": "Argo instrument types", + "owl:versionInfo": "7", + "dc:date": "2024-04-20 03:00:06.0", + "skos:altLabel": "ARGO_WMO_INST_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "ARGO_WMO_INST_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R08" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/3b78450daf9c2a79c7da5a4ebcbf98025f7851c3eca1c4cf4e633d8a92df44e5.nc b/argopy/tests/test_data/3b78450daf9c2a79c7da5a4ebcbf98025f7851c3eca1c4cf4e633d8a92df44e5.nc new file mode 100644 index 00000000..15888238 Binary files /dev/null and b/argopy/tests/test_data/3b78450daf9c2a79c7da5a4ebcbf98025f7851c3eca1c4cf4e633d8a92df44e5.nc differ diff --git a/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json b/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json new file mode 100644 index 00000000..e1ebca04 --- /dev/null +++ b/argopy/tests/test_data/3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd.json @@ -0,0 +1 @@ +{"schemaVersion": 1, "label": "Argo BGC profiles", "message": "324625" } diff --git a/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc b/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc new file mode 100644 index 00000000..416068fc Binary files /dev/null and b/argopy/tests/test_data/3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51.nc differ diff --git a/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc b/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc new file mode 100644 index 00000000..9703b532 Binary files /dev/null and b/argopy/tests/test_data/40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5.nc differ diff --git a/argopy/tests/test_data/41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825.nc b/argopy/tests/test_data/41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825.nc new file mode 100644 index 00000000..caa1605e Binary files /dev/null and b/argopy/tests/test_data/41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825.nc differ diff --git a/argopy/tests/test_data/42bf3189d45e09b853c94262ca6a1e080b82c9ed02a20e7e7ae72c9307d4274e.ncHeader b/argopy/tests/test_data/42bf3189d45e09b853c94262ca6a1e080b82c9ed02a20e7e7ae72c9307d4274e.ncHeader new file mode 100644 index 00000000..e7515f6c --- /dev/null +++ b/argopy/tests/test_data/42bf3189d45e09b853c94262ca6a1e080b82c9ed02a20e7e7ae72c9307d4274e.ncHeader @@ -0,0 +1,123 @@ +netcdf ArgoFloats-reference_f9f3_f168_328f.nc { + dimensions: + row = 5485; + cycle_number_strlen = 3; + platform_number_strlen = 7; + variables: + char cycle_number(row=5485, cycle_number_strlen=3); + :_ChunkSizes = 1227; // int + :_Encoding = "ISO-8859-1"; + :ioos_category = "Unknown"; + :long_name = "Cycle number"; + + double latitude(row=5485); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Lat"; + :_FillValue = NaN; // double + :actual_range = 36.001, 40.0; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude"; + :standard_name = "latitude"; + :units = "degrees_north"; + + double longitude(row=5485); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Lon"; + :_FillValue = NaN; // double + :actual_range = -24.99199999999999, -10.010999999999996; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude"; + :standard_name = "longitude"; + :units = "degrees_east"; + + char platform_number(row=5485, platform_number_strlen=7); + :_ChunkSizes = 1227; // int + :_Encoding = "ISO-8859-1"; + :ioos_category = "Unknown"; + :long_name = "Platform number"; + + double pres(row=5485); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 0.10000000149011612, 10.0; // double + :ioos_category = "Pressure"; + :long_name = "Pressure"; + :missing_value = NaN; // double + + double psal(row=5485); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 33.305999755859375, 34.86213684082031; // double + :ioos_category = "Salinity"; + :long_name = "psal"; + :missing_value = NaN; // double + + double ptmp(row=5485); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 6.923198264806454, 27.434636367721033; // double + :ioos_category = "Unknown"; + :long_name = "ptmp"; + :missing_value = NaN; // double + + double temp(row=5485); + :_ChunkSizes = 64, 154; // int + :_FillValue = NaN; // double + :actual_range = 6.923999786376953, 27.43600082397461; // double + :ioos_category = "Temperature"; + :long_name = "Temperature"; + :missing_value = NaN; // double + + double time(row=5485); + :_ChunkSizes = 1227; // int + :_CoordinateAxisType = "Time"; + :actual_range = 9.4697546E8, 1.661923878E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Time"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + // global attributes: + :cdm_data_type = "Other"; + :Conventions = "COARDS, CF-1.6, ACDD-1.3"; + :Easternmost_Easting = -10.010999999999996; // double + :geospatial_lat_max = 40.0; // double + :geospatial_lat_min = 36.001; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -10.010999999999996; // double + :geospatial_lon_min = -24.99199999999999; // double + :geospatial_lon_units = "degrees_east"; + :history = "Mon Apr 29 14:02:51 2024: ncks -d n_levels,1501,2034 7402.nc 7402_3.nc +2024-09-24T08:15:39Z (local files) +2024-09-24T08:15:39Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude%3E=-25&longitude%3C=-10&latitude%3E=36&latitude%3C=40&pres%3E=0&pres%3C=10.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats-reference"; + :infoUrl = "http://www.argodatamgt.org/DMQC/Reference-data-base"; + :institution = "Argo"; + :keywords = "cycle, cycle_number, data, latitude, levels, local, longitude, n_levels, n_prof, name, number, pi_name, platform, platform_number, pres, pressure, prof, psal, ptmp, source, temp, temperature, time"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :NCO = "netCDF Operators version 4.9.7 (Homepage = http://nco.sf.net, Code = https://github.com/nco/nco)"; + :Northernmost_Northing = 40.0; // double + :sourceUrl = "(local files)"; + :Southernmost_Northing = 36.001; // double + :standard_name_vocabulary = "CF Standard Name Table v70"; + :summary = "Argo float vertical profiles to be used in DMQC. The free-moving nature of profiling floats means that most float measurements are without accompanying in-situ ground truth values for absolute calibration (such as those afforded by shipboard CTD measurements). Therefore Argo delayed-mode procedures for checking sensor drifts and offsets in salinity rely on reference datasets and statistical methods. Dataset assembled by John Gilson (SCRIPPS)"; + :time_coverage_end = "2022-08-31T05:31:18Z"; + :time_coverage_start = "2000-01-04T08:44:20Z"; + :title = "Argo Reference Measurements"; + :version = "2023V3"; + :Westernmost_Easting = -24.99199999999999; // double +} diff --git a/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html b/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html new file mode 100644 index 00000000..91c9b80f --- /dev/null +++ b/argopy/tests/test_data/442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53.html @@ -0,0 +1,16 @@ + + + Processing BGC-Argo pH data at the DAC level + + + + + + +

Processing BGC-Argo pH data at the DAC level

Seawater proton concentration is a master variable that controls the air-sea gas exchange of CO2, the ability of organisms to produce calcium carbonate shells, and that tracks the production and respiration of organic carbon as CO2 is removed or added to water by biological processes.  The proton concentration in seawater [H+] (mol kg-seawater-1) is typically reported as the pH = -log10 [H+].  The in situ proton concentration ranges from about 3 to 30 nmol kg-seawater-1 (7.5<pH<8.5).

+ +

Seawater pH is measured from profiling floats using a Deep-Sea DuraFET pH sensor that is manufactured at MBARI (Johnson et al., 2016) or at Sea-Bird Scientific (Float pH).  The core of each sensor is an Ion Sensitive Field Effect Transistor (ISFET), produced by Honeywell, that responds to proton activity and a Ag/AgCl reference electrode that responds to chloride ion activity.  When properly calibrated, the sensor measures the activity of HCl, which is the product of the activities of the two ions aH+ × aCl- (Martz et al., 2010).

Full Text

FilePagesSizeAccess
Version 1.2 (last version)
34492 Ko
Previous obsolete version
-1 Mo
How to cite
Johnson Kenneth S., Plant Joshua N., Maurer Tanya L., Takeshita Yuichihiro (2023). Processing BGC-Argo pH data at the DAC level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/57195

Copy this text

+ + + diff --git a/argopy/tests/test_data/44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de.json b/argopy/tests/test_data/44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de.json new file mode 100644 index 00000000..08245eb6 --- /dev/null +++ b/argopy/tests/test_data/44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de.json @@ -0,0 +1,11247 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/1/" + }, + "dce:identifier": "SDN:R18::CC00179", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00179", + "skos:altLabel": "Core Config 179 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for shallow depths (algorithm of data reduction) (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/1/" + }, + "dce:identifier": "SDN:R18::CC00220", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00220", + "skos:altLabel": "Core Config 220 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Define the period of valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar). The valve is open during CONFIG_ValveTimeActionBuoyancyReduction_csec each CONFIG_ValveTimeActionBuoyancyReduction_csec*CONFIG_ValveActionPeriodFactorBuoyancyReduction_NUMBER." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/1/" + }, + "dce:identifier": "SDN:R18::CC00041", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00041", + "skos:altLabel": "Core Config 41 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Descent speed during downcast (can be used to estimate the time to descent from parking pressure to profile pressure). Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/1/" + }, + "dce:identifier": "SDN:R18::CC00081", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00081", + "skos:altLabel": "Core Config 81 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeMinForGroundingDetection_cm^3" + }, + "dc:identifier": "SDN:R18::CC00081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_OilVolumeMinForGroundingDetection_cm^3 but for a float in a buoyancy inversion phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/1/" + }, + "dce:identifier": "SDN:R18::CC00060", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00060", + "skos:altLabel": "Core Config 60 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Timeout for GPS acquisition." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/1/" + }, + "dce:identifier": "SDN:R18::CC00090", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00090", + "skos:altLabel": "Core Config 90 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceEvasionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth. This is a parameter for AC1 ice algorithm which abort the profile at a prescribed depth (CONFIG_IceEvasionDepth_dbar) without any check on environmental conditions (as described in my email, AC1, ISA and AID algorithm are used together in the ice version of the CTS5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/1/" + }, + "dce:identifier": "SDN:R18::CC00163", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00163", + "skos:altLabel": "Core Config 163 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/1/" + }, + "dce:identifier": "SDN:R18::CC00142", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00142", + "skos:altLabel": "Core Config 142 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationMode_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Use the pressure activation feature." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/1/" + }, + "dce:identifier": "SDN:R18::CC00102", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00102", + "skos:altLabel": "Core Config 102 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef1_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First coefficient used to compute float internal pressure in mBars from sensor counts." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/2/" + }, + "dce:identifier": "SDN:R18::CB00050", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00050", + "skos:altLabel": "BGC Config 50 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaBandwidth_nm" + }, + "dc:identifier": "SDN:R18::CB00050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Beta # measurements (in nanometer)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/1/" + }, + "dce:identifier": "SDN:R18::CC00114", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00114", + "skos:altLabel": "Core Config 114 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfInternalCycles_COUNT" + }, + "dc:identifier": "SDN:R18::CC00114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of internal cycles. Note that the sub-cycle (i.e. final Argo cycle) durations are not really defined they are deduced from CONFIG_SurfaceDay_FloatDay and CONFIG_SurfaceTime_HH)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/2/" + }, + "dce:identifier": "SDN:R18::CB00062", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00062", + "skos:altLabel": "BGC Config 62 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaAngle_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Angle of Beta measurements (in degrees)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/1/" + }, + "dce:identifier": "SDN:R18::CC00003", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00003", + "skos:altLabel": "Core Config 3 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentAdjustmentToBuoyancy_seconds" + }, + "dc:identifier": "SDN:R18::CC00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "commonly cited as 'buoyancy nudge', this controls the ascent rate, units could be COUNT or whatever is reported, i.e. for SOLOII it is seconds pump is run to adjust float rise rate on ascent. May be changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/2/" + }, + "dce:identifier": "SDN:R18::CB00024", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00024", + "skos:altLabel": "BGC Config 24 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedBPhase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode B phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/1/" + }, + "dce:identifier": "SDN:R18::CC00093", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00093", + "skos:altLabel": "Core Config 93 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionEndTelemetryDay_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00093", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/1/" + }, + "dce:identifier": "SDN:R18::CC00175", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00175", + "skos:altLabel": "Core Config 175", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for intermediate depths (algorithm of data reduction) (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/2/" + }, + "dce:identifier": "SDN:R18::CB00058", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00058", + "skos:altLabel": "BGC Config 58 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for emission of fluorescence measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/1/" + }, + "dce:identifier": "SDN:R18::CC00187", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00187", + "skos:altLabel": "Core Config 187 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RafosSampling_minutes" + }, + "dc:identifier": "SDN:R18::CC00187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Awaiting clarification. Is this a clock time or a period? Is it set or reported by the float? Probably need a more specific name. A request is in with Webbs for more information." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/1/" + }, + "dce:identifier": "SDN:R18::CC00076", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00076", + "skos:altLabel": "Core Config 76 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxDaysNoTransmission_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum delay (in days/cycles) of no transmission due to the ice detection algorithm. This parameter is used to disable the ice detection algorithm and force the float to surface even if ice is detected." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/1/" + }, + "dce:identifier": "SDN:R18::CC00199", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00199", + "skos:altLabel": "Core Config 199 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceWaitPeriodAfterEmergencyAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the specific surface phase that occurs after an emergency ascent of the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/2/" + }, + "dce:identifier": "SDN:R18::CB00095", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00095", + "skos:altLabel": "BGC Config 95 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the ascent depth zone # of the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/1/" + }, + "dce:identifier": "SDN:R18::CC00015", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00015", + "skos:altLabel": "Core Config 15 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyMinimum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The minimum allowable buoyancy position in counts, overriding any other count setting. This configuration parameter prevents the movement of oil from the oil compartment of the bladder into the oil reservoir at the specified count to manage the maximum depth of a descent. In general CONFIG_BuoyancyMinimum_COUNT should be set less than the CONFIG_PistonProfile_COUNT." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/1/" + }, + "dce:identifier": "SDN:R18::CC00151", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00151", + "skos:altLabel": "Core Config 151 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeParking_minutes" + }, + "dc:identifier": "SDN:R18::CC00151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float drift at park or profile depth." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/1/" + }, + "dce:identifier": "SDN:R18::CC00207", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00207", + "skos:altLabel": "Core Config 207 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetryInterval_minutes" + }, + "dc:identifier": "SDN:R18::CC00207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Amount of time the float waits before trying to retransmit" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/1/" + }, + "dce:identifier": "SDN:R18::CC00027", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00027", + "skos:altLabel": "Core Config 27 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionInitialTimeOut_seconds" + }, + "dc:identifier": "SDN:R18::CC00027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Connection time-out allowed for initial connection to the RUDICS server - i.e. is the maximum time allowed for the float to connect to the RUDICS server; i.e. it tries to connect during 30 minutes (values set for these floats) if it fails it is probably because it is under ice (that has not been detected by ISA or hanging algorithms)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/1/" + }, + "dce:identifier": "SDN:R18::CC00019", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00019", + "skos:altLabel": "Core Config 19 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile1_HHMM" + }, + "dc:identifier": "SDN:R18::CC00019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiler configuration - Ascent end time - Profile 1. The expected time at the surface of Profile 1." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/1/" + }, + "dce:identifier": "SDN:R18::CC00200", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00200", + "skos:altLabel": "Core Config 200 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TargetAscentSpeed_cm/s" + }, + "dc:identifier": "SDN:R18::CC00200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Speed of ascent during upcast in cm/s" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/1/" + }, + "dce:identifier": "SDN:R18::CC00191", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00191", + "skos:altLabel": "Core Config 191 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriods_COUNT" + }, + "dc:identifier": "SDN:R18::CC00191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "the number of SEEKS (settles) that can be done by the float after descent as it 'settles' towards the drift target." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/2/" + }, + "dce:identifier": "SDN:R18::CB10008", + "pav:version": "2", + "skos:notation": "SDN:R18::CB10008", + "skos:altLabel": "BGC Config 8.1 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerAcquisitionMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB10008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the Sensor defined by Input options for CTD (1 : continuous, 2 : pulsed). Input options for Optode (0: none, 1 : continuous, 2 : pulsed)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/2/" + }, + "dce:identifier": "SDN:R18::CB00030", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00030", + "skos:altLabel": "BGC Config 30 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmitted_COUNT" + }, + "dc:identifier": "SDN:R18::CB00030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr # measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/1/" + }, + "dce:identifier": "SDN:R18::CC00212", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00212", + "skos:altLabel": "Core Config 212", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The float performs a telemetry transmission at the end of the cycle (Yes=1/No=0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/1/" + }, + "dce:identifier": "SDN:R18::CC00108", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00108", + "skos:altLabel": "Core Config 108 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxSizeEngineeringLogFile_kbyte" + }, + "dc:identifier": "SDN:R18::CC00108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum size of engineering log file." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/2/" + }, + "dce:identifier": "SDN:R18::CB00042", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00042", + "skos:altLabel": "BGC Config 42 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMinTransmittedNitrateConcentration_umol/L" + }, + "dc:identifier": "SDN:R18::CB00042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Suna nitrate concentration measurements (in micro-Mol/L)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/1/" + }, + "dce:identifier": "SDN:R18::CC00097", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00097", + "skos:altLabel": "Core Config 97", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementTime_minutes" + }, + "dc:identifier": "SDN:R18::CC00097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the \"in air measurement\" phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/1/" + }, + "dce:identifier": "SDN:R18::CC00125", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00125", + "skos:altLabel": "Core Config 125 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkAndProfileCycleCounter_COUNT" + }, + "dc:identifier": "SDN:R18::CC00125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The number of profiles performed from Park depth before a deep profile is done. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/2/" + }, + "dce:identifier": "SDN:R18::CB00070", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00070", + "skos:altLabel": "BGC Config 70 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfDepthZone_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of depth zones defined for the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/2/" + }, + "dce:identifier": "SDN:R18::CB10004", + "pav:version": "2", + "skos:notation": "SDN:R18::CB10004", + "skos:altLabel": "BGC Config 4.1 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtParkPresSamplingPeriod_minutes" + }, + "dc:identifier": "SDN:R18::CB10004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at parking pressure (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/1/" + }, + "dce:identifier": "SDN:R18::CC00216", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00216", + "skos:altLabel": "Core Config 216 - Optional (Mandatory if Argos)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionRepetitionPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "transmission repetition rate, metadata for most floats - may be variable for two-way communication" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/1/" + }, + "dce:identifier": "SDN:R18::CC00039", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00039", + "skos:altLabel": "Core Config 39 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthTable_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth table number for profiler sampling pressures. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/2/" + }, + "dce:identifier": "SDN:R18::CB00054", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00054", + "skos:altLabel": "BGC Config 54 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InPumpedStream_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bio Argo sensors can either be mounted separately to the Ctd or mounted within the Ctd pumped stream. Values: Yes = 1, No = 0" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/1/" + }, + "dce:identifier": "SDN:R18::CC00206", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00206", + "skos:altLabel": "Core Config 206 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRetransmission_COUNT" + }, + "dc:identifier": "SDN:R18::CC00206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "To transmit N Argos messages, the transmission duration of an Argos PROVOR float is : MAX([N*CONFIG_TransmissionRepetitionPeriod_seconds*CONFIG_TelemetryRetransmission_COUNT]/3600, CONFIG_TransmissionMaxTime_hours).So I will use CONFIG_TelemetryRetransmission_COUNT" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/1/" + }, + "dce:identifier": "SDN:R18::CC00006", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00006", + "skos:altLabel": "Core Config 6 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeed_mm/s" + }, + "dc:identifier": "SDN:R18::CC00006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "ascent speed during upcast (can be used to estimate the profile duration). Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/1/" + }, + "dce:identifier": "SDN:R18::CC00146", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00146", + "skos:altLabel": "Core Config 146 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeAscent_minutes" + }, + "dc:identifier": "SDN:R18::CC00146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float ascent to surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/2/" + }, + "dce:identifier": "SDN:R18::CB00066", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00066", + "skos:altLabel": "BGC Config 66 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IgnoreSamplesWhenPumpActive_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ignore sample measurements acquired while the hydraulic pump is running. Values: Yes = 1, No = 0" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/2/" + }, + "dce:identifier": "SDN:R18::CB00078", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00078", + "skos:altLabel": "BGC Config 78 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingRate_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/2/" + }, + "dce:identifier": "SDN:R18::CB00091", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00091", + "skos:altLabel": "BGC Config 91 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStartPres_dbar" + }, + "dc:identifier": "SDN:R18::CB00091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the ascent depth zone # of the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/1/" + }, + "dce:identifier": "SDN:R18::CC00158", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00158", + "skos:altLabel": "Core Config 158 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceBeforeReposition_dbar" + }, + "dc:identifier": "SDN:R18::CC00158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval before performing a buoyancy readjustment to reposition during the drift at parking depth. When a PRES measurement (sampled to monitor the float drift at parking depth) is outside the [parking_pressure +- CONFIG_PressureTargetToleranceBeforeReposition_dbar] interval, the float adjust its buoyancy." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/1/" + }, + "dce:identifier": "SDN:R18::CC00011", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00011", + "skos:altLabel": "Core Config 11 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentToSurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "maximum time a float will try to reach its target depth (surface) before aborting this step" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/1/" + }, + "dce:identifier": "SDN:R18::CC00053", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00053", + "skos:altLabel": "Core Config 53 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstBuoyancyNudge_COUNT" + }, + "dc:identifier": "SDN:R18::CC00053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "test message data - initial buoyancy nudge which is used at both the beginning and end of the profile. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/2/" + }, + "dce:identifier": "SDN:R18::CB00001", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00001", + "skos:altLabel": "BGC Config 1 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDepthZonePressureThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CB00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold between depth zone #N and depth zone #N+1 for (in dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/1/" + }, + "dce:identifier": "SDN:R18::CC00134", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00134", + "skos:altLabel": "Core Config 134 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/1/" + }, + "dce:identifier": "SDN:R18::CC00023", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00023", + "skos:altLabel": "Core Config 23 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockPresetStartCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cycle to start at a preset time 0: Disabled; 1: Enabled. Potentially phase determining, phase 0 if never changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/1/" + }, + "dce:identifier": "SDN:R18::CC00065", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00065", + "skos:altLabel": "Core Config 65 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModePresAdjustment_dbar" + }, + "dc:identifier": "SDN:R18::CC00065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure to its programmed one minus this value only if its current pressure is greater than this value." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/2/" + }, + "dce:identifier": "SDN:R18::CB00013", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00013", + "skos:altLabel": "BGC Config 13 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedPressure_dbar" + }, + "dc:identifier": "SDN:R18::CB00013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd pressure measurements (in dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/1/" + }, + "dce:identifier": "SDN:R18::CC00155", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00155", + "skos:altLabel": "Core Config 155 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetResetAtSurface_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/1/" + }, + "dce:identifier": "SDN:R18::CC00047", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00047", + "skos:altLabel": "Core Config 47 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Direction_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascending = 1, Descending = 2, Ascending and Descending = 3" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/1/" + }, + "dce:identifier": "SDN:R18::CC00195", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00195", + "skos:altLabel": "Core Config 195 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTime_HH" + }, + "dc:identifier": "SDN:R18::CC00195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time of day of float surfacing - could be hour of the float surfacing or could be stored as seconds when set as hh:mm:ss (e.g. for PROVOR CTS5)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/2/" + }, + "dce:identifier": "SDN:R18::CB00034", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00034", + "skos:altLabel": "BGC Config 34 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedBeta_COUNT" + }, + "dc:identifier": "SDN:R18::CB00034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/2/" + }, + "dce:identifier": "SDN:R18::CB00017", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00017", + "skos:altLabel": "BGC Config 17 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedSalinity_mpsu" + }, + "dc:identifier": "SDN:R18::CB00017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd salinity measurements (in milli-PSU)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/2/" + }, + "dce:identifier": "SDN:R18::CB00074", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00074", + "skos:altLabel": "BGC Config 74 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/1/" + }, + "dce:identifier": "SDN:R18::CC00167", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00167", + "skos:altLabel": "Core Config 167 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionIntermediateToDeep_dbar" + }, + "dc:identifier": "SDN:R18::CC00167", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The isobar that divides intermediate depths from deep depths for the purpose of data reduction with 3 depth zones (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/1/" + }, + "dce:identifier": "SDN:R18::CC00171", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00171", + "skos:altLabel": "Core Config 171 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileDepthInterval_dbar" + }, + "dc:identifier": "SDN:R18::CC00171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target depth interval between final CTD samples when in the spot sampling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/2/" + }, + "dce:identifier": "SDN:R18::CB00046", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00046", + "skos:altLabel": "BGC Config 46 - Mandatory (if applies)", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelBegin_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/2/" + }, + "dce:identifier": "SDN:R18::CB00029", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00029", + "skos:altLabel": "BGC Config 29 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmitted_COUNT" + }, + "dc:identifier": "SDN:R18::CB00029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr # measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/2/" + }, + "dce:identifier": "SDN:R18::CB00086", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00086", + "skos:altLabel": "BGC Config 86 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/1/" + }, + "dce:identifier": "SDN:R18::CC00130", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00130", + "skos:altLabel": "Core Config 130 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriod_hours" + }, + "dc:identifier": "SDN:R18::CC00130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "specifies sampling period during the park phase, e.g. for APEX floats could be hourly or for ARVOR floats 12 hourly, for SOLO/SOLOII floats this definition is: P,T,S is sampled during drift (park) every CONFIG_ParkSamplingPeriod_hours, e.g. every 2 hours. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/1/" + }, + "dce:identifier": "SDN:R18::CC00059", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00059", + "skos:altLabel": "Core Config 59", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClockSensorCard_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/1/" + }, + "dce:identifier": "SDN:R18::CC00183", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00183", + "skos:altLabel": "Core Config 183 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the last pump action of the buoyancy acquisition phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/1/" + }, + "dce:identifier": "SDN:R18::CC00085", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00085", + "skos:altLabel": "Core Config 85 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSalinityCoefficient_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coefficient used when Salinity is considered in the ice evasion criteria (i.e. median(TEMP) < CONFIG_IceDetection_degC+CONFIG_IceDetectionSalinityCoefficient_NUMBER*median(PSAL))." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/1/" + }, + "dce:identifier": "SDN:R18::CC00218", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00218", + "skos:altLabel": "Core Config 218 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TriProfileOption_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiler configuration - Tri profile option (Yes = 1, No = 0). From the first generation of PROVOR floats for which a number of configurations are allowed, i.e. if tri profile is yes, it indicates a float which performs 1 deep profile followed by two shallower profiles." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/1/" + }, + "dce:identifier": "SDN:R18::CC00072", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00072", + "skos:altLabel": "Core Config 72 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConnectionTimeOut_minutes" + }, + "dc:identifier": "SDN:R18::CC00072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_ConnectionTimeOut_minutes but for the first telemetry session of a float in ice detection mode(i.e. in ice detection mode the float reduces the timeout of the first Iridium connection: if the first connection fails the cycle is aborted (ice probably present) but if the first connection succeeds (waters free of ice) the float switches to the nominal timeout (CONFIG_ConnectionTimeOut_minutes) for the following transmissions of the current cycle)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/2/" + }, + "dce:identifier": "SDN:R18::CB00036", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00036", + "skos:altLabel": "BGC Config 36 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxTransmittedFluorescence_COUNT" + }, + "dc:identifier": "SDN:R18::CB00036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/1/" + }, + "dce:identifier": "SDN:R18::CC00138", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00138", + "skos:altLabel": "Core Config 138 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionPressureActivation_COUNT" + }, + "dc:identifier": "SDN:R18::CC00138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset piston position for pressure activation. Can only go in phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/2/" + }, + "dce:identifier": "SDN:R18::CB00005", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00005", + "skos:altLabel": "BGC Config 5 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfilePresSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to profile pressure (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/1/" + }, + "dce:identifier": "SDN:R18::CC00104", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00104", + "skos:altLabel": "Core Config 104 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_LoggingVerbosity_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Logging verbosity is an integer (values in range [0,4] for these floats) describing the parameters to be output. An integer in the range [0,4] that determines the logging verbosity with lower values producing more terse logging. A verbosity of 2 yields standard logging." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/1/" + }, + "dce:identifier": "SDN:R18::CC00031", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00031", + "skos:altLabel": "Core Config 31 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CC00031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The pressure in decibars added to the most recently measured pressure at the surface, the sum of which is the pressure at which the conductivity, temperature and pressure sampling stops for a pumped type CTD. It is also the pressure at which the Surface phase begins." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/1/" + }, + "dce:identifier": "SDN:R18::CC00036", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00036", + "skos:altLabel": "Core Config 36 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureDescendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "deepest pressure sampled in the descending profile - example 500 for a profile ending at 500 dbar" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/2/" + }, + "dce:identifier": "SDN:R18::CB00048", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00048", + "skos:altLabel": "BGC Config 48 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VerticalPressureOffset_dbar" + }, + "dc:identifier": "SDN:R18::CB00048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "vertical pressure offset due to the fact that the sensor is not exactly at the Ctd pressure" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/1/" + }, + "dce:identifier": "SDN:R18::CC00122", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00122", + "skos:altLabel": "Core Config 122 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionAscent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during ascent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/1/" + }, + "dce:identifier": "SDN:R18::CC00089", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00089", + "skos:altLabel": "Core Config 89 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTestDuration_seconds" + }, + "dc:identifier": "SDN:R18::CC00089", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the ice detection test." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/1/" + }, + "dce:identifier": "SDN:R18::CC00116", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00116", + "skos:altLabel": "Core Config 116 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSubCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of sub-cycles performs by the float during one float cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/1/" + }, + "dce:identifier": "SDN:R18::CC00043", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00043", + "skos:altLabel": "Core Config 43", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingTime_seconds" + }, + "dc:identifier": "SDN:R18::CC00043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the descent to parking pressure (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/2/" + }, + "dce:identifier": "SDN:R18::CB00007", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00007", + "skos:altLabel": "BGC Config 7 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the ascending profile (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/1/" + }, + "dce:identifier": "SDN:R18::CC00020", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00020", + "skos:altLabel": "Core Config 20 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile2_HHMM" + }, + "dc:identifier": "SDN:R18::CC00020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiler configuration - Ascent end time - Profile 2. The expected time at the surface of Profile 2." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/1/" + }, + "dce:identifier": "SDN:R18::CC00169", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00169", + "skos:altLabel": "Core Config 169 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for bottom depth (algorithm of data reduction)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/1/" + }, + "dce:identifier": "SDN:R18::CC00186", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00186", + "skos:altLabel": "Core Config 186", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisitionForInAirMeasCycle_csec" + }, + "dc:identifier": "SDN:R18::CC00186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the last pump action of the buoyancy acquisition phase when a \"in air measurement\" phase is programmed (in centi-seconds). [For a cycle without \"in air measurement phase\" it is CONFIG_PumpActionTimeBuoyancyAcquisition_csec]." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/1/" + }, + "dce:identifier": "SDN:R18::CC00073", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00073", + "skos:altLabel": "Core Config 73 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionConsecutiveDetectionBeforeFloatSurfaceInhibition_Number" + }, + "dc:identifier": "SDN:R18::CC00073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive ISA detections before float surface inhibition. If fewer consecutive ice detections are made, then the float will immediately seek the surface if mixed layer temp is warm." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/1/" + }, + "dce:identifier": "SDN:R18::CC00055", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00055", + "skos:altLabel": "Core Config 55 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndCycle_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The float performs a GPS session to acquire a GPS fix at the end of the cycle (Yes=1/No=0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/2/" + }, + "dce:identifier": "SDN:R18::CB00019", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00019", + "skos:altLabel": "BGC Config 19 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC1Phase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C1 phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/1/" + }, + "dce:identifier": "SDN:R18::CC00126", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00126", + "skos:altLabel": "Core Config 126 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "park pressure - this may change if the float is reprogrammed and must be reported in the mission configuration settings" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/1/" + }, + "dce:identifier": "SDN:R18::CC00170", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00170", + "skos:altLabel": "Core Config 170 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileBottomSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Thickness of the slices for deep depths (algorithm of data reduction) (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/1/" + }, + "dce:identifier": "SDN:R18::CC00202", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00202", + "skos:altLabel": "Core Config 202 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryEncodeMessage_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Encode the message before transmission (Yes=1/No=0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/2/" + }, + "dce:identifier": "SDN:R18::CB00020", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00020", + "skos:altLabel": "BGC Config 20 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC1Phase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C1 phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/2/" + }, + "dce:identifier": "SDN:R18::CB00090", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00090", + "skos:altLabel": "BGC Config 90 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseNumberOfDepthZone_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of ascent depth zones defined for the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/1/" + }, + "dce:identifier": "SDN:R18::CC00024", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00024", + "skos:altLabel": "Core Config 24 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockStartCycle_minutes" + }, + "dc:identifier": "SDN:R18::CC00024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset time to start the cycle, minutes after midnight. Potentially phase determining, phase 0 if never changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/1/" + }, + "dce:identifier": "SDN:R18::CC00128", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00128", + "skos:altLabel": "Core Config 128 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingMethod_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Have to convert string input to LOGICAL (1 = averaged, 0 = spot sampling). Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/1/" + }, + "dce:identifier": "SDN:R18::CC00067", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00067", + "skos:altLabel": "Core Config 67 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HydraulicDataTransmission_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The float transmits hydraulic data at the end of the cycle. The float records the pump/valve actions (time, pressure, duration); these data can be transmitted (or not) in specific SBD messages through a remote control command. Input: (Yes=1/No=0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/1/" + }, + "dce:identifier": "SDN:R18::CC00110", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00110", + "skos:altLabel": "Core Config 110 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinValveActionForSurfaceGroundingDetection_COUNT" + }, + "dc:identifier": "SDN:R18::CC00110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum number of surface valve attempts without change in pressure to set the surface grounding flag." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/1/" + }, + "dce:identifier": "SDN:R18::CC00077", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00077", + "skos:altLabel": "Core Config 77 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum sampling pressure used by ice cover detection algorithm. i.e. start pressure threshold for ice detection algorithm)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/2/" + }, + "dce:identifier": "SDN:R18::CB00057", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00057", + "skos:altLabel": "BGC Config 57 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for excitation of fluorescence measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/1/" + }, + "dce:identifier": "SDN:R18::CC00214", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00214", + "skos:altLabel": "Core Config 214 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMinTime_hours" + }, + "dc:identifier": "SDN:R18::CC00214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The time the float will remain on the surface transmitting its data at the end of each cycle. At lower latitudes you may wish to increase the value of this parameter to increase the probability of reception of all of your data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/1/" + }, + "dce:identifier": "SDN:R18::CC00141", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00141", + "skos:altLabel": "Core Config 141 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationCheckTime_hours" + }, + "dc:identifier": "SDN:R18::CC00141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "in pressure activated floats this parameter sets how often the float will test whether it is in the water, e.g. Every 2 hours" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/2/" + }, + "dce:identifier": "SDN:R18::CB00032", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00032", + "skos:altLabel": "BGC Config 32 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMaxTransmittedPar_COUNT" + }, + "dc:identifier": "SDN:R18::CB00032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ocr Photosynthetic Active Radiation measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/1/" + }, + "dce:identifier": "SDN:R18::CC00026", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00026", + "skos:altLabel": "Core Config 26", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionFailureTimeOut_minutes" + }, + "dc:identifier": "SDN:R18::CC00026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Is the maximum time allowed for the float to connect to the RUDICS server; i.e. it tries to connect during 30 minutes (values set for these floats) if it fails it is probably because it is under ice (that has not been detected by ISA or hanging algorithms)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/1/" + }, + "dce:identifier": "SDN:R18::CC00079", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00079", + "skos:altLabel": "Core Config 79 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionNoVerticalMotionTimeOut_csec" + }, + "dc:identifier": "SDN:R18::CC00079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the float is in ice detection mode if, despite of pump actions, no vertical motion is detected during this delay, the cycle is aborted." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/1/" + }, + "dce:identifier": "SDN:R18::CC00174", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00174", + "skos:altLabel": "Core Config 174 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIntermediateBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for intermediate depth (algorithm of data reduction)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/1/" + }, + "dce:identifier": "SDN:R18::CC00061", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00061", + "skos:altLabel": "Core Config 61 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingMode_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Action performed by the float when a grounding is detected. 0: the float changes its drift pressure, 1: the float stays on the seabed until the next phase of the cycle. For PROVOR CTS5 the number assigned to each mode has changed - see float manual for details for this model." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/1/" + }, + "dce:identifier": "SDN:R18::CC00100", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00100", + "skos:altLabel": "Core Config 100 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregYear_YYYY" + }, + "dc:identifier": "SDN:R18::CC00100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last year to use float cycle duration # (in Gregorian year, two digits). (D is a number denoting the internal cycle label)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/2/" + }, + "dce:identifier": "SDN:R18::CB00041", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00041", + "skos:altLabel": "BGC Config 41 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaDataType_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Type of transmitted data from te Suna sensor (0 : nitrate concentration, 1 : Apf frame spectrum)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/2/" + }, + "dce:identifier": "SDN:R18::CB00094", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00094", + "skos:altLabel": "BGC Config 94 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSampleRate_hertz" + }, + "dc:identifier": "SDN:R18::CB00094", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sample rate for the ascent depth zone # of the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/1/" + }, + "dce:identifier": "SDN:R18::CC00153", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00153", + "skos:altLabel": "Core Config 153 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureMaxBeforeEmergencyAscent_dbar" + }, + "dc:identifier": "SDN:R18::CC00153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Emergency ascent phase start pressure (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/1/" + }, + "dce:identifier": "SDN:R18::CC00028", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00028", + "skos:altLabel": "Core Config 28 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ConnectionTimeOut_seconds" + }, + "dc:identifier": "SDN:R18::CC00028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Connection time-out, i.e. maximum transmission period for one telemetry session (an example: for this float version it is the maximum duration of the RUDICS session; for example if the RUDICS session lasts more that 2 hours (value set for these floats which are ice floats which may have stored cycles to transmits) the float disconnects and starts a new deep cycle (the remaining stored data will be transmitted next transmission session)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/1/" + }, + "dce:identifier": "SDN:R18::CC00038", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00038", + "skos:altLabel": "Core Config 38", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DelayBeforeMissionStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period before the first cycle of its mission (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/2/" + }, + "dce:identifier": "SDN:R18::CB00044", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00044", + "skos:altLabel": "BGC Config 44 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_VectorBoardShowModeOn_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Is the vector board show mode ON? (Yes/No)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/2/" + }, + "dce:identifier": "SDN:R18::CB00097", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00097", + "skos:altLabel": "BGC Config 97 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the sensor during the \"in air measurement\" phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/1/" + }, + "dce:identifier": "SDN:R18::CC00112", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00112", + "skos:altLabel": "Core Config 112 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeTime_hours" + }, + "dc:identifier": "SDN:R18::CC00112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This is the duration the float transmits test messages for (from start up) before the first dive. It’s crucial in calculating the time of the first descent. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/2/" + }, + "dce:identifier": "SDN:R18::CB00003", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00003", + "skos:altLabel": "BGC Config 3 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkPresSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the descent to parking pressure (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/1/" + }, + "dce:identifier": "SDN:R18::CC00012", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00012", + "skos:altLabel": "Core Config 12 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If the float vertical motion, during CONFIG_PressureCheckTimeAscent_minutes, is less than this threshold, the float makes buoyancy adjustments." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/1/" + }, + "dce:identifier": "SDN:R18::CC00165", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00165", + "skos:altLabel": "Core Config 165 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationDuringAscent_dbar" + }, + "dc:identifier": "SDN:R18::CC00165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation during ascent at a prescribed depth. The prescibed depth could be the PRES threshold to start low ascent (but I think this should not be in the definition which should stay more generic)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/2/" + }, + "dce:identifier": "SDN:R18::CB00056", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00056", + "skos:altLabel": "BGC Config 56 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlbbSampling_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Specifies whether the Flbb instrument is set to sample. Values: Zero disables sampling and nonzero enables sampling." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/1/" + }, + "dce:identifier": "SDN:R18::CC00211", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00211", + "skos:altLabel": "Core Config 211 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeStartFirstDescentToStartFirstAscent_hours" + }, + "dc:identifier": "SDN:R18::CC00211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time, in hours, between 1st descent and 1st ascent - period between mission prelude and start of first profile. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/1/" + }, + "dce:identifier": "SDN:R18::CC00178", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00178", + "skos:altLabel": "Core Config 178 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSurfaceBinInterval_cbar" + }, + "dc:identifier": "SDN:R18::CC00178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Depth intervals for shallow depth (algorithm of data reduction)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/2/" + }, + "dce:identifier": "SDN:R18::CB00045", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00045", + "skos:altLabel": "BGC Config 45 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SensorBoardShowModeOn_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Is the sensor board show mode ON? (Yes/No)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/2/" + }, + "dce:identifier": "SDN:R18::CB00098", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00098", + "skos:altLabel": "BGC Config 98 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMinTransmittedVrsPh_volts" + }, + "dc:identifier": "SDN:R18::CB00098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Vrs_pH measurements (in volts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/1/" + }, + "dce:identifier": "SDN:R18::CC00124", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00124", + "skos:altLabel": "Core Config 124 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OkVacuum_COUNT" + }, + "dc:identifier": "SDN:R18::CC00124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal vacuum threshold (counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/1/" + }, + "dce:identifier": "SDN:R18::CC00051", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00051", + "skos:altLabel": "Core Config 51 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeSpringSummer_hours" + }, + "dc:identifier": "SDN:R18::CC00051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset duration of the down time (start of descent to start of ascent) specific to the spring/summer period. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/2/" + }, + "dce:identifier": "SDN:R18::CB00015", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00015", + "skos:altLabel": "BGC Config 15 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMinTransmittedTemperature_mdegC" + }, + "dc:identifier": "SDN:R18::CB00015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ctd temperature measurements (in milli-DegC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/1/" + }, + "dce:identifier": "SDN:R18::CC00014", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00014", + "skos:altLabel": "Core Config 14", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceEvasionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When is ice evasion active - months in reverse order. This is a parameter for AC1 which provides the months it should be used." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/1/" + }, + "dce:identifier": "SDN:R18::CC00177", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00177", + "skos:altLabel": "Core Config 177 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileSamplingMethod_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00177", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Have to convert string input to LOGICAL (1 = averaged, 0 = spot sampling)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/1/" + }, + "dce:identifier": "SDN:R18::CC00162", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00162", + "skos:altLabel": "Core Config 162 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisation_dbar" + }, + "dc:identifier": "SDN:R18::CC00162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at parking or profile depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/1/" + }, + "dce:identifier": "SDN:R18::CC00010", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00010", + "skos:altLabel": "Core Config 10 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentTime_hours" + }, + "dc:identifier": "SDN:R18::CC00010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset duration of ascent" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/1/" + }, + "dce:identifier": "SDN:R18::CC00209", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00209", + "skos:altLabel": "Core Config 209 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes" + }, + "dc:identifier": "SDN:R18::CC00209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time delay between each new attempt to descend when the float is stuck at the surface. When the float cannot reach the pressure threshold defined by \"CONFIG_BuoyancyReductionFirstThreshold_dbar\" after a given number of buoyancy actions it waits a period of time specified by \"CONFIG_TimeDelaybeforeDescentRetryWhenStuckAtSurface_minutes\" before starting a new sequence of buoyancy actions." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/2/" + }, + "dce:identifier": "SDN:R18::CB00082", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00082", + "skos:altLabel": "BGC Config 82 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/1/" + }, + "dce:identifier": "SDN:R18::CC00136", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00136", + "skos:altLabel": "Core Config 136 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionBallast_COUNT" + }, + "dc:identifier": "SDN:R18::CC00136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/1/" + }, + "dce:identifier": "SDN:R18::CC00129", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00129", + "skos:altLabel": "Core Config 129 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingNumberValsReported_COUNT" + }, + "dc:identifier": "SDN:R18::CC00129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of values reported during a single park period, e.g. a float may perform hourly sampling for 105 hrs and report this as two averaged samples for that park period. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/1/" + }, + "dce:identifier": "SDN:R18::CC00063", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00063", + "skos:altLabel": "Core Config 63 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeForProfileDepth_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Action performed by the float when a grounding is detected during descent to profile depth. For PROVOR CTS5 floats: 2: the float stays on the seabed until the ascent start time, 3: the ascent starts immediately. In this float version the actions to be performed when a grounding is detected at parking depth (stored in CONFIG_GroundingMode_NUMBER) or at profile depth (stored in CONFIG_GroundingModeForProfileDepth_NUMBER) may differ. Consequently we need 2 configuration parameters." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/2/" + }, + "dce:identifier": "SDN:R18::CB00027", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00027", + "skos:altLabel": "BGC Config 27 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedTemperature_mdegC" + }, + "dc:identifier": "SDN:R18::CB00027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode temperature measurements (in milli-DegC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/1/" + }, + "dce:identifier": "SDN:R18::CC00215", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00215", + "skos:altLabel": "Core Config 215", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionPeriodEndOfLife_minutes" + }, + "dc:identifier": "SDN:R18::CC00215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the Iridium transmission when in End Of Life mode (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/1/" + }, + "dce:identifier": "SDN:R18::CC00189", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00189", + "skos:altLabel": "Core Config 189 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSession_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This float has a RUDICS transmission system. However it is able to connect to Iridium if the user want to get one Iridium position for each cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/2/" + }, + "dce:identifier": "SDN:R18::CB00049", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00049", + "skos:altLabel": "BGC Config 49 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BetaWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Beta # measurements (in nanometer)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/1/" + }, + "dce:identifier": "SDN:R18::CC00210", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00210", + "skos:altLabel": "Core Config 210", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelaybetweenRecoveryMessage_minutes" + }, + "dc:identifier": "SDN:R18::CC00210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delay time between recovery messages in [minutes]" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/1/" + }, + "dce:identifier": "SDN:R18::CC00022", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00022", + "skos:altLabel": "Core Config 22 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Preset time to start ascent profile, if units = MINUTES (in minutes past midnight), if units = HH (24 hour clock). Potentially phase determining, phase 0 if never changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/1/" + }, + "dce:identifier": "SDN:R18::CC00018", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00018", + "skos:altLabel": "Core Config 18 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionSecondThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second threshold of the buoyancy reduction phase (see float manual for explanations)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/1/" + }, + "dce:identifier": "SDN:R18::CC00148", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00148", + "skos:altLabel": "Core Config 148 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescent_minutes" + }, + "dc:identifier": "SDN:R18::CC00148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float descent (after CONFIG_BuoyancyReductionSecondThreshold_dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/1/" + }, + "dce:identifier": "SDN:R18::CC00113", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00113", + "skos:altLabel": "Core Config 113 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionSignature_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Awaiting clarification. A request is in with Webb for more information" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/1/" + }, + "dce:identifier": "SDN:R18::CC00075", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00075", + "skos:altLabel": "Core Config 75 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionISAMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Mode of the ISA ice detection algorithm (see float manual for details). For this firmware Mar 2018 the values are (0: not used, 1: algorithm based on temperature median value, 2: algorithm based on temperature median value and associated salinities)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/2/" + }, + "dce:identifier": "SDN:R18::CB00081", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00081", + "skos:altLabel": "BGC Config 81 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStopTime_seconds" + }, + "dc:identifier": "SDN:R18::CB00081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Stop time to define the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/1/" + }, + "dce:identifier": "SDN:R18::CC00166", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00166", + "skos:altLabel": "Core Config 166 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReduction_dbar" + }, + "dc:identifier": "SDN:R18::CC00166", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The isobar that divides shallow depths from deep depths for the purpose of data reduction (in dbars). For floats with 2 depth zones." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/2/" + }, + "dce:identifier": "SDN:R18::CB00033", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00033", + "skos:altLabel": "BGC Config 33 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedBeta_COUNT" + }, + "dc:identifier": "SDN:R18::CB00033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted beta measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/2/" + }, + "dce:identifier": "SDN:R18::CB00040", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00040", + "skos:altLabel": "BGC Config 40 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMaxTransmittedBeamAttenuation_m^-1" + }, + "dc:identifier": "SDN:R18::CB00040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Crover beam attenuation measurements (in 1/m)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/1/" + }, + "dce:identifier": "SDN:R18::CC00002", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00002", + "skos:altLabel": "Core Config 2 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_Offset_COUNT" + }, + "dc:identifier": "SDN:R18::CC00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": " = PRES, PSAL or TEMP. Offset used to pack the P, T and S data, changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/1/" + }, + "dce:identifier": "SDN:R18::CC00219", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00219", + "skos:altLabel": "Core Config 219 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_UpTime_hours" + }, + "dc:identifier": "SDN:R18::CC00219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset duration of the 'up' time (start of ascent to start of descent) - changed from : CONFIG_UpTimeInterval_hours and CONFIG_UpTimeOut. This parameter is important for trajectory files." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/1/" + }, + "dce:identifier": "SDN:R18::CC00087", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00087", + "skos:altLabel": "Core Config 87 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum delay (in days/cycles) since the last ice evasion date to attempt a surfacing. This is often called the \"Spring\", where the float stays underwater for a time even though the temperature has warmed. \"Spring inhibition\" is the first step of the ISA algorithm. If the ISA algorithm raised (with the TEMP comparison) a profile evasion in the last CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER days, the profile is aborted (without entering in the TEMP comparison loop) at CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/1/" + }, + "dce:identifier": "SDN:R18::CC00064", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00064", + "skos:altLabel": "Core Config 64 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeMinPresThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If in grounding mode 0, the float changes its drift pressure only if its current pressure is greater than this value." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/2/" + }, + "dce:identifier": "SDN:R18::CB00093", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00093", + "skos:altLabel": "BGC Config 93 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CB00093", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "SlicesThickness of the ascent depth zone # of the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/1/" + }, + "dce:identifier": "SDN:R18::CC00150", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00150", + "skos:altLabel": "Core Config 150 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToProfileDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The interval in seconds between float samples of the pressure to determine if the Profile depth has been reached." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/1/" + }, + "dce:identifier": "SDN:R18::CC00161", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00161", + "skos:altLabel": "Core Config 161", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at profile depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/1/" + }, + "dce:identifier": "SDN:R18::CC00117", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00117", + "skos:altLabel": "Core Config 117 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeLastPumpActionBuoyancyAcquisition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the last pump action of the buoyancy acquisition phase. Original proposed name was: CONFIG_PumpActionOilVolumeBuoyancyAcquisition_cm^3" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/2/" + }, + "dce:identifier": "SDN:R18::CB00052", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00052", + "skos:altLabel": "BGC Config 52 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrBandwidth_nm" + }, + "dc:identifier": "SDN:R18::CB00052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Ocr # measurements (in nanometer)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/1/" + }, + "dce:identifier": "SDN:R18::CC00203", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00203", + "skos:altLabel": "Core Config 203 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetry_COUNT" + }, + "dc:identifier": "SDN:R18::CC00203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of telemetry session retries" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/2/" + }, + "dce:identifier": "SDN:R18::CB00037", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00037", + "skos:altLabel": "BGC Config 37 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMaxTransmittedTurbidity_COUNT" + }, + "dc:identifier": "SDN:R18::CB00037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Flntu turbidity measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/1/" + }, + "dce:identifier": "SDN:R18::CC00099", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00099", + "skos:altLabel": "Core Config 99 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregMonth_MM" + }, + "dc:identifier": "SDN:R18::CC00099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last month to use float cycle duration # (in Gregorian month). (D is a number denoting the internal cycle label)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/2/" + }, + "dce:identifier": "SDN:R18::CB00099", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00099", + "skos:altLabel": "BGC Config 99 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SfetMaxTransmittedVrsPh_volts" + }, + "dc:identifier": "SDN:R18::CB00099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Vrs_pH measurements (in volts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/1/" + }, + "dce:identifier": "SDN:R18::CC00120", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00120", + "skos:altLabel": "Core Config 120 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinForGroundingDetection_cm^3" + }, + "dc:identifier": "SDN:R18::CC00120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This information is a threshold used to detect a grounding of the float. If there is no vertical motion after having transferred CONFIG_OilVolumeMinForGroundingDetection_cm^3 through the valve, the grounded flag is activated and the float acts as configurated by the CONFIG_GroundingMode_LOGICAL parameter. This is a configuration parameter that may be modified via remote control, as some PROVOR floats have experienced erroneous grounding detection (under study but perhaps due to in-situ conditions)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/1/" + }, + "dce:identifier": "SDN:R18::CC00005", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00005", + "skos:altLabel": "Core Config 5 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the ascending profile (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/2/" + }, + "dce:identifier": "SDN:R18::CB00011", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00011", + "skos:altLabel": "BGC Config 11 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PowerSwitchDelayMin_msec" + }, + "dc:identifier": "SDN:R18::CB00011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum waiting time needed by the between a switch OFF and a switch ON (in milli-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/1/" + }, + "dce:identifier": "SDN:R18::CC00119", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00119", + "skos:altLabel": "Core Config 119 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This information is used as a threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMaxPerValveAction_cm^3 is converted to a maxDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a huge valve action duration and the result must have a maxDurationOfValveAction threshold. This configuration parameter can be modified via remote controls for Remocean floats, by a specialist in PROVOR vector configuration." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/1/" + }, + "dce:identifier": "SDN:R18::CC00173", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00173", + "skos:altLabel": "Core Config 173 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileIncludeTransitionBin_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Include transition bins between depth zones (shallow/intermediate/bottom) in the algorithm of data reduction (Yes=1/No=0). Yes: Calculate transition bin between top and middle section, and between middle and bottom section. Transition bins are: (last top bin center + Top_Bin_Interval/2) to (last top bin center + Middle_Bin_Interval/2) and (last middle bin center + Middle_Bin_Interval/2) to (last middle bin center + Bottom_Bin_Interval/2)No: Do not calculate transition bins." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/1/" + }, + "dce:identifier": "SDN:R18::CC00101", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00101", + "skos:altLabel": "Core Config 101 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal cycle duration # (in hours). (D is a number denoting the internal cycle label)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/1/" + }, + "dce:identifier": "SDN:R18::CC00068", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00068", + "skos:altLabel": "Core Config 68 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HyperRetractionStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float’s density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractPressure is the pressure that the float uses to restore the piston back to the ParkDescentCount." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/2/" + }, + "dce:identifier": "SDN:R18::CB00064", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00064", + "skos:altLabel": "BGC Config 64 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TurbidityWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of for Turbidity measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/2/" + }, + "dce:identifier": "SDN:R18::CB00039", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00039", + "skos:altLabel": "BGC Config 39 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverMinTransmittedBeamAttenuation_m^-1" + }, + "dc:identifier": "SDN:R18::CB00039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Crover beam attenuation measurements (in 1/m)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/1/" + }, + "dce:identifier": "SDN:R18::CC00154", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00154", + "skos:altLabel": "Core Config 154 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetDelayBeforeResetCommand_minutes" + }, + "dc:identifier": "SDN:R18::CC00154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float waiting period before the surface ResetOffset CTD command. [NKE introduced a delay (in minutes) between the end of the transmission and the ResetOffset command (because surface pressure measurements seem to be corrupted by float transmission]." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/2/" + }, + "dce:identifier": "SDN:R18::CB00021", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00021", + "skos:altLabel": "BGC Config 21 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedC2Phase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode C2 phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/1/" + }, + "dce:identifier": "SDN:R18::CC00205", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00205", + "skos:altLabel": "Core Config 205 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryRepeatSessionDelay_minutes" + }, + "dc:identifier": "SDN:R18::CC00205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delay before a second Iridium session performed by the float just before diving for a new cycle (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/2/" + }, + "dce:identifier": "SDN:R18::CB00083", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00083", + "skos:altLabel": "BGC Config 83 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemePowerAcquisitionMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode for the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/1/" + }, + "dce:identifier": "SDN:R18::CC00132", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00132", + "skos:altLabel": "Core Config 132 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkTime_hours" + }, + "dc:identifier": "SDN:R18::CC00132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "time spent at the parking pressure, not including descending and ascending times - example 222 for 9 days and 6 hours at park pressure" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/1/" + }, + "dce:identifier": "SDN:R18::CC00017", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00017", + "skos:altLabel": "Core Config 17 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyReductionFirstThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First threshold of the buoyancy reduction phase (see float manual for explanations)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/1/" + }, + "dce:identifier": "SDN:R18::CC00185", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00185", + "skos:altLabel": "Core Config 185 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionTimeBuoyancyAcquisition_csec" + }, + "dc:identifier": "SDN:R18::CC00185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the last pump action of the buoyancy acquisition phase (in centi-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/1/" + }, + "dce:identifier": "SDN:R18::CC00052", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00052", + "skos:altLabel": "Core Config 52 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_EmergencyModeWaterLeakDetection_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If set to \"yes\", the float will transition to the Emergency mode upon detection of an internal water leak. If set to \"no\", the float will only log the condition to the system_log.txt file." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/2/" + }, + "dce:identifier": "SDN:R18::CB00076", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00076", + "skos:altLabel": "BGC Config 76 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSubSampling_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/2/" + }, + "dce:identifier": "SDN:R18::CB00023", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00023", + "skos:altLabel": "BGC Config 23 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedBPhase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode B phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/2/" + }, + "dce:identifier": "SDN:R18::CB00085", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00085", + "skos:altLabel": "BGC Config 85 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeNumberOfSubSampling_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of subsamplings of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/1/" + }, + "dce:identifier": "SDN:R18::CC00217", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00217", + "skos:altLabel": "Core Config 217 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TripInterval_hours" + }, + "dc:identifier": "SDN:R18::CC00217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This is a conversion factor for the up and down times. If it is set to 2, then each 'interval' is equal to 2 hours (or seconds or minutes…) , if it is set to 1, then each 'interval' is equal to 1 unit." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/1/" + }, + "dce:identifier": "SDN:R18::CC00144", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00144", + "skos:altLabel": "Core Config 144 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderMax_dbar" + }, + "dc:identifier": "SDN:R18::CC00144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "maximum air bladder pressure setting - units could be COUNT. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/1/" + }, + "dce:identifier": "SDN:R18::CC00029", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00029", + "skos:altLabel": "Core Config 29 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CPActivationPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "CP Activation Pressure" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/1/" + }, + "dce:identifier": "SDN:R18::CC00105", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00105", + "skos:altLabel": "Core Config 105 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxAttemptsGPSAcquisitionBeforeResetGPS_COUNT" + }, + "dc:identifier": "SDN:R18::CC00105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum number of GPS location acquisition retries before it resets the GPS." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/1/" + }, + "dce:identifier": "SDN:R18::CC00071", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00071", + "skos:altLabel": "Core Config 71 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAscentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_AscentVerticalThresholdForBuoyancyAction_dbar but for a float in ice detection mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/2/" + }, + "dce:identifier": "SDN:R18::CB00035", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00035", + "skos:altLabel": "BGC Config 35 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MinTransmittedFluorescence_COUNT" + }, + "dc:identifier": "SDN:R18::CB00035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Fluorescence of measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/1/" + }, + "dce:identifier": "SDN:R18::CC00197", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00197", + "skos:altLabel": "Core Config 197 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveAdditionalActions_COUNT" + }, + "dc:identifier": "SDN:R18::CC00197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target number of additional valve actions performed at the surface during the buoyancy reduction phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/2/" + }, + "dce:identifier": "SDN:R18::CB00025", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00025", + "skos:altLabel": "BGC Config 25 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMinTransmittedDPhase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Optode D phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/2/" + }, + "dce:identifier": "SDN:R18::CB00088", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00088", + "skos:altLabel": "BGC Config 88 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasurementsInAir_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sensors can be mounted on a stick to perform measurements in Air. Values: Yes = 1, No = 0" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/1/" + }, + "dce:identifier": "SDN:R18::CC00103", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00103", + "skos:altLabel": "Core Config 103 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalPressureCalibrationCoef2_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Second coefficient used to compute float internal pressure in mBars from sensor counts." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/2/" + }, + "dce:identifier": "SDN:R18::CB00087", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00087", + "skos:altLabel": "BGC Config 87 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeSubSamplingDataProcessingRate_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data processing rate for the subsampling # of the data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/1/" + }, + "dce:identifier": "SDN:R18::CC00107", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00107", + "skos:altLabel": "Core Config 107 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxDelayBeforeCycleStart_minutes" + }, + "dc:identifier": "SDN:R18::CC00107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The maximum extra time a float can stay on the surface after transmitting. This feature is used for SOLOII floats to try and make them stay in a particular area, e.g. near the equator for equatorial floats. If a float is drifting at the surface and moving in the direction we want, we turn the feature on to keep it drifting at the surface in a favourable direction. If the float is moving in a direction we don't want, then we turn this feature off, so the float dives immediately. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/1/" + }, + "dce:identifier": "SDN:R18::CC00156", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00156", + "skos:altLabel": "Core Config 156 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureOffsetSampledAfterTransmission_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The surface pressure offset is sampled only if an Iridium transmission or a GPS session occurred (to be sure that the pressure offset is sampled at the surface). Original proposed names was: CONFIG_SecuredPressureOffsetSampledAtSurface_LOGICAL" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/1/" + }, + "dce:identifier": "SDN:R18::CC00083", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00083", + "skos:altLabel": "Core Config 83 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPressureInterval_dbar" + }, + "dc:identifier": "SDN:R18::CC00083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the ice detection algorithm. \"It is the pressure interval used by the float to collect T and S samples between CONFIG_IceDetectionMixedLayerPMax_dbar and CONFIG_IceDetectionMixedLayerPMin_dbar for the TEMP comparison.\" Original proposed name was: CONFIG_IceDetectionPeriod_dbar" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/2/" + }, + "dce:identifier": "SDN:R18::CB00047", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00047", + "skos:altLabel": "BGC Config 47 - Mandatory (if applies)", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaApfFrameOutputPixelEnd_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The Apf frame definition allows for a variable number of spectrometer pixels (also called channels) to be included in the frame. The two pixel values are configured indirectly via the wavelength range of the spectrum to be output (Suna Hardware Manual, section 4.2.3, input/output configuration parameters, data wavelength low/high.) The firmware converts the wavelength values to spectrometer pixels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/1/" + }, + "dce:identifier": "SDN:R18::CC00056", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00056", + "skos:altLabel": "Core Config 56 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSAcquisitionEndOfLife_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The float performs a GPS session to acquire a GPS fix in each End Of Life transmission (Yes=1/No=0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/2/" + }, + "dce:identifier": "SDN:R18::CB00089", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00089", + "skos:altLabel": "BGC Config 89 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneNumberOfSamples_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00089", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples for the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/1/" + }, + "dce:identifier": "SDN:R18::CC00115", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00115", + "skos:altLabel": "Core Config 115 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfOutOfTolerancePresBeforeReposition_COUNT" + }, + "dc:identifier": "SDN:R18::CC00115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of consecutive pressure measurements outside the target pressure interval before performing a drift readjustment." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/2/" + }, + "dce:identifier": "SDN:R18::CB00071", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00071", + "skos:altLabel": "BGC Config 71 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStartPres_dbar" + }, + "dc:identifier": "SDN:R18::CB00071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start pressure to define the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/1/" + }, + "dce:identifier": "SDN:R18::CC00109", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00109", + "skos:altLabel": "Core Config 109 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MeasureBattery_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "measure the battery voltage and report it? (Yes = 1, No = 0)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/1/" + }, + "dce:identifier": "SDN:R18::CC00058", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00058", + "skos:altLabel": "Core Config 58 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSSetClock_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Set the float Real Time Clock with GPS time. To disable float clock set from GPS time when at surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/1/" + }, + "dce:identifier": "SDN:R18::CC00168", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00168", + "skos:altLabel": "Core Config 168 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureThresholdDataReductionShallowToIntermediate_dbar" + }, + "dc:identifier": "SDN:R18::CC00168", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The isobar that divides shallow depths from intermediate depths for the purpose of data reduction with 3 depth zones (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/1/" + }, + "dce:identifier": "SDN:R18::CC00095", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00095", + "skos:altLabel": "Core Config 95", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementPeriodicity_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Cycle periodicity of the \"in air measurement\" phase:- 0 means no \"in air acquisition\"- 1 means \"in air acquisition\" every cycle- N means \"in air acquisition\" one cycle every \"N\" cycles" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/1/" + }, + "dce:identifier": "SDN:R18::CC00040", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00040", + "skos:altLabel": "Core Config 40 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentAdjustmentToBuoyancy_seconds" + }, + "dc:identifier": "SDN:R18::CC00040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Commonly cited as 'buoyancy nudge', this controls the descent rate, units could be COUNT or whatever is reported, i.e. for SOLOII it is seconds pump is run to adjust float descent rate from drift depth to profile depth. The SOLO-II floats are ballasted for profile depth, if the floats are poorly ballasted, float will descend quite fast to profile depth. The more pumping that is done at 1000db that is unnecessary at 2000db will save energy and it can be used as an energy saving measure. Occasionally this means the float will stop short of profile depth but won't have grounded." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/2/" + }, + "dce:identifier": "SDN:R18::CB00059", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00059", + "skos:altLabel": "BGC Config 59 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceExcitationBandwidth_nm" + }, + "dc:identifier": "SDN:R18::CB00059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for excitation of fluorescence measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/1/" + }, + "dce:identifier": "SDN:R18::CC00001", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00001", + "skos:altLabel": "Core Config 1 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InverseGain_COUNT" + }, + "dc:identifier": "SDN:R18::CC00001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": " = PRES, PSAL or TEMP. Inverse of the gain used to pack the P, T and S data, changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/2/" + }, + "dce:identifier": "SDN:R18::CB00073", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00073", + "skos:altLabel": "BGC Config 73 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_dbar" + }, + "dc:identifier": "SDN:R18::CB00073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period for the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/1/" + }, + "dce:identifier": "SDN:R18::CC00007", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00007", + "skos:altLabel": "Core Config 7 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedFactor_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This factor defines the speed of the ascent phase (between 0: nominal speed and 5: lowest speed)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/1/" + }, + "dce:identifier": "SDN:R18::CC00127", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00127", + "skos:altLabel": "Core Config 127 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplesPerAverage_COUNT" + }, + "dc:identifier": "SDN:R18::CC00127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If float reports average values, then this is the number of samples per value reported. For example, for a float that samples hourly during the park period for 105 hours, and reports the average P and T, this would be 105. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/1/" + }, + "dce:identifier": "SDN:R18::CC00054", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00054", + "skos:altLabel": "Core Config 54 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FloatReferenceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiler configuration - Reference day, for PROVOR and ARVOR floats this is: The day number on which the first profile is to be made. The day when the mission starts is zero. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/2/" + }, + "dce:identifier": "SDN:R18::CB00060", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00060", + "skos:altLabel": "BGC Config 60 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FluorescenceEmissionBandwidth_nm" + }, + "dc:identifier": "SDN:R18::CB00060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of for emission of fluorescence measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/1/" + }, + "dce:identifier": "SDN:R18::CC00042", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00042", + "skos:altLabel": "Core Config 42 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum descent speed before activating the valve." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/1/" + }, + "dce:identifier": "SDN:R18::CC00201", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00201", + "skos:altLabel": "Core Config 201 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryAutoTestAtDeployment_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Perform a full auto-test (RUDICS server connection test) at float deployment (Yes=1/No=0).A full auto-test includes a connection test on the RUDICS server and a GPS fix acquisition." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/2/" + }, + "dce:identifier": "SDN:R18::CB00075", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00075", + "skos:altLabel": "BGC Config 75 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneRawDataAcquisition_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled in the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/1/" + }, + "dce:identifier": "SDN:R18::CC00013", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00013", + "skos:altLabel": "Core Config 13 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BitMaskMonthsIceDetectionActive_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This parameter indicates for which months the ice detection algorithm is active. The bit mask is input as a 3 digit hexadecimal value in the mission file sent to the float. This parameter in the metadata file however is the decimal number of that hexadecimal value. For example for the Southern Hemisphere the default position is to have the ice detection algorithm active for all months except February. (The hexadecimal value in the mission file is 'FFD' and the number for the configuration parameter in the metafile would be 4093). The northern hemisphere default would be all months active except for August. In this case the hexadecimal value is 'F7F' and the number in the configuration parameter in the metafile would be 3967)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/1/" + }, + "dce:identifier": "SDN:R18::CC00009", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00009", + "skos:altLabel": "Core Config 9 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedStartPressureThresholdForSlowPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure threshold to start the slow ascent speed phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/1/" + }, + "dce:identifier": "SDN:R18::CC00190", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00190", + "skos:altLabel": "Core Config 190 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RudicsAndIridiumSessionWhenNoGPS_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For RUDICS transmission floats, perform also one Iridium session (to get an Iridium position) when the GPS fix is not valid." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/1/" + }, + "dce:identifier": "SDN:R18::CC00181", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00181", + "skos:altLabel": "Core Config 181 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionIntervalDuringAscent_COUNT" + }, + "dc:identifier": "SDN:R18::CC00181", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "interval between successive pump activations during ascent" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/1/" + }, + "dce:identifier": "SDN:R18::CC00066", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00066", + "skos:altLabel": "Core Config 66 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_HangingMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Action performed by the float when a hanging is detected (see float manual for details). [JP additional comments on behaviour for PROVOR floats: The hanging mode is the same idea as the grounding mode but for an ascent phase. When the float detects a too low vertical motion after having activated its pump to try to ascend it enters in a hanging mode (it is probably stuck at the sea floor). This parameter configures (with the same idea as CONFIG_GroundingMode_NUMBER for grounding) what should be the actions to perform to try to escape from hanging (it can activate its pump and valve alternatively to try to escape or abandon the ascent and switch to the next scheduled task]." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/1/" + }, + "dce:identifier": "SDN:R18::CC00157", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00157", + "skos:altLabel": "Core Config 157 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureStartContinuousProfiling_dbar" + }, + "dc:identifier": "SDN:R18::CC00157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset pressure where continuous profiling begins on ascent. Phase variable." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/1/" + }, + "dce:identifier": "SDN:R18::CC00044", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00044", + "skos:altLabel": "Core Config 44 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToParkTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "maximum time a float will try to reach its target depth (park) before aborting this step" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/2/" + }, + "dce:identifier": "SDN:R18::CB00072", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00072", + "skos:altLabel": "BGC Config 72 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneStopPres_dbar" + }, + "dc:identifier": "SDN:R18::CB00072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/2/" + }, + "dce:identifier": "SDN:R18::CB00077", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00077", + "skos:altLabel": "BGC Config 77 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSubSamplingDataProcessingMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data processing mode for the subsampling # of the data sampled in the depth zone # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/1/" + }, + "dce:identifier": "SDN:R18::CC00213", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00213", + "skos:altLabel": "Core Config 213", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TransmissionMaxTimeforRecoveryMessage_minutes" + }, + "dc:identifier": "SDN:R18::CC00213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum transmission time for recovery messages in [minutes]" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/1/" + }, + "dce:identifier": "SDN:R18::CC00192", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00192", + "skos:altLabel": "Core Config 192 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SeeksToParkPeriodsIntervals_seconds" + }, + "dc:identifier": "SDN:R18::CC00192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The SEEK (settle) time for the float after descent as it 'settles' towards the drift target. For SOLO floats this is a constant." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/1/" + }, + "dce:identifier": "SDN:R18::CC00140", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00140", + "skos:altLabel": "Core Config 140 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivation_dbar" + }, + "dc:identifier": "SDN:R18::CC00140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "depth at which float is set to pressure activate" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/1/" + }, + "dce:identifier": "SDN:R18::CC00025", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00025", + "skos:altLabel": "Core Config 25 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CompensatorHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "setting for the compensator hyper-retraction. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/2/" + }, + "dce:identifier": "SDN:R18::CB00031", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00031", + "skos:altLabel": "BGC Config 31 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrMinTransmittedPar_COUNT" + }, + "dc:identifier": "SDN:R18::CB00031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Ocr Photosynthetic Active Radiation measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/1/" + }, + "dce:identifier": "SDN:R18::CC00046", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00046", + "skos:altLabel": "Core Config 46 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentVerticalThresholdForBuoyancyAction_dbar" + }, + "dc:identifier": "SDN:R18::CC00046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If the float vertical motion, during CONFIG_PressureCheckTimeDescent_minutes, is less than this threshold, the float makes buoyancy adjustments." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/1/" + }, + "dce:identifier": "SDN:R18::CC00193", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00193", + "skos:altLabel": "Core Config 193 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SlowAscentPistonAdjustment_COUNT" + }, + "dc:identifier": "SDN:R18::CC00193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "when ascent is too slow, this is used to adjust the piston position to speed ascent" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/1/" + }, + "dce:identifier": "SDN:R18::CC00078", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00078", + "skos:altLabel": "Core Config 78 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMixedLayerPMin_dbar" + }, + "dc:identifier": "SDN:R18::CC00078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum sampling pressure used by ice cover detection algorithm. (i..e end pressure threshold for ice detection algorithm)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/2/" + }, + "dce:identifier": "SDN:R18::CB00084", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00084", + "skos:altLabel": "BGC Config 84 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeRawDataAcquisition_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of additional raw data sampled within the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/1/" + }, + "dce:identifier": "SDN:R18::CC00194", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00194", + "skos:altLabel": "Core Config 194", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceDay_FloatDay" + }, + "dc:identifier": "SDN:R18::CC00194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Day of the float surfacing" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/2/" + }, + "dce:identifier": "SDN:R18::CB00061", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00061", + "skos:altLabel": "BGC Config 61 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Crover for Beam attenuation measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/1/" + }, + "dce:identifier": "SDN:R18::CC00152", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00152", + "skos:altLabel": "Core Config 152 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeStabilization_minutes" + }, + "dc:identifier": "SDN:R18::CC00152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks during the float stabilization phases." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/2/" + }, + "dce:identifier": "SDN:R18::CB00043", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00043", + "skos:altLabel": "BGC Config 43 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaMaxTransmittedNitrateConcentration_umol/L" + }, + "dc:identifier": "SDN:R18::CB00043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Suna nitrate concentration measurements (in micro-Mol/L)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/1/" + }, + "dce:identifier": "SDN:R18::CC00048", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00048", + "skos:altLabel": "Core Config 48 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTime_hours" + }, + "dc:identifier": "SDN:R18::CC00048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset duration of the down time (start of descent to start of ascent) - changed from : CONFIG_DownTimeInterval_hours and CONFIG_DownTimeOut. This parameter is important for trajectory files." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/2/" + }, + "dce:identifier": "SDN:R18::CB00028", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00028", + "skos:altLabel": "BGC Config 28 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedTemperature_mdegC" + }, + "dc:identifier": "SDN:R18::CB00028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode temperature measurements (in milli-DegC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/1/" + }, + "dce:identifier": "SDN:R18::CC00143", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00143", + "skos:altLabel": "Core Config 143 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureActivationTimeout_seconds" + }, + "dc:identifier": "SDN:R18::CC00143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The pressure activation phase starts after the first successful auto-test and ends (with the start of the float mission) at the end of the CONFIG_PressureActivationTimeout_seconds period. During this phase the float checks the external pressure and can start its mission as soon as a CONFIG_PressureActivation_dbar pressure is measured." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/1/" + }, + "dce:identifier": "SDN:R18::CC00030", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00030", + "skos:altLabel": "Core Config 30 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The pressure at which the CTD pump is switched off. As the float ascends, the code looks at the pressure and if <= CONFIG_CTDPumpStopPressure, the CTD is turned off. CTDPumpStopPressure is a firmware threshold and as such, data may continue to be collected for a limited span after the threshold is recognized. Especially in floats that return high resolution discrete data, there might be data collected shallower than the cut off, due to the discrete nature of the pressure data and also due to the time necessary for the firmware to turn off the CTD once the pressure threshold is reached. For example for SOLOII floats the CTD is switched off at 1dbar, and typically the shallowest data is from 0.5 to 0.8 dbar. This shallow data should be carefully assessed for its validity." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/2/" + }, + "dce:identifier": "SDN:R18::CB00096", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00096", + "skos:altLabel": "BGC Config 96 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementNumberOfSamples_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of measurements sampled before and after inflating the air bladder for the sensor during the \"in air measurement\" phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/1/" + }, + "dce:identifier": "SDN:R18::CC00092", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00092", + "skos:altLabel": "Core Config 92 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionFirstTelemetryDay_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00092", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "First day of the year during which telemetry is attempted during the Surface phase. When the float surfaces on a day that is not specified, it does not attempt telemetry and immediately begins the Park Descent phase for the next profiling cycle. TelemetryDays are specified with a start day and an end day. The start day is the first day of the transmit season for the year. The end day is the last day of the transmit season for the year. A setting of 0 0 disables TelemetryDays, and the float attempts telemetry during each Surface Phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/1/" + }, + "dce:identifier": "SDN:R18::CC00111", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00111", + "skos:altLabel": "Core Config 111 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MissionPreludeAutoTest_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "If set to \"yes\", the float will transition to the Park Descent phase at the end of the period determined by CONFIG_MissionPreludeTime_hours only if the self test passes. If the self test fails, the float will go into Emergency mode. If set to \"no\", the float will transition to the Park Descent phase whether or not the self test passes. In addition, the test results, pass or fail, will be logged to the system_log.txt file." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/1/" + }, + "dce:identifier": "SDN:R18::CC00196", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00196", + "skos:altLabel": "Core Config 196 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "time spent on the surface (surface drift) - example 10 for a 10 hour surface drift, for NEMO(Iridium) the definition for this variable is: the time limit for staying at the surface, i.e. maximum surface time. This parameter is set for SOLOII, surface time duration is calculated for APEX and may not need to be reported." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/1/" + }, + "dce:identifier": "SDN:R18::CC00164", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00164", + "skos:altLabel": "Core Config 164 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceForStabilisationAtProfileDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float stabilisation at profile depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/1/" + }, + "dce:identifier": "SDN:R18::CC00049", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00049", + "skos:altLabel": "Core Config 49 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeAutumnWinter_hours" + }, + "dc:identifier": "SDN:R18::CC00049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset duration of the down time (start of descent to start of ascent) specific to the autumn/winter period. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/1/" + }, + "dce:identifier": "SDN:R18::CC00091", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00091", + "skos:altLabel": "Core Config 91 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionMaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The maximum number of Ice Descent and Ice Ascent cycles the float will perform when it is unable to perform telemetry. When it has completed the specified number of cycles, the float will continue with the next profiling cycle.Range: 0–24 cyclesIf IceDescentCycles is disabled, the float will try to detect an ice cap if it cannot find the sky. If IceDescentCycles is enabled, the float will not try to detect the ice cap and will operate in accordance with “Ice Descent and Ice Ascent Cycles” where it tries to drift out from under an ice cap." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/2/" + }, + "dce:identifier": "SDN:R18::CB00055", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00055", + "skos:altLabel": "BGC Config 55 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NitrateSampling_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate sampling flag. Values:<0:enable; 0:disable; >0:enable and initialize" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/1/" + }, + "dce:identifier": "SDN:R18::CC00145", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00145", + "skos:altLabel": "Core Config 145 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureBladderTarget_dbar" + }, + "dc:identifier": "SDN:R18::CC00145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Target bladder pressure - units could be COUNT. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/1/" + }, + "dce:identifier": "SDN:R18::CC00032", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00032", + "skos:altLabel": "Core Config 32 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CTDPumpStopPressurePlusThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The sum of CONFIG_CTDPumpStopPressure_dbar plus a pressure threshold or overlap (Poverlap). For PROVOR floats, Poverlap is defined as follows: Poverlap = bin_size/2 for PROVOR floats with software versions < 5816A00 and ARVOR floats with software versions < 5605A00.Poverlap = 0.5 dbar for PROVOR floats with software versions >= 5816A00 and ARVOR floats with software versions >=5605A00." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/2/" + }, + "dce:identifier": "SDN:R18::CB00012", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00012", + "skos:altLabel": "BGC Config 12 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FirstValidSample_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Rank of the first valid sample provided by the (0 is the rank of the first sample)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/1/" + }, + "dce:identifier": "SDN:R18::CC00094", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00094", + "skos:altLabel": "Core Config 94 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionTelemetryTimeout_minutes" + }, + "dc:identifier": "SDN:R18::CC00094", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The amount of time in minutes allowed for the float to complete telemetry. A setting of 0 disables IceTelemetryTimeout, and the time available is instead determined by the remaining UpTime of the Ascent phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/1/" + }, + "dce:identifier": "SDN:R18::CC00198", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00198", + "skos:altLabel": "Core Config 198 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SurfaceValveMaxTimeAdditionalActions_csec" + }, + "dc:identifier": "SDN:R18::CC00198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the additional valve actions performed at the surface during the buoyancy reduction phase (in centi-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/2/" + }, + "dce:identifier": "SDN:R18::CB00065", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00065", + "skos:altLabel": "BGC Config 65 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimePressureOffset_seconds" + }, + "dc:identifier": "SDN:R18::CB00065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time interval between and pressure measurements due to the fact that the answer is not simultaneous with the CTD/pressure answer" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/1/" + }, + "dce:identifier": "SDN:R18::CC00180", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00180", + "skos:altLabel": "Core Config 180 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileWhereChangePistonPosition_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Use last piston position until this profile number. Can only go in phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/1/" + }, + "dce:identifier": "SDN:R18::CC00008", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00008", + "skos:altLabel": "Core Config 8 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentSpeedMin_mm/s" + }, + "dc:identifier": "SDN:R18::CC00008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Float minimum ascent speed before activating the pump." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/1/" + }, + "dce:identifier": "SDN:R18::CC00050", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00050", + "skos:altLabel": "Core Config 50 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DownTimeExpiryTimeOfDay_minutes" + }, + "dc:identifier": "SDN:R18::CC00050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "a time-out value (time of day, i.e. in minutes past midnight) for expiration of the down time" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/1/" + }, + "dce:identifier": "SDN:R18::CC00176", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00176", + "skos:altLabel": "Core Config 176 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfilePressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "profile pressure - this may change if the float is reprogrammed and must be reported in the mission configuration settings" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/1/" + }, + "dce:identifier": "SDN:R18::CC00034", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00034", + "skos:altLabel": "Core Config 34 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DebugBits_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Awaiting clarification. A request is in with Webb for more information" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/2/" + }, + "dce:identifier": "SDN:R18::CB00014", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00014", + "skos:altLabel": "BGC Config 14 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedPressure_dbar" + }, + "dc:identifier": "SDN:R18::CB00014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd pressure measurements (in dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/1/" + }, + "dce:identifier": "SDN:R18::CC00096", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00096", + "skos:altLabel": "Core Config 96", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InAirMeasurementSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CC00096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period during the \"in air measurement\" phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/2/" + }, + "dce:identifier": "SDN:R18::CB00067", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00067", + "skos:altLabel": "BGC Config 67 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SetClockSensorCard_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the float Real Time Clock is set, also set the clock of the measurement card." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/1/" + }, + "dce:identifier": "SDN:R18::CC00182", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00182", + "skos:altLabel": "Core Config 182 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of a pump action during ascent (in centi-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/1/" + }, + "dce:identifier": "SDN:R18::CC00208", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00208", + "skos:altLabel": "Core Config 208 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TimeDelayAfterEndOfAscentPressureThreshold_minutes" + }, + "dc:identifier": "SDN:R18::CC00208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "At the end of the ascent phase, when the float detects a given pressure (Ex: 6 dbar) it waits for this time delay before starting the pump for the final buoyancy acquisition." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/1/" + }, + "dce:identifier": "SDN:R18::CC00062", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00062", + "skos:altLabel": "Core Config 62", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GroundingModeDeepZoneThickness_dbar" + }, + "dc:identifier": "SDN:R18::CC00062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "In case of grounding during the \"descent to profile depth\" phase, this parameter (PM18 in float user manual) defines the thickness of a new deep zone (from profile start pressure) for the purpose of data reduction. The thickness of the slices is 1 dbar in this zone. Should be set to 0 to disable this function." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/2/" + }, + "dce:identifier": "SDN:R18::CB00026", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00026", + "skos:altLabel": "BGC Config 26 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedDPhase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode D phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/1/" + }, + "dce:identifier": "SDN:R18::CC00149", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00149", + "skos:altLabel": "Core Config 149 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeDescentToParkingDepth_seconds" + }, + "dc:identifier": "SDN:R18::CC00149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The interval in seconds between float samples of the pressure to determine if the Park depth has been reached." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/2/" + }, + "dce:identifier": "SDN:R18::CB00016", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00016", + "skos:altLabel": "BGC Config 16 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedTemperature_mdegC" + }, + "dc:identifier": "SDN:R18::CB00016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd temperature measurements (in milli-DegC)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/1/" + }, + "dce:identifier": "SDN:R18::CC00188", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00188", + "skos:altLabel": "Core Config 188 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_RecoveryModeActivate_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Activates or deactivates recovery mode. Recovery mode is operator activated. If activated, the float remains on the surface indefinitely while transmitting its position and log files and downloading new mission and sample configuration parameters if available. If Recovery mode is then deactivated, the float will begin the Park Descent phase of a new mission." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/2/" + }, + "dce:identifier": "SDN:R18::CB00079", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00079", + "skos:altLabel": "BGC Config 79 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_NumberOfSamplingScheme_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of sampling schemes defined for the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/2/" + }, + "dce:identifier": "SDN:R18::CB00069", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00069", + "skos:altLabel": "BGC Config 69 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataSynchronizationMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data of the can be reported as they have been sampled or synchronized with one CTD parameter (PRES or TEMP or PSAL). The synchronization is done with the timely closest sample of the CTD (see float manual for details)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/1/" + }, + "dce:identifier": "SDN:R18::CC00080", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00080", + "skos:altLabel": "Core Config 80 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumeForFirstValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Volume of the first valve action of a buoyancy inversion phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/1/" + }, + "dce:identifier": "SDN:R18::CC00021", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00021", + "skos:altLabel": "Core Config 21 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ClockAscentEndTimeProfile3_HHMM" + }, + "dc:identifier": "SDN:R18::CC00021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profiler configuration - Ascent end time - Profile 3. The expected time at the surface of Profile 3." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/1/" + }, + "dce:identifier": "SDN:R18::CC00147", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00147", + "skos:altLabel": "Core Config 147 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureCheckTimeBuoyancyReductionPhase_seconds" + }, + "dc:identifier": "SDN:R18::CC00147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Period of the pressure checks after each valve action before checking the pressure during the buoyancy reduction phase (in seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/1/" + }, + "dce:identifier": "SDN:R18::CC00074", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00074", + "skos:altLabel": "Core Config 74 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionDescentVerticalThresholdToEndBuoyancyInversionPhase_dbar" + }, + "dc:identifier": "SDN:R18::CC00074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "When the cycle is aborted this threshold is used to detect speed inversion and to stop buoyancy inversion phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/2/" + }, + "dce:identifier": "SDN:R18::CB00018", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00018", + "skos:altLabel": "BGC Config 18 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CtdMaxTransmittedSalinity_mpsu" + }, + "dc:identifier": "SDN:R18::CB00018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Ctd salinity measurements (in milli-PSU)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/2/" + }, + "dce:identifier": "SDN:R18::CB00038", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00038", + "skos:altLabel": "BGC Config 38 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_FlntuMinTransmittedTurbidity_COUNT" + }, + "dc:identifier": "SDN:R18::CB00038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value of transmitted Flntu turbidity measurements (in counts)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/2/" + }, + "dce:identifier": "SDN:R18::CB00080", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00080", + "skos:altLabel": "BGC Config 80 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SamplingSchemeStartTime_seconds" + }, + "dc:identifier": "SDN:R18::CB00080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start time to define the sampling scheme # of the sensor while sampling during the phase of the cycle." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/1/" + }, + "dce:identifier": "SDN:R18::CC00133", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00133", + "skos:altLabel": "Core Config 133 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonFullExtension_COUNT" + }, + "dc:identifier": "SDN:R18::CC00133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/1/" + }, + "dce:identifier": "SDN:R18::CC00082", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00082", + "skos:altLabel": "Core Config 82 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionOilVolumePerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Valve action duration during the buoyancy inversion phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/1/" + }, + "dce:identifier": "SDN:R18::CC00221", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00221", + "skos:altLabel": "Core Config 221 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ValveTimeActionBuoyancyReduction_csec" + }, + "dc:identifier": "SDN:R18::CC00221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Duration of the valve actions during the second phase of the buoyancy reduction (between CONFIG_BuoyancyReductionFirstThreshold_dbar and CONFIG_BuoyancyReductionSecondThreshold_dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/2/" + }, + "dce:identifier": "SDN:R18::CB00053", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00053", + "skos:altLabel": "BGC Config 53 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_SunaWithScoop_LOGICAL" + }, + "dc:identifier": "SDN:R18::CB00053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Suna with scoop which redirects flow through Suna optics" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/1/" + }, + "dce:identifier": "SDN:R18::CC00106", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00106", + "skos:altLabel": "Core Config 106 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_MaxCycles_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Applies to PROVOR and ARVOR floats, profiler configuration - Number of cycles before float turns itself off, goes into end of life mode, or into recovery mode. Phase 0." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/1/" + }, + "dce:identifier": "SDN:R18::CC00033", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00033", + "skos:altLabel": "Core Config 33 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CycleTime_hours" + }, + "dc:identifier": "SDN:R18::CC00033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For APEX and ARVOR floats this is the total duration of one cycle, usually 240 hours (10 days). For SOLO floats this is the total duration of one cycle, assuming that all float operations reach their full time-out intervals before moving to the next float stage. Typically the actual cycle time will be shorter than this value." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/1/" + }, + "dce:identifier": "SDN:R18::CC00159", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00159", + "skos:altLabel": "Core Config 159 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDrift_dbar" + }, + "dc:identifier": "SDN:R18::CC00159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking or profile depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/1/" + }, + "dce:identifier": "SDN:R18::CC00135", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00135", + "skos:altLabel": "Core Config 135 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset park piston position, in counts" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/2/" + }, + "dce:identifier": "SDN:R18::CB00002", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00002", + "skos:altLabel": "BGC Config 2 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSlicesThickness_dbar" + }, + "dc:identifier": "SDN:R18::CB00002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Slices thickness for in the depth zone # (in dbar)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/2/" + }, + "dce:identifier": "SDN:R18::CB00092", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00092", + "skos:altLabel": "BGC Config 92 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CpAscentPhaseDepthZoneStopPres_dbar" + }, + "dc:identifier": "SDN:R18::CB00092", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Stop pressure to define the ascent depth zone # of the sensor used in continuous profiling mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/1/" + }, + "dce:identifier": "SDN:R18::CC00084", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00084", + "skos:altLabel": "Core Config 84 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionPumpActionMaxTimeAscent_csec" + }, + "dc:identifier": "SDN:R18::CC00084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Similar to CONFIG_PumpActionMaxTimeAscent_csec but for a float in ice detection mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/1/" + }, + "dce:identifier": "SDN:R18::CC00118", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00118", + "skos:altLabel": "Core Config 118 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3" + }, + "dc:identifier": "SDN:R18::CC00118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This information is used as a threshold for the pump action duration for reposition in the parking drift interval. The pump flow is known for each float and CONFIG_OilVolumeMaxPerPumpActionReposition_cm^3 is converted to a maxDurationOfPumpActionReposition. When a reposition should be performed, the float computes the needed pump action duration. In some specific cases the result can be a huge pump action duration and the result must be thresholded by maxDurationOfPumpActionReposition." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/1/" + }, + "dce:identifier": "SDN:R18::CC00160", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00160", + "skos:altLabel": "Core Config 160 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PressureTargetToleranceDuringDriftAtParkingDepth_dbar" + }, + "dc:identifier": "SDN:R18::CC00160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Defines the target pressure interval for float drift at parking depth (in dbars)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/1/" + }, + "dce:identifier": "SDN:R18::CC00045", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00045", + "skos:altLabel": "Core Config 45 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DescentToProfTimeOut_hours" + }, + "dc:identifier": "SDN:R18::CC00045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "maximum amount of time allowed for the float to descend to Profile pressure from Park pressure. This variable should cover DELAI/DELAY parameter required for trajectory processing." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/2/" + }, + "dce:identifier": "SDN:R18::CB00009", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00009", + "skos:altLabel": "BGC Config 9 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneDataProcessingMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data processing output of the in the depth zone # (0 : raw, 1 : average, 7 : average/median/standard deviation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/2/" + }, + "dce:identifier": "SDN:R18::CB00051", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00051", + "skos:altLabel": "BGC Config 51 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OcrWavelength_nm" + }, + "dc:identifier": "SDN:R18::CB00051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Wavelength of Ocr # measurements (in nanometer)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/1/" + }, + "dce:identifier": "SDN:R18::CC00137", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00137", + "skos:altLabel": "Core Config 137 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonPositionHyperRetraction_COUNT" + }, + "dc:identifier": "SDN:R18::CC00137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For Apex APF11 Iridium floats, Hyper Retraction is used to pull in an amount of oil to temporarily increase a float’s density as it leaves the ocean surface. The result of the increased float density allows a float to move through a mixed density layer more easily or allows a float to descend at a faster rate. In particular, the HyperRetractCount is the temporary piston position used when the float leaves the Surface and starts a ParkDescent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/2/" + }, + "dce:identifier": "SDN:R18::CB00004", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00004", + "skos:altLabel": "BGC Config 4 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZoneSamplingPeriod_seconds" + }, + "dc:identifier": "SDN:R18::CB00004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during in the depth zone # (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/1/" + }, + "dce:identifier": "SDN:R18::CC00098", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00098", + "skos:altLabel": "Core Config 98 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_InternalCycleLastGregDay_DD" + }, + "dc:identifier": "SDN:R18::CC00098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last day to use float cycle duration # (in Gregorian day). (D is a number denoting the internal cycle label)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/1/" + }, + "dce:identifier": "SDN:R18::CC00086", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00086", + "skos:altLabel": "Core Config 86", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar" + }, + "dc:identifier": "SDN:R18::CC00086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice evasion depth for the spring inhibition part of the ISA algorithm. \"Spring inhibition\" is the first step of the ISA algorithm. If the ISA algorithm raised (with the TEMP comparison) a profile evasion in the last CONFIG_IceDetectionSpringInhibitionDelaySinceLastIceEvasion_NUMBER days, the profile is aborted (without entering in the TEMP comparison loop) at CONFIG_IceDetectionSpringInhibitionAscentEnd_dbar." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/1/" + }, + "dce:identifier": "SDN:R18::CC00004", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00004", + "skos:altLabel": "Core Config 4 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_AscentEndThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Threshold used by the float to stop ascent speed control and pump actions." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/2/" + }, + "dce:identifier": "SDN:R18::CB00010", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00010", + "skos:altLabel": "BGC Config 10 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_WarmUpTime_msec" + }, + "dc:identifier": "SDN:R18::CB00010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time, needed after the is powered ON, to provide its first sample (in milli-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/1/" + }, + "dce:identifier": "SDN:R18::CC00172", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00172", + "skos:altLabel": "Core Config 172 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ProfileEvasionBrakingFactor_NUMBER" + }, + "dc:identifier": "SDN:R18::CC00172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This factor defines the oil volume transferred from the external bladder when a profile evasion occurs and the float has to brake. The transferred oil volume is CONFIG_ProfileEvasionAscentSpeedFactor_NUMBER times the oil volume of the last pump action." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/1/" + }, + "dce:identifier": "SDN:R18::CC00035", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00035", + "skos:altLabel": "Core Config 35 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepestPressureAscendingProfile_dbar" + }, + "dc:identifier": "SDN:R18::CC00035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "deepest pressure sampled in the ascending profile - example 2000 for a profile starting at 2000 dbar" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/1/" + }, + "dce:identifier": "SDN:R18::CC00057", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00057", + "skos:altLabel": "Core Config 57 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_GPSImprovedLocation_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Use the GPS improved location mode. This mode can be used when the float altitude is 0 meter, it provides better locations." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/1/" + }, + "dce:identifier": "SDN:R18::CC00139", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00139", + "skos:altLabel": "Core Config 139 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PistonProfile_COUNT" + }, + "dc:identifier": "SDN:R18::CC00139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "preset profile piston position, in counts" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/2/" + }, + "dce:identifier": "SDN:R18::CB00006", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00006", + "skos:altLabel": "BGC Config 6 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DriftAtProfilePresSamplingPeriod_minutes" + }, + "dc:identifier": "SDN:R18::CB00006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Sampling period of the during the drift at profile pressure (in minutes)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/2/" + }, + "dce:identifier": "SDN:R18::CB00063", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00063", + "skos:altLabel": "BGC Config 63 - Optional", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_CroverBeamAttenuationBandwidth_nm" + }, + "dc:identifier": "SDN:R18::CB00063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bandwidth of Crover for Beam attenuation measurements (in nanometer)" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/1/" + }, + "dce:identifier": "SDN:R18::CC00121", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00121", + "skos:altLabel": "Core Config 121 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumeMinPerValveAction_cm^3" + }, + "dc:identifier": "SDN:R18::CC00121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This information is used as a threshold for the valve action durations. The valve flow is known for each float and CONFIG_OilVolumeMinPerValveAction_cm^3 is converted to a minDurationOfValveAction. During descent phases the float regularly computes a valve duration to sink to the target depth. In some specific cases the result can be a brief valve action duration and the result must have a minDurationOfValveAction threshold." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/1/" + }, + "dce:identifier": "SDN:R18::CC00088", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00088", + "skos:altLabel": "Core Config 88", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionStartPressure_dbar" + }, + "dc:identifier": "SDN:R18::CC00088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Start pressure of the ice detection algorithm. The float collects T and S samples from CONFIG_IceDetectionMixedLayerPMax_dbar (=50dbar) but starts the TEMP comparison at CONFIG_IceDetectionStart_dbar (=20dbar). Thus, the samples collected between 50 and 20 dbar are used for the first TEMP comparison." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/1/" + }, + "dce:identifier": "SDN:R18::CC00070", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00070", + "skos:altLabel": "Core Config 70 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetectionAcousticStartPressureThreshold_dbar" + }, + "dc:identifier": "SDN:R18::CC00070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure threshold to start the acoustic ice detection test. Concerning ice detection and avoidance, the float uses 3 algorithms: 1) AC1: it stops profiles at a given depth for given months in the year; 2) ISA: the (well known) ISA algorithm which determines possible ice coverage from TEMP (and PSAL in this case) measurements; 3) AID: the Acoustic Ice Detection which used an acoustic altimeter to detect ice at sea surface]." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/1/" + }, + "dce:identifier": "SDN:R18::CC00204", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00204", + "skos:altLabel": "Core Config 204 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_TelemetryMaxRetrySecondary_COUNT" + }, + "dc:identifier": "SDN:R18::CC00204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Some float versions have a secondary telemetry system; in this case the float is able to perform an Iridium session (to get one Iridium position) in addition to the RUDICS version used in the main telemetry session specified by CONFIG_TelemetryMaxRetry_COUNT" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/1/" + }, + "dce:identifier": "SDN:R18::CC00131", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00131", + "skos:altLabel": "Core Config 131 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_ParkSamplingPeriodSecondary_hours" + }, + "dc:identifier": "SDN:R18::CC00131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Some floats have two different park sampling periods in a cycle, e.g. 1.5 hours followed by 6 hours. This is the configuration parameter for the secondary sampling period during the park phase following CONFIG_ParkSamplingPeriod_hours. Changeable via 2-way communications." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/1/" + }, + "dce:identifier": "SDN:R18::CC00016", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00016", + "skos:altLabel": "Core Config 16 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_BuoyancyNudgeToPark_COUNT" + }, + "dc:identifier": "SDN:R18::CC00016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The number of counts to change the piston position from its current position in the direction that will bring the float closer to the Park depth. It is applied after three successive pressure samples that are outside the dead band specified by CONFIG_PressureTargetToleranceDuringDrift_dbar." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/2/" + }, + "dce:identifier": "SDN:R18::CB00022", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00022", + "skos:altLabel": "BGC Config 22 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OptodeMaxTransmittedC2Phase_angularDeg" + }, + "dc:identifier": "SDN:R18::CB00022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value of transmitted Optode C2 phase measurements (in degrees)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/1/" + }, + "dce:identifier": "SDN:R18::CC00037", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00037", + "skos:altLabel": "Core Config 37 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DeepProfileFirstFloat_LOGICAL" + }, + "dc:identifier": "SDN:R18::CC00037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Some APEX floats are set to do a \"profile on deployment\". This means that when the float is deployed it skips the drift phase at the PARKING depth and sinks directly to the PROFILE depth and starts ascending for the first profile. Independent of the Park and Profile cycle length, the first profile is always a Deep Profile that begins at the Profile Depth. This means the float returns a CTD profile relatively soon, typically less than a day, after the float is deployed. This feature supports comparison of the initial float profile with a conventional CTD cast from the ship. The result is that the first cycle is of shorter duration with a profile depth equal to PROFILE configuration pressure (regardless of the CONFIG_ParkAndProfileCycleCounter_COUNT configuration information). (Yes = 1, No = 0)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/1/" + }, + "pav:authoredOn": "2023-05-02 19:58:02.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/2/" + }, + "dce:identifier": "SDN:R18::CB00008", + "pav:version": "2", + "skos:notation": "SDN:R18::CB00008", + "skos:altLabel": "BGC Config 8 - Mandatory", + "dc:date": "2023-05-02 19:58:02.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_DepthZonePowerAcquisitionMode_NUMBER" + }, + "dc:identifier": "SDN:R18::CB00008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Power acquisition mode of the in the depth zone # (0 : none, 2 : pulsed, 3 : continuous)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/1/" + }, + "dce:identifier": "SDN:R18::CC00184", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00184", + "skos:altLabel": "Core Config 184 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_PumpActionMaxTimeReposition_csec" + }, + "dc:identifier": "SDN:R18::CC00184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum duration of the pump action for a drift readjustment (in centi-seconds)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/1/" + }, + "dce:identifier": "SDN:R18::CC00069", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00069", + "skos:altLabel": "Core Config 69 - Mandatory (if applies)", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_IceDetection_degC" + }, + "dc:identifier": "SDN:R18::CC00069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ice temperature in [degree Celsius/1e3] where profiles are aborted because of ice formation conditions" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/", + "pav:authoredOn": "2023-05-02 16:34:05.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/1/" + }, + "dce:identifier": "SDN:R18::CC00123", + "pav:version": "1", + "skos:notation": "SDN:R18::CC00123", + "skos:altLabel": "Core Config 123 - Optional", + "dc:date": "2023-05-02 16:34:05.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CONFIG_OilVolumePerPumpActionDescent_cm^3" + }, + "dc:identifier": "SDN:R18::CC00123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Nominal oil volume of each pump action during descent (when the float brakes because of a too fast descent speed)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB10004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00155/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CB00008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R18/current/CC00184/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float configuration settings selected by the float Principal Investigator (PI). Configuration parameters may or may not be reported by the float, and do not constitute float measurements. Configuration parameters selected for a float are stored in the float 'meta.nc' file, under CONFIG_PARAMETER_NAME. Each configuration parameter name has an associated value, stored in CONFIG_PARAMETER_VALUE. Argo netCDF variable CONFIG_PARAMETER_NAME is populated by R18 prefLabel.", + "dc:title": "Argo configuration parameter names", + "skos:prefLabel": "Argo configuration parameter names", + "owl:versionInfo": "1", + "dc:date": "2023-05-03 03:00:04.0", + "skos:altLabel": "CONFIG_PARAMETER_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "CONFIG_PARAMETER_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre" + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc b/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc new file mode 100644 index 00000000..ec3a46ae Binary files /dev/null and b/argopy/tests/test_data/44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295.nc differ diff --git a/argopy/tests/test_data/465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b.nc b/argopy/tests/test_data/465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b.nc new file mode 100644 index 00000000..4ec13c99 Binary files /dev/null and b/argopy/tests/test_data/465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b.nc differ diff --git a/argopy/tests/test_data/470b660b087c94de3ec43b56cb18e4ac54e992ea1b0b57f52d8f0423fac53011.ncHeader b/argopy/tests/test_data/470b660b087c94de3ec43b56cb18e4ac54e992ea1b0b57f52d8f0423fac53011.ncHeader new file mode 100644 index 00000000..1d5aed44 --- /dev/null +++ b/argopy/tests/test_data/470b660b087c94de3ec43b56cb18e4ac54e992ea1b0b57f52d8f0423fac53011.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_d3f0_4704_1306.nc { + dimensions: + row = 22796; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 207; + variables: + int config_mission_number(row=22796); + :_FillValue = 99999; // int + :actual_range = -1, 538976288; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=22796); + :_FillValue = 99999; // int + :actual_range = 0, 298; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=22796, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=22796, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=22796); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 40.00062, 44.96799850463867; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=22796); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -59.99700927734375, -55.00059509277344; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=22796, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=22796, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=22796); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.1f, 21.1f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 0.1f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 20.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=22796, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=22796, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 0.181f, 36.774f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 0.116f, 36.77397f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.25234f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=22796, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=22796, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = -0.023f, 29.063f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = -0.023f, 29.063f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=22796); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=22796, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=22796, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=22796); + :_CoordinateAxisType = "Time"; + :actual_range = 1.00546218E9, 1.72637965E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=22796, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=22796, vertical_sampling_scheme_strlen=207); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -55.00059509277344; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 44.96799850463867; // double + :geospatial_lat_min = 40.00062; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -55.00059509277344; // double + :geospatial_lon_min = -59.99700927734375; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:54:23Z (local files) +2024-09-24T08:54:23Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres_adjusted%3E=0.0&pres_adjusted%3C=20.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 44.96799850463867; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 40.00062; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2024-09-15T05:54:10Z"; + :time_coverage_start = "2001-11-11T07:03:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -59.99700927734375; // double +} diff --git a/argopy/tests/test_data/47c8abcb9ad9e1d857e0bbc000f36ba5150d21111cf40ef7f0e0127a5779567e.nc b/argopy/tests/test_data/47c8abcb9ad9e1d857e0bbc000f36ba5150d21111cf40ef7f0e0127a5779567e.nc new file mode 100644 index 00000000..a96399ae Binary files /dev/null and b/argopy/tests/test_data/47c8abcb9ad9e1d857e0bbc000f36ba5150d21111cf40ef7f0e0127a5779567e.nc differ diff --git a/argopy/tests/test_data/47f8daa8ebd57ff95a73d2e5fdc9cdcdc70bcbfed16b113d196b6a735752fcfc.nc b/argopy/tests/test_data/47f8daa8ebd57ff95a73d2e5fdc9cdcdc70bcbfed16b113d196b6a735752fcfc.nc new file mode 100644 index 00000000..ab81867a Binary files /dev/null and b/argopy/tests/test_data/47f8daa8ebd57ff95a73d2e5fdc9cdcdc70bcbfed16b113d196b6a735752fcfc.nc differ diff --git a/argopy/tests/test_data/48fe8a21fd44dcd9e37805b955d7215f4969f8d686eaf773cccb162412a00c4c.ncHeader b/argopy/tests/test_data/48fe8a21fd44dcd9e37805b955d7215f4969f8d686eaf773cccb162412a00c4c.ncHeader new file mode 100644 index 00000000..5bbf42a7 --- /dev/null +++ b/argopy/tests/test_data/48fe8a21fd44dcd9e37805b955d7215f4969f8d686eaf773cccb162412a00c4c.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_dbd8_eb77_72ba.nc { + dimensions: + row = 39905; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=39905); + :_FillValue = 99999; // int + :actual_range = 1, 3; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=39905); + :_FillValue = 99999; // int + :actual_range = 1, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=39905, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=39905, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=39905); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -49.526, 25.143; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=39905); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -85.606, 142.722; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=39905, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=39905, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=39905); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2037.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2037.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=39905, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=39905, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 33.751f, 37.464f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 33.73227f, 37.464f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01422f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=39905, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=39905, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 30.302f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 30.302f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=39905); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=39905, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=39905, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=39905); + :_CoordinateAxisType = "Time"; + :actual_range = 1.261966039E9, 1.59583524E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=39905, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=39905, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 142.722; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 25.143; // double + :geospatial_lat_min = -49.526; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 142.722; // double + :geospatial_lon_min = -85.606; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:01Z (local files) +2024-09-24T08:52:01Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221901393%7C6902746%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 25.143; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -49.526; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2020-07-27T07:34:00Z"; + :time_coverage_start = "2009-12-28T02:07:19Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -85.606; // double +} diff --git a/argopy/tests/test_data/49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221.json b/argopy/tests/test_data/49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221.json new file mode 100644 index 00000000..292d71b0 --- /dev/null +++ b/argopy/tests/test_data/49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221.json @@ -0,0 +1,558 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXUP", + "skos:altLabel": "NSMIXUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, unpumped" + }, + "dc:identifier": "SDN:R16::NSMIXUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/1/" + }, + "dce:identifier": "SDN:R16::SECDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::SECDIS", + "skos:altLabel": "SECDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: discrete" + }, + "dc:identifier": "SDN:R16::SECDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'discrete' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGP", + "skos:altLabel": "NSAVGP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, pumped" + }, + "dc:identifier": "SDN:R16::NSAVGP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/1/" + }, + "dce:identifier": "SDN:R16::NSMIXP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSMIXP", + "skos:altLabel": "NSMIXP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: mixed, pumped" + }, + "dc:identifier": "SDN:R16::NSMIXP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'mixed' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/1/" + }, + "dce:identifier": "SDN:R16::BOAVE", + "pav:version": "1", + "skos:notation": "SDN:R16::BOAVE", + "skos:altLabel": "BOAVE", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: averaged" + }, + "dc:identifier": "SDN:R16::BOAVE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'averaged' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/1/" + }, + "dce:identifier": "SDN:R16::BODIS", + "pav:version": "1", + "skos:notation": "SDN:R16::BODIS", + "skos:altLabel": "BODIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: discrete" + }, + "dc:identifier": "SDN:R16::BODIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'discrete' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/1/" + }, + "dce:identifier": "SDN:R16::NSAVGUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSAVGUP", + "skos:altLabel": "NSAVGUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: averaged, unpumped" + }, + "dc:identifier": "SDN:R16::NSAVGUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'averaged' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/1/" + }, + "dce:identifier": "SDN:R16::NSDISUP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISUP", + "skos:altLabel": "NSDISUP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, unpumped" + }, + "dc:identifier": "SDN:R16::NSDISUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from an unpumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/1/" + }, + "dce:identifier": "SDN:R16::SECAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::SECAVG", + "skos:altLabel": "SECAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: averaged" + }, + "dc:identifier": "SDN:R16::SECAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'averaged' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/1/" + }, + "dce:identifier": "SDN:R16::NSDISP", + "pav:version": "1", + "skos:notation": "SDN:R16::NSDISP", + "skos:altLabel": "NSDISP", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface sampling: discrete, pumped" + }, + "dc:identifier": "SDN:R16::NSDISP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface sampling scheme for which the 'discrete' sampling method was used, and measurements obtained from a pumped CTD stream. The near-surface sampling profile has N_PROF>1. It is composed of measurements focusing on the top 5 dbar of the water column, which may extend deeper so as to overlap with the primary sampling profile for the purpose of cross-calibration. These measurements are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. Primary sampling profiles measuring above 5 dbar should not be labelled with this sampling scheme." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/1/" + }, + "dce:identifier": "SDN:R16::PRAVG", + "pav:version": "1", + "skos:notation": "SDN:R16::PRAVG", + "skos:altLabel": "PRAVG", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: averaged" + }, + "dc:identifier": "SDN:R16::PRAVG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'averaged' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'averaged' sampling method refers to profiles where each data point was obtained from binned averages of multiple data measurements (pollings) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'averaged' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/1/" + }, + "dce:identifier": "SDN:R16::PRDIS", + "pav:version": "1", + "skos:notation": "SDN:R16::PRDIS", + "skos:altLabel": "PRDIS", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: discrete" + }, + "dc:identifier": "SDN:R16::PRDIS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'discrete' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'discrete' sampling method refers to profiles where each data point was obtained from a single measurement (polling) from a sensor. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'discrete' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/1/" + }, + "dce:identifier": "SDN:R16::SECMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::SECMIX", + "skos:altLabel": "SECMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary sampling: mixed" + }, + "dc:identifier": "SDN:R16::SECMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Secondary sampling scheme for which the 'mixed' sampling method was used. The secondary sampling profile has N_PROF>1, and is composed of measurements that are taken at pressure levels different from the primary sampling profile, or obtained by a sampling method different from that of the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Measurements can be taken by the Primary CTD or by auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/1/" + }, + "dce:identifier": "SDN:R16::PRMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::PRMIX", + "skos:altLabel": "PRMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Primary sampling: mixed" + }, + "dc:identifier": "SDN:R16::PRMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Primary sampling scheme for which the 'mixed' sampling method was used. The primary sampling profile has N_PROF=1, and is composed of primary CTD measurements. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. This sampling scheme can also be applied to measurements from auxiliary sensors obtained by the 'mixed' sampling method and taken at the same pressure levels as the Primary CTD profile. For auxiliary sensor measurements it is not required that all pressure levels contain data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/", + "pav:authoredOn": "2020-05-03 20:29:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/1/" + }, + "dce:identifier": "SDN:R16::BOMIX", + "pav:version": "1", + "skos:notation": "SDN:R16::BOMIX", + "skos:altLabel": "BOMIX", + "dc:date": "2020-05-03 20:29:08.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bounce sampling: mixed" + }, + "dc:identifier": "SDN:R16::BOMIX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Bounce sampling scheme for which the 'mixed' sampling method was used. The bounce sampling scheme is composed of profiles with N_PROF>1 collected on multiple rises and falls during a single cycle. The profiles are temporally offset from each other and/or the primary sampling profile. The 'mixed' sampling method refers to profiles composed of data points obtained by both the 'averaged' and 'discrete' sampling methods. Bounce sampling scheme profiles can be sampled with the Primary CTD or with auxiliary sensors." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSMIXP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOAVE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BODIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSAVGUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/NSDISP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRAVG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRDIS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/SECMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/BOMIX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R16/current/PRMIX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Profile sampling schemes and sampling methods. Argo netCDF variable VERTICAL_SAMPLING_SCHEME is populated by R16 altLabel.", + "dc:title": "Argo vertical sampling schemes", + "skos:prefLabel": "Argo vertical sampling schemes", + "owl:versionInfo": "1", + "dc:date": "2020-05-04 03:00:04.0", + "skos:altLabel": "VERTICAL_SAMPLING_SCHEME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "VERTICAL_SAMPLING_SCHEME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R16" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json b/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json new file mode 100644 index 00000000..1c850cd9 --- /dev/null +++ b/argopy/tests/test_data/4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-15T00:00:00","lat":37.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900511"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-09-10T08:27:00","lat":56.9005,"lon":-31.0731,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900563"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-11T12:00:00","lat":48.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900583"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-Previmer"},"ptfDepl":{"deplDate":"2012-06-17T20:32:00","lat":46.897,"lon":-4.3367,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901421"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-16T23:14:00","lat":56.6108,"lon":-48.0125,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901417"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-20T23:26:00","lat":56.3731,"lon":-43.9359,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901418"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-24T05:24:00","lat":56.4918,"lon":-40.958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901419"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-15T12:00:00","lat":48.7112,"lon":-17.0953,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-20T02:15:00","lat":75.43,"lon":-6.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903887"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-20T00:00:00","lat":64.885,"lon":-30.0048,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900157"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-20T00:00:00","lat":63.5771,"lon":-29.9601,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900158"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-26T00:00:00","lat":58.7481,"lon":-27.249,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900156"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-27T00:00:00","lat":57.53,"lon":-23.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900154"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-29T00:00:00","lat":54.76,"lon":-30.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900161"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-01T00:00:00","lat":50.61,"lon":-29.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900159"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-02T00:00:00","lat":46.67,"lon":-28.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900160"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-04T00:00:00","lat":47.42,"lon":-22.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900152"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-06T00:00:00","lat":48.54,"lon":-15.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900153"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2003-07-01T00:00:00","lat":46.0,"lon":-30.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900210"},{"program":{"country":{"nameShort":"COSTA RICA"},"nameShort":"Argo_COSTA_RICA"},"ptfDepl":{"deplDate":"2005-12-07T00:00:00","lat":9.0,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":10.05,"lon":-26.1833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900704"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":4.9014,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-02T00:00:00","lat":19.9833,"lon":-20.9842,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900608"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-25T00:00:00","lat":44.5,"lon":-16.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900045"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-25T00:00:00","lat":43.02,"lon":-18.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900046"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":75.005,"lon":-0.081,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900072"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":75.31,"lon":-0.044,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900071"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":74.992,"lon":-1.464,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-16T00:00:00","lat":1.004,"lon":-25.506,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900017"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-18T00:00:00","lat":2.022,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-18T00:00:00","lat":1.01,"lon":-23.001,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900010"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-27T00:00:00","lat":32.667,"lon":-71.282,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900150"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-27T00:00:00","lat":28.918,"lon":-70.148,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900151"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-28T00:00:00","lat":21.348,"lon":-67.175,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-28T00:00:00","lat":24.973,"lon":-68.572,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900149"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-09-06T00:00:00","lat":52.41,"lon":-18.04,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-08-29T00:00:00","lat":32.2,"lon":-64.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100951"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-12T00:00:00","lat":12.78,"lon":-50.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100952"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-12T00:00:00","lat":10.72,"lon":-46.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100953"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-13T00:00:00","lat":6.64,"lon":-40.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900043"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-14T00:00:00","lat":2.39,"lon":-33.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-15T00:00:00","lat":0.44,"lon":-30.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900041"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-23T00:00:00","lat":9.55,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900059"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-14T00:00:00","lat":43.05,"lon":-48.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900187"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-24T00:00:00","lat":48.83,"lon":-43.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900188"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-24T00:00:00","lat":48.79,"lon":-44.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900189"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-08T00:00:00","lat":52.96,"lon":-51.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900192"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-08T00:00:00","lat":53.12,"lon":-50.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900193"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-09T00:00:00","lat":53.03,"lon":-50.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900191"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-09T00:00:00","lat":53.08,"lon":-50.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900190"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-04-25T00:00:00","lat":43.5,"lon":-15.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-04-26T00:00:00","lat":40.5,"lon":-15.333,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900031"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-20T00:00:00","lat":39.0,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900034"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-22T00:00:00","lat":41.5,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900036"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-09-26T00:00:00","lat":44.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900040"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-04T00:00:00","lat":43.99,"lon":-21.335,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900042"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-05T00:00:00","lat":44.99,"lon":-18.669,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900043"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-21T00:00:00","lat":42.25,"lon":-17.666,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900044"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-15T00:00:00","lat":43.455,"lon":-57.528,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900882"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-02T00:00:00","lat":46.495,"lon":-27.834,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900022"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-02T00:00:00","lat":46.979,"lon":-29.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900023"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-06T00:00:00","lat":43.03,"lon":-31.395,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900024"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-05T00:00:00","lat":43.935,"lon":-32.985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900025"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-20T00:00:00","lat":45.842,"lon":-29.598,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900026"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-20T00:00:00","lat":45.336,"lon":-32.161,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900027"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-29T00:00:00","lat":44.618,"lon":-35.968,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900028"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-26T00:00:00","lat":48.048,"lon":-19.662,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900203"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-27T00:00:00","lat":47.893,"lon":-20.66,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900204"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-28T00:00:00","lat":47.383,"lon":-24.273,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900205"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-29T00:00:00","lat":47.223,"lon":-25.877,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900206"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":46.408,"lon":-29.908,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900207"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-06-03T00:00:00","lat":47.38,"lon":-24.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900209"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-04T00:00:00","lat":52.093,"lon":-28.816,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900019"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-05T00:00:00","lat":51.717,"lon":-35.049,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900020"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-01T00:00:00","lat":51.022,"lon":-24.672,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900021"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-19T00:00:00","lat":44.949,"lon":-34.575,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":45.885,"lon":-31.583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900057"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":46.405,"lon":-29.894,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900058"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-21T00:00:00","lat":46.503,"lon":-33.165,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900054"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-19T00:00:00","lat":45.313,"lon":-33.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900055"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-06-02T00:00:00","lat":45.377,"lon":-33.502,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900208"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-11-17T00:00:00","lat":42.569,"lon":-49.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900134"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2001-11-22T00:00:00","lat":61.48,"lon":-37.416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900083"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2001-11-21T00:00:00","lat":60.65,"lon":-34.308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900082"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-01-01T00:00:00","lat":45.983,"lon":-17.032,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900211"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-01-01T00:00:00","lat":45.995,"lon":-17.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900212"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-06-08T00:00:00","lat":43.0,"lon":-31.817,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900213"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-06-06T00:00:00","lat":44.167,"lon":-32.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900214"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":45.417,"lon":-33.283,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900243"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-03T00:00:00","lat":45.6,"lon":-32.467,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900244"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":45.883,"lon":-31.667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900245"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":46.0,"lon":-30.867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900246"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":46.4,"lon":-29.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900247"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":46.817,"lon":-27.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900248"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":47.25,"lon":-25.867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900249"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-03T00:00:00","lat":47.417,"lon":-24.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900250"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":52.083,"lon":-49.167,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2007-02-11T00:00:00","lat":36.686,"lon":-66.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-11T16:37:00","lat":52.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2009-10-12T01:45:00","lat":31.667,"lon":-64.172,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-01-16T02:14:00","lat":25.84,"lon":-88.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902286"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-09-19T10:51:00","lat":27.66,"lon":-87.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902288"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2011-07-19T06:20:00","lat":25.65,"lon":-86.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-01-12T09:06:00","lat":27.5,"lon":-88.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902285"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2012-11-30T04:12:00","lat":31.6884,"lon":-64.1266,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903890"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-10-05T12:38:00","lat":31.6384,"lon":-64.1999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2010-11-12T02:56:00","lat":31.71,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903377"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2007-02-19T00:00:00","lat":37.893,"lon":-54.014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900480"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-20T05:16:00","lat":75.545,"lon":-6.6199,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903724"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2012-08-23T00:03:00","lat":31.705,"lon":-64.1633,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903892"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-22T23:57:00","lat":31.7034,"lon":-64.1633,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903889"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-29T16:10:00","lat":4.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-30T18:18:00","lat":18.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903283"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-28T16:41:00","lat":1.775,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-30T16:06:00","lat":8.07,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-30T09:02:00","lat":17.1167,"lon":-37.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903281"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-29T22:28:00","lat":15.0667,"lon":-35.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-12T03:39:00","lat":28.005,"lon":-43.3849,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904008"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-11T05:48:00","lat":30.0084,"lon":-47.0933,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904001"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-08T18:49:00","lat":36.7184,"lon":-58.9166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903997"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-30T18:22:00","lat":36.37,"lon":-58.2799,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903996"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-14T01:35:00","lat":24.2534,"lon":-37.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904017"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-13T23:29:00","lat":24.2584,"lon":-38.2566,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904015"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T02:05:00","lat":25.2601,"lon":-37.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904016"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T06:09:00","lat":25.2684,"lon":-38.7466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904006"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T05:15:00","lat":25.2534,"lon":-38.2666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-15T06:54:00","lat":24.7567,"lon":-38.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903998"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-15T04:27:00","lat":24.7534,"lon":-37.7483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903999"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-22T09:58:00","lat":25.3184,"lon":-37.0783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904013"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-18T01:03:00","lat":24.2601,"lon":-38.7466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904010"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T23:14:00","lat":23.7484,"lon":-38.7366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904007"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T19:54:00","lat":23.7434,"lon":-38.2383,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904012"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T16:16:00","lat":23.7467,"lon":-37.7483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904011"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T10:27:00","lat":24.2584,"lon":-37.2483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904003"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T07:25:00","lat":24.7534,"lon":-37.2466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904004"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T09:44:00","lat":24.7617,"lon":-38.7366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904009"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-08-28T14:35:00","lat":23.7417,"lon":-37.2516,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904005"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-07T03:49:00","lat":30.9967,"lon":-31.2116,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904000"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-06T17:36:00","lat":29.9734,"lon":-33.3233,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903995"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-06T05:58:00","lat":29.0101,"lon":-35.5133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-05T16:43:00","lat":26.9967,"lon":-36.9416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-30T12:33:00","lat":25.8051,"lon":-38.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904014"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T03:31:00","lat":25.2484,"lon":-37.2299,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904002"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-11T12:55:00","lat":58.0967,"lon":-23.2366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904176"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-10T19:05:00","lat":56.8251,"lon":-28.145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904173"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-10T12:31:00","lat":56.2351,"lon":-30.6666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904175"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-08T13:37:00","lat":49.3284,"lon":-39.9433,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904174"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-06-01T00:00:00","lat":55.852,"lon":-53.408,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900537"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-09-18T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900621"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-09-20T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900622"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-01-01T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900202"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-21T16:04:00","lat":36.23,"lon":-12.382,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901237"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-01T06:10:00","lat":24.78,"lon":-19.57,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900764"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-01T00:00:00","lat":24.49,"lon":-49.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900774"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-27T03:45:00","lat":24.49,"lon":-61.76,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900777"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-04T10:32:00","lat":24.501,"lon":-24.708,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900769"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-07T18:50:00","lat":24.501,"lon":-29.583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900770"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-10T12:22:00","lat":24.501,"lon":-37.584,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900771"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-23T09:00:00","lat":24.501,"lon":-55.26,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900775"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-26T20:30:00","lat":24.49,"lon":-58.629,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900776"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-28T19:45:00","lat":24.505,"lon":-63.833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900778"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-03-02T09:45:00","lat":24.497,"lon":-66.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900779"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-15T04:37:00","lat":24.501,"lon":-40.387,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900773"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-03T05:15:00","lat":24.825,"lon":-22.47,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900765"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-24T12:20:00","lat":20.28,"lon":-24.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900767"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-26T12:45:00","lat":12.51,"lon":-26.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900768"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-16T12:35:00","lat":35.2,"lon":-9.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900766"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-13T12:53:00","lat":29.1,"lon":-15.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900789"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-10T00:04:00","lat":27.655,"lon":-17.914,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901241"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-24T00:00:00","lat":22.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900277"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-01T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902697"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-01T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902706"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-11-15T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902707"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-04-15T12:00:00","lat":58.55,"lon":-30.19,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902695"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-04-15T00:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902709"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-11-15T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902684"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-02-01T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902708"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-02-01T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902696"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-12-03T00:00:00","lat":47.0,"lon":-43.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900504"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-26T00:00:00","lat":0.01,"lon":-19.97,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901744"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-17T00:00:00","lat":58.91,"lon":-31.91,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901751"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-20T00:00:00","lat":60.8317,"lon":-21.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901752"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":57.5866,"lon":-28.4368,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901595"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-10T23:20:00","lat":59.17,"lon":-34.47,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901754"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T00:00:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901602"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T13:31:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901758"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T13:32:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901759"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":57.97,"lon":-29.28,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901594"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-19T07:15:00","lat":10.877,"lon":-22.671,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-13T10:10:00","lat":0.2602,"lon":-26.764,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901706"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-15T08:15:00","lat":3.7305,"lon":-25.2352,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901703"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2012-09-04T00:00:00","lat":74.99,"lon":-3.337,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901903"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2012-09-01T12:00:00","lat":74.999,"lon":-1.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901904"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T17:28:00","lat":46.0336,"lon":-7.42,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901031"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":24.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":60.297,"lon":-48.585,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900880"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-12T00:00:00","lat":42.527,"lon":-61.415,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900881"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-25T00:00:00","lat":64.8333,"lon":-6.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900334"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-25T00:00:00","lat":65.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900335"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":45.0,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900048"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-06T00:00:00","lat":22.5364,"lon":-67.7858,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900590"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-20T00:00:00","lat":21.2667,"lon":-58.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900746"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-22T00:00:00","lat":17.9167,"lon":-52.0117,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900747"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-06-26T00:00:00","lat":44.498,"lon":-55.423,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900136"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-04-20T15:15:00","lat":27.52,"lon":-14.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901240"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-27T00:00:00","lat":46.067,"lon":-31.141,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900016"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-25T00:00:00","lat":46.485,"lon":-29.805,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900017"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-26T00:00:00","lat":45.346,"lon":-32.736,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-27T00:00:00","lat":43.7354,"lon":-55.8087,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902100"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-02T00:00:00","lat":42.2381,"lon":-61.1828,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902102"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-26T18:12:00","lat":24.5,"lon":-64.02,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901183"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-28T14:52:00","lat":24.5,"lon":-60.35,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901182"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-28T00:00:00","lat":24.4992,"lon":-60.3498,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901188"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-26T19:12:00","lat":23.515,"lon":-51.9938,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-06-06T11:35:00","lat":28.1972,"lon":-50.2787,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901285"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-06-10T15:59:00","lat":28.4361,"lon":-62.4935,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901289"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-09-27T05:55:00","lat":43.7833,"lon":-57.8137,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901760"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-09-26T18:23:00","lat":43.4714,"lon":-57.5198,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901761"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-10-02T09:42:00","lat":44.2436,"lon":-55.8574,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901757"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-10-02T02:50:00","lat":43.7247,"lon":-55.8144,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901758"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-22T14:33:00","lat":34.6733,"lon":-64.195,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901216"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-01-15T23:53:00","lat":24.5,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901187"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-28T10:38:00","lat":26.1124,"lon":-45.0678,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901117"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-23T12:10:00","lat":40.34,"lon":-12.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901631"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-31T00:00:00","lat":46.52,"lon":-19.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901632"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-21T00:00:00","lat":22.0016,"lon":-25.5035,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900275"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-01T00:00:00","lat":41.9311,"lon":-64.4649,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901081"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":60.317,"lon":-48.586,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900422"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-30T00:00:00","lat":59.39,"lon":-49.31,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900421"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":59.711,"lon":-49.126,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900408"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.8495,"lon":-6.0001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900358"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.998,"lon":-6.503,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900359"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.9995,"lon":-7.234,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900360"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":43.934,"lon":-9.1705,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900361"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T05:35:00","lat":40.6347,"lon":-60.152,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901755"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T08:02:00","lat":57.5955,"lon":-51.5633,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901754"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-15T06:04:00","lat":58.5453,"lon":-50.3971,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901746"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T14:04:00","lat":57.3935,"lon":-51.7782,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901752"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-20T07:43:00","lat":59.4909,"lon":-49.484,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901157"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":45.9295,"lon":-7.0315,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900133"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":45.9305,"lon":-7.0277,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":45.0048,"lon":-7.9048,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":45.0019,"lon":-7.9117,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900136"},{"program":{"country":{"nameShort":"COSTA RICA"},"nameShort":"Argo_COSTA_RICA"},"ptfDepl":{"deplDate":"2005-12-07T00:00:00","lat":10.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900379"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-07-29T00:00:00","lat":50.162,"lon":-48.472,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900628"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-03T00:00:00","lat":55.42,"lon":-53.983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-08T00:00:00","lat":60.297,"lon":-48.582,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900129"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-06T00:00:00","lat":42.35,"lon":-43.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900261"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-04T00:00:00","lat":43.861,"lon":-38.563,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900258"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-07T00:00:00","lat":41.656,"lon":-45.028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900262"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-05T00:00:00","lat":43.37,"lon":-40.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900259"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":54.392,"lon":-47.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900297"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":55.957,"lon":-46.022,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900298"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-14T00:00:00","lat":39.773,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900221"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-08T00:00:00","lat":54.503,"lon":-16.178,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900184"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-10T00:00:00","lat":58.894,"lon":-20.148,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900185"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-12T00:00:00","lat":60.927,"lon":-22.098,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900186"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-10T00:00:00","lat":58.292,"lon":-43.301,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900299"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-19T00:00:00","lat":62.633,"lon":-34.695,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900183"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-12T00:00:00","lat":59.517,"lon":-37.618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900300"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-23T00:00:00","lat":43.524,"lon":-18.072,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-25T00:00:00","lat":41.8153,"lon":-63.5012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900249"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-10-30T00:00:00","lat":41.8205,"lon":-63.4972,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900133"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-07-10T19:32:00","lat":46.967,"lon":-43.251,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901104"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-06T00:00:00","lat":0.041,"lon":-9.916,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900207"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-07T00:00:00","lat":2.008,"lon":-8.283,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900208"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-03T00:00:00","lat":3.0,"lon":-11.7,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900205"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-03T00:00:00","lat":1.514,"lon":-10.802,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900206"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-10-13T00:00:00","lat":0.7505,"lon":-1.996,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900119"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-10-12T00:00:00","lat":1.7521,"lon":-0.0507,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900118"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900618"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900616"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900620"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":51.22,"lon":-19.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900170"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-07-01T00:00:00","lat":44.074,"lon":-17.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900179"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-13T00:00:00","lat":49.99,"lon":-15.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900169"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-07-07T00:00:00","lat":41.082,"lon":-13.496,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900180"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-18T00:00:00","lat":59.394,"lon":-41.144,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900225"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":49.9,"lon":-22.31,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900177"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":59.02,"lon":-39.995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900224"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":48.034,"lon":-20.845,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900178"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-26T00:00:00","lat":51.767,"lon":-23.782,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900176"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":54.17,"lon":-26.49,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900173"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-15T00:00:00","lat":55.117,"lon":-28.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900174"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":57.627,"lon":-36.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900223"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":58.317,"lon":-38.007,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900222"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-16T00:00:00","lat":56.022,"lon":-31.543,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900175"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":53.21,"lon":-24.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900172"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-24T00:00:00","lat":55.147,"lon":-26.422,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900182"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-10T00:00:00","lat":35.25,"lon":-20.5133,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900181"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-22T00:00:00","lat":32.161,"lon":-34.768,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900079"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-15T00:00:00","lat":34.33,"lon":-28.583,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900078"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-29T00:00:00","lat":43.498,"lon":-12.003,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900132"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-11T00:00:00","lat":33.957,"lon":-23.165,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900076"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-11T00:00:00","lat":33.01,"lon":-25.0375,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900081"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-12T00:00:00","lat":30.88,"lon":-26.195,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900108"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-12T00:00:00","lat":30.9035,"lon":-26.187,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900077"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-06T00:00:00","lat":39.175,"lon":-13.801,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900163"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":39.328,"lon":-17.308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900166"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":39.339,"lon":-20.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900167"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-10T00:00:00","lat":39.0,"lon":-35.449,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900168"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-11T00:00:00","lat":38.726,"lon":-37.297,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900214"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":38.089,"lon":-40.922,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900216"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":37.731,"lon":-42.723,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900217"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":37.353,"lon":-44.505,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900218"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-13T00:00:00","lat":36.939,"lon":-46.261,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900219"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-14T00:00:00","lat":38.139,"lon":-49.011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900220"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-11T00:00:00","lat":38.419,"lon":-39.12,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-21T00:00:00","lat":57.373,"lon":-51.762,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900526"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-27T00:00:00","lat":60.308,"lon":-48.618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900495"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-22T00:00:00","lat":55.871,"lon":-53.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900528"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-06-30T00:00:00","lat":48.7032,"lon":-46.8417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900234"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-06T00:00:00","lat":44.333,"lon":-3.781,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900366"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.044,"lon":-10.486,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900367"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.0428,"lon":-10.4895,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900369"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.0422,"lon":-10.4912,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900371"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900368"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.037,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900370"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900372"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-09T00:00:00","lat":45.2251,"lon":-4.382,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900364"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-09T00:00:00","lat":45.2248,"lon":-4.3822,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900365"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":41.686,"lon":-14.275,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900402"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-05-28T00:00:00","lat":40.3348,"lon":-11.7785,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900399"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-06-19T00:00:00","lat":1.501,"lon":-9.998,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900544"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-06-20T00:00:00","lat":2.5,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900553"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-15T00:00:00","lat":59.4219,"lon":-37.0385,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900239"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-16T00:00:00","lat":59.1585,"lon":-34.4858,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900240"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-18T00:00:00","lat":57.741,"lon":-28.8542,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-20T00:00:00","lat":55.1386,"lon":-26.3933,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900242"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":52.9997,"lon":-20.0011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900273"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":61.6623,"lon":-15.497,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900450"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-24T00:00:00","lat":61.999,"lon":-34.993,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900451"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":62.318,"lon":-16.1785,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900452"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-04T00:00:00","lat":48.422,"lon":-20.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900403"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":45.795,"lon":-19.089,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900400"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-13T00:00:00","lat":59.112,"lon":-33.855,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900395"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":55.15,"lon":-26.41,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900401"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":57.005,"lon":-27.881,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900405"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-11T00:00:00","lat":57.97,"lon":-29.276,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900449"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-08T00:00:00","lat":53.828,"lon":-25.388,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900396"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-06T00:00:00","lat":51.028,"lon":-23.1947,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900397"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":52.519,"lon":-24.3645,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900398"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":51.7728,"lon":-23.777,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900406"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-01T00:00:00","lat":43.473,"lon":-16.64,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900404"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.097,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900624"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.098,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.097,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900617"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T08:13:00","lat":56.1514,"lon":-53.1302,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901751"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T11:12:00","lat":41.0264,"lon":-60.4287,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901756"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-09-16T00:00:00","lat":2.0,"lon":-2.007,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900557"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-14T00:00:00","lat":59.7217,"lon":-40.2583,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900274"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-27T00:00:00","lat":44.377,"lon":-17.8172,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900272"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-14T00:00:00","lat":56.52,"lon":-52.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901075"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-15T00:00:00","lat":58.25,"lon":-50.959,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901076"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-17T00:00:00","lat":60.259,"lon":-48.701,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901077"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":42.243,"lon":-61.198,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901080"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-31T00:00:00","lat":41.932,"lon":-64.475,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900507"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-27T00:00:00","lat":55.611,"lon":-53.632,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900682"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":57.375,"lon":-51.795,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900876"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-22T00:00:00","lat":43.491,"lon":-57.455,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900627"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-24T00:00:00","lat":42.543,"lon":-61.399,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900506"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-12T00:00:00","lat":42.5431,"lon":-61.4062,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901082"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-16T14:12:00","lat":50.752,"lon":-45.5205,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901090"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-27T09:04:00","lat":57.3791,"lon":-51.7962,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901092"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-18T13:00:00","lat":55.4118,"lon":-53.7815,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901091"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-06-01T16:01:00","lat":41.7873,"lon":-60.8948,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901102"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-06-02T18:39:00","lat":42.5572,"lon":-61.3995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901101"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T22:24:00","lat":56.9761,"lon":-52.2581,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901744"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-24T13:12:00","lat":39.7422,"lon":-59.536,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901745"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T01:05:00","lat":55.8331,"lon":-53.4603,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901759"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T16:55:00","lat":57.8067,"lon":-51.3235,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901753"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-18T15:22:00","lat":57.9959,"lon":-51.0893,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901747"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-19T02:37:00","lat":57.1672,"lon":-52.002,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901750"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-23T11:49:00","lat":60.1772,"lon":-48.7495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901094"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-23T19:58:00","lat":60.3243,"lon":-48.7145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901095"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-17T11:36:00","lat":57.8052,"lon":-51.3741,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901156"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T23:49:00","lat":41.796,"lon":-60.941,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901749"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-07T00:00:00","lat":42.206,"lon":-60.317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901084"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-19T02:01:00","lat":60.3322,"lon":-48.6085,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901158"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-18T03:50:00","lat":58.644,"lon":-50.4113,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901150"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-15T00:13:00","lat":58.2524,"lon":-50.7994,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901748"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-17T20:05:00","lat":58.2458,"lon":-50.8772,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901142"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":53.696,"lon":-48.703,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900683"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-20T00:00:00","lat":50.5,"lon":-45.486,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900677"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-21T00:00:00","lat":50.499,"lon":-42.031,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900678"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-21T00:00:00","lat":50.498,"lon":-43.951,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900679"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-05T00:00:00","lat":24.498,"lon":-22.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900072"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-09T00:00:00","lat":24.51,"lon":-29.996,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900067"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-03T00:00:00","lat":25.993,"lon":-18.133,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900063"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-08T00:00:00","lat":24.509,"lon":-27.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900066"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-10T00:00:00","lat":24.505,"lon":-33.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900073"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-05T00:00:00","lat":24.009,"lon":-20.768,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900064"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-17T00:00:00","lat":45.7151,"lon":-6.9071,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-17T00:00:00","lat":45.7153,"lon":-6.9097,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900138"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-11-13T00:00:00","lat":46.9987,"lon":-43.223,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900248"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-12-06T03:01:00","lat":42.589,"lon":-49.682,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901103"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-13T00:00:00","lat":36.4998,"lon":-47.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900233"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-01-10T00:00:00","lat":24.4968,"lon":-32.365,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901186"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-12-25T00:00:00","lat":24.5022,"lon":-66.9537,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901185"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-12-29T00:00:00","lat":24.4993,"lon":-58.1503,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-09-26T00:00:00","lat":74.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900609"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-10-13T00:00:00","lat":43.128,"lon":-13.49,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900162"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-20T00:00:00","lat":40.668,"lon":-18.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900129"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-12T00:00:00","lat":24.523,"lon":-39.166,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900208"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-14T00:00:00","lat":24.506,"lon":-42.013,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900209"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-16T00:00:00","lat":30.308,"lon":-41.975,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900210"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-17T00:00:00","lat":29.999,"lon":-38.981,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900211"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-19T00:00:00","lat":30.498,"lon":-34.513,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900212"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-15T00:00:00","lat":27.509,"lon":-41.994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900213"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-20T00:00:00","lat":29.998,"lon":-30.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900074"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-21T00:00:00","lat":30.0,"lon":-24.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900075"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-21T00:00:00","lat":30.005,"lon":-27.039,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900068"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":30.0,"lon":-21.005,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900070"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":30.0,"lon":-17.997,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900071"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-11T00:00:00","lat":24.503,"lon":-36.011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900207"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-13T00:00:00","lat":43.47,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901083"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":6.002,"lon":-20.717,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-27T00:00:00","lat":3.01,"lon":-21.859,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900520"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":0.013,"lon":-23.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900521"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":0.013,"lon":-23.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900522"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-01T00:00:00","lat":4.1122,"lon":-16.997,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900523"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-01T00:00:00","lat":4.4236,"lon":-14.991,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900524"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-02T00:00:00","lat":4.3352,"lon":-12.999,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900517"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-31T00:00:00","lat":2.0972,"lon":-20.005,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900518"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-11T00:00:00","lat":4.99,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900650"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-03T00:00:00","lat":5.04,"lon":-22.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900652"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":0.057,"lon":-35.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900653"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-06T00:00:00","lat":13.001,"lon":-23.008,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900655"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-02T00:00:00","lat":2.99,"lon":-22.993,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-12T00:00:00","lat":2.0,"lon":-32.501,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900658"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-24T00:00:00","lat":0.004,"lon":-14.009,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900662"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":0.026,"lon":-9.976,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900663"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-07T00:00:00","lat":48.5,"lon":-32.538,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900267"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-05T00:00:00","lat":45.0,"lon":-24.724,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900265"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-08T00:00:00","lat":50.5,"lon":-34.331,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900268"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-08T00:00:00","lat":51.427,"lon":-35.433,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900269"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-06T00:00:00","lat":47.0,"lon":-29.534,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900266"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-05T00:00:00","lat":60.4996,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901177"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-07T00:00:00","lat":59.3339,"lon":-18.1623,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901176"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-26T00:00:00","lat":58.0036,"lon":-23.994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-24T00:00:00","lat":58.0003,"lon":-20.9999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901178"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-11T00:00:00","lat":46.963,"lon":-9.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900323"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-11T00:00:00","lat":46.118,"lon":-10.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900324"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-10T00:00:00","lat":44.5,"lon":-14.72,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900325"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-09T00:00:00","lat":42.5,"lon":-19.633,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900326"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-09T00:00:00","lat":41.467,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900327"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-25T00:17:00","lat":59.974,"lon":-48.9262,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901093"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-06T00:00:00","lat":24.512,"lon":-24.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900065"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-06T00:00:00","lat":50.809,"lon":-45.715,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900875"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-17T00:00:00","lat":50.0022,"lon":-49.0033,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-17T00:00:00","lat":50.1556,"lon":-48.4761,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-08T00:00:00","lat":50.3411,"lon":-47.9556,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900603"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2013-10-14T13:36:00","lat":30.37,"lon":-23.16,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901152"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2013-10-14T13:15:00","lat":30.37,"lon":-23.26,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901151"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-11-01T00:00:00","lat":43.4616,"lon":-57.4859,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900135"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-08T00:00:00","lat":51.8167,"lon":-25.8333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900444"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-06T00:00:00","lat":51.5667,"lon":-39.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900445"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-07T00:00:00","lat":51.7333,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900658"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-30T01:06:00","lat":0.0667,"lon":-29.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901500"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-12T00:00:00","lat":2.17,"lon":-12.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900139"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-12T00:00:00","lat":3.5,"lon":-13.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900138"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":4.84,"lon":-15.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900140"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":6.33,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900142"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-14T00:00:00","lat":8.0,"lon":-16.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900141"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T08:18:00","lat":58.364,"lon":-52.2213,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901153"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T04:10:00","lat":58.6027,"lon":-52.2901,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901154"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-15T00:00:00","lat":43.001,"lon":-52.0005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900236"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":51.83,"lon":-48.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900345"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-06-28T00:00:00","lat":31.71,"lon":-64.08,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900356"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T12:27:00","lat":58.1459,"lon":-52.2114,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901159"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-11-14T00:00:00","lat":56.6,"lon":-36.9,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900197"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-11T00:00:00","lat":45.0,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900626"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-26T09:38:00","lat":38.554,"lon":-69.0359,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901291"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-06-01T00:00:00","lat":67.0,"lon":-0.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900194"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-05-30T00:00:00","lat":65.4,"lon":-3.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900193"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-20T00:00:00","lat":49.6242,"lon":-13.223,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900275"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-18T19:40:00","lat":43.8107,"lon":-57.8055,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901139"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-20T02:47:00","lat":43.4761,"lon":-57.5225,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901155"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-03T05:59:00","lat":44.124,"lon":-55.892,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901140"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-03T08:48:00","lat":44.356,"lon":-56.014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901149"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-04-27T08:08:00","lat":43.4413,"lon":-57.5144,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901110"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-08-03T00:00:00","lat":51.972,"lon":-50.279,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900503"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":42.546,"lon":-61.418,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900423"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-17T00:00:00","lat":44.659,"lon":-54.963,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900414"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-07T00:00:00","lat":58.64,"lon":-50.417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-07-28T00:00:00","lat":46.996,"lon":-43.227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900877"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-26T00:00:00","lat":43.4638,"lon":-57.5222,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900227"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-27T00:00:00","lat":57.501,"lon":-47.889,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900531"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-25T00:00:00","lat":59.762,"lon":-40.109,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900494"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-05T00:00:00","lat":56.953,"lon":-52.185,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900101"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-18T09:39:00","lat":59.0645,"lon":-49.908,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901141"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-10-18T08:15:00","lat":43.469,"lon":-57.532,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901078"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-22T00:00:00","lat":47.002,"lon":-43.217,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-12-09T00:00:00","lat":50.222,"lon":-48.333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900676"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-21T00:00:00","lat":41.9402,"lon":-60.928,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900250"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-19T00:00:00","lat":49.687,"lon":-46.267,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900635"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-06T00:00:00","lat":44.406,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900409"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-15T00:00:00","lat":41.3997,"lon":-51.0005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900235"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.893,"lon":-45.207,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900418"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.166,"lon":-46.818,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900535"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-25T00:00:00","lat":58.582,"lon":-50.407,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900534"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-28T00:00:00","lat":54.995,"lon":-46.701,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-09T00:00:00","lat":25.0103,"lon":-36.7083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900840"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-06T23:43:00","lat":52.88,"lon":-26.65,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901457"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":52.22,"lon":-21.498,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900171"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901360"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-10-21T00:00:00","lat":42.5318,"lon":-61.371,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900132"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-22T00:00:00","lat":20.0024,"lon":-23.5219,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900276"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-05-03T00:00:00","lat":60.5,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900199"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-12-04T00:00:00","lat":61.4,"lon":-39.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900198"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-14T00:00:00","lat":56.6001,"lon":-35.6326,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901750"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-08T00:00:00","lat":52.1048,"lon":-18.406,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901757"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-22T00:00:00","lat":60.7815,"lon":-21.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900155"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-27T00:00:00","lat":58.221,"lon":-50.896,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900407"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-12T00:00:00","lat":45.01,"lon":-11.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900127"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-02T00:00:00","lat":34.1912,"lon":-18.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900041"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-04T00:00:00","lat":26.3083,"lon":-73.6666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2014-02-09T13:48:00","lat":52.8233,"lon":-34.9833,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-04T14:28:05","lat":2.0022,"lon":-15.0059,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901528"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-24T06:58:45","lat":28.3944,"lon":-65.1403,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-28T04:34:46","lat":22.2749,"lon":-45.1902,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-07T12:14:46","lat":4.9548,"lon":-22.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-06T15:11:46","lat":8.0992,"lon":-23.0032,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-05T07:14:46","lat":12.6255,"lon":-22.9033,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-02T09:10:46","lat":20.3417,"lon":-26.7859,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901537"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-11T23:55:00","lat":33.0,"lon":-62.2213,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901584"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-07T06:05:00","lat":13.0025,"lon":-36.4553,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901587"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-04T22:20:00","lat":2.8334,"lon":-24.3383,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901588"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-04-11T21:59:00","lat":39.4707,"lon":-70.8286,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901298"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-07-12T19:56:00","lat":31.6191,"lon":-64.2393,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-07-15T08:44:00","lat":34.6432,"lon":-64.1662,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901299"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-08-21T16:20:00","lat":34.7277,"lon":-66.5771,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901450"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-09-28T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-07-22T00:00:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901402"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-03-06T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901407"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-03-06T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901405"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-12-28T06:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901449"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-12-28T06:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-06-03T09:07:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901446"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-03-22T12:00:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901404"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-02-04T00:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2007-12-08T04:05:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901406"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-12T13:00:00","lat":34.85,"lon":-65.7666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901453"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-11T17:40:00","lat":31.0167,"lon":-61.4666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901451"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-10T23:00:00","lat":27.0,"lon":-57.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901452"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-09T10:06:00","lat":19.2334,"lon":-48.6166,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901454"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-10T20:11:00","lat":14.6892,"lon":-55.0556,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901670"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-10T03:02:00","lat":12.9255,"lon":-52.0287,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901673"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-07T18:50:00","lat":6.9935,"lon":-42.0035,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901674"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-04T22:20:00","lat":4.91,"lon":-29.9883,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901671"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-09T10:25:00","lat":11.168,"lon":-49.0358,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901672"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-24T23:25:00","lat":6.975,"lon":-27.9466,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-23T18:46:00","lat":1.9617,"lon":-22.0666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-26T02:55:00","lat":12.0084,"lon":-33.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-27T06:06:00","lat":16.9767,"lon":-38.908,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-28T23:27:00","lat":24.0067,"lon":-47.7433,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T11:51:00","lat":29.9884,"lon":-55.8533,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-22T20:05:00","lat":32.5032,"lon":-19.6833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901688"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-19T09:10:00","lat":34.6034,"lon":-20.7926,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901682"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-27T20:02:00","lat":0.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-27T01:41:00","lat":1.0,"lon":-25.0073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-26T10:01:00","lat":1.9836,"lon":-25.0111,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-24T12:59:00","lat":4.9552,"lon":-25.9782,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901689"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-23T08:04:00","lat":6.9949,"lon":-26.9937,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901695"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-22T02:15:00","lat":8.9949,"lon":-27.9855,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901683"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-20T21:10:00","lat":10.9961,"lon":-28.9908,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901691"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-19T12:23:00","lat":13.647,"lon":-28.9963,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901686"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-19T00:05:00","lat":14.4951,"lon":-28.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901687"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-18T20:47:00","lat":14.9951,"lon":-28.9984,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901694"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T20:45:00","lat":16.4567,"lon":-57.3582,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901484"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T11:00:00","lat":16.087,"lon":-55.2137,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T04:14:00","lat":15.8354,"lon":-53.7552,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-26T19:46:00","lat":15.5191,"lon":-51.9446,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-31T15:35:00","lat":20.9317,"lon":-58.7683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901661"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-23T19:55:00","lat":30.8401,"lon":-60.8566,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901662"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-11-14T17:28:00","lat":17.0663,"lon":-48.093,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-11-15T03:05:00","lat":17.5954,"lon":-46.2847,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901042"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-02T15:37:00","lat":27.9867,"lon":-37.9866,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901585"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-09T04:30:00","lat":30.0101,"lon":-56.9783,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901587"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-08T20:41:00","lat":28.9067,"lon":-55.9133,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901590"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-07T17:05:00","lat":24.8417,"lon":-52.2266,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-21T20:28:00","lat":29.9951,"lon":-31.6466,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901588"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-21T00:51:00","lat":32.6234,"lon":-29.7666,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901586"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-10T14:28:00","lat":35.0417,"lon":-61.7366,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-12T22:59:00","lat":55.8641,"lon":-53.3547,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901168"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-13T16:00:00","lat":56.5674,"lon":-52.6484,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901167"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-13T23:20:00","lat":56.9672,"lon":-52.221,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901172"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-14T05:00:00","lat":57.3794,"lon":-51.7926,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901171"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-14T22:36:00","lat":57.7984,"lon":-51.3331,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901160"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-15T12:43:00","lat":58.6429,"lon":-50.3907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901173"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-16T01:32:00","lat":59.4929,"lon":-49.4807,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901162"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-16T13:31:00","lat":59.9855,"lon":-48.9099,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901161"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-12-06T03:31:00","lat":42.574,"lon":-49.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-24T10:49:00","lat":36.9001,"lon":-68.986,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901206"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-31T00:00:00","lat":60.185,"lon":-48.686,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900879"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-15T05:35:00","lat":58.2231,"lon":-50.8871,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901174"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-05T00:00:00","lat":60.7,"lon":-35.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900084"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":61.1,"lon":-36.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900085"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-08T00:00:00","lat":61.3,"lon":-38.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900086"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-21T00:00:00","lat":69.0,"lon":-11.26,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900177"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900169"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900170"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900171"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-21T00:00:00","lat":69.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900176"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900178"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900172"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":75.0,"lon":-1.291,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900341"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-12T00:00:00","lat":46.522,"lon":-33.095,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900258"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":46.0,"lon":-17.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900270"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":46.0,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900271"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-06T00:00:00","lat":48.149,"lon":-18.916,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900252"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-12T00:00:00","lat":59.0,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900383"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-12T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900384"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900385"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"1997-07-23T10:41:00","lat":0.0067,"lon":-32.7166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902328"},{"program":{"country":{"nameShort":"MEXICO"},"nameShort":"Argo_MEX-CO-US"},"ptfDepl":{"deplDate":"2005-07-27T00:00:00","lat":1.9972,"lon":-81.0026,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900226"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-08T00:00:00","lat":47.98,"lon":-20.048,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900253"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-09T00:00:00","lat":47.624,"lon":-22.869,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900254"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-09T00:00:00","lat":47.376,"lon":-24.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900255"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-10T00:00:00","lat":46.812,"lon":-27.641,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900256"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-06T00:00:00","lat":52.286,"lon":-35.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900259"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-07T00:00:00","lat":50.462,"lon":-33.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900260"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-07T00:00:00","lat":49.447,"lon":-33.847,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":52.529,"lon":-47.316,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900430"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-08T00:00:00","lat":22.533,"lon":-67.775,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2010-05-02T00:00:00","lat":60.085,"lon":-34.958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902326"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":5.992,"lon":-20.635,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":75.002,"lon":-2.578,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900339"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":57.65,"lon":-21.063,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900338"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":69.25,"lon":-11.175,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900343"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":68.995,"lon":-11.498,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900344"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":68.998,"lon":-10.515,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900345"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-01-26T12:04:00","lat":18.1,"lon":-34.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900992"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-19T00:00:00","lat":30.0,"lon":-24.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900410"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-26T00:00:00","lat":28.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900411"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-26T00:00:00","lat":26.0,"lon":-24.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900412"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-04T04:39:00","lat":33.8667,"lon":-9.7667,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900690"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-12-10T00:00:00","lat":23.5975,"lon":-57.1972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901714"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-05T18:24:00","lat":2.0342,"lon":-22.5686,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-08T20:22:00","lat":8.0178,"lon":-28.8311,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-08T02:00:00","lat":8.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-09T16:08:00","lat":16.0011,"lon":-36.6561,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901011"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-29T00:00:00","lat":31.67,"lon":-64.1703,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900794"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":29.2333,"lon":-15.5133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900506"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":0.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900522"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2006-04-13T00:00:00","lat":64.65,"lon":-0.02,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900499"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":74.998,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900342"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":57.69,"lon":-21.604,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900337"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":57.58,"lon":-20.57,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900346"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-07T00:00:00","lat":68.9,"lon":-3.2367,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900340"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-07T00:00:00","lat":68.82,"lon":-3.64,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-10T00:00:00","lat":6.99,"lon":-35.01,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900051"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-21T00:00:00","lat":6.02,"lon":-43.99,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900052"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-24T00:00:00","lat":11.21,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900060"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-03-22T15:56:00","lat":2.9872,"lon":-12.4885,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901610"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-03-21T15:41:00","lat":5.9958,"lon":-15.1879,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901609"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2014-10-09T06:00:00","lat":14.22,"lon":-27.91,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901174"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2014-10-10T06:12:00","lat":10.76,"lon":-27.2,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901175"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-11-13T13:49:00","lat":54.1,"lon":-40.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-11-12T00:00:00","lat":51.05,"lon":-43.62,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901181"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2013-09-17T00:00:00","lat":43.0,"lon":-14.95,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901238"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-07T00:00:00","lat":42.398,"lon":-46.543,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900263"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":43.044,"lon":-48.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900265"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-05T00:00:00","lat":42.835,"lon":-42.026,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900260"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":42.796,"lon":-47.546,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900264"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":56.55,"lon":-52.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900671"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-10-01T00:00:00","lat":36.0,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901244"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-24T00:00:00","lat":46.5,"lon":-18.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900128"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-12-04T01:09:00","lat":29.0,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900697"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-05-30T00:00:00","lat":58.641,"lon":-50.423,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900529"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-11-30T00:00:00","lat":16.6322,"lon":-58.0053,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900117"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-12-01T00:00:00","lat":50.18,"lon":-48.443,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900410"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-12-01T00:00:00","lat":50.328,"lon":-47.939,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900406"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":69.266,"lon":-0.025,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900220"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":63.952,"lon":-2.166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900221"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":64.346,"lon":-4.184,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900222"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":64.343,"lon":-6.003,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900223"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-10T00:00:00","lat":37.368,"lon":-68.136,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900412"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-25T15:37:00","lat":24.607,"lon":-22.093,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901165"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":2.004,"lon":-28.1628,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900278"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":0.0037,"lon":-28.1585,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900279"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":0.9983,"lon":-28.1667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-07T00:00:00","lat":0.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900050"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-23T00:00:00","lat":9.8375,"lon":-52.5001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900178"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-21T00:00:00","lat":6.0,"lon":-43.9996,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900179"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-15T00:00:00","lat":4.9945,"lon":-36.3432,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900180"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-22T00:00:00","lat":7.3573,"lon":-46.9982,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900181"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-20T00:00:00","lat":0.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300859"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-23T00:00:00","lat":0.0,"lon":-34.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100856"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2001-07-22T00:00:00","lat":0.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100810"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-07T00:00:00","lat":0.0,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300857"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-19T00:00:00","lat":31.8986,"lon":-64.4267,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900845"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-18T07:00:00","lat":46.2,"lon":-37.87,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-16T07:00:00","lat":51.14,"lon":-40.06,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-14T07:00:00","lat":54.11,"lon":-40.18,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-01T04:52:00","lat":20.95,"lon":-41.7333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903276"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-02T01:59:00","lat":25.0,"lon":-46.4667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903277"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-01T15:44:00","lat":23.05,"lon":-44.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903278"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2008-10-04T09:55:00","lat":70.19,"lon":-57.19,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900612"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-12-18T00:00:00","lat":34.7323,"lon":-13.1612,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900231"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_eq_IRELAND"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":54.0,"lon":-14.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900232"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_eq_IRELAND"},"ptfDepl":{"deplDate":"2003-10-12T00:00:00","lat":52.03,"lon":-15.434,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900233"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-21T00:00:00","lat":39.5008,"lon":-20.5006,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-22T00:00:00","lat":43.4952,"lon":-20.5025,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900037"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-25T00:00:00","lat":43.0001,"lon":-17.9978,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-26T00:00:00","lat":41.9992,"lon":-16.4948,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900041"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-23T00:00:00","lat":43.4917,"lon":-17.9883,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900032"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-01T00:00:00","lat":42.0,"lon":-21.972,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900000"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-02T00:00:00","lat":45.002,"lon":-19.008,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900001"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-02T00:00:00","lat":44.33,"lon":-22.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900002"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-02T00:00:00","lat":44.435,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-03T00:00:00","lat":26.5,"lon":-74.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900807"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-09T13:18:00","lat":35.2729,"lon":-17.0625,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-08T21:19:00","lat":34.8747,"lon":-22.0131,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901295"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-06T11:24:00","lat":33.4072,"lon":-39.9968,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901294"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-05T19:17:00","lat":32.9884,"lon":-44.9743,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901297"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":37.5,"lon":-70.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":34.13,"lon":-66.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-09T00:00:00","lat":27.6633,"lon":-64.0617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900229"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":13.3333,"lon":-33.323,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900033"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-22T00:00:00","lat":16.6666,"lon":-36.8417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900154"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":10.0,"lon":-29.98,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900034"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-23T00:00:00","lat":20.0,"lon":-40.5217,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-09-01T13:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901723"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-29T06:02:00","lat":33.8029,"lon":-65.983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-29T19:35:00","lat":34.7846,"lon":-66.5885,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-31T15:53:00","lat":37.3634,"lon":-68.1566,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T16:55:00","lat":36.192,"lon":-67.44,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T16:57:00","lat":36.1932,"lon":-67.441,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-30T21:00:00","lat":23.96,"lon":-58.185,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-22T06:00:00","lat":14.2201,"lon":-52.9833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-22T16:04:00","lat":14.75,"lon":-51.0833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901483"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-21T22:00:00","lat":13.95,"lon":-54.2799,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-21T11:00:00","lat":13.4201,"lon":-55.9166,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-08-21T02:46:00","lat":35.715,"lon":-68.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901448"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2010-06-23T20:37:00","lat":75.85,"lon":-2.216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900801"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2010-06-24T10:27:00","lat":75.13,"lon":-2.216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900802"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":41.844,"lon":-51.763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900419"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-29T00:00:00","lat":38.942,"lon":-52.25,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900417"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":41.059,"lon":-51.777,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900411"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-10-01T00:00:00","lat":36.26,"lon":-52.388,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900416"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-26T00:00:00","lat":42.43,"lon":-51.309,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-16T01:15:00","lat":50.306,"lon":-46.928,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901128"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-20T14:56:00","lat":42.475,"lon":-61.4335,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901798"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-20T20:51:00","lat":42.4749,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901778"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-16T13:21:00","lat":41.7881,"lon":-60.9045,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901765"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-17T03:27:00","lat":43.7814,"lon":-57.8401,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901763"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-24T02:30:00","lat":43.7888,"lon":-57.8363,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901800"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-17T20:13:00","lat":43.4725,"lon":-57.5316,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901764"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-23T20:41:00","lat":43.4862,"lon":-57.4965,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901799"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T06:58:00","lat":61.1998,"lon":-52.229,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901170"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T06:25:00","lat":59.1088,"lon":-53.2318,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901165"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-04-11T22:22:00","lat":42.492,"lon":-61.438,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901109"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-25T05:38:00","lat":56.113,"lon":-53.094,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901124"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.762,"lon":-40.746,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900502"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-07-14T08:09:00","lat":47.005,"lon":-43.236,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901132"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-21T02:30:00","lat":42.588,"lon":-49.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901143"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T15:23:00","lat":56.94,"lon":-52.2,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901780"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T23:03:00","lat":56.32,"lon":-52.9,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901779"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-09T12:26:00","lat":56.5529,"lon":-52.6681,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901782"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-09T21:33:00","lat":57.3874,"lon":-51.7907,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901781"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-08-14T00:41:00","lat":56.6044,"lon":-52.6518,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901762"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-22T00:00:00","lat":41.69,"lon":-48.95,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901787"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-18T00:00:00","lat":44.07,"lon":-54.78,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901807"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-24T15:15:00","lat":56.957,"lon":-52.177,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901126"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T19:15:00","lat":60.326,"lon":-52.691,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901166"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T13:16:00","lat":60.7906,"lon":-52.338,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901169"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-24T19:28:00","lat":56.553,"lon":-52.678,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-19T14:45:00","lat":53.998,"lon":-50.236,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-19T21:01:00","lat":54.98,"lon":-50.066,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901131"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-23T16:35:00","lat":57.369,"lon":-51.747,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901127"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-30T16:48:00","lat":41.27,"lon":-61.247,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901129"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T13:45:00","lat":58.4377,"lon":-53.5971,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901164"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T19:33:00","lat":57.7604,"lon":-53.9218,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901163"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-22T00:00:00","lat":42.1,"lon":-49.22,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901808"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-21T00:00:00","lat":42.39,"lon":-49.51,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901788"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T05:16:00","lat":57.58,"lon":-51.58,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901783"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-08T00:00:00","lat":34.723,"lon":-66.57,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900420"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-25T11:22:00","lat":55.84,"lon":-53.391,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901123"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-21T22:36:00","lat":59.996,"lon":-48.882,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901133"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T07:50:00","lat":41.7671,"lon":-60.8956,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901201"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T11:38:00","lat":41.3417,"lon":-60.7364,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901199"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T23:49:00","lat":41.0075,"lon":-60.4445,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901196"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-06T22:39:00","lat":55.8477,"lon":-53.3927,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901194"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-07T20:25:00","lat":56.5792,"lon":-52.634,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901195"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T04:32:00","lat":56.9565,"lon":-52.239,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901198"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T10:22:00","lat":57.3756,"lon":-51.7917,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901200"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T16:58:00","lat":57.8002,"lon":-51.3522,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901193"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T02:29:00","lat":58.2157,"lon":-50.8795,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901197"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T09:09:00","lat":58.64,"lon":-50.42,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901192"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T21:29:00","lat":59.4831,"lon":-49.3736,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901202"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-23T00:00:00","lat":32.1667,"lon":-32.1667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900715"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-11T20:30:00","lat":42.91,"lon":-13.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900762"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-10T10:33:00","lat":43.0,"lon":-10.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900763"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-06T06:38:00","lat":46.01,"lon":-8.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900785"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-05T23:00:00","lat":46.0,"lon":-7.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900784"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-05T08:05:00","lat":45.02,"lon":-6.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900760"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-06T18:24:00","lat":44.99,"lon":-9.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900761"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":41.796,"lon":-60.909,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901079"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-10-27T17:23:00","lat":29.16,"lon":-15.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900772"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-22T03:59:00","lat":56.9362,"lon":-52.2214,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901152"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-19T15:55:00","lat":28.67,"lon":-88.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901265"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-25T15:06:00","lat":26.5,"lon":-87.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901266"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-25T20:31:00","lat":26.0,"lon":-87.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T00:22:00","lat":26.5,"lon":-86.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T06:00:00","lat":26.66,"lon":-87.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901267"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T11:38:00","lat":27.59,"lon":-87.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-05T06:13:00","lat":25.945,"lon":-87.784,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901271"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-03T17:16:00","lat":27.486,"lon":-89.474,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901272"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-03T11:24:00","lat":27.994,"lon":-89.714,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-08-16T19:28:00","lat":27.96,"lon":-88.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-01T00:00:00","lat":15.3628,"lon":-40.2461,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900758"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T21:30:00","lat":57.3786,"lon":-51.8323,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901151"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":26.2608,"lon":-54.3806,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900731"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-26T01:28:00","lat":40.1619,"lon":-59.5695,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901743"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-04-11T04:10:00","lat":0.0035,"lon":-22.9727,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":34.75,"lon":-72.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":32.5,"lon":-71.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":2.06,"lon":-85.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900164"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":4.27,"lon":-82.89,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900165"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":6.45,"lon":-80.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900166"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":36.7116,"lon":-26.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":35.6383,"lon":-30.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-12T00:00:00","lat":30.1983,"lon":-50.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900159"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":31.66,"lon":-42.5666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900156"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":34.5533,"lon":-33.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900039"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-10T00:00:00","lat":33.4766,"lon":-36.05,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900040"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":31.175,"lon":-44.975,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900157"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-10T00:00:00","lat":32.3683,"lon":-39.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900155"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-08T00:00:00","lat":37.66,"lon":-23.925,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900036"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-12T00:00:00","lat":29.6666,"lon":-53.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900160"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":30.67,"lon":-48.1833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900158"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-17T00:00:00","lat":14.9983,"lon":-39.3367,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-18T00:00:00","lat":17.9817,"lon":-42.6417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-19T00:00:00","lat":24.0,"lon":-49.7183,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900360"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-20T00:00:00","lat":27.0,"lon":-53.52,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900361"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-21T00:00:00","lat":29.0,"lon":-56.12,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-21T00:00:00","lat":31.0,"lon":-59.5567,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-22T00:00:00","lat":34.0,"lon":-64.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-23T00:00:00","lat":36.0,"lon":-69.09,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900365"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-26T00:00:00","lat":37.11,"lon":-72.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2009-04-15T15:12:00","lat":0.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901031"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-03-24T22:06:00","lat":1.536,"lon":-9.882,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901733"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-09T19:37:53","lat":1.262,"lon":-9.8098,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901533"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-15T00:00:00","lat":65.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-01-23T00:00:00","lat":36.15,"lon":-23.87,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-01T00:00:00","lat":32.39,"lon":-70.69,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100875"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-05T00:00:00","lat":36.0,"lon":-43.99,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100879"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":58.5,"lon":-35.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900065"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":58.4,"lon":-35.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900064"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":59.0,"lon":-34.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900068"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":59.5,"lon":-33.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900067"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":60.0,"lon":-32.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900066"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-06T00:00:00","lat":55.0,"lon":-13.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900079"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-10T00:00:00","lat":61.29,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900081"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":57.2,"lon":-10.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900080"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-23T00:00:00","lat":0.0,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100855"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-23T00:00:00","lat":11.406,"lon":-56.166,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900177"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-24T00:00:00","lat":13.8487,"lon":-55.4277,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900022"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-07T00:00:00","lat":2.035,"lon":-35.0116,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2000-11-29T00:00:00","lat":27.2667,"lon":-88.2667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900042"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":67.5,"lon":-6.9616,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900215"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":66.9833,"lon":-4.445,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900216"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-06-01T00:00:00","lat":67.0,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900217"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-24T00:00:00","lat":35.99,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200880"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-23T00:00:00","lat":36.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200879"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-24T00:00:00","lat":36.0,"lon":-38.02,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100887"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-18T00:00:00","lat":35.52,"lon":-58.07,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100886"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-16T00:00:00","lat":33.62,"lon":-58.02,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100885"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-19T00:00:00","lat":36.28,"lon":-61.93,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200878"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-12-30T00:00:00","lat":56.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4400870"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-11-16T00:00:00","lat":36.0,"lon":-71.79,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100864"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-02T00:00:00","lat":26.32,"lon":-68.6,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100863"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-25T00:00:00","lat":25.55,"lon":-65.98,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41547__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-07-26T00:00:00","lat":33.53,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41543__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-28T00:00:00","lat":30.89,"lon":-66.01,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41542__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-27T00:00:00","lat":29.56,"lon":-65.98,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41541__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-07-28T00:00:00","lat":29.56,"lon":-52.37,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41539__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-20T00:00:00","lat":23.0,"lon":-68.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900186"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-18T00:00:00","lat":38.0,"lon":-73.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900185"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-18T00:00:00","lat":25.0,"lon":-49.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900184"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-20T00:00:00","lat":25.5,"lon":-69.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-18T00:00:00","lat":0.0,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300858"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-24T00:00:00","lat":1.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100858"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2001-02-25T00:00:00","lat":9.0,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900040"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2001-04-10T00:00:00","lat":4.0,"lon":-37.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":13.7981,"lon":-55.9331,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900368"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-27T00:00:00","lat":27.4167,"lon":-65.36,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900367"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-26T00:00:00","lat":29.1617,"lon":-53.975,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900366"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-03T00:00:00","lat":9.8667,"lon":-42.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900242"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-04T00:00:00","lat":12.1667,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900369"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-05T00:00:00","lat":14.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900370"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-13T00:00:00","lat":3.302,"lon":-44.004,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900137"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-12T00:00:00","lat":5.249,"lon":-43.988,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900141"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-13T00:00:00","lat":2.749,"lon":-43.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900142"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-12-09T00:00:00","lat":1.9983,"lon":-24.7817,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-25T00:00:00","lat":30.045,"lon":-48.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900232"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":30.0,"lon":-71.02,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-04T00:00:00","lat":30.5028,"lon":-51.9988,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900424"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-06T00:00:00","lat":35.7131,"lon":-61.0047,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900425"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":7.5167,"lon":-19.5167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900246"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-18T00:00:00","lat":19.01,"lon":-29.8167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900248"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-16T00:00:00","lat":9.9217,"lon":-21.6417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900249"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-23T00:00:00","lat":39.9983,"lon":-51.1067,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-19T00:00:00","lat":24.7033,"lon":-35.1517,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900244"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-21T00:00:00","lat":32.5033,"lon":-42.9483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-20T00:00:00","lat":30.0,"lon":-40.375,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900245"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-20T00:00:00","lat":27.5017,"lon":-37.8683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900427"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-22T00:00:00","lat":35.0033,"lon":-45.575,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-08-03T00:00:00","lat":2.6648,"lon":-24.9997,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-31T00:00:00","lat":7.4985,"lon":-27.2483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-08-01T00:00:00","lat":5.0006,"lon":-25.9973,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-26T00:00:00","lat":14.9992,"lon":-29.0005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":12.5005,"lon":-28.9998,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900255"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":9.9957,"lon":-28.4987,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900256"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":55.3563,"lon":-43.9495,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900431"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-30T00:00:00","lat":57.9428,"lon":-40.7725,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900432"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-13T00:00:00","lat":44.8333,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900230"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":22.8298,"lon":-26.0015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900278"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":24.01,"lon":-20.5901,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":27.2417,"lon":-58.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-06T00:00:00","lat":26.6,"lon":-67.0817,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900442"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":26.91,"lon":-62.5133,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-08T00:00:00","lat":24.9995,"lon":-68.8293,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900436"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":28.9968,"lon":-70.6022,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":34.0005,"lon":-72.1018,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":31.7628,"lon":-71.6497,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-06T00:00:00","lat":37.0015,"lon":-72.7128,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-11-09T00:00:00","lat":31.6753,"lon":-64.145,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":36.2033,"lon":-69.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":34.1375,"lon":-66.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900272"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-06T00:00:00","lat":28.42,"lon":-58.9967,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900230"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":35.0575,"lon":-67.75,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900271"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":38.9255,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":22.5167,"lon":-33.2417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900259"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":38.9917,"lon":-50.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900446"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-03T00:00:00","lat":16.9543,"lon":-28.0882,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900258"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":37.0012,"lon":-47.9048,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-06T00:00:00","lat":30.9023,"lon":-41.4592,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900444"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.01,"lon":-46.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900349"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.01,"lon":-48.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900350"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-24T00:00:00","lat":43.5547,"lon":-40.1065,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900352"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.06,"lon":-48.87,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900353"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-18T00:00:00","lat":42.88,"lon":-48.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900354"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-20T00:00:00","lat":42.959,"lon":-48.478,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900355"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-09-28T03:38:00","lat":42.0,"lon":-17.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900003"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-01T00:00:00","lat":41.999,"lon":-18.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900004"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-09-27T00:00:00","lat":46.0,"lon":-16.005,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900005"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-24T00:00:00","lat":41.0009,"lon":-17.9994,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-15T00:00:00","lat":30.625,"lon":-45.1433,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-15T00:00:00","lat":28.8917,"lon":-50.0617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-16T00:00:00","lat":29.1633,"lon":-54.935,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-17T00:00:00","lat":27.6383,"lon":-64.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-01-05T00:00:00","lat":32.4,"lon":-71.7767,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-01-06T00:00:00","lat":22.3245,"lon":-67.6867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-04T00:00:00","lat":17.5,"lon":-37.9183,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":20.0,"lon":-40.715,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":22.5017,"lon":-43.65,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":25.0,"lon":-46.655,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-14T00:00:00","lat":36.9927,"lon":-72.2655,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900469"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-15T00:00:00","lat":30.025,"lon":-69.805,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900470"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-16T00:00:00","lat":24.05,"lon":-67.8417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-10T00:00:00","lat":5.0001,"lon":-28.9044,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900265"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-12T00:00:00","lat":15.0,"lon":-40.4618,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-13T00:00:00","lat":21.0016,"lon":-47.6773,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-03T00:00:00","lat":35.0,"lon":-66.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-03T00:00:00","lat":33.0,"lon":-65.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900545"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-04-21T00:00:00","lat":42.0922,"lon":-64.6738,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-28T00:00:00","lat":31.39,"lon":-40.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900546"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-28T00:00:00","lat":30.655,"lon":-44.998,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900547"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-29T00:00:00","lat":29.888,"lon":-50.032,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900548"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-29T00:00:00","lat":29.298,"lon":-54.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900549"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":27.705,"lon":-65.003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900552"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-05-01T00:00:00","lat":26.458,"lon":-72.503,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":28.845,"lon":-57.015,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900550"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":28.395,"lon":-60.012,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900551"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.591,"lon":-45.808,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-06T00:00:00","lat":32.0,"lon":-71.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900554"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":24.0,"lon":-68.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900559"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":21.75,"lon":-67.4333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900560"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-11T00:00:00","lat":30.19,"lon":-48.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900561"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":28.675,"lon":-58.05,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":27.1567,"lon":-68.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":31.9712,"lon":-75.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-08-07T00:00:00","lat":0.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-08T00:00:00","lat":2.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900297"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-07T00:00:00","lat":34.0,"lon":-71.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900567"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":17.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-27T00:00:00","lat":50.0,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900573"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-31T00:00:00","lat":54.0113,"lon":-15.4503,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900276"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-22T00:00:00","lat":43.8433,"lon":-11.4756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900277"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2004-08-06T00:00:00","lat":58.0,"lon":-18.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900187"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2004-08-05T00:00:00","lat":60.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900188"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-08-11T00:00:00","lat":24.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900576"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-01T00:00:00","lat":26.0,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900578"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-09-02T00:00:00","lat":55.8123,"lon":-52.9495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900555"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2004-09-10T00:00:00","lat":44.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900557"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2004-09-10T00:00:00","lat":44.0,"lon":-10.833,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900558"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-29T00:00:00","lat":24.0,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-75.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900579"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-76.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-76.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-18T00:00:00","lat":22.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900431"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-25T00:00:00","lat":12.0,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-28T00:00:00","lat":19.0,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900584"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":5.0,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":9.0,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900427"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-17T00:00:00","lat":13.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-17T00:00:00","lat":16.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-18T00:00:00","lat":19.0,"lon":-24.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900430"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-10-23T00:00:00","lat":43.449,"lon":-57.597,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900536"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-10-28T00:00:00","lat":42.52,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900525"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":56.55,"lon":-52.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900607"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-02T00:00:00","lat":55.67,"lon":-52.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900608"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-01T00:00:00","lat":56.57,"lon":-52.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900609"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-19T00:00:00","lat":59.68,"lon":-39.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900610"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-15T00:00:00","lat":56.97,"lon":-50.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900611"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":75.333,"lon":-0.1497,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900303"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2004-10-07T00:00:00","lat":74.9994,"lon":-2.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900304"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":74.999,"lon":-0.0012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900305"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":75.0014,"lon":-0.2944,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900306"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":74.6662,"lon":-0.9985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900307"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2004-07-15T00:00:00","lat":57.5,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900200"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2004-07-13T00:00:00","lat":57.3,"lon":-10.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900201"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-11-22T00:00:00","lat":42.573,"lon":-49.691,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900527"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-11-25T00:00:00","lat":46.994,"lon":-43.732,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900538"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-05T00:00:00","lat":32.4986,"lon":-71.8058,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-03T00:00:00","lat":4.4644,"lon":-42.0003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900353"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":46.0,"lon":-6.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900141"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-12-05T00:00:00","lat":45.0,"lon":-4.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900140"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":44.1815,"lon":-6.4268,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900139"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-12-04T00:00:00","lat":44.0,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900235"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":44.1818,"lon":-6.436,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900234"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-22T00:00:00","lat":27.285,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-21T00:00:00","lat":28.0,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-19T00:00:00","lat":31.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-18T00:00:00","lat":32.0,"lon":-32.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900490"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-17T00:00:00","lat":33.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-19T00:00:00","lat":30.7333,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-03-13T00:00:00","lat":32.8597,"lon":-70.7406,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900599"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-03-14T00:00:00","lat":25.1661,"lon":-60.3833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900600"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-23T00:00:00","lat":54.4983,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900332"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-23T00:00:00","lat":54.665,"lon":-12.5017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900333"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-26T00:00:00","lat":65.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900336"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-04-04T00:00:00","lat":10.0006,"lon":-34.5153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900496"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-05T00:00:00","lat":12.5325,"lon":-37.5047,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900601"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-04-07T00:00:00","lat":22.5006,"lon":-49.4061,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900602"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-01T00:00:00","lat":1.0333,"lon":-30.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-01T00:00:00","lat":7.0333,"lon":-28.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900502"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-02T00:00:00","lat":11.0,"lon":-27.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900503"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-02T00:00:00","lat":13.9667,"lon":-26.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-03T00:00:00","lat":19.0333,"lon":-23.8833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900505"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":34.0861,"lon":-62.8064,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900604"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":36.6531,"lon":-50.1581,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-29T00:00:00","lat":37.3958,"lon":-44.1819,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900606"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-30T00:00:00","lat":37.8819,"lon":-38.0747,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900612"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-27T00:00:00","lat":35.4189,"lon":-56.1014,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":36.0183,"lon":-53.1875,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900614"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":45.984,"lon":-18.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900251"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-05T00:00:00","lat":43.0481,"lon":-22.1914,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900123"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-06-10T00:00:00","lat":51.1225,"lon":-20.2311,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900124"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":47.41,"lon":-7.66,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900189"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-03T00:00:00","lat":46.0,"lon":-6.4976,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900362"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-02T00:00:00","lat":47.0,"lon":-7.335,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":12.0064,"lon":-32.2867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900615"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":14.2606,"lon":-34.4083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900616"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":16.0569,"lon":-36.36,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900617"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-15T00:00:00","lat":18.0019,"lon":-38.5639,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900618"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-16T00:00:00","lat":26.2608,"lon":-48.005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900619"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-18T00:00:00","lat":32.5003,"lon":-57.5811,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900620"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-18T00:00:00","lat":35.0003,"lon":-62.1436,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900621"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-19T00:00:00","lat":37.5008,"lon":-66.9417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900622"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-11T00:00:00","lat":46.613,"lon":-30.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-08-26T00:00:00","lat":7.2147,"lon":-27.3967,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900560"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2005-08-28T00:00:00","lat":56.999,"lon":-22.487,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900190"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2005-08-29T00:00:00","lat":57.0,"lon":-26.333,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900191"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":62.501,"lon":-52.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900501"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":61.501,"lon":-52.751,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900500"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":60.0,"lon":-53.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900680"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":58.502,"lon":-53.749,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-14T00:00:00","lat":1.5972,"lon":-10.1083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-20T00:00:00","lat":34.5037,"lon":-18.0064,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-21T00:00:00","lat":33.747,"lon":-23.2005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900563"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":55.94,"lon":-12.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":29.5694,"lon":-52.0031,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900684"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-25T00:00:00","lat":28.4375,"lon":-55.9674,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-22T00:00:00","lat":31.7522,"lon":-37.1722,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900686"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":30.7582,"lon":-44.001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900687"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2005-10-19T00:00:00","lat":61.26,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-11T00:00:00","lat":24.0003,"lon":-18.8181,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-10T00:00:00","lat":19.9692,"lon":-21.2014,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900571"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-08T00:00:00","lat":3.9683,"lon":-29.0672,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900493"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":23.55,"lon":-18.584,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900262"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-09T00:00:00","lat":27.167,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900263"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":27.167,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900264"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-11-30T00:00:00","lat":42.622,"lon":-49.701,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900505"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2005-11-17T00:00:00","lat":36.21,"lon":-54.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":0.56,"lon":-89.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":12.2608,"lon":-36.8419,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900727"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":15.0006,"lon":-40.3694,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900728"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":34.4333,"lon":-18.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900635"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":33.7667,"lon":-22.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900636"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":32.5333,"lon":-30.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900637"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":31.95,"lon":-34.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900638"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-31T00:00:00","lat":30.4333,"lon":-44.35,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900729"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-02T00:00:00","lat":27.9167,"lon":-62.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900730"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":21.0033,"lon":-47.5486,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900639"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-19T00:00:00","lat":24.5167,"lon":-63.9833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900732"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-19T00:00:00","lat":22.9167,"lon":-61.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900745"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-02T00:00:00","lat":14.2658,"lon":-55.2522,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-24T00:00:00","lat":14.6428,"lon":-46.4867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-22T00:00:00","lat":13.7,"lon":-49.0142,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900748"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-12T00:00:00","lat":23.1947,"lon":-66.3572,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-15T00:00:00","lat":26.51,"lon":-73.5325,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900752"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-18T00:00:00","lat":26.5006,"lon":-76.4853,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900753"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":7.55,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900574"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-02T00:00:00","lat":5.6767,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900575"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-03T00:00:00","lat":3.7583,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900576"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-05-17T00:00:00","lat":23.8,"lon":-24.11,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900407"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-05-17T00:00:00","lat":23.8,"lon":-24.11,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900408"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":18.2381,"lon":-57.7042,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900754"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":17.7014,"lon":-55.2197,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900755"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":17.14,"lon":-50.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900756"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-31T00:00:00","lat":16.2997,"lon":-45.0003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900757"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-08T00:00:00","lat":24.85,"lon":-19.8333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900702"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-09T00:00:00","lat":19.9833,"lon":-21.9667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900703"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-11T00:00:00","lat":6.0333,"lon":-27.9,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900705"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":15.5844,"lon":-36.9522,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900759"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":17.0786,"lon":-33.9922,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-03T00:00:00","lat":17.5467,"lon":-32.5003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-05T00:00:00","lat":18.8339,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900709"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":12.0011,"lon":-23.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900710"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-06-03T00:00:00","lat":26.63,"lon":-15.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900409"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":8.0186,"lon":-23.0069,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900711"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":3.0219,"lon":-34.9939,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-12T00:00:00","lat":0.8519,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900579"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2006-07-05T00:00:00","lat":10.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":0.0925,"lon":-23.2583,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900712"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-29T00:00:00","lat":3.1603,"lon":-23.2561,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-21T00:00:00","lat":33.8333,"lon":-20.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900714"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":30.4167,"lon":-45.9167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900771"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":27.8333,"lon":-62.9167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900772"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-18T00:00:00","lat":18.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900716"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-01T00:00:00","lat":37.0775,"lon":-72.9122,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-02T00:00:00","lat":28.9536,"lon":-70.7431,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-03T00:00:00","lat":21.0867,"lon":-67.3839,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-24T00:00:00","lat":57.4833,"lon":-35.8839,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":55.9669,"lon":-38.5186,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900775"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":54.5003,"lon":-41.0675,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900776"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":53.5167,"lon":-42.6503,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900777"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-26T00:00:00","lat":51.0008,"lon":-46.5333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900778"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-10T00:00:00","lat":3.2606,"lon":-23.9156,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-11T00:00:00","lat":7.5006,"lon":-28.2406,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900734"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-13T00:00:00","lat":18.0006,"lon":-38.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900779"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-14T00:00:00","lat":22.5,"lon":-44.0775,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900780"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-16T00:00:00","lat":31.0,"lon":-55.555,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900781"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-17T00:00:00","lat":35.0003,"lon":-62.1656,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900782"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-16T00:00:00","lat":37.4167,"lon":-72.8333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900783"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":34.3,"lon":-72.1667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900784"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":27.6667,"lon":-70.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900785"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":36.4892,"lon":-19.8919,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900126"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":36.4817,"lon":-22.7383,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-14T00:00:00","lat":36.4536,"lon":-28.8772,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-15T00:00:00","lat":35.2031,"lon":-35.1425,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900786"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-16T00:00:00","lat":33.0608,"lon":-42.8708,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900787"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-18T00:00:00","lat":28.7381,"lon":-58.1153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900789"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-19T00:00:00","lat":27.8897,"lon":-65.1808,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900790"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":29.8503,"lon":-51.0186,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900788"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-10-06T00:00:00","lat":27.87,"lon":-13.54,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-30T00:00:00","lat":26.7347,"lon":-75.1781,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900791"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-02T00:00:00","lat":26.5658,"lon":-72.4667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900792"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-05T00:00:00","lat":26.6222,"lon":-73.6314,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900793"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-09T00:00:00","lat":41.929,"lon":-64.469,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900878"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-23T00:00:00","lat":20.9833,"lon":-17.2333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900735"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-23T00:00:00","lat":27.5,"lon":-19.4167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900736"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-25T00:00:00","lat":14.0833,"lon":-26.5667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-25T00:00:00","lat":10.9833,"lon":-27.7333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900738"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-26T00:00:00","lat":8.0333,"lon":-28.7833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900739"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-26T00:00:00","lat":1.0333,"lon":-31.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-07-22T00:00:00","lat":31.55,"lon":-63.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900357"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-11-30T00:00:00","lat":49.8,"lon":-49.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900xxx"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-05T00:00:00","lat":45.0,"lon":-7.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900627"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-06T00:00:00","lat":44.35,"lon":-8.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900622"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-11-28T00:00:00","lat":42.5823,"lon":-49.6843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900883"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":43.95,"lon":-3.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900619"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-11T00:00:00","lat":44.2,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900623"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-23T00:00:00","lat":3.9667,"lon":-26.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900599"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-27T00:00:00","lat":22.4833,"lon":-49.4667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900800"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-29T00:00:00","lat":36.0,"lon":-67.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-21T00:00:00","lat":37.95,"lon":-64.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-24T00:00:00","lat":37.2797,"lon":-60.2683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-21T00:00:00","lat":39.25,"lon":-67.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900804"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":35.1744,"lon":-15.2042,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":34.9206,"lon":-18.32,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-10T00:00:00","lat":35.2383,"lon":-25.6936,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-12T00:00:00","lat":31.8169,"lon":-38.3456,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900805"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-05T00:00:00","lat":46.0,"lon":-8.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900458"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-10T00:00:00","lat":33.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900508"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-11T00:00:00","lat":36.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900509"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-13T00:00:00","lat":38.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900510"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-16T00:00:00","lat":34.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900512"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-18T00:00:00","lat":31.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900513"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2007-02-13T00:00:00","lat":17.6047,"lon":-24.293,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900943"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2007-02-13T00:00:00","lat":17.6551,"lon":-24.2928,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900944"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-07T00:00:00","lat":22.0058,"lon":-67.4339,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900808"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-03-24T00:00:00","lat":32.7333,"lon":-23.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-03-26T00:00:00","lat":28.75,"lon":-39.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900314"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":44.833,"lon":-40.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900515"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":46.0,"lon":-40.117,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900516"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":47.5,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900517"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-06T00:00:00","lat":50.0,"lon":-37.067,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900518"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-07T00:00:00","lat":52.5,"lon":-35.033,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-04T00:00:00","lat":43.5,"lon":-41.943,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900514"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-17T00:00:00","lat":13.3,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900817"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-22T00:00:00","lat":15.9333,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900818"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":14.5167,"lon":-46.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-04T00:00:00","lat":12.3042,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-05T00:00:00","lat":12.0589,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-23T00:00:00","lat":29.0167,"lon":-18.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900763"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-24T00:00:00","lat":22.0167,"lon":-21.2333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900764"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-24T00:00:00","lat":17.9833,"lon":-22.8667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900765"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":12.0,"lon":-25.35,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":7.0167,"lon":-27.4833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900767"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-19T00:00:00","lat":20.4431,"lon":-25.0339,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-20T00:00:00","lat":20.1431,"lon":-34.0394,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900825"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-21T00:00:00","lat":20.0422,"lon":-37.0483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900826"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-22T00:00:00","lat":20.7703,"lon":-40.4119,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900827"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-23T00:00:00","lat":21.6803,"lon":-44.3486,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-24T00:00:00","lat":22.8719,"lon":-49.1153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":23.4178,"lon":-52.9192,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2007-05-21T00:00:00","lat":8.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-24T00:00:00","lat":33.0511,"lon":-71.9528,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900838"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-25T00:00:00","lat":22.5442,"lon":-67.9328,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900839"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-05T00:00:00","lat":10.0092,"lon":-22.1386,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900774"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-07T00:00:00","lat":19.0056,"lon":-28.1197,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900775"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-08T00:00:00","lat":22.0025,"lon":-32.2456,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900776"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-27T00:00:00","lat":37.21,"lon":-28.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900301"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-22T00:00:00","lat":37.07,"lon":-32.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900302"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-26T00:00:00","lat":37.19,"lon":-30.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900303"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-01T00:00:00","lat":59.46,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900602"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-01T00:00:00","lat":59.46,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900603"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-10T00:00:00","lat":59.92,"lon":-20.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900604"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-10T00:00:00","lat":59.92,"lon":-20.42,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900605"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-13T00:00:00","lat":44.77,"lon":-8.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900462"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-12T00:00:00","lat":45.83,"lon":-6.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900460"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-12T00:00:00","lat":47.086,"lon":-5.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900459"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-10-15T00:00:00","lat":34.505,"lon":-19.999,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900542"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-10-16T00:00:00","lat":32.958,"lon":-21.937,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900543"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-23T00:00:00","lat":41.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900464"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-16T00:00:00","lat":59.02,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900606"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-16T00:00:00","lat":59.02,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900607"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-19T00:00:00","lat":59.29,"lon":-19.81,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900608"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-04T00:00:00","lat":39.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900465"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-06T00:00:00","lat":40.326,"lon":-9.914,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900466"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-07T00:00:00","lat":40.31,"lon":-11.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-26T00:00:00","lat":32.55,"lon":-17.2028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900777"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-27T00:00:00","lat":31.9425,"lon":-23.2664,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900778"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-29T00:00:00","lat":30.6906,"lon":-34.9833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900779"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-29T00:00:00","lat":30.2453,"lon":-38.9872,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900846"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-30T00:00:00","lat":29.5094,"lon":-47.7386,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900847"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-10T00:00:00","lat":37.428,"lon":-10.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900467"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-11-05T00:00:00","lat":27.29,"lon":-15.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900610"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-11-07T00:00:00","lat":28.43,"lon":-13.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900611"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-11-28T00:00:00","lat":20.1225,"lon":-28.4112,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901075"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-11-30T00:00:00","lat":14.9516,"lon":-30.0135,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901076"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-12-02T00:00:00","lat":10.001,"lon":-33.249,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901077"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-12-03T00:00:00","lat":5.275,"lon":-36.261,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901078"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-26T00:00:00","lat":19.0,"lon":-45.8764,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900851"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-28T00:00:00","lat":27.0006,"lon":-55.5011,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900852"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-02-29T10:00:00","lat":53.0,"lon":-15.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900649"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-02-29T09:30:00","lat":53.6,"lon":-16.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900650"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-03-02T09:50:00","lat":54.11,"lon":-14.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900647"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-03-02T05:30:00","lat":54.39,"lon":-15.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900648"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-13T13:34:00","lat":19.99,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900631"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-16T16:00:00","lat":18.0,"lon":-17.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900632"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-17T10:54:00","lat":18.0017,"lon":-19.0001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-19T14:12:00","lat":17.5025,"lon":-24.3371,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900630"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-06T16:11:00","lat":16.1618,"lon":-18.0018,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-04-27T00:00:00","lat":8.1833,"lon":-22.85,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900629"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-26T06:25:00","lat":65.66,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900669"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-29T01:25:00","lat":69.5,"lon":-9.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900668"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-29T03:28:00","lat":69.49,"lon":-9.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900667"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-26T03:55:00","lat":65.52,"lon":-2.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900666"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-05-26T07:50:00","lat":65.7843,"lon":-2.7843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900547"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-06-26T16:56:00","lat":75.0,"lon":-3.498,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900548"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-06-27T05:34:00","lat":74.955,"lon":-0.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900550"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-07-08T17:27:00","lat":34.845,"lon":-70.635,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900551"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-07-08T12:00:00","lat":34.464,"lon":-69.862,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900552"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T04:00:00","lat":13.5,"lon":-27.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-12-01T23:20:00","lat":9.5023,"lon":-22.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900575"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-30T13:45:00","lat":6.5043,"lon":-22.9991,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900576"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-29T19:02:00","lat":4.0933,"lon":-23.0183,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-07T05:36:00","lat":3.2797,"lon":-24.6372,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-30T02:05:00","lat":13.0333,"lon":-26.9333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900799"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-01T06:48:00","lat":3.55,"lon":-30.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-01T18:00:00","lat":0.0333,"lon":-31.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900694"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-03T17:07:00","lat":8.0333,"lon":-28.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900800"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-14T02:00:00","lat":15.663,"lon":-42.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900568"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-21T02:00:00","lat":15.618,"lon":-30.545,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900569"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-10T19:26:00","lat":17.725,"lon":-49.813,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900570"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-02T02:00:00","lat":52.508,"lon":-36.853,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900553"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-06T02:00:00","lat":47.676,"lon":-31.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900554"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-07T02:00:00","lat":46.678,"lon":-36.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900555"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-03T08:10:00","lat":61.4978,"lon":-26.4978,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T07:10:00","lat":60.5046,"lon":-33.3592,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900557"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T13:12:00","lat":59.4911,"lon":-34.8736,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900558"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-27T00:15:00","lat":57.7038,"lon":-51.3266,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900559"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-27T19:32:00","lat":57.3451,"lon":-51.725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900560"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-31T07:47:00","lat":59.782,"lon":-54.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900561"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-31T00:20:00","lat":58.743,"lon":-54.127,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900562"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-09-10T11:11:00","lat":55.261,"lon":-26.9933,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900564"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-05T18:31:00","lat":54.9954,"lon":-39.8481,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-18T09:41:00","lat":43.775,"lon":-17.034,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900493"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-19T04:07:00","lat":44.67,"lon":-18.21,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900494"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-21T06:30:00","lat":47.668,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900496"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-20T05:30:00","lat":46.17,"lon":-19.3862,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900495"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-25T09:10:00","lat":54.027,"lon":-25.54,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-24T15:01:00","lat":52.89,"lon":-24.65,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900497"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T13:05:00","lat":55.899,"lon":-26.867,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900638"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T23:24:00","lat":56.636,"lon":-27.562,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900639"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T02:10:00","lat":55.147,"lon":-26.417,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-27T03:05:00","lat":58.211,"lon":-29.725,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900640"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-06-28T09:56:00","lat":58.553,"lon":-30.357,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900641"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-29T16:53:00","lat":59.103,"lon":-33.832,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900491"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2008-04-26T15:00:00","lat":8.1833,"lon":-22.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900525"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-27T10:28:00","lat":57.215,"lon":-28.163,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2008-04-24T14:00:00","lat":8.05,"lon":-22.9783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-07-01T20:44:00","lat":59.623,"lon":-38.968,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900492"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-07-02T17:33:00","lat":59.688,"lon":-39.598,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900490"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-30T16:50:00","lat":59.377,"lon":-36.397,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-06T13:39:00","lat":59.0805,"lon":-20.3434,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900675"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-29T17:00:00","lat":59.0071,"lon":-20.4952,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900678"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-30T16:45:00","lat":59.3725,"lon":-36.3987,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900673"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-30T16:45:00","lat":59.3721,"lon":-36.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900676"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-23T18:38:00","lat":38.0,"lon":-13.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900315"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-25T00:30:00","lat":27.5,"lon":-19.3667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-25T10:40:00","lat":24.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-26T20:45:00","lat":12.0,"lon":-27.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-27T18:50:00","lat":4.0,"lon":-30.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900705"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-28T08:45:00","lat":1.0,"lon":-31.7667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-07T22:48:00","lat":0.1772,"lon":-32.8167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-08T14:23:00","lat":2.1072,"lon":-33.5167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-10T15:29:00","lat":10.0847,"lon":-39.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900856"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-08-13T05:13:00","lat":45.93,"lon":-7.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900468"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-03T04:54:00","lat":35.0667,"lon":-10.3167,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900691"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-07T05:40:00","lat":32.0333,"lon":-11.9167,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900692"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-06T16:59:00","lat":29.8167,"lon":-13.6667,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_FSU"},"ptfDepl":{"deplDate":"2007-08-09T00:00:00","lat":35.741,"lon":-34.347,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902322"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T11:00:00","lat":53.0,"lon":-43.2378,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900579"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T02:23:00","lat":53.9992,"lon":-41.5376,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900578"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-03T18:57:00","lat":24.65,"lon":-26.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T06:03:00","lat":28.705,"lon":-26.3276,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900571"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T21:45:00","lat":19.5666,"lon":-27.0166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900573"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-04T19:20:00","lat":58.4726,"lon":-35.8354,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900565"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-05T03:45:00","lat":56.9966,"lon":-36.4205,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900566"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T21:35:00","lat":51.9996,"lon":-44.8525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-07T10:32:00","lat":50.9911,"lon":-45.6825,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900581"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-01T00:00:00","lat":15.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900696"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-11-21T12:49:00","lat":0.0,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900475"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-24T21:42:00","lat":21.34,"lon":-18.56,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900695"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-28T23:13:00","lat":26.5,"lon":-16.8,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900694"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-23T22:16:00","lat":14.7015,"lon":-54.9998,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900590"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-24T19:32:00","lat":14.6998,"lon":-49.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900591"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-29T12:47:00","lat":16.0,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900592"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-30T15:17:00","lat":19.0,"lon":-41.5,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900593"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-31T05:35:00","lat":21.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900594"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-09T09:53:00","lat":53.9311,"lon":-16.8911,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900654"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-08T12:45:00","lat":52.9945,"lon":-15.6374,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900653"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-11T21:15:00","lat":55.5933,"lon":-13.9562,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900651"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-12T16:45:00","lat":54.815,"lon":-11.8475,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900652"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-14T16:17:00","lat":0.8267,"lon":-84.1067,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3900737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-14T21:16:00","lat":1.4767,"lon":-84.8417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900738"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-15T02:19:00","lat":2.1217,"lon":-85.5317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900739"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-28T22:30:00","lat":10.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2009-02-02T02:25:00","lat":19.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901035"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-29T19:45:00","lat":6.0,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900743"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-01T08:43:00","lat":28.0,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-05-17T18:18:00","lat":39.01,"lon":-12.78,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-07T20:14:00","lat":32.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900983"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-06T14:16:00","lat":52.516,"lon":-36.833,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900823"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-07T18:30:00","lat":51.016,"lon":-34.833,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900824"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-08T12:43:00","lat":50.016,"lon":-33.783,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900825"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-09T11:52:00","lat":49.6,"lon":-33.283,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900826"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-10T03:43:00","lat":47.683,"lon":-31.013,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900827"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-11T22:24:00","lat":7.95,"lon":-26.765,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901350"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-14T03:26:00","lat":8.024,"lon":-29.9828,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901351"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-24T10:06:00","lat":0.0,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900997"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-26T21:28:00","lat":0.1,"lon":-0.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900847"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-21T22:14:00","lat":0.093,"lon":-12.994,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900464"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2009-09-24T19:30:00","lat":7.59,"lon":-25.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900742"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-11T19:00:00","lat":15.5,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901349"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-08T09:00:00","lat":51.157,"lon":-12.105,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900655"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-11T09:00:00","lat":55.283,"lon":-15.81,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900656"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-13T09:00:00","lat":55.283,"lon":-16.04,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-25T07:21:00","lat":75.056,"lon":-0.005,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900811"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-24T18:10:00","lat":74.992,"lon":-0.921,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900812"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.0,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900600"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900841"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900842"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-04-30T12:58:00","lat":0.6375,"lon":-13.49,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-01T18:56:00","lat":0.058,"lon":-19.51,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-02T17:18:00","lat":0.2,"lon":-22.999,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901468"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-01T03:10:00","lat":0.43,"lon":-16.51,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901467"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-12T12:21:00","lat":20.3125,"lon":-28.14,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-11T02:52:00","lat":20.007,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901457"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-15T11:20:00","lat":60.997,"lon":-20.041,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900613"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-16T08:30:00","lat":60.0,"lon":-20.038,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900614"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-16T23:58:00","lat":59.656,"lon":-19.138,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900615"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-17T05:19:00","lat":59.408,"lon":-18.427,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900616"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-13T15:55:00","lat":20.118,"lon":-34.5317,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-14T17:48:00","lat":20.0265,"lon":-37.8856,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-15T21:17:00","lat":22.3955,"lon":-43.001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-16T13:31:00","lat":23.712,"lon":-46.058,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-17T10:20:00","lat":25.227,"lon":-50.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901461"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-19T16:00:00","lat":57.497,"lon":-11.862,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900618"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-19T19:33:00","lat":57.489,"lon":-11.525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900617"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-20T06:06:00","lat":57.348,"lon":-10.667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900619"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-20T00:00:00","lat":57.727,"lon":-10.365,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900620"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-10T12:00:00","lat":48.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900582"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":52.653,"lon":-35.336,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900820"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":50.052,"lon":-33.864,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900822"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":52.5,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900821"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-24T11:40:00","lat":74.992,"lon":-2.164,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900839"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-25T12:24:00","lat":75.024,"lon":-1.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900840"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-15T12:00:00","lat":68.502,"lon":-2.987,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900814"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-29T14:06:00","lat":68.498,"lon":-4.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900837"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-29T15:57:00","lat":68.501,"lon":-3.501,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900838"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-07T20:45:00","lat":26.833,"lon":-87.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-12T18:34:00","lat":26.0,"lon":-87.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901043"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2010-05-29T20:58:00","lat":69.66,"lon":-0.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900796"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2010-05-31T21:49:00","lat":66.51,"lon":-2.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900797"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-12T02:24:00","lat":40.338,"lon":-10.579,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902309"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-15T13:14:00","lat":42.888,"lon":-15.844,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902308"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-17T15:59:00","lat":45.808,"lon":-19.1032,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902307"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-19T13:32:00","lat":48.7916,"lon":-21.4302,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902306"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-20T14:29:00","lat":50.2766,"lon":-22.602,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902305"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-23T12:00:00","lat":47.0,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900829"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-24T12:00:00","lat":44.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-25T12:00:00","lat":40.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900831"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-21T13:44:00","lat":51.776,"lon":-23.7833,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902304"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-23T10:26:00","lat":54.75,"lon":-26.1303,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902303"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-24T10:01:00","lat":56.2517,"lon":-27.2867,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902302"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-25T00:57:00","lat":57.3791,"lon":-28.1864,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902301"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-25T14:59:00","lat":58.2122,"lon":-29.7164,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902300"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-26T17:25:00","lat":59.0383,"lon":-33.1857,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902299"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-27T06:55:00","lat":59.2342,"lon":-35.1157,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902298"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-27T23:11:00","lat":59.432,"lon":-37.0478,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902297"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-28T15:49:00","lat":59.6263,"lon":-38.9345,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-30T13:03:00","lat":17.4,"lon":-54.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901061"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-02T08:47:00","lat":22.6,"lon":-47.567,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901063"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-03T08:47:00","lat":25.65,"lon":-43.367,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901062"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-04T23:32:00","lat":30.4333,"lon":-36.617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901205"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-04T01:36:00","lat":27.617,"lon":-40.617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901204"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2010-06-29T17:05:00","lat":45.5316,"lon":-1.4968,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-29T10:01:00","lat":6.1733,"lon":-44.8483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901060"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-03T13:12:00","lat":0.848,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901059"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-10-26T12:00:00","lat":20.137,"lon":-20.754,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901085"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-11T12:00:00","lat":18.276,"lon":-35.037,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901086"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-14T12:00:00","lat":18.878,"lon":-45.495,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901087"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-17T12:00:00","lat":19.726,"lon":-55.809,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901088"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-23T19:28:00","lat":28.578,"lon":-73.623,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-11T00:05:00","lat":16.086,"lon":-19.3268,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901046"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-23T19:02:00","lat":21.1765,"lon":-25.9588,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-26T00:07:00","lat":27.1162,"lon":-34.992,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-29T00:07:00","lat":31.5167,"lon":-48.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-20T15:35:00","lat":8.9903,"lon":-29.2305,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901212"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-22T13:05:00","lat":16.9783,"lon":-29.455,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901213"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-25T00:30:00","lat":26.9632,"lon":-49.3248,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901211"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-09T17:17:00","lat":0.0,"lon":-8.011,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-12T21:25:00","lat":0.0028,"lon":-12.9998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-14T09:31:00","lat":7.0E-4,"lon":-18.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900723"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-16T01:23:00","lat":0.001,"lon":-23.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-11T12:05:00","lat":11.2261,"lon":-52.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901489"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-13T02:25:00","lat":4.4581,"lon":-43.0162,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901487"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-18T12:00:00","lat":5.994,"lon":-20.7497,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900720"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-11-27T01:10:00","lat":40.0,"lon":-19.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-11-29T06:40:00","lat":37.8333,"lon":-39.9667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-01T01:50:00","lat":36.3,"lon":-51.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901218"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-12-02T10:55:00","lat":1.4918,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902294"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-12-03T07:43:00","lat":0.001,"lon":-0.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-12T20:35:00","lat":15.5,"lon":-52.0417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-18T16:25:00","lat":27.4667,"lon":-73.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901222"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-17T10:38:00","lat":23.1583,"lon":-68.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901221"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-18T03:38:00","lat":23.5833,"lon":-71.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901224"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-12-18T05:23:00","lat":17.126,"lon":-26.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900623"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-12-18T19:55:00","lat":17.488,"lon":-28.241,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900624"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-01-02T08:28:00","lat":21.85,"lon":-38.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900625"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-01-02T20:18:00","lat":23.85,"lon":-36.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900626"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-17T06:28:00","lat":46.6513,"lon":-18.3347,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900864"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-15T17:15:00","lat":44.7176,"lon":-27.1348,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900863"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-13T22:38:00","lat":41.2032,"lon":-36.7935,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900862"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-09T21:50:00","lat":34.35,"lon":-59.3833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900865"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-11T22:26:00","lat":37.3239,"lon":-49.5843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900867"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-13T10:05:00","lat":40.0025,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901047"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-12T12:00:00","lat":23.3745,"lon":-75.1225,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901048"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-15T12:00:00","lat":24.3703,"lon":-68.8673,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901049"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-16T12:00:00","lat":27.252,"lon":-73.5751,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901050"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-05-19T12:00:00","lat":21.0,"lon":-58.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901051"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-05-24T00:00:00","lat":21.093,"lon":-52.598,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901052"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-06-05T12:00:00","lat":26.0,"lon":-51.096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901053"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-06-09T12:00:00","lat":28.0,"lon":-59.204,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901054"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-08T14:09:00","lat":48.501,"lon":-32.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901060"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-09T23:23:00","lat":47.576,"lon":-33.544,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901061"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-07T05:54:00","lat":50.171,"lon":-33.972,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901062"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-11T18:09:00","lat":47.177,"lon":-39.192,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901063"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-04T03:10:00","lat":51.001,"lon":-40.087,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901064"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-05T12:00:00","lat":49.489,"lon":-42.934,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901065"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-14T19:11:00","lat":47.099,"lon":-43.423,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901066"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-26T23:46:00","lat":69.001,"lon":-10.0429,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901069"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-26T20:55:00","lat":69.0,"lon":-9.595,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901070"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-25T16:52:00","lat":69.0,"lon":-4.9989,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901058"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-25T19:56:00","lat":68.9984,"lon":-5.4451,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-02T23:24:00","lat":0.0055,"lon":-22.4442,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901283"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-06T11:20:00","lat":14.9978,"lon":-39.7855,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901280"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-08T10:50:00","lat":23.279,"lon":-49.5065,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-10T03:54:00","lat":30.0055,"lon":-58.4691,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-11T09:53:00","lat":35.187,"lon":-65.2758,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-12T01:23:00","lat":37.4997,"lon":-68.8158,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901278"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-17T09:43:00","lat":51.0,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-12T06:57:00","lat":49.92,"lon":-40.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-21T23:53:00","lat":51.0,"lon":-40.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903389"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-09T21:47:00","lat":53.0,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903390"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-21T11:35:00","lat":49.5,"lon":-40.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903391"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-10T12:06:00","lat":53.0,"lon":-43.61,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903392"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-11T02:19:00","lat":52.97,"lon":-41.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903393"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-20T06:33:00","lat":52.0,"lon":-42.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-17T21:26:00","lat":52.0,"lon":-44.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903395"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-18T18:12:00","lat":50.05,"lon":-44.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-13T15:00:00","lat":47.0,"lon":-41.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903398"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-20T18:48:00","lat":50.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903399"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-12T23:15:00","lat":47.95,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-19T06:00:00","lat":49.0,"lon":-43.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903397"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-26T11:01:00","lat":13.5333,"lon":-50.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-27T05:18:00","lat":10.7167,"lon":-45.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901499"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-27T11:43:00","lat":7.8333,"lon":-41.4833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-29T09:52:00","lat":2.55,"lon":-33.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-04T12:41:00","lat":35.25,"lon":-70.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901217"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T04:15:00","lat":60.99,"lon":-20.011,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900446"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T12:05:00","lat":60.489,"lon":-19.988,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900447"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T20:06:00","lat":59.975,"lon":-19.963,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900448"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-27T05:30:00","lat":59.628,"lon":-19.117,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901294"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-20T18:02:00","lat":38.5913,"lon":-68.9073,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901214"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-08T08:32:00","lat":31.37,"lon":-25.08,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900984"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-16T18:35:00","lat":20.51,"lon":-62.211,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901288"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-20T12:40:00","lat":23.0,"lon":-57.005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901287"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-22T22:56:00","lat":20.292,"lon":-53.806,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901286"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2011-06-10T05:19:00","lat":4.005,"lon":-21.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900941"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2011-06-11T07:43:00","lat":7.9992,"lon":-19.962,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900924"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-06-25T16:59:00","lat":37.6783,"lon":-22.8981,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900958"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-06-24T09:16:00","lat":36.8199,"lon":-15.004,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900957"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-06-29T14:00:00","lat":47.7976,"lon":-25.021,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901211"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-06-30T22:45:00","lat":47.6183,"lon":-29.898,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901212"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-05T14:30:00","lat":51.692,"lon":-35.788,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901213"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-21T20:46:00","lat":45.9828,"lon":-20.1367,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901205"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-21T16:50:00","lat":54.8365,"lon":-43.4558,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901214"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-23T23:00:00","lat":57.1285,"lon":-43.6819,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901215"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-24T23:30:00","lat":38.275,"lon":-19.997,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901208"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-29T04:45:00","lat":56.2931,"lon":-52.4074,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901218"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2011-08-01T06:22:00","lat":74.9983,"lon":-1.0017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901087"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2011-08-01T09:55:00","lat":74.9981,"lon":-0.4981,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901086"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-28T17:32:00","lat":59.7439,"lon":-40.7474,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900753"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-28T23:10:00","lat":59.6668,"lon":-39.7442,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900754"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-29T14:58:00","lat":59.2226,"lon":-39.5073,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900755"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-29T20:43:00","lat":59.5698,"lon":-38.77,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900756"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T02:43:00","lat":59.4656,"lon":-37.7798,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900757"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T08:18:00","lat":59.3922,"lon":-36.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900758"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T14:00:00","lat":59.2981,"lon":-35.898,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900759"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-23T08:59:00","lat":42.408,"lon":-20.158,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901206"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-07-27T16:43:00","lat":43.414,"lon":-17.431,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901192"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-07-26T10:57:00","lat":40.6988,"lon":-23.9257,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900911"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-26T02:21:00","lat":57.4558,"lon":-51.1537,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901217"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-08-12T01:00:00","lat":58.999,"lon":-40.205,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901209"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-17T08:13:00","lat":63.038,"lon":-35.486,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901210"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-01T00:00:00","lat":36.65,"lon":-67.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901290"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-08-23T05:37:00","lat":75.88,"lon":-2.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903592"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-29T11:00:00","lat":26.4146,"lon":-40.4681,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901118"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-30T09:55:00","lat":26.5682,"lon":-36.2506,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901119"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-01T09:56:00","lat":26.7134,"lon":-31.9094,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901120"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-02T10:08:00","lat":26.96,"lon":-27.765,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901121"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-03T10:03:00","lat":27.0152,"lon":-23.3121,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901122"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-04T08:52:00","lat":27.1525,"lon":-19.2581,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901123"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-06T13:50:00","lat":27.271,"lon":-15.411,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901124"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-07T15:16:00","lat":14.52,"lon":-79.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901486"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-06T06:28:00","lat":18.45,"lon":-81.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901485"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-11T10:36:00","lat":19.2633,"lon":-21.8666,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901055"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-10T23:47:00","lat":21.0667,"lon":-21.5333,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-10T09:00:00","lat":22.75,"lon":-20.5167,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T03:48:00","lat":34.69,"lon":-71.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T18:07:00","lat":32.19,"lon":-73.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900110"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T23:57:00","lat":31.6,"lon":-74.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-30T05:52:00","lat":30.99,"lon":-75.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900112"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-30T11:12:00","lat":30.41,"lon":-76.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900113"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-10T12:57:00","lat":22.003,"lon":-19.3132,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-13T20:11:00","lat":12.0018,"lon":-20.832,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900703"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-01T18:08:00","lat":40.4818,"lon":-11.1073,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900701"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-23T10:07:00","lat":25.9877,"lon":-25.4417,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900961"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-25T17:52:00","lat":23.9167,"lon":-35.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900912"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-27T15:35:00","lat":21.2167,"lon":-44.533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900959"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-29T12:12:00","lat":20.0,"lon":-52.533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900935"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-02-06T23:48:00","lat":11.89,"lon":-63.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-02-04T03:37:00","lat":11.0,"lon":-77.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901498"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-04-27T21:09:00","lat":38.733,"lon":-69.2138,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901085"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":34.8518,"lon":-65.8576,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901217"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-04-29T03:12:00","lat":32.0,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901218"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":30.069,"lon":-44.7016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901219"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":31.8515,"lon":-38.7853,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901220"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-08-12T15:00:00","lat":45.6516,"lon":-3.009,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900963"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2010-09-02T00:00:00","lat":46.9015,"lon":-4.3222,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902316"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-03-25T22:26:00","lat":0.0076,"lon":-23.0076,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900987"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-03-29T21:18:00","lat":0.004,"lon":-9.8677,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900988"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2012-03-11T08:30:00","lat":14.34,"lon":-17.66,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900983"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2012-03-08T01:04:00","lat":14.86,"lon":-17.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900982"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-03-08T07:02:00","lat":14.2726,"lon":-17.6183,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900917"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-03-15T19:00:00","lat":14.6866,"lon":-17.7363,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900919"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T14:34:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901079"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T19:32:00","lat":68.4,"lon":-2.9333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901077"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T12:04:00","lat":69.4983,"lon":-8.995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901078"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T22:07:00","lat":68.4833,"lon":-3.9666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901082"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-04-17T18:30:00","lat":1.015,"lon":-3.9893,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901008"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-04-18T12:52:00","lat":3.0045,"lon":-3.9758,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901007"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-02T15:30:00","lat":31.351,"lon":-49.324,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900970"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-05-07T18:04:00","lat":36.1,"lon":-7.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-05-08T12:40:00","lat":38.6,"lon":-10.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901435"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-12T20:00:00","lat":34.34,"lon":-13.053,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901419"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-11T18:30:00","lat":39.15,"lon":-11.461,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901418"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-16T07:55:00","lat":18.788,"lon":-19.495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901204"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-22T11:34:00","lat":6.545,"lon":-12.1917,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900946"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T15:00:00","lat":47.1016,"lon":-43.1183,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901410"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T16:44:00","lat":47.1333,"lon":-40.8333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901411"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-13T03:50:00","lat":47.1766,"lon":-39.1883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901412"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-15T01:35:00","lat":47.6666,"lon":-32.1416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901413"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-17T05:35:00","lat":50.1713,"lon":-33.9722,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901414"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-18T05:58:00","lat":51.95,"lon":-36.137,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901415"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-20T13:59:00","lat":54.1117,"lon":-44.2255,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901416"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-13T23:09:00","lat":47.3666,"lon":-35.8908,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901680"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-20T10:43:00","lat":53.8727,"lon":-43.4186,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-06-15T13:33:00","lat":60.32,"lon":-5.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900114"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-30T21:25:00","lat":26.8845,"lon":-52.7782,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900969"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-17T12:03:00","lat":62.0075,"lon":-15.0181,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900973"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-21T16:17:00","lat":2.7567,"lon":-0.6717,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901015"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-20T20:31:00","lat":36.8265,"lon":-28.78,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901407"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-23T08:30:00","lat":41.6666,"lon":-60.4,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-27T11:21:00","lat":41.3833,"lon":-13.8877,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901021"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-30T10:10:00","lat":60.623,"lon":-24.9816,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900899"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-02T05:59:00","lat":36.01,"lon":-12.2667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901019"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-01T11:48:00","lat":57.3619,"lon":-24.966,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900897"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-02T11:01:00","lat":54.0812,"lon":-24.9923,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-03T11:43:00","lat":50.42,"lon":-25.0374,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900966"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-04T10:16:00","lat":46.7708,"lon":-25.0017,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900972"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-05T10:43:00","lat":42.7028,"lon":-25.008,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900995"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-06T02:37:00","lat":49.5342,"lon":-22.0242,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901022"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-11T00:04:00","lat":75.0,"lon":-2.883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901127"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-07-02T05:20:00","lat":45.7933,"lon":-19.0967,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900999"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-14T01:28:00","lat":59.1015,"lon":-33.822,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901028"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-15T19:22:00","lat":59.621,"lon":-39.9543,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-12T23:08:00","lat":59.4047,"lon":-30.1017,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-12T09:24:00","lat":57.6715,"lon":-28.725,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901026"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-14T22:10:00","lat":59.3575,"lon":-36.3912,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2012-07-18T19:10:00","lat":59.0672,"lon":-46.0765,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900965"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-20T15:50:00","lat":53.6883,"lon":-49.4335,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901001"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-20T23:59:00","lat":75.535,"lon":-1.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901128"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T02:10:00","lat":75.167,"lon":-2.227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901129"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T04:18:00","lat":74.797,"lon":-2.962,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901130"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T06:24:00","lat":74.428,"lon":-3.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901131"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T08:32:00","lat":74.059,"lon":-4.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901132"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-11-14T16:50:00","lat":8.9948,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901354"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-28T19:54:00","lat":30.8,"lon":-51.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900971"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-11T23:59:00","lat":59.375,"lon":-18.346,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901133"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-12T17:02:00","lat":59.833,"lon":-19.556,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901134"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-13T06:53:00","lat":60.497,"lon":-19.984,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901135"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-11T15:05:00","lat":38.4,"lon":-72.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-11T05:15:00","lat":37.35,"lon":-73.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901525"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-14T01:39:00","lat":61.5,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901136"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-14T19:06:00","lat":31.7,"lon":-76.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-08-12T11:44:00","lat":37.2667,"lon":-17.2834,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900968"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-13T17:40:00","lat":35.85,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900115"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-14T03:54:00","lat":35.9,"lon":-4.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2007-09-26T13:30:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901403"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-21T01:58:00","lat":27.7,"lon":-75.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-22T20:05:00","lat":29.6,"lon":-74.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-23T14:06:00","lat":30.75,"lon":-75.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-26T14:13:00","lat":28.6,"lon":-78.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901533"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-26T09:02:00","lat":27.55,"lon":-78.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901536"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-04T04:22:00","lat":32.8746,"lon":-15.1533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901410"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-12T09:38:00","lat":30.705,"lon":-16.0765,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901411"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2012-09-12T18:50:00","lat":26.3067,"lon":-35.1961,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901915"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2012-09-06T19:34:00","lat":35.2,"lon":-26.31,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901913"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-20T08:43:00","lat":34.1333,"lon":-12.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901412"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-20T15:30:00","lat":25.1462,"lon":-17.9394,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901415"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-19T09:43:00","lat":35.9555,"lon":-12.0105,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901409"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-22T16:25:00","lat":26.195,"lon":-19.322,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901142"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-14T09:00:00","lat":32.165,"lon":-15.652,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901143"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-31T12:03:00","lat":25.377,"lon":-23.593,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901146"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-31T09:49:00","lat":40.4013,"lon":-11.2097,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901413"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T15:27:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901474"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901475"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901473"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901472"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-11-08T12:01:00","lat":23.9494,"lon":-18.5506,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901414"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-11-10T11:05:00","lat":18.3727,"lon":-19.3003,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901408"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-11-12T21:00:00","lat":25.9417,"lon":-62.9697,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901144"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-11-10T20:00:00","lat":25.2141,"lon":-53.4887,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901145"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T17:01:00","lat":46.0654,"lon":-7.4349,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-21T21:49:00","lat":16.31,"lon":-76.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-22T10:29:00","lat":14.04,"lon":-77.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-22T23:10:00","lat":11.77,"lon":-78.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-25T20:33:00","lat":1.74,"lon":-82.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901144"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-08T16:41:00","lat":52.8877,"lon":-24.6542,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901023"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-10T17:03:00","lat":56.6223,"lon":-27.5742,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901025"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-10T00:35:00","lat":55.3238,"lon":-26.5555,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901024"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T16:30:00","lat":46.0931,"lon":-7.4377,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901478"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-11-30T18:12:00","lat":12.2483,"lon":-47.088,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901442"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-11-27T19:58:00","lat":26.2348,"lon":-35.5312,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901443"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-01-24T13:12:00","lat":16.59,"lon":-29.31,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900984"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-01T12:31:00","lat":15.0667,"lon":-49.7167,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901018"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-04T20:16:00","lat":14.5,"lon":-60.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901014"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-02-02T06:35:00","lat":1.5,"lon":-85.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-02-02T18:32:00","lat":3.01,"lon":-83.97,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901147"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-31T18:03:00","lat":47.7851,"lon":-39.0081,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901420"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-31T02:22:00","lat":47.2928,"lon":-37.3563,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901227"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-06-13T18:45:00","lat":48.9575,"lon":-14.2221,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901229"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-08-23T17:33:00","lat":25.9935,"lon":-35.6993,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901441"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-28T04:23:00","lat":68.7512,"lon":-3.0109,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901231"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-28T00:34:00","lat":68.7385,"lon":-4.0332,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901232"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-27T08:27:00","lat":69.3355,"lon":-10.0052,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901233"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-27T11:55:00","lat":69.3287,"lon":-9.0279,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901234"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-27T10:41:00","lat":34.1517,"lon":-27.0867,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901448"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-03-18T02:48:00","lat":14.5083,"lon":-17.6886,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900918"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-03-01T17:31:00","lat":13.6655,"lon":-17.4838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900913"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-04-01T11:48:00","lat":10.0668,"lon":-48.6408,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901445"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-31T12:59:00","lat":14.7,"lon":-44.7233,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901446"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-30T13:12:00","lat":19.578,"lon":-40.54,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901447"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2013-03-26T17:00:00","lat":38.4346,"lon":-9.7669,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901914"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:00:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901514"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:21:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901515"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T16:35:00","lat":62.719,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901516"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:37:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901517"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T16:48:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901518"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:12:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901520"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:30:00","lat":62.72,"lon":-20.62,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901519"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-09-04T16:33:00","lat":25.53,"lon":-35.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901468"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-01-23T00:00:00","lat":45.185,"lon":-3.38,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901488"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-01-27T11:00:00","lat":24.2838,"lon":-19.6345,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901417"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-14T09:20:00","lat":61.26,"lon":-20.038,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901147"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-14T17:34:00","lat":57.79,"lon":-51.32,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901522"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:39:00","lat":58.69,"lon":-50.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901521"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:45:00","lat":58.68,"lon":-50.36,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:45:00","lat":58.69,"lon":-50.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901526"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T12:05:00","lat":57.78,"lon":-51.44,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901527"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:07:00","lat":58.62,"lon":-50.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901523"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T12:05:00","lat":57.78,"lon":-51.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901525"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-16T02:05:00","lat":60.0,"lon":-20.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901148"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-16T20:58:00","lat":59.409,"lon":-18.425,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901149"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-20T03:26:00","lat":58.283,"lon":-10.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901150"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2013-07-20T12:00:00","lat":75.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901905"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2013-07-20T12:00:00","lat":75.0,"lon":-2.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901906"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T08:00:00","lat":62.76,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901481"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T21:05:00","lat":62.76,"lon":-30.26,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901486"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T19:46:00","lat":62.76,"lon":-30.29,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901480"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T21:29:00","lat":62.76,"lon":-30.253,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901484"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T20:06:00","lat":62.76,"lon":-30.28,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901485"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T19:11:00","lat":62.75,"lon":-30.3,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901489"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T20:48:00","lat":62.76,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T08:28:00","lat":32.251,"lon":-49.5566,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T00:58:00","lat":35.667,"lon":-47.4547,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901470"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-06T11:20:00","lat":37.1128,"lon":-37.0616,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901469"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-09T04:44:00","lat":34.0246,"lon":-54.8848,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901467"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-07T12:27:00","lat":36.2623,"lon":-43.9762,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901597"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T17:53:00","lat":34.7068,"lon":-52.0752,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-06T21:18:00","lat":27.3984,"lon":-86.7497,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-01T20:25:00","lat":27.6027,"lon":-88.1063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901477"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2013-10-08T12:46:00","lat":5.04,"lon":-51.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901495"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2013-10-09T14:05:00","lat":4.81,"lon":-51.24,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901494"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-10-10T11:00:00","lat":45.7495,"lon":-2.4332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-10-12T04:56:00","lat":46.9022,"lon":-4.333,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901572"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-14T13:41:00","lat":30.369,"lon":-23.157,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901154"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-14T13:42:00","lat":30.369,"lon":-23.157,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901155"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-15T14:32:00","lat":26.655,"lon":-25.063,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901153"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-15T14:34:00","lat":26.655,"lon":-25.063,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901156"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-11-20T11:15:00","lat":19.833,"lon":-22.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901506"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-08-24T18:57:00","lat":37.2782,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901499"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-08-24T18:31:00","lat":37.3028,"lon":-30.3132,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-05T00:20:00","lat":15.42,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-11-28T07:32:00","lat":11.25,"lon":-80.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901641"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-11-28T14:24:00","lat":12.55,"lon":-80.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901642"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-12-11T16:14:00","lat":18.8,"lon":-79.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901647"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-15T01:58:00","lat":15.6,"lon":-56.4167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901509"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-14T12:36:00","lat":8.3519,"lon":-47.9244,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901598"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-15T11:34:00","lat":10.1437,"lon":-52.3007,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900915"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-11-17T07:20:00","lat":45.5,"lon":-7.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901597"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-04T12:28:00","lat":10.7366,"lon":-54.3066,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900533"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2014-01-20T23:57:00","lat":64.6665,"lon":-0.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902546"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-03-31T12:00:00","lat":3.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900536"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-02-07T09:30:00","lat":54.65,"lon":-42.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900539"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-07T21:23:00","lat":6.6833,"lon":-44.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900534"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-03-31T12:00:00","lat":3.0,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900537"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-01T17:00:00","lat":11.378,"lon":-18.725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900540"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-06T20:56:00","lat":5.875,"lon":-37.9216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900535"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-19T07:58:00","lat":40.616,"lon":-11.413,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900538"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-10T08:00:00","lat":14.718,"lon":-51.31,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901017"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-01T11:05:00","lat":17.503,"lon":-30.2808,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901591"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-03T18:10:00","lat":15.2845,"lon":-35.2133,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901590"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-13T22:34:00","lat":14.3633,"lon":-59.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902296"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-25T12:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-17T10:46:00","lat":16.52,"lon":-36.673,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901556"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-22T01:32:00","lat":16.906,"lon":-37.732,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901551"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-25T20:48:00","lat":16.906,"lon":-42.081,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901552"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-27T05:50:00","lat":16.023,"lon":-45.277,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-09T20:15:00","lat":10.9531,"lon":-30.6845,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901712"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2013-09-27T19:00:00","lat":15.98,"lon":-17.61,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900890"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2014-06-10T02:47:00","lat":65.9972,"lon":-0.017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902015"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2014-06-10T03:50:00","lat":66.1608,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902016"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-04-25T01:40:00","lat":15.5,"lon":-17.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900916"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901361"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901362"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901363"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901364"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901365"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-29T14:56:00","lat":57.0,"lon":-21.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900876"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-29T20:34:00","lat":57.52,"lon":-21.89,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-20T22:30:00","lat":35.9,"lon":-4.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-24T17:00:00","lat":16.53,"lon":-77.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901643"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-23T23:43:00","lat":14.99,"lon":-80.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901644"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-27T13:59:00","lat":36.3,"lon":-7.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900322"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-04-25T23:51:00","lat":1.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-24T02:09:00","lat":29.85,"lon":-65.5583,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-25T07:17:00","lat":26.53,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-25T14:55:00","lat":26.41,"lon":-88.4933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901598"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-26T06:40:00","lat":26.29,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901597"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2014-04-21T15:00:00","lat":47.8003,"lon":-41.2167,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901917"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2014-04-18T10:00:00","lat":51.8168,"lon":-31.0334,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901916"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-21T05:28:00","lat":37.0001,"lon":-19.9985,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902552"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-22T02:33:00","lat":38.9999,"lon":-20.1201,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902553"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-23T03:06:00","lat":41.0021,"lon":-20.2838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902554"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2014-05-25T00:00:00","lat":36.9,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901861"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2014-05-24T18:59:00","lat":35.88,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901877"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2014-06-09T02:56:00","lat":55.52,"lon":-26.71,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901647"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-24T06:00:00","lat":23.792,"lon":-24.108,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901164"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-23T08:00:00","lat":23.763,"lon":-25.48,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901163"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-22T04:00:00","lat":23.76,"lon":-29.358,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901162"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-21T11:00:00","lat":23.765,"lon":-33.372,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901161"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-19T20:58:00","lat":23.772,"lon":-39.978,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901160"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-13T03:00:00","lat":22.0,"lon":-64.9827,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901626"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-08T11:45:00","lat":35.0316,"lon":-66.85,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-09T11:30:00","lat":29.48,"lon":-65.0315,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901621"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T08:40:00","lat":28.015,"lon":-64.9933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901622"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-13T16:30:00","lat":20.9816,"lon":-65.085,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901625"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-03T04:34:00","lat":39.0947,"lon":-69.4906,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901628"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-11T13:59:00","lat":39.0265,"lon":-69.3208,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901629"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-05T10:50:00","lat":37.8956,"lon":-68.5766,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901630"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T21:31:00","lat":36.0152,"lon":-67.3401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901631"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-05T10:50:00","lat":37.8956,"lon":-68.5766,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901673"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T21:31:00","lat":36.0152,"lon":-67.3401,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901674"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-07T13:32:00","lat":36.0229,"lon":-67.4552,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901675"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-08T16:37:00","lat":34.26,"lon":-66.2905,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901676"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2014-06-15T09:44:00","lat":59.32,"lon":-38.95,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901646"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-20T20:13:00","lat":17.1158,"lon":-64.0947,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-20T20:30:00","lat":9.7033,"lon":-53.0733,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901623"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-21T05:00:00","lat":8.0667,"lon":-52.5183,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901624"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-06-12T09:35:00","lat":59.1,"lon":-33.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904989"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-06-12T00:38:00","lat":58.9,"lon":-32.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904988"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-06-23T00:04:00","lat":29.25,"lon":-73.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901645"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-05T01:42:00","lat":50.28,"lon":-22.6,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901565"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-09T20:10:00","lat":57.2,"lon":-27.88,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901566"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-02T23:42:00","lat":48.042,"lon":-20.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901568"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-28T16:45:00","lat":42.583,"lon":-15.45,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901569"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-23T12:07:00","lat":40.333,"lon":-12.217,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-05-14T09:53:00","lat":34.94,"lon":-26.7,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901554"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-05-10T11:44:00","lat":36.95,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901508"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-05-08T00:02:00","lat":0.0,"lon":-0.0167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901614"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-05-19T01:54:00","lat":1.033,"lon":-4.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901617"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-06-24T17:51:00","lat":53.6918,"lon":-49.4373,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-31T07:55:00","lat":46.5146,"lon":-19.6495,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901570"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-07-14T06:35:00","lat":60.15,"lon":-6.38,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900373"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-03T14:08:00","lat":43.4729,"lon":-57.5328,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902563"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-05T03:50:00","lat":57.953,"lon":-27.0006,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901170"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-06T23:52:00","lat":57.908,"lon":-20.6856,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901171"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T01:44:00","lat":59.4016,"lon":-18.4351,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901172"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T11:08:00","lat":59.8087,"lon":-19.5039,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901173"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T18:55:00","lat":60.2495,"lon":-19.9994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901166"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-12T20:05:00","lat":61.4996,"lon":-20.0013,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901169"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-13T09:55:00","lat":61.0006,"lon":-20.0014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901168"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-15T18:52:00","lat":57.2986,"lon":-10.3811,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901167"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T21:24:00","lat":2.995,"lon":-24.8433,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901684"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-12T10:24:00","lat":4.9933,"lon":-27.185,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901717"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T16:13:00","lat":1.9833,"lon":-23.6833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901722"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T02:50:00","lat":0.0016,"lon":-21.0383,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T09:20:00","lat":1.0116,"lon":-22.5316,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901713"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-07-20T13:01:00","lat":68.581,"lon":-4.708,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902548"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-25T11:47:00","lat":41.41,"lon":-60.676,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902565"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-05T08:04:00","lat":42.0223,"lon":-67.2064,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902566"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-04T10:10:00","lat":43.115,"lon":-58.9378,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902567"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-06T00:00:00","lat":46.5166,"lon":-8.5333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902571"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-08T00:00:00","lat":36.1646,"lon":-14.5361,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-23T00:00:00","lat":11.689,"lon":-47.956,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902573"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-26T00:00:00","lat":10.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-01-05T00:00:00","lat":10.4933,"lon":-39.4028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902575"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-01-06T00:00:00","lat":10.6495,"lon":-42.0525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902576"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-11-11T00:00:00","lat":3.9983,"lon":-23.0325,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902577"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-11-13T10:15:00","lat":0.6616,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-14T14:00:00","lat":36.189,"lon":-30.1611,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901679"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-15T07:39:00","lat":35.5921,"lon":-35.0084,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901699"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-19T06:20:00","lat":30.1256,"lon":-60.0046,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901700"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-16T02:18:00","lat":34.9914,"lon":-40.0523,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901701"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-16T20:52:00","lat":33.8019,"lon":-45.0065,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901702"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-09T05:09:00","lat":60.42,"lon":-5.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901467"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-19T12:00:00","lat":58.5,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902584"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-21T12:00:00","lat":54.0,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902586"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-22T12:00:00","lat":52.5,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902587"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-20T12:00:00","lat":51.0,"lon":-46.5,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-25T12:00:00","lat":54.968,"lon":-50.037,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-07-27T15:49:00","lat":46.9,"lon":-4.33,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901681"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-07-27T05:53:00","lat":45.75,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901682"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-20T21:34:00","lat":28.07,"lon":-89.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901646"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-30T01:30:00","lat":28.46,"lon":-88.97,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-31T14:30:00","lat":28.07,"lon":-89.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902058"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-14T18:19:00","lat":45.306,"lon":-6.672,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901607"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-14T14:32:00","lat":45.645,"lon":-5.97,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901608"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-13T06:02:00","lat":5.952,"lon":-25.482,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901728"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-18T21:34:00","lat":24.9435,"lon":-46.83,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901730"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-29T20:53:00","lat":17.8733,"lon":-64.9096,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T11:54:00","lat":41.7717,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T05:01:00","lat":41.7727,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T11:51:00","lat":41.4125,"lon":-60.6759,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901704"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T05:07:00","lat":41.7717,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901705"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-21T13:08:00","lat":42.4731,"lon":-61.4194,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902564"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2014-10-05T12:19:00","lat":38.4338,"lon":-12.356,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901450"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-16T07:47:00","lat":36.3,"lon":-7.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900374"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-21T11:28:00","lat":25.6,"lon":-74.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-22T05:58:00","lat":25.6,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902061"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-03-11T15:56:00","lat":9.0066,"lon":-17.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902603"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-24T20:30:00","lat":25.2,"lon":-70.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902060"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2014-11-10T00:00:00","lat":10.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900889"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-07T18:25:00","lat":18.65,"lon":-17.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901003"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-08T14:00:00","lat":23.388,"lon":-18.48,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901416"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-11-29T21:37:00","lat":27.0,"lon":-77.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902066"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-11-29T14:01:00","lat":28.01,"lon":-78.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902069"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-12-02T00:00:00","lat":16.36,"lon":-77.39,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902067"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-12-03T00:00:00","lat":15.01,"lon":-80.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902070"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-29T00:00:00","lat":14.77,"lon":-27.0806,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901588"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-29T00:00:00","lat":14.7763,"lon":-20.4362,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901618"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-01-26T00:00:00","lat":26.3606,"lon":-19.0944,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901619"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-06T00:00:00","lat":37.2167,"lon":-12.9667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-16T00:00:00","lat":15.0663,"lon":-41.3313,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901622"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-10-22T00:00:00","lat":33.1008,"lon":-13.2169,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901623"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-01T00:00:00","lat":7.35,"lon":-35.9333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901624"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-05T00:00:00","lat":2.15,"lon":-37.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901626"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2014-12-10T00:00:00","lat":11.6198,"lon":-46.6125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901449"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-04T00:00:00","lat":17.0612,"lon":-36.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901505"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-06T00:00:00","lat":53.0241,"lon":-24.7524,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-05T00:00:00","lat":1.16,"lon":-84.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-28T00:00:00","lat":0.5,"lon":-84.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-30T00:00:00","lat":10.0,"lon":-24.386,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901709"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-30T00:00:00","lat":11.0,"lon":-23.9073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-01T00:00:00","lat":4.5,"lon":-27.0391,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-31T00:00:00","lat":8.5,"lon":-25.12,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901712"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-26T00:00:00","lat":17.0,"lon":-67.52,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901711"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-26T00:00:00","lat":16.32,"lon":-66.21,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901710"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-27T14:39:00","lat":46.3982,"lon":-6.5044,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902290"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-09T00:00:00","lat":56.252,"lon":-27.292,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-02-21T12:06:00","lat":12.0,"lon":-79.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902068"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-02-25T18:00:00","lat":17.224,"lon":-36.046,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901728"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-02-26T16:30:00","lat":15.995,"lon":-37.889,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901729"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-03-01T08:48:00","lat":13.42,"lon":-75.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902065"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-09T04:33:00","lat":36.0,"lon":-72.46,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902094"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-08T22:11:00","lat":35.5,"lon":-73.72,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902095"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-17T12:00:00","lat":8.001,"lon":-27.999,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902607"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-39.333,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902608"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-12T07:00:00","lat":7.499,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902606"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-08T15:00:00","lat":7.748,"lon":-40.749,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902610"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":7.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902611"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":10.999,"lon":-45.998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902612"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-34.997,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902613"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-15T15:30:00","lat":47.1316,"lon":-39.9998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901425"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-13T07:21:00","lat":47.3745,"lon":-35.9998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901424"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-05T15:45:00","lat":52.5831,"lon":-36.9336,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901423"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-06T16:23:00","lat":51.0,"lon":-34.8335,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901422"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-25T06:32:00","lat":36.2,"lon":-2.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-26T01:30:00","lat":35.96,"lon":-6.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900379"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-05T00:40:00","lat":16.0506,"lon":-39.121,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-13T16:07:00","lat":24.75,"lon":-32.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901718"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-15T16:30:00","lat":26.27,"lon":-18.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901620"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":11.0,"lon":-49.499,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902609"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-05-22T00:00:00","lat":31.88,"lon":-54.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901727"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-12-11T00:00:00","lat":20.5853,"lon":-54.9325,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901715"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2015-04-22T13:06:00","lat":52.34,"lon":-18.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901919"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-04T00:00:00","lat":20.0038,"lon":-82.9887,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901716"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2015-04-22T03:00:00","lat":53.06,"lon":-12.93,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901920"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-08-05T23:54:00","lat":61.83,"lon":-35.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-08-07T06:07:00","lat":62.81,"lon":-27.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900381"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-08-18T00:00:00","lat":35.0044,"lon":-12.0097,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902663"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-08-19T17:25:00","lat":32.9969,"lon":-12.0002,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902664"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2014-06-10T10:31:00","lat":58.2125,"lon":-29.732,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901627"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-03T08:53:00","lat":53.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902662"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-01T13:36:00","lat":28.72,"lon":-88.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902291"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-03T20:09:00","lat":60.2,"lon":-6.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900414"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-09-06T08:00:00","lat":31.279,"lon":-11.8797,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901672"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-06T17:05:00","lat":58.1667,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902661"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-05-01T00:00:00","lat":35.967,"lon":-12.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901239"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-18T12:35:00","lat":56.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900382"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-24T11:34:00","lat":60.0,"lon":-56.1167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-25T06:35:00","lat":57.0,"lon":-57.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-29T19:01:00","lat":35.0,"lon":-7.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-17T00:32:00","lat":20.9946,"lon":-83.1112,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901718"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-01T10:05:00","lat":20.8447,"lon":-79.8419,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901719"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-10T01:51:00","lat":26.1665,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-19T15:39:00","lat":27.0,"lon":-87.5045,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902098"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-15T00:00:00","lat":11.9975,"lon":-31.6348,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901731"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-11T00:00:00","lat":0.0038,"lon":-20.0247,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901806"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-28T00:00:00","lat":44.2553,"lon":-55.7927,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902099"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-15T00:00:00","lat":25.0,"lon":-88.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902295"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-23T00:00:00","lat":35.9,"lon":-6.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901520"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-10-02T12:00:00","lat":42.4596,"lon":-61.4543,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902636"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-27T12:00:00","lat":43.4734,"lon":-57.4731,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902635"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-26T12:00:00","lat":43.7661,"lon":-57.7741,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902634"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-27T12:00:00","lat":43.89,"lon":-57.3276,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902633"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-26T12:00:00","lat":43.7643,"lon":-57.7725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902632"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-09T17:30:00","lat":48.0036,"lon":-31.412,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901421"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-26T08:00:00","lat":12.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902615"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902614"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-25T12:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901909"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":75.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901912"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-10-29T00:00:00","lat":25.0075,"lon":-17.7464,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901665"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-11-13T00:00:00","lat":17.975,"lon":-17.8717,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902654"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-10-06T00:00:00","lat":16.8164,"lon":-28.2294,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902655"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-10-05T00:00:00","lat":16.7097,"lon":-27.838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901734"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2016-01-14T00:00:00","lat":65.85,"lon":-1.5833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903273"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2016-01-14T11:40:00","lat":65.85,"lon":-1.5833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903272"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-02-01T13:43:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901721"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-03-23T09:27:00","lat":0.04,"lon":-9.84,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902689"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-03-28T13:27:00","lat":0.01,"lon":-0.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902690"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-09T02:07:00","lat":30.28,"lon":-60.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902698"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-10T04:10:00","lat":31.9783,"lon":-63.8583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902699"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-13T11:21:00","lat":2.0,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902658"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-20T11:15:00","lat":30.7,"lon":-18.42,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902656"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-22T18:06:00","lat":34.01,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-06-26T20:57:00","lat":35.34,"lon":-30.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901845"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-09T03:45:00","lat":57.96,"lon":-29.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901755"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-11T12:00:00","lat":59.38,"lon":-36.39,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901760"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-11T12:00:00","lat":59.37,"lon":-36.39,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901762"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-12T01:30:00","lat":59.56,"lon":-38.32,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901753"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-07-31T09:09:00","lat":33.62,"lon":-24.15,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901841"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-14T07:00:00","lat":40.9,"lon":-17.53,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902710"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-07T10:42:00","lat":51.3,"lon":-45.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-07T18:43:00","lat":52.08,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902703"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-08T02:22:00","lat":52.83,"lon":-41.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902704"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-08T09:57:00","lat":53.5,"lon":-39.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902705"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-22T02:42:00","lat":56.72,"lon":-33.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-22T02:42:00","lat":56.72,"lon":-33.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901720"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-23T19:50:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901726"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-10-15T02:47:00","lat":14.34,"lon":-17.58,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900975"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-06-12T13:00:00","lat":74.117,"lon":-4.693,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901125"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-06-13T18:45:00","lat":74.99,"lon":-3.821,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901126"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2015-07-14T00:00:00","lat":38.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901247"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-04-19T00:53:00","lat":17.4998,"lon":-76.005,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901717"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-04-27T00:22:00","lat":19.0975,"lon":-76.9113,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901720"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2020-12-11T09:57:00","lat":29.172,"lon":-18.9825,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903074"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2020-12-11T09:30:00","lat":29.1694,"lon":-18.9773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-04-07T16:50:00","lat":6.0195,"lon":-39.5617,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903270"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-18T18:51:00","lat":23.8574,"lon":-41.0989,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903753"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-02T14:30:00","lat":28.2,"lon":-28.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901205"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-03T14:13:00","lat":25.72,"lon":-28.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901206"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-02T14:25:00","lat":28.2,"lon":-28.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901203"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2021-12-26T22:23:00","lat":8.55,"lon":-89.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-04T14:36:00","lat":20.07,"lon":-52.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-02T13:18:00","lat":24.13,"lon":-52.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-25T00:03:00","lat":40.17,"lon":-52.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906342"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-31T16:33:00","lat":27.61,"lon":-52.32,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-06T14:41:00","lat":15.97,"lon":-52.34,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906343"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-08T15:57:00","lat":11.91,"lon":-52.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-26T04:36:00","lat":16.55,"lon":-67.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-09T21:45:00","lat":34.78,"lon":-66.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-03T14:38:00","lat":23.86,"lon":-65.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906436"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-06T11:13:00","lat":28.91,"lon":-65.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-29T13:47:00","lat":31.73,"lon":-52.32,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-27T09:18:00","lat":35.89,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5906341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-06T21:30:00","lat":24.48,"lon":-39.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904639"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-21T06:38:00","lat":53.42,"lon":-41.95,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904771"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-19T05:19:00","lat":56.23,"lon":-45.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904772"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-23T04:14:00","lat":49.63,"lon":-44.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904773"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-28T00:45:00","lat":47.12,"lon":-38.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904774"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2017-09-20T14:50:00","lat":5.0917,"lon":-26.1683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5905148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-02T04:22:00","lat":24.52,"lon":-50.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904665"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-27T14:19:00","lat":24.5,"lon":-62.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904667"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-04T20:03:00","lat":24.54,"lon":-44.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904664"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-30T18:24:00","lat":24.48,"lon":-55.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904666"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-31T12:23:00","lat":45.05,"lon":-43.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-28T09:42:00","lat":45.97,"lon":-40.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904770"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904104"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904101"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904102"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904103"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-15T13:48:00","lat":58.55,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902750"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-16T00:24:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902754"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-09-01T10:00:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902786"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-15T10:00:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902791"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-15T10:00:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902787"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T14:42:00","lat":38.88,"lon":-35.67,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902107"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T04:48:00","lat":39.21,"lon":-38.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902105"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T11:10:00","lat":39.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902106"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-23T15:37:00","lat":25.0,"lon":-69.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904669"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2021-10-14T08:10:00","lat":55.816,"lon":-9.8339,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903761"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2021-10-15T13:19:00","lat":55.3664,"lon":-10.9339,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903760"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-17T18:27:00","lat":57.36,"lon":-10.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901200"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-16T17:07:00","lat":57.23,"lon":-10.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901199"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-23T20:10:00","lat":59.4,"lon":-18.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901202"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-24T14:49:00","lat":60.25,"lon":-19.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901201"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-01-31T19:49:00","lat":24.5004,"lon":-67.6679,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903718"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-02T14:02:00","lat":24.5021,"lon":-63.9976,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903719"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-04T00:10:00","lat":24.4999,"lon":-61.0667,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903720"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-06T22:43:00","lat":24.4996,"lon":-55.1986,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903721"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-03-24T09:10:00","lat":36.3718,"lon":-13.5379,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903717"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T20:00:00","lat":59.4,"lon":-20.4,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903325"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-02T15:15:00","lat":58.9708,"lon":-32.0897,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902755"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-01T17:50:00","lat":58.5467,"lon":-30.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902751"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-05-29T14:40:00","lat":21.2022,"lon":-20.9288,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901253"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-03-26T00:00:00","lat":13.69,"lon":-29.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901272"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-12-11T00:00:00","lat":32.73,"lon":-10.56,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901273"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-03-04T00:00:00","lat":30.24,"lon":-12.13,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901274"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2018-08-11T05:19:00","lat":67.9729,"lon":-59.4995,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902432"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-03-27T20:10:00","lat":55.0497,"lon":-13.5762,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901930"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-15T19:59:00","lat":34.0108,"lon":-60.0018,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901655"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-15T15:51:00","lat":27.0,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-14T14:00:00","lat":0.01,"lon":-85.01,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T02:00:00","lat":1.01,"lon":-85.02,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901262"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T07:00:00","lat":0.52,"lon":-85.03,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901263"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T13:00:00","lat":0.02,"lon":-85.04,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901264"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-06-27T04:35:00","lat":0.02,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901820"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-07T12:56:00","lat":33.99,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902108"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-03-07T18:22:00","lat":35.0,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-06T13:06:00","lat":31.79,"lon":-75.43,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902110"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-07T04:52:00","lat":33.01,"lon":-74.43,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-06-18T05:00:00","lat":31.61,"lon":-64.26,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902112"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-04-18T03:00:00","lat":31.77,"lon":-63.64,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-05-07T03:30:00","lat":31.67,"lon":-64.15,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902114"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-24T21:28:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902115"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T06:48:00","lat":58.26,"lon":-28.88,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-08T04:46:00","lat":57.96,"lon":-23.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902117"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-08T15:45:00","lat":58.0,"lon":-24.41,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902118"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-10T12:09:00","lat":57.97,"lon":-25.74,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902119"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T21:45:00","lat":28.42,"lon":-70.95,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T04:09:00","lat":35.4,"lon":-47.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902121"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-18T17:39:00","lat":37.07,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902122"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T10:26:00","lat":35.77,"lon":-45.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902337"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T16:46:00","lat":36.1,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902338"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-18T08:29:00","lat":36.78,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T23:01:00","lat":36.39,"lon":-41.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T14:09:00","lat":27.52,"lon":-73.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T11:07:00","lat":35.4317,"lon":-73.9933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T09:40:00","lat":35.2883,"lon":-73.785,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903049"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T15:09:00","lat":35.5983,"lon":-74.1317,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903048"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-26T21:27:00","lat":28.3985,"lon":-65.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903050"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-27T10:54:00","lat":29.2874,"lon":-68.0165,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-26T08:16:00","lat":27.5072,"lon":-62.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903051"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-20T18:25:00","lat":18.696,"lon":-32.9975,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903052"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-10T05:12:00","lat":20.6263,"lon":-39.9985,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903218"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-07T19:45:00","lat":24.0282,"lon":-51.018,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-22T19:22:00","lat":21.9894,"lon":-43.0129,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903053"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-14T20:52:00","lat":20.4317,"lon":-23.1257,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-12T11:47:00","lat":20.2002,"lon":-31.9985,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903216"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-20T07:57:00","lat":17.9625,"lon":-30.9949,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-19T22:07:00","lat":17.0335,"lon":-29.0088,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-21T04:35:00","lat":19.5329,"lon":-35.0191,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903217"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-21T14:36:00","lat":20.2442,"lon":-37.0111,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903055"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-16T23:08:00","lat":12.9948,"lon":-23.0004,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-13T08:52:00","lat":20.3323,"lon":-28.0084,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903221"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-06T23:52:00","lat":25.2366,"lon":-55.0145,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-17T07:24:00","lat":11.9999,"lon":-22.9974,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903211"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-08T06:24:00","lat":23.4087,"lon":-48.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903214"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-11T20:28:00","lat":20.0995,"lon":-34.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903213"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-07T09:16:00","lat":24.3852,"lon":-53.014,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-19T11:56:00","lat":16.1675,"lon":-27.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903212"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-23T03:40:00","lat":22.4502,"lon":-45.0109,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903054"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-15T03:03:00","lat":27.3,"lon":-86.79,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903239"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-30T06:35:00","lat":0.5,"lon":-38.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902169"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-29T10:38:00","lat":27.31,"lon":-27.8,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903248"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-27T23:42:00","lat":26.23,"lon":-86.81,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903251"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-30T13:25:00","lat":25.7,"lon":-87.41,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903253"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-10-02T18:23:00","lat":26.22,"lon":-88.05,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903254"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2019-08-30T15:00:00","lat":0.5,"lon":-38.5,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902163"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-01-18T13:00:00","lat":14.83,"lon":-51.28,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903225"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-01-08T22:55:00","lat":13.92,"lon":-55.05,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903224"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-08T19:06:00","lat":31.6194,"lon":-64.1693,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903042"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-30T00:28:00","lat":1.4979,"lon":-39.236,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902167"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-24T08:00:00","lat":7.7,"lon":-49.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903229"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-23T04:30:00","lat":10.2283,"lon":-54.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903226"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-25T02:00:00","lat":6.1967,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903230"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-23T16:00:00","lat":9.2317,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-22T18:00:00","lat":11.245,"lon":-56.0083,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903227"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-27T11:30:00","lat":1.0588,"lon":-35.993,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2020-02-27T16:59:00","lat":0.25,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902162"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-01T14:26:00","lat":25.698,"lon":-87.422,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903276"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2020-10-02T20:01:00","lat":25.7,"lon":-86.82,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-02T01:18:00","lat":25.1648,"lon":-87.429,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903278"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-02T09:02:00","lat":25.146,"lon":-86.841,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903277"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-11-28T00:56:00","lat":38.13,"lon":-40.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903280"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-11-27T16:17:00","lat":37.17,"lon":-44.02,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903329"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-19T16:29:00","lat":21.78,"lon":-64.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902299"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-20T04:54:00","lat":21.19,"lon":-62.18,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903333"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-22T21:37:00","lat":18.39,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-23T09:57:00","lat":18.73,"lon":-47.49,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902300"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-23T21:44:00","lat":19.06,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903337"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-24T09:40:00","lat":19.39,"lon":-42.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903335"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-14T22:33:00","lat":15.0115,"lon":-38.0097,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902301"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-17T03:36:00","lat":17.9827,"lon":-47.9932,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902302"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-13T06:04:00","lat":10.4007,"lon":-34.3268,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-12T16:12:00","lat":8.17,"lon":-32.542,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903332"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-14T02:36:00","lat":13.4692,"lon":-36.7545,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903334"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-16T03:35:00","lat":16.7942,"lon":-44.0042,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903336"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-05T23:50:00","lat":17.13,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903342"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-01T06:20:00","lat":26.46,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-06T21:32:00","lat":15.65,"lon":-51.45,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903352"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-05T03:35:00","lat":18.89,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903338"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-09T04:20:00","lat":10.71,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-07T11:04:00","lat":15.39,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-08T00:42:00","lat":13.06,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903343"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-15T23:11:00","lat":26.8217,"lon":-87.4292,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903353"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-16T08:35:00","lat":26.764,"lon":-88.0643,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903354"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-20T23:03:00","lat":47.6667,"lon":-34.9667,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903357"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-21T13:20:00","lat":48.7,"lon":-29.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-16T21:38:00","lat":26.2372,"lon":-88.6302,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903356"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2021-05-12T10:45:00","lat":27.3497,"lon":-87.3592,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903355"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-08T22:56:00","lat":53.4918,"lon":-46.2058,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-09T19:23:00","lat":56.0047,"lon":-43.5805,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-11T01:35:00","lat":29.31,"lon":-45.91,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-09T21:30:00","lat":18.23,"lon":-37.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1900985"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2015-06-14T17:45:00","lat":56.73,"lon":-37.55,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901628"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T21:15:00","lat":53.4157,"lon":-16.351,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901929"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-03-21T11:55:00","lat":53.11,"lon":-15.59,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901921"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-04-14T20:20:00","lat":48.56,"lon":-39.56,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901922"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-04-09T23:07:00","lat":52.59,"lon":-15.59,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901923"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-12-01T01:22:00","lat":17.8228,"lon":-20.6045,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900560"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-11-24T23:37:00","lat":14.5384,"lon":-25.1726,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900559"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-12-01T01:26:00","lat":17.8243,"lon":-20.6055,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900561"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-23T03:25:00","lat":45.0558,"lon":-18.5042,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901763"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-02-11T09:18:00","lat":53.28,"lon":-16.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901925"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T11:39:00","lat":53.0013,"lon":-15.3096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901927"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T15:29:00","lat":53.41,"lon":-16.351,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901928"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-05T19:59:00","lat":24.71,"lon":-21.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901197"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-05-20T00:00:00","lat":48.53,"lon":-13.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901926"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-10T15:10:00","lat":39.8781,"lon":-19.781,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901265"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-19T07:47:00","lat":35.8532,"lon":-6.9428,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901255"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-17T19:29:00","lat":35.9992,"lon":-6.8644,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901264"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-08-18T16:56:00","lat":37.2062,"lon":-0.7575,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901270"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-30T11:30:00","lat":26.2235,"lon":-16.3324,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901271"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-23T00:00:00","lat":29.1663,"lon":-15.501,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901254"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-02-07T00:00:00","lat":35.84,"lon":-6.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901263"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2015-03-03T00:00:00","lat":29.17,"lon":-18.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901246"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-18T19:59:00","lat":36.2939,"lon":-7.2271,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901260"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-13T14:33:00","lat":45.2063,"lon":-19.8744,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901266"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-16T11:12:00","lat":50.1993,"lon":-19.8811,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901269"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-01T16:48:00","lat":25.3212,"lon":-20.7245,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901256"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-08T00:00:00","lat":35.188,"lon":-20.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901262"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-04T21:34:00","lat":30.114,"lon":-20.076,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901258"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2015-06-02T15:30:00","lat":48.81,"lon":-68.24,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901789"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-08T11:57:00","lat":56.12,"lon":-53.12,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901817"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-08T22:06:00","lat":56.55,"lon":-52.71,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902383"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-14T03:59:00","lat":57.59,"lon":-51.56,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902386"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-14T07:53:00","lat":57.38,"lon":-51.77,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901809"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-13T06:48:00","lat":58.64,"lon":-50.44,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902384"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-04-23T11:28:00","lat":43.77,"lon":-57.84,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901812"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-04-23T11:24:00","lat":43.77,"lon":-57.85,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901813"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-09-01T10:00:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902790"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T22:39:00","lat":42.0317,"lon":-61.0698,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902454"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T05:58:00","lat":42.4717,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902453"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-28T05:58:00","lat":43.4798,"lon":-57.5328,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902441"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-03T17:05:00","lat":43.7341,"lon":-55.8607,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902455"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-03T22:49:00","lat":43.434,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902456"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-04T06:20:00","lat":43.0198,"lon":-55.8404,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902442"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T02:13:00","lat":43.0202,"lon":-59.1096,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902500"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T05:21:00","lat":43.2156,"lon":-58.3093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902503"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T22:36:00","lat":42.7485,"lon":-59.9938,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902524"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-21T22:48:00","lat":43.4756,"lon":-57.5268,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902467"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-21T22:41:00","lat":43.4738,"lon":-57.5267,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902470"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T16:46:00","lat":42.2114,"lon":-61.1953,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902440"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T03:54:00","lat":56.1384,"lon":-53.1502,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902510"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T13:58:00","lat":56.5554,"lon":-52.712,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902505"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T23:01:00","lat":56.9554,"lon":-52.2345,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902509"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-02T15:07:00","lat":57.7961,"lon":-51.3471,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902511"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-03T16:41:00","lat":58.6267,"lon":-50.3879,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902504"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-07T18:26:00","lat":59.9989,"lon":-51.7501,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902507"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T15:46:00","lat":59.1515,"lon":-53.1843,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902512"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T02:15:00","lat":42.41,"lon":-49.5,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901828"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T09:23:00","lat":42.08,"lon":-49.26,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902381"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T15:03:00","lat":41.72,"lon":-48.94,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902382"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T20:24:00","lat":58.95,"lon":-54.49,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902395"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T11:02:00","lat":57.5942,"lon":-52.6133,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902396"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T17:50:00","lat":58.7709,"lon":-55.7111,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902397"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T06:17:00","lat":58.0218,"lon":-52.8707,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902400"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T01:25:00","lat":58.605,"lon":-53.6317,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902409"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T08:39:00","lat":57.967,"lon":-51.7423,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902410"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T03:50:00","lat":58.0761,"lon":-54.0077,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T23:08:00","lat":59.1283,"lon":-53.2551,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T13:30:00","lat":57.2197,"lon":-53.4909,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902416"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T16:13:00","lat":56.8434,"lon":-54.3709,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902419"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T19:31:00","lat":56.7461,"lon":-52.4378,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902421"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-08-08T22:46:00","lat":41.7,"lon":-62.16,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901827"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-22T03:02:00","lat":42.03,"lon":-61.07,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901814"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-21T14:28:00","lat":41.83,"lon":-60.89,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901816"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-21T05:36:00","lat":41.43,"lon":-60.66,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901815"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-09T08:01:00","lat":56.97,"lon":-52.28,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902385"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T01:08:00","lat":56.9697,"lon":-52.2495,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902423"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T16:05:00","lat":57.1694,"lon":-51.9899,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902425"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T16:15:00","lat":57.8074,"lon":-51.3526,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902422"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T09:22:00","lat":57.9999,"lon":-51.0602,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902438"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T22:45:00","lat":58.1978,"lon":-50.8502,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902424"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T03:53:00","lat":56.1077,"lon":-53.1204,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902468"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2016-05-08T17:22:00","lat":56.33,"lon":-52.9,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902387"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T10:22:00","lat":56.5473,"lon":-52.6928,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902481"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T17:15:00","lat":56.9795,"lon":-52.2464,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902487"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-13T21:55:00","lat":57.8077,"lon":-51.3965,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902469"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-14T17:11:00","lat":58.6214,"lon":-50.4223,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902478"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-18T19:29:00","lat":60.0046,"lon":-52.3494,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902471"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T02:31:00","lat":59.5099,"lon":-53.0656,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902477"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T08:20:00","lat":59.0057,"lon":-53.156,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902479"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T13:29:00","lat":58.512,"lon":-53.2496,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902480"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T00:00:00","lat":58.0101,"lon":-53.3472,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902488"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-04-26T02:32:00","lat":16.5397,"lon":-67.3468,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902533"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-04-26T02:37:00","lat":16.5397,"lon":-67.3469,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902534"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-22T04:43:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902394"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-26T04:46:00","lat":43.47,"lon":-57.52,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902391"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-26T04:51:00","lat":43.47,"lon":-57.52,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902392"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-22T04:39:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902393"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T19:43:00","lat":42.5683,"lon":-60.6801,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902501"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T17:18:00","lat":42.3853,"lon":-61.2839,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902523"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T12:59:00","lat":43.4682,"lon":-57.4924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902502"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T01:54:00","lat":59.9987,"lon":-52.4068,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902508"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T23:50:00","lat":58.5034,"lon":-53.2477,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902506"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2018-07-23T15:50:00","lat":64.6588,"lon":-59.7889,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902433"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-08-11T09:05:00","lat":57.46,"lon":-53.57,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902412"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-10T17:52:00","lat":45.0,"lon":-46.94,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902398"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-10T22:35:00","lat":45.0,"lon":-45.2,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902399"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T13:40:00","lat":56.341,"lon":-40.7917,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902450"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T09:00:00","lat":57.4451,"lon":-39.0691,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902451"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T19:50:00","lat":54.7064,"lon":-43.4691,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902452"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-09-15T21:56:00","lat":56.2792,"lon":-50.2817,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902489"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-09-15T17:09:00","lat":57.1735,"lon":-49.523,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902495"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2017-07-25T14:03:00","lat":57.51,"lon":-59.79,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902426"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-28T01:02:00","lat":47.0005,"lon":-42.999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902496"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-28T01:06:00","lat":47.0003,"lon":-42.9992,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902497"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-22T04:46:00","lat":46.9999,"lon":-42.4908,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902527"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-21T23:53:00","lat":47.0009,"lon":-41.999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902528"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-19T13:49:00","lat":42.0826,"lon":-49.2709,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902457"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-26T05:55:00","lat":42.012,"lon":-49.2682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902498"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-26T05:58:00","lat":42.0818,"lon":-49.2687,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902499"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-19T23:51:00","lat":42.0817,"lon":-49.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902525"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-19T19:15:00","lat":41.7064,"lon":-48.9377,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902458"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-20T04:52:00","lat":41.6998,"lon":-48.9473,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902526"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-20T00:05:00","lat":41.3377,"lon":-48.6585,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902466"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-20T09:40:00","lat":41.3327,"lon":-48.6704,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902529"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-09T21:48:00","lat":44.09,"lon":-54.64,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902390"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-08-14T10:57:00","lat":55.9032,"lon":-54.7498,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902448"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-08-15T06:28:00","lat":58.316,"lon":-57.8332,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902449"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-11T22:20:00","lat":8.9484,"lon":-87.8421,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902476"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-05T11:00:00","lat":24.5018,"lon":-58.1322,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2016-10-21T14:37:00","lat":20.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902741"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-09-26T00:21:00","lat":14.66,"lon":-50.73,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903075"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-08-18T00:00:00","lat":20.5,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-08-17T09:47:00","lat":19.5,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903072"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-09-26T00:00:00","lat":14.15,"lon":-51.05,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903076"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2021-04-12T03:20:00","lat":49.258,"lon":-14.5013,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903756"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-22T01:57:00","lat":24.92,"lon":-56.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901195"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-16T16:08:00","lat":23.98,"lon":-44.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901196"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-02-17T01:53:00","lat":24.05,"lon":-46.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901198"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-30T00:00:00","lat":39.42,"lon":-39.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902104"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-30T00:00:00","lat":39.63,"lon":-41.01,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902103"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-29T04:00:00","lat":47.1,"lon":-42.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902643"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-28T12:35:00","lat":47.12,"lon":-40.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902644"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-21T07:49:00","lat":47.45,"lon":-34.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902645"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-20T06:28:00","lat":47.63,"lon":-31.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902646"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-13T08:34:00","lat":47.92,"lon":-25.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902648"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-07T06:29:00","lat":48.52,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902649"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-04-29T07:31:00","lat":36.08,"lon":-6.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2902402"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-13T20:51:00","lat":47.83,"lon":-27.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902647"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-05-29T21:28:00","lat":22.97,"lon":-48.73,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901840"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-05-29T17:54:00","lat":63.83,"lon":-27.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-18T01:54:00","lat":56.34,"lon":-46.04,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903102"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-29T01:30:00","lat":44.05,"lon":-46.04,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903100"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-24T01:50:00","lat":47.65,"lon":-39.19,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903101"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-12T08:28:00","lat":61.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901189"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-13T02:30:00","lat":60.0,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-13T02:44:00","lat":59.99,"lon":-19.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901191"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-06-25T09:07:00","lat":31.95,"lon":-36.28,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901839"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-06-07T17:35:00","lat":58.56,"lon":-52.84,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901801"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-09T12:24:00","lat":69.33,"lon":-60.22,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902668"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-07-09T07:37:00","lat":69.5,"lon":-61.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901802"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-07-09T06:00:00","lat":69.32,"lon":-60.98,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901803"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-09T02:07:00","lat":69.5,"lon":-60.15,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902667"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-18T11:15:00","lat":58.99,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-18T19:00:00","lat":58.53,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901724"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-29T15:55:00","lat":55.41,"lon":-12.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901871"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-23T20:03:00","lat":71.72,"lon":-6.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901872"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-08-03T14:06:00","lat":59.23,"lon":-39.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901194"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-09T03:21:00","lat":31.57,"lon":-39.46,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901856"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-11T20:37:00","lat":64.07,"lon":-5.87,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901862"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-12T08:51:00","lat":66.33,"lon":-7.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901863"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-07-11T00:35:00","lat":57.96,"lon":-27.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-07-11T00:35:00","lat":57.96,"lon":-27.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901193"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-12T22:19:00","lat":23.8,"lon":-50.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901857"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-14T02:05:00","lat":21.18,"lon":-54.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901858"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-01T14:22:00","lat":17.45,"lon":-64.38,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901859"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-08-23T09:41:00","lat":13.07,"lon":-20.36,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901838"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-23T10:52:00","lat":73.0,"lon":-5.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901875"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-05T16:27:00","lat":17.35,"lon":-64.23,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901860"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-04T04:45:00","lat":67.99,"lon":-4.99,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901873"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-06T11:14:00","lat":15.28,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901861"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-08-20T01:06:00","lat":31.67,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902345"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-18T16:35:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901602"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-20T02:20:00","lat":41.42,"lon":-60.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901603"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-19T19:26:00","lat":41.78,"lon":-60.91,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901604"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-04T09:35:00","lat":67.0,"lon":-2.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-04T08:19:00","lat":67.51,"lon":-3.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901589"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-08-22T20:02:00","lat":75.0,"lon":-2.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901590"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-08-23T03:31:00","lat":74.0,"lon":-3.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901591"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-22T04:42:00","lat":43.48,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901601"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-22T10:53:00","lat":43.8,"lon":-57.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-20T02:22:00","lat":41.42,"lon":-60.68,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-19T05:17:00","lat":42.2,"lon":-61.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902346"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-22T04:40:00","lat":43.47,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-22T19:30:00","lat":31.63,"lon":-64.11,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902344"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2016-11-01T18:45:00","lat":29.17,"lon":-18.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901248"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-10-21T05:30:00","lat":31.7,"lon":-64.1,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902343"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-12T11:34:00","lat":14.45,"lon":-45.03,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902714"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-12-29T10:51:00","lat":14.32,"lon":-61.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902713"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-12-29T20:56:00","lat":38.44,"lon":-10.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901909"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-01-02T21:27:00","lat":13.53,"lon":-71.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902712"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-02-14T17:38:00","lat":6.14,"lon":-25.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900507"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-01-30T13:10:00","lat":16.14,"lon":-30.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902711"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-02-10T17:12:00","lat":53.51,"lon":-15.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901924"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-02T08:50:00","lat":1.02,"lon":-23.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902761"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-03-15T10:54:00","lat":20.19,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901235"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-03-14T21:05:00","lat":20.28,"lon":-28.97,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901236"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-25T00:05:00","lat":0.06,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902720"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-25T00:28:00","lat":0.06,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-03-25T09:24:00","lat":24.23,"lon":-36.43,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902768"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-03-28T10:26:00","lat":20.33,"lon":-49.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T12:00:00","lat":62.0,"lon":-2.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T11:36:00","lat":61.51,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T15:05:00","lat":66.9,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900430"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-30T20:02:00","lat":7.0,"lon":-18.57,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-17T23:00:00","lat":35.56,"lon":-74.13,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902912"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-12T04:30:00","lat":31.77,"lon":-64.15,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902354"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-23T12:28:00","lat":35.28,"lon":-73.79,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902913"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-05-10T15:26:00","lat":0.0,"lon":-28.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901898"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-17T18:16:00","lat":35.69,"lon":-74.35,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-25T02:40:00","lat":34.9,"lon":-74.82,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902911"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-05-13T22:30:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902355"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-06T08:47:00","lat":48.52,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901624"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-11T17:27:00","lat":47.93,"lon":-26.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901625"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-12T19:06:00","lat":47.67,"lon":-31.14,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901626"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-14T15:31:00","lat":47.33,"lon":-36.41,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-13T23:22:00","lat":47.48,"lon":-34.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-17T00:28:00","lat":47.09,"lon":-40.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901629"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-18T18:31:00","lat":47.09,"lon":-42.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901630"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-12T07:28:00","lat":6.96,"lon":-23.97,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-11T01:00:00","lat":1.49,"lon":-18.26,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901820"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-10T17:23:00","lat":0.0,"lon":-16.72,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901821"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-11T20:52:00","lat":5.04,"lon":-21.95,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-15T11:30:00","lat":31.66,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902909"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-06-07T11:15:00","lat":20.07,"lon":-60.16,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902746"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-06-07T21:11:00","lat":22.0,"lon":-59.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902757"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-07T18:56:00","lat":25.99,"lon":-58.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902772"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-19T01:40:00","lat":56.6856,"lon":-36.8295,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-13T18:14:00","lat":17.92,"lon":-82.47,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902943"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-13T17:36:00","lat":18.78,"lon":-80.19,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903002"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-09T15:45:00","lat":56.53,"lon":-35.02,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902805"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2017-07-20T10:11:00","lat":69.38,"lon":-60.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901804"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2017-07-20T09:46:00","lat":69.37,"lon":-60.45,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901805"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T02:53:00","lat":72.46,"lon":-67.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902666"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-20T11:19:00","lat":69.37,"lon":-60.36,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902669"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-20T10:23:00","lat":69.38,"lon":-60.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902670"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T02:10:00","lat":72.56,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902671"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T03:12:00","lat":72.76,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-07-21T00:30:00","lat":31.52,"lon":-63.62,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902910"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-16T22:23:00","lat":12.38,"lon":-38.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901597"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-19T19:34:00","lat":11.79,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901635"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-07T08:34:00","lat":24.02,"lon":-59.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902771"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-14T09:42:00","lat":58.93,"lon":-23.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902694"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-02T05:48:00","lat":44.4959,"lon":-31.6724,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902783"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-01T22:34:00","lat":43.44,"lon":-32.03,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902785"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-24T20:50:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902807"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-28T18:01:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902686"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-24T16:03:00","lat":11.46,"lon":-22.86,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901634"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-27T21:59:00","lat":20.66,"lon":-21.53,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901622"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-27T18:45:00","lat":72.95,"lon":-14.66,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902728"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-26T03:18:00","lat":71.34,"lon":-17.77,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902730"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-06T14:17:00","lat":56.74,"lon":-33.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901603"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-06T14:18:00","lat":56.74,"lon":-33.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902810"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-09T14:47:00","lat":52.73,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902811"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-09T14:50:00","lat":52.73,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902812"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-11T08:05:00","lat":51.06,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902819"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-01T10:00:00","lat":58.55,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902749"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-01T10:00:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902753"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-09-02T10:00:00","lat":22.99,"lon":-17.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901636"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-20T13:18:00","lat":44.39,"lon":-15.7633,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901943"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-20T11:55:00","lat":36.2983,"lon":-13.1633,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901942"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-22T08:16:00","lat":39.5676,"lon":-25.2586,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901944"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-14T18:00:00","lat":15.65,"lon":-79.86,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903003"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-14T16:00:00","lat":15.49,"lon":-72.92,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903006"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-16T03:30:00","lat":75.89,"lon":-6.84,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902725"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-19T06:01:00","lat":78.94,"lon":-3.11,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902726"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-28T05:30:00","lat":40.2173,"lon":-21.5348,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901951"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-05T06:15:00","lat":19.8,"lon":-29.92,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901952"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-05T14:00:00","lat":18.7857,"lon":-29.6822,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901953"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-09T13:55:00","lat":6.8803,"lon":-26.686,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901954"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-15T15:12:00","lat":37.4374,"lon":-42.8075,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902919"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2017-10-15T20:57:00","lat":37.6398,"lon":-40.9977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902918"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-16T03:20:00","lat":37.8061,"lon":-38.9984,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902920"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-16T09:33:00","lat":37.9458,"lon":-37.0013,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902921"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-11-04T07:20:00","lat":40.3248,"lon":-11.5367,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901945"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-11-03T18:19:00","lat":36.04,"lon":-6.79,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900432"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-09T00:00:00","lat":37.511,"lon":-18.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-26T22:04:00","lat":10.0022,"lon":-38.018,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902748"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-28T17:59:00","lat":7.0009,"lon":-38.0221,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902747"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T22:04:00","lat":42.4813,"lon":-61.4172,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901637"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T23:00:00","lat":42.4764,"lon":-61.4296,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901641"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T23:05:00","lat":42.4789,"lon":-61.432,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901640"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T06:04:00","lat":43.4757,"lon":-57.5274,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T06:19:00","lat":43.4754,"lon":-57.528,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901639"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T22:54:00","lat":43.7976,"lon":-57.8297,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901638"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-12-03T01:02:00","lat":0.045,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902744"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-17T12:30:00","lat":4.2325,"lon":-25.3088,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-16T23:00:00","lat":5.993,"lon":-27.3852,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902180"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-15T17:30:00","lat":1.0,"lon":-23.478,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902342"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-12-25T13:20:00","lat":24.5326,"lon":-20.426,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901972"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-17T15:15:00","lat":7.9867,"lon":-29.3438,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902181"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-01-21T19:40:00","lat":3.8082,"lon":-27.332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-24T19:14:00","lat":34.9983,"lon":-45.0567,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-12T07:50:00","lat":35.6365,"lon":-74.1077,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903035"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-12T11:30:00","lat":35.7528,"lon":-74.2,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902927"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-19T20:00:00","lat":35.2818,"lon":-74.7526,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903036"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-17T03:29:00","lat":34.7506,"lon":-75.2569,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902928"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-25T07:04:00","lat":33.9853,"lon":-49.8025,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901658"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-25T22:40:00","lat":32.8533,"lon":-54.985,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-26T16:47:00","lat":32.375,"lon":-60.0533,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901656"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T02:15:00","lat":14.0497,"lon":-69.9363,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901979"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-07T13:32:00","lat":16.067,"lon":-69.3668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901985"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T02:18:00","lat":14.0507,"lon":-69.9365,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901986"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T13:39:00","lat":14.7333,"lon":-69.7933,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901987"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-02-28T03:15:00","lat":70.649,"lon":-15.597,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901988"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-03-20T18:11:00","lat":0.0182,"lon":-0.0542,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902724"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2017-10-08T06:42:00","lat":10.8698,"lon":-27.618,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902122"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2017-10-09T05:13:00","lat":7.7334,"lon":-26.8833,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902123"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-03-29T14:25:00","lat":0.0156,"lon":-9.8608,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902132"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-04-10T12:00:00","lat":29.2,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902126"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-19T07:00:00","lat":20.2942,"lon":-27.8345,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902184"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-20T14:30:00","lat":20.332,"lon":-23.1347,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902208"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-17T12:00:00","lat":20.0792,"lon":-36.0137,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902209"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-21T05:00:00","lat":18.2013,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902207"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-13T08:37:00","lat":48.5164,"lon":-14.9984,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901666"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-20T10:03:00","lat":47.4259,"lon":-34.4861,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901663"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-19T07:57:00","lat":47.6619,"lon":-31.1516,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901664"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-04-15T10:00:00","lat":58.5467,"lon":-30.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902756"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-23T07:59:00","lat":47.0378,"lon":-40.9407,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901662"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-24T23:32:00","lat":47.1005,"lon":-42.5907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901661"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-16T10:05:00","lat":34.0033,"lon":-54.935,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901654"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-02T14:01:00","lat":53.7192,"lon":-50.3549,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902420"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-02T19:49:00","lat":54.2183,"lon":-49.7826,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902439"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-02T11:05:00","lat":0.034,"lon":-42.2935,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901982"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-05-08T15:52:00","lat":55.138,"lon":-44.0013,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901665"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-05-07T15:14:00","lat":56.0587,"lon":-48.0618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901660"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-08T15:06:00","lat":0.7678,"lon":-41.0492,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901980"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-19T07:02:00","lat":1.45,"lon":-34.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901921"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2018-05-30T11:18:00","lat":35.84,"lon":-2.21,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T11:08:00","lat":50.1293,"lon":-47.5821,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902796"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-30T07:16:00","lat":57.0034,"lon":-27.8811,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902869"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:47:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902864"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:59:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902865"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:50:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902862"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T13:06:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902863"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-01T01:26:00","lat":53.41,"lon":-50.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901669"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-05-29T01:21:00","lat":74.5,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903545"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-05-29T06:37:00","lat":74.08,"lon":-3.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903546"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-06-08T19:26:00","lat":31.0,"lon":-16.4875,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901932"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T08:04:00","lat":50.6334,"lon":-47.5762,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902794"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T09:38:00","lat":50.43,"lon":-47.5815,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902795"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-12T07:48:00","lat":58.6254,"lon":-51.8745,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901667"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-12T07:48:00","lat":58.6252,"lon":-51.8749,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901668"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-01T18:11:00","lat":58.5452,"lon":-30.1803,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902868"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-27T16:47:00","lat":52.5175,"lon":-24.3607,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902806"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-02T20:25:00","lat":58.9679,"lon":-32.099,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902800"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902881"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-04T06:47:00","lat":59.3648,"lon":-36.4123,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901601"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-04T06:47:00","lat":59.3648,"lon":-36.4123,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902818"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902752"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-17T01:30:00","lat":69.29,"lon":-60.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902896"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-07-20T08:19:00","lat":36.9044,"lon":-27.7112,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901970"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-07-23T09:15:00","lat":29.106,"lon":-41.0321,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901971"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-07-12T12:00:00","lat":58.0045,"lon":-12.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901208"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-07-16T12:00:00","lat":59.2066,"lon":-35.373,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901207"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-05T08:50:00","lat":72.361,"lon":-16.6102,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-04T16:02:00","lat":71.7613,"lon":-12.147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902911"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-05T10:47:00","lat":72.1132,"lon":-17.2422,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902912"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-08-25T13:07:00","lat":43.0002,"lon":-15.4001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902127"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-08-26T05:35:00","lat":6.145,"lon":-51.6417,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901984"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-09-08T10:41:00","lat":26.996,"lon":-24.8784,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901989"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T21:56:00","lat":63.48,"lon":-14.42,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T18:49:00","lat":50.46,"lon":-22.36,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900670"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-02T10:21:00","lat":23.727,"lon":-38.0012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901213"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-05T12:37:00","lat":23.871,"lon":-43.5005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901212"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-06T14:13:00","lat":23.128,"lon":-49.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901211"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-12T11:37:00","lat":24.6738,"lon":-62.7458,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901214"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-09T15:59:00","lat":25.3628,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901552"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-13T21:47:00","lat":25.8742,"lon":-68.0817,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-07T00:00:00","lat":69.61,"lon":-9.43,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-07T00:00:00","lat":68.72,"lon":-22.06,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":64.15,"lon":-29.38,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900442"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":67.33,"lon":-12.47,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-29T00:00:00","lat":36.29,"lon":-7.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903329"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-13T00:00:00","lat":66.06,"lon":-4.24,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-07T00:00:00","lat":66.86,"lon":-7.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-09-24T00:00:00","lat":27.02,"lon":-73.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902975"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-10-26T00:00:00","lat":29.59,"lon":-74.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903001"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-10-27T00:00:00","lat":28.26,"lon":-75.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903004"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-09-22T00:00:00","lat":29.35,"lon":-72.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903005"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-06-27T00:00:00","lat":26.98,"lon":-75.77,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902974"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":25.95,"lon":-89.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903067"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-10T00:00:00","lat":21.665,"lon":-84.196,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903066"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-17T00:00:00","lat":59.75,"lon":-8.87,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903327"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-19T00:00:00","lat":58.75,"lon":-15.49,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903328"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T13:15:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902884"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-11-27T00:00:00","lat":3.0106,"lon":-14.5108,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900509"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-11-28T18:32:00","lat":0.005,"lon":-11.9995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900508"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-10T01:27:00","lat":15.4859,"lon":-39.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901676"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-11T19:51:00","lat":14.6262,"lon":-47.9992,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901677"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-07T14:36:00","lat":16.438,"lon":-28.7953,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901681"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-07T21:45:00","lat":16.2999,"lon":-30.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901682"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-08T15:30:00","lat":16.0462,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901683"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-09T09:22:00","lat":15.4866,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901684"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-01-09T17:46:00","lat":14.8067,"lon":-26.2883,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902837"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-12-17T00:30:00","lat":31.6225,"lon":-64.0758,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903043"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-01T12:06:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902792"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-10T04:44:00","lat":28.5584,"lon":-53.9963,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902914"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-12T02:33:00","lat":23.0272,"lon":-61.9868,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902915"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-12T14:53:00","lat":21.5255,"lon":-63.9685,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902916"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-03-05T14:43:00","lat":13.8333,"lon":-51.6067,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902838"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-03-07T12:42:00","lat":13.9617,"lon":-56.1583,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902843"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-03-30T00:56:00","lat":35.9,"lon":-4.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903264"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-04-05T11:47:00","lat":36.17,"lon":-3.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903266"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-09-21T03:30:00","lat":31.6133,"lon":-64.1833,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903223"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-03-30T19:22:00","lat":36.0,"lon":-4.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903265"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-04-15T16:36:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902793"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-04-15T17:36:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902789"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-05-31T12:00:00","lat":31.671,"lon":-64.1757,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903222"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-26T17:36:00","lat":48.5173,"lon":-15.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900523"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-06T20:31:00","lat":3.6911,"lon":-25.182,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-07T16:47:00","lat":7.972,"lon":-24.182,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900518"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:20:00","lat":74.5,"lon":-4.73,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903558"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-28T11:46:00","lat":73.1,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903563"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-05T02:10:00","lat":48.0526,"lon":-31.585,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900525"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-30T16:40:00","lat":47.9583,"lon":-26.3432,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900524"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-06T00:43:00","lat":47.4551,"lon":-34.4985,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900526"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-08T11:08:00","lat":47.1011,"lon":-40.8855,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900527"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-10T10:15:00","lat":47.0857,"lon":-42.5937,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900528"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-07T03:32:00","lat":47.251,"lon":-37.9526,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900529"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-05-29T21:15:00","lat":53.075,"lon":-15.881,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901932"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-05-28T19:10:00","lat":53.692,"lon":-16.5861,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901933"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-18T04:30:00","lat":25.1858,"lon":-88.0507,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903233"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-18T11:28:00","lat":25.1998,"lon":-88.6668,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903240"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-14T08:49:00","lat":27.3498,"lon":-88.0078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903237"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-17T03:01:00","lat":25.1182,"lon":-86.2163,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903236"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-16T11:02:00","lat":26.2355,"lon":-85.5865,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903232"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-21T14:28:00","lat":26.2562,"lon":-88.0102,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903235"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-17T22:45:00","lat":25.166,"lon":-87.44,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903234"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-20T22:00:00","lat":26.1815,"lon":-86.719,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2019-07-14T17:51:00","lat":69.5,"lon":-61.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902967"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-07-14T17:36:00","lat":69.4998,"lon":-60.9987,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902952"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-24T20:29:00","lat":21.0086,"lon":-53.6969,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903244"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-25T08:29:00","lat":19.0118,"lon":-52.1497,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903246"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-25T20:49:00","lat":17.0116,"lon":-50.6387,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903245"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-29T14:22:00","lat":3.0115,"lon":-40.3232,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902168"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-28T06:14:00","lat":7.9995,"lon":-43.9545,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903247"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-27T17:04:00","lat":10.0097,"lon":-45.4368,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902166"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-09-24T22:10:00","lat":42.8983,"lon":-9.6258,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902839"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-26T18:30:00","lat":25.2283,"lon":-86.2047,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903256"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-24T13:26:00","lat":26.7674,"lon":-88.6221,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903258"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-27T08:07:00","lat":26.2645,"lon":-85.6038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903250"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-25T04:52:00","lat":25.6941,"lon":-88.6413,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903255"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-27T15:39:00","lat":26.7903,"lon":-86.1812,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903252"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-26T01:46:00","lat":25.1518,"lon":-87.4601,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-23T20:59:00","lat":27.3032,"lon":-88.0325,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903249"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-25T20:06:00","lat":25.1465,"lon":-88.0287,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903259"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-10-07T11:49:00","lat":0.0032,"lon":-14.9634,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6900893"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-10-29T10:10:00","lat":46.5718,"lon":-9.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902840"},{"program":{"country":{"nameShort":"MOROCCO"},"nameShort":null},"ptfDepl":{"deplDate":"2019-11-14T12:00:00","lat":27.7,"lon":-13.8,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-11-20T20:06:00","lat":39.1865,"lon":-69.375,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903260"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2019-10-27T06:42:00","lat":26.1,"lon":-35.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903715"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-24T23:32:00","lat":14.5353,"lon":-25.1731,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900541"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-26T19:57:00","lat":14.494,"lon":-23.5336,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900542"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-12-09T12:50:00","lat":17.5917,"lon":-24.2831,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900545"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-30T01:16:00","lat":17.8194,"lon":-20.6026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900544"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-12-06T13:30:00","lat":9.2816,"lon":-40.0591,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901931"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-12-18T21:06:00","lat":14.3797,"lon":-25.8442,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900543"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-02T01:14:00","lat":8.3426,"lon":-52.6921,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902957"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-01-28T00:35:00","lat":9.4106,"lon":-57.1622,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902958"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-01-28T00:35:00","lat":9.4106,"lon":-57.622,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902878"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-02T01:14:00","lat":8.3426,"lon":-52.6921,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902966"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-05T13:34:00","lat":7.8313,"lon":-53.3891,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902964"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-01-26T00:20:45","lat":12.187,"lon":-56.1176,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6900894"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-21T13:54:00","lat":15.8118,"lon":-55.2719,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901686"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-28T08:52:00","lat":33.0932,"lon":-36.0196,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900538"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-26T16:38:00","lat":30.0038,"lon":-41.978,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901687"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-27T14:26:00","lat":31.6705,"lon":-38.8119,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900548"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-28T17:18:00","lat":12.8933,"lon":-39.0815,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902841"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2017-09-16T18:26:00","lat":53.3871,"lon":-39.589,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903103"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-13T17:30:00","lat":53.26,"lon":-39.53,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903104"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-12T03:44:00","lat":51.65,"lon":-39.483,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903105"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-09T21:20:00","lat":48.62,"lon":-39.01,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903106"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-08T02:02:00","lat":47.075,"lon":-40.123,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903107"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-06T02:20:00","lat":44.368,"lon":-43.413,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903108"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2017-09-04T12:53:00","lat":42.397,"lon":-42.975,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903109"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:23:00","lat":74.501,"lon":-4.733,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903551"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-10T20:26:00","lat":75.0,"lon":-7.6381,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900535"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-10T10:55:00","lat":73.452,"lon":-11.8989,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900536"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-06T19:35:00","lat":71.5502,"lon":-12.1669,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900537"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-03-16T17:15:00","lat":0.0217,"lon":-22.9966,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902984"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-03-18T06:43:00","lat":23.7466,"lon":-25.5045,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903716"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-04-07T10:12:00","lat":5.0013,"lon":-38.674,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903271"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-17T04:44:00","lat":67.0,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903556"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-02T00:00:00","lat":73.41,"lon":-1.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903567"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-17T04:47:00","lat":67.0,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903569"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-14T00:43:00","lat":73.41,"lon":-1.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-08T17:28:42","lat":57.9,"lon":-25.1,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-06T09:16:00","lat":47.7502,"lon":-29.963,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901756"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-06T09:17:00","lat":47.7502,"lon":-29.963,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902972"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T03:54:00","lat":48.5174,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900570"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T11:35:00","lat":48.4762,"lon":-16.0319,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900569"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-02T01:10:00","lat":48.3682,"lon":-18.0473,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-12T00:41:00","lat":47.4544,"lon":-34.4916,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-12T00:41:00","lat":47.4544,"lon":-34.4916,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901604"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-14T09:22:00","lat":47.1126,"lon":-40.1852,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902975"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-14T09:22:00","lat":47.1126,"lon":-40.1852,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902978"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-16T05:45:00","lat":47.1,"lon":-43.12,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902973"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-16T05:04:00","lat":47.1,"lon":-43.12,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902971"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-11T15:27:30","lat":60.5372,"lon":-26.0482,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-22T18:42:36","lat":46.9737,"lon":-9.9404,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900558"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-19T07:38:51","lat":52.3679,"lon":-17.1047,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900557"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T00:00:00","lat":48.422,"lon":-17.0379,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900568"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-30T00:00:00","lat":48.7483,"lon":-13.8127,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-18T21:49:00","lat":52.9902,"lon":-51.1355,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902970"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-18T21:50:00","lat":52.9906,"lon":-51.1354,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-21T23:26:00","lat":56.556,"lon":-52.7345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-22T16:18:00","lat":59.0001,"lon":-50.998,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903032"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-22T16:19:00","lat":59.0002,"lon":-50.9969,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903034"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-25T20:25:00","lat":59.3095,"lon":-46.8908,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902886"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-25T20:26:00","lat":59.309,"lon":-46.8921,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902888"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2020-09-05T11:52:30","lat":74.998,"lon":-11.0933,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901937"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-08-13T13:32:00","lat":54.3167,"lon":-45.566,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903046"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2020-09-10T01:00:00","lat":65.8,"lon":-3.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901935"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-05T11:00:00","lat":58.4038,"lon":-21.2637,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903275"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2020-08-21T12:57:00","lat":57.582,"lon":-53.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900566"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-10T05:00:00","lat":35.937,"lon":-6.2208,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903065"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-07T22:15:01","lat":36.1778,"lon":-6.7317,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903066"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-11T19:18:00","lat":57.2999,"lon":-10.3865,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903725"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-14T06:02:00","lat":36.3546,"lon":-4.6267,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-14T00:05:00","lat":35.975,"lon":-4.4069,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903016"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-22T16:30:50","lat":59.0336,"lon":-8.9334,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903723"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-22T08:14:30","lat":59.0004,"lon":-12.0036,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903724"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-21T22:07:30","lat":58.7185,"lon":-15.6602,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903726"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-15T00:00:00","lat":47.1,"lon":-18.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904097"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-29T08:27:00","lat":50.6544,"lon":-36.72,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904110"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-29T14:54:00","lat":50.4417,"lon":-38.78,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904111"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-30T18:32:00","lat":49.2389,"lon":-41.6295,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904112"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":55.0,"lon":-49.38,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904113"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":56.63,"lon":-52.62,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904114"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":55.0,"lon":-51.8,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904115"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-11-17T11:40:00","lat":10.8282,"lon":-28.9413,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903043"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-11-06T20:09:00","lat":68.01,"lon":-12.66,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903552"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-11-18T13:57:00","lat":4.3104,"lon":-28.9914,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903044"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-10T07:00:00","lat":48.8413,"lon":-13.34,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904106"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-11T07:08:00","lat":48.7643,"lon":-13.34,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904088"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-11T14:09:00","lat":48.7488,"lon":-13.81,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904089"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904120"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-10T16:47:00","lat":29.1662,"lon":-19.0042,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903010"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-11T08:59:00","lat":29.1665,"lon":-18.9973,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903075"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-11T08:35:00","lat":29.1665,"lon":-19.0024,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903076"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-21T16:05:00","lat":24.1827,"lon":-49.7338,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903752"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-23T13:23:00","lat":25.1441,"lon":-52.0298,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903754"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-27T20:00:00","lat":26.4928,"lon":-70.5165,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903727"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-25T11:25:00","lat":25.5648,"lon":-59.2757,"noSite":0},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903755"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2020-11-20T13:00:00","lat":49.0005,"lon":-16.5017,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903751"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904100"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904099"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904098"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904096"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-01-22T14:33:00","lat":36.1744,"lon":-19.4378,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903072"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-01-27T19:09:00","lat":36.0,"lon":-13.8335,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903071"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2021-03-07T12:00:00","lat":53.0,"lon":-15.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901938"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-05T22:44:00","lat":8.9788,"lon":-20.0575,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903067"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2021-03-08T18:27:59","lat":54.0,"lon":-17.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901939"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-29T00:00:00","lat":48.925,"lon":-12.9557,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-26T02:09:00","lat":47.3833,"lon":-9.6667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900573"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-09T22:24:00","lat":0.0142,"lon":-9.8575,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903055"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2021-03-05T22:55:00","lat":8.9745,"lon":-20.0515,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903091"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-08-02T18:36:00","lat":67.5,"lon":-0.522,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-04-03T17:55:00","lat":0.0235,"lon":-22.9734,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903057"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-24T19:15:00","lat":0.0015,"lon":-2.6999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903053"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-28T18:59:00","lat":0.0219,"lon":-9.8338,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903054"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-28T19:03:00","lat":0.0216,"lon":-9.8352,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2021-06-08T10:26:00","lat":18.7975,"lon":-21.8997,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904134"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-18T21:07:00","lat":74.5,"lon":-5.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903575"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-20T16:02:00","lat":74.5,"lon":-9.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-20T09:28:00","lat":74.5,"lon":-7.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903580"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-03-28T18:51:00","lat":0.0235,"lon":-9.83,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903874"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-24T20:15:00","lat":15.19,"lon":-69.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903351"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-26T16:05:00","lat":17.07,"lon":-66.47,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903350"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-24T07:55:00","lat":14.15,"lon":-69.7,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903349"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-21T12:00:00","lat":15.2698,"lon":-69.063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903344"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-04-03T18:09:00","lat":0.0313,"lon":-22.9729,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903876"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-04-03T18:01:00","lat":0.0267,"lon":-22.9727,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-02T08:05:00","lat":21.83,"lon":-65.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903345"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-30T19:05:00","lat":19.69,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-04T10:05:00","lat":25.33,"lon":-65.7,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T06:55:00","lat":26.82,"lon":-65.6,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903346"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-05-08T07:45:00","lat":64.66,"lon":-0.01,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T05:13:00","lat":49.2788,"lon":-14.8661,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902303"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T07:03:00","lat":49.0166,"lon":-14.868,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902304"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904094"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904121"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-05T18:10:00","lat":42.28,"lon":-15.07,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902982"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-05T18:12:00","lat":42.2831,"lon":-15.0662,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903080"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-08T15:56:00","lat":46.1749,"lon":-19.3811,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903028"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-08T15:57:00","lat":47.1749,"lon":-19.3811,"noSite":0},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903081"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-10T19:19:00","lat":49.5311,"lon":-22.014,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-12T13:28:00","lat":51.0385,"lon":-23.1992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903036"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-12T13:22:00","lat":51.0385,"lon":-23.1992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903870"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-10T19:31:00","lat":49.5311,"lon":-22.014,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903869"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T01:26:00","lat":59.0409,"lon":-33.1939,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-18T15:51:00","lat":57.6737,"lon":-28.7287,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903038"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-21T14:08:00","lat":59.5561,"lon":-38.3234,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903040"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-22T07:52:00","lat":59.7526,"lon":-40.9095,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903041"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-17T09:49:00","lat":55.5175,"lon":-26.6987,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903082"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T20:12:00","lat":59.2988,"lon":-35.773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903083"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-17T09:47:00","lat":55.5175,"lon":-26.6987,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903085"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T20:09:00","lat":59.2988,"lon":-35.773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903086"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-20T01:29:00","lat":59.0409,"lon":-33.1939,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903872"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-18T15:52:00","lat":57.6667,"lon":-28.7287,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903871"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-22T07:54:00","lat":59.7526,"lon":-40.9095,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903042"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-21T14:06:00","lat":59.5561,"lon":-38.3234,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903873"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-15T15:22:00","lat":60.5397,"lon":-42.6,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-15T21:52:00","lat":60.0973,"lon":-42.3637,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903360"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-07-30T02:55:00","lat":63.9332,"lon":-11.6667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903102"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-07-29T14:49:45","lat":50.44,"lon":-38.77,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-07-29T14:50:00","lat":50.44,"lon":-38.77,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900585"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-20T10:47:00","lat":61.086,"lon":-42.3762,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2021-08-12T17:02:00","lat":59.9461,"lon":-39.5774,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903365"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T17:04:00","lat":57.0457,"lon":-50.3181,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2021-09-22T10:53:00","lat":27.9854,"lon":-86.9977,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903625"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-25T18:59:00","lat":41.4328,"lon":-60.7413,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902515"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-27T20:59:00","lat":43.4824,"lon":-57.4624,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902519"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-25T05:17:00","lat":42.0195,"lon":-61.1587,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902518"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2021-09-25T09:51:00","lat":27.0482,"lon":-89.9786,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903624"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-28T23:45:00","lat":37.5695,"lon":-45.7392,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904126"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-26T15:55:00","lat":34.3983,"lon":-36.0882,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904140"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-27T03:01:00","lat":35.42,"lon":-37.7517,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904142"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-12-23T10:48:00","lat":2.9495,"lon":-14.6571,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904129"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-15T07:15:00","lat":46.4575,"lon":-6.1892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903077"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-18T11:47:00","lat":39.2703,"lon":-15.2508,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904141"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-17T23:00:00","lat":40.4075,"lon":-13.8525,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901995"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-24T16:30:00","lat":32.1567,"lon":-30.5383,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904128"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-19T18:25:00","lat":37.4288,"lon":-19.6247,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901998"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-23T15:52:00","lat":33.8062,"lon":-27.125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901994"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-24T09:21:00","lat":33.4883,"lon":-27.9892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901996"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-24T02:00:00","lat":33.4883,"lon":-27.9892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903078"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-11-24T05:39:00","lat":20.066,"lon":-35.9902,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903372"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-27T21:55:00","lat":36.2167,"lon":-40.8145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903121"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-28T17:37:00","lat":37.3433,"lon":-44.5108,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903123"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-27T09:30:00","lat":35.5483,"lon":-39.0717,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903122"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2021-11-25T19:49:00","lat":33.601,"lon":-34.1317,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902001"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2021-11-26T06:58:00","lat":33.125,"lon":-32.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902000"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-28T09:07:00","lat":36.8417,"lon":-42.9522,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901997"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-02T05:24:00","lat":9.9892,"lon":-23.0018,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903369"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-03T15:03:00","lat":6.0015,"lon":-22.9957,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903373"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-02T22:23:00","lat":7.993,"lon":-23.0062,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903370"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-13T19:33:00","lat":0.0,"lon":-23.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904139"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-13T17:38:00","lat":4.4952,"lon":-38.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903374"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-12T12:15:00","lat":0.4123,"lon":-34.0103,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903376"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-17T22:20:00","lat":13.8153,"lon":-28.4988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902315"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-16T03:40:00","lat":38.8022,"lon":-67.1285,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902392"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-16T13:58:00","lat":38.104,"lon":-65.4282,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902444"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-20T06:20:00","lat":28.6998,"lon":-55.9073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902406"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-18T22:56:00","lat":31.0012,"lon":-57.5248,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902375"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-16T21:31:00","lat":37.1839,"lon":-64.4355,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902573"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-23T04:18:00","lat":23.613,"lon":-50.2805,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902389"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T15:51:00","lat":8.0332,"lon":-38.675,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T05:00:00","lat":6.4313,"lon":-37.1873,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902305"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T11:20:00","lat":5.8262,"lon":-36.385,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-17T04:51:00","lat":13.1478,"lon":-32.0002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902307"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T21:00:00","lat":3.1312,"lon":-32.8397,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902328"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T06:17:00","lat":3.9904,"lon":-34.0753,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902391"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T08:33:00","lat":8.9568,"lon":-39.4447,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T17:28:00","lat":5.2089,"lon":-35.602,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902404"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-27T10:30:00","lat":11.9082,"lon":-41.6813,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902425"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-27T17:45:00","lat":10.9615,"lon":-40.9462,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902407"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T00:15:00","lat":9.9747,"lon":-40.251,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-20T16:05:00","lat":27.4943,"lon":-54.3697,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-26T18:07:00","lat":13.7745,"lon":-43.204,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-26T01:17:00","lat":15.8035,"lon":-44.7725,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T00:15:00","lat":4.628,"lon":-34.763,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902436"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-27T02:27:00","lat":12.877,"lon":-42.524,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902561"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-30T13:50:00","lat":3.3969,"lon":-33.3238,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-28T22:21:00","lat":7.0298,"lon":-37.9672,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902570"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"IR-ILICO"},"ptfDepl":{"deplDate":"2011-08-14T19:50:45","lat":46.89,"lon":-4.345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900962"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-11-23T09:47:00","lat":31.6298,"lon":-64.2264,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902353"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-01T08:00:00","lat":40.5,"lon":-20.67,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-22T22:29:00","lat":40.5,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900033"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-23T15:55:00","lat":42.86,"lon":-41.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900351"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-Good_Hope"},"ptfDepl":{"deplDate":"2011-11-17T21:01:00","lat":0.0,"lon":-11.29,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900704"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-10T00:00:00","lat":26.0,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901216"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-12T07:30:00","lat":51.05,"lon":-43.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902463"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-06-28T00:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901725"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-12-01T06:15:00","lat":50.33,"lon":-47.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4100534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-04T12:41:00","lat":30.99,"lon":-54.07,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901293"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-25T02:19:00","lat":4.5,"lon":-80.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-07T03:58:00","lat":33.82,"lon":-34.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901034"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-26T22:24:00","lat":3.47,"lon":-82.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901145"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-21T00:00:00","lat":25.0,"lon":-55.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-22T00:00:00","lat":24.84,"lon":-58.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-23T00:00:00","lat":24.74,"lon":-60.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-24T00:00:00","lat":24.61,"lon":-64.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-25T00:00:00","lat":24.39,"lon":-67.02,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-26T00:00:00","lat":24.81,"lon":-70.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902326"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-06T00:00:00","lat":54.0203,"lon":-25.5279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901564"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T09:00:00","lat":59.4963,"lon":-53.0972,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902513"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-27T20:40:00","lat":59.04,"lon":-33.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902808"},{"program":{"country":{"nameShort":"AUSTRALIA"},"nameShort":"Argo_AUSTRALIA"},"ptfDepl":{"deplDate":"2018-03-17T12:00:00","lat":20.0792,"lon":-36.0137,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-05T03:29:00","lat":59.6204,"lon":-38.954,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902802"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-10-04T00:00:00","lat":69.82,"lon":-65.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902953"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-01T16:42:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902788"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2019-07-17T06:10:00","lat":72.7561,"lon":-67.0116,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902727"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2019-07-17T07:11:00","lat":72.7577,"lon":-66.9954,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901806"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-17T01:12:00","lat":69.2928,"lon":-60.7265,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902897"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:25:00","lat":74.501,"lon":-4.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903555"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-21T23:20:00","lat":56.5568,"lon":-52.7345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902976"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-20T16:58:00","lat":60.5378,"lon":-42.6093,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903361"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:33:00","lat":72.7384,"lon":-66.9752,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902532"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:41:00","lat":72.7367,"lon":-66.9696,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902531"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2021-10-25T20:40:00","lat":72.7491,"lon":-66.9859,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902602"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T21:17:05","lat":72.7415,"lon":-66.9751,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903126"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T21:00:00","lat":72.7443,"lon":-66.9808,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903127"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T20:15:00","lat":72.7498,"lon":-67.0005,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:22:00","lat":72.7392,"lon":-66.9769,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902530"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":3089} \ No newline at end of file diff --git a/argopy/tests/test_data/4abf41b2d9b1474c4bfe0f608b198b76da1abf4b92d014a37f51ebc28d13a353.ncHeader b/argopy/tests/test_data/4abf41b2d9b1474c4bfe0f608b198b76da1abf4b92d014a37f51ebc28d13a353.ncHeader new file mode 100644 index 00000000..a9b9f9bf --- /dev/null +++ b/argopy/tests/test_data/4abf41b2d9b1474c4bfe0f608b198b76da1abf4b92d014a37f51ebc28d13a353.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_22f8_fe4c_f145.nc { + dimensions: + row = 29557; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=29557); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 0, 65; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=29557); + :_FillValue = 99999; // int + :actual_range = 0, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=29557, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.630909f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=29557, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=29557, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=29557); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.00095666666667, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=29557); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.999, -47.00874350000001; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=29557, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=29557); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=29557); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.768372E-7f, 10.49f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=29557, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=29557, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.208f, 35.02467f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 35.02467f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 1.046394f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=29557, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=29557, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 15.6335f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 12.905f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=29557); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=29557, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=29557, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=29557); + :_CoordinateAxisType = "Time"; + :actual_range = 1.063557316224E9, 1.72709058E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=29557); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.00874350000001; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.00095666666667; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.00874350000001; // double + :geospatial_lon_min = -54.999; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:57Z (local files) +2024-09-24T12:43:57Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.00095666666667; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-23T11:23:00Z"; + :time_coverage_start = "2003-09-14T16:35:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.999; // double +} diff --git a/argopy/tests/test_data/4c0e422543c33345c935a18fd37154565b7e02a279c23da382f1b8318187c34a.ncHeader b/argopy/tests/test_data/4c0e422543c33345c935a18fd37154565b7e02a279c23da382f1b8318187c34a.ncHeader new file mode 100644 index 00000000..2366bcf5 --- /dev/null +++ b/argopy/tests/test_data/4c0e422543c33345c935a18fd37154565b7e02a279c23da382f1b8318187c34a.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_7b07_7b78_e48c.nc { + dimensions: + row = 264; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=264); + :_FillValue = 99999; // int + :actual_range = 1, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=264); + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=264, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=264, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=264); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 18.804, 20.13; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=264); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -60.173, -59.238; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=264, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=264, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=264); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2001.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2001.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=264, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=264, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 34.808f, 37.303f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 34.808f, 37.303f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01037f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=264, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=264, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.672f, 28.907f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.672f, 28.907f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=264, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=264, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=264); + :_CoordinateAxisType = "Time"; + :actual_range = 1.49935254E9, 1.50424878E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=264, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=264, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -59.238; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 20.13; // double + :geospatial_lat_min = 18.804; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -59.238; // double + :geospatial_lon_min = -60.173; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:04Z (local files) +2024-09-24T08:52:04Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%226902746%22&cycle_number=~%221%7C12%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 20.13; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 18.804; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2017-09-01T06:53:00Z"; + :time_coverage_start = "2017-07-06T14:49:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -60.173; // double +} diff --git a/argopy/tests/test_data/4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2.json b/argopy/tests/test_data/4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2.json new file mode 100644 index 00000000..196d3b57 --- /dev/null +++ b/argopy/tests/test_data/4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2.json @@ -0,0 +1,6063 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/1/" + }, + "dce:identifier": "SDN:R15::687", + "pav:version": "1", + "skos:notation": "SDN:R15::687", + "skos:altLabel": "687", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-13" + }, + "dc:identifier": "SDN:R15::687", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/1/" + }, + "dce:identifier": "SDN:R15::435", + "pav:version": "1", + "skos:notation": "SDN:R15::435", + "skos:altLabel": "435", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-15" + }, + "dc:identifier": "SDN:R15::435", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DPST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/1/" + }, + "dce:identifier": "SDN:R15::810", + "pav:version": "1", + "skos:notation": "SDN:R15::810", + "skos:altLabel": "810", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+10" + }, + "dc:identifier": "SDN:R15::810", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/1/" + }, + "dce:identifier": "SDN:R15::690", + "pav:version": "1", + "skos:notation": "SDN:R15::690", + "skos:altLabel": "690", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-10" + }, + "dc:identifier": "SDN:R15::690", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/1/" + }, + "dce:identifier": "SDN:R15::499", + "pav:version": "1", + "skos:notation": "SDN:R15::499", + "skos:altLabel": "499", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-1" + }, + "dc:identifier": "SDN:R15::499", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AST (see AST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/1/" + }, + "dce:identifier": "SDN:R15::248", + "pav:version": "1", + "skos:notation": "SDN:R15::248", + "skos:altLabel": "248", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-2" + }, + "dc:identifier": "SDN:R15::248", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/1/" + }, + "dce:identifier": "SDN:R15::239", + "pav:version": "1", + "skos:notation": "SDN:R15::239", + "skos:altLabel": "239", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-11" + }, + "dc:identifier": "SDN:R15::239", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/1/" + }, + "dce:identifier": "SDN:R15::444", + "pav:version": "1", + "skos:notation": "SDN:R15::444", + "skos:altLabel": "444", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-6" + }, + "dc:identifier": "SDN:R15::444", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/1/" + }, + "dce:identifier": "SDN:R15::148", + "pav:version": "1", + "skos:notation": "SDN:R15::148", + "skos:altLabel": "148", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-2" + }, + "dc:identifier": "SDN:R15::148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/1/" + }, + "dce:identifier": "SDN:R15::289", + "pav:version": "1", + "skos:notation": "SDN:R15::289", + "skos:altLabel": "289", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-11" + }, + "dc:identifier": "SDN:R15::289", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/1/" + }, + "dce:identifier": "SDN:R15::485", + "pav:version": "1", + "skos:notation": "SDN:R15::485", + "skos:altLabel": "485", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-15" + }, + "dc:identifier": "SDN:R15::485", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/1/" + }, + "dce:identifier": "SDN:R15::696", + "pav:version": "1", + "skos:notation": "SDN:R15::696", + "skos:altLabel": "696", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-4" + }, + "dc:identifier": "SDN:R15::696", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/1/" + }, + "dce:identifier": "SDN:R15::600", + "pav:version": "1", + "skos:notation": "SDN:R15::600", + "skos:altLabel": "600", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET" + }, + "dc:identifier": "SDN:R15::600", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the end of ascent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/1/" + }, + "dce:identifier": "SDN:R15::790", + "pav:version": "1", + "skos:notation": "SDN:R15::790", + "skos:altLabel": "790", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-10" + }, + "dc:identifier": "SDN:R15::790", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards TET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/1/" + }, + "dce:identifier": "SDN:R15::90", + "pav:version": "1", + "skos:notation": "SDN:R15::90", + "skos:altLabel": "90", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-10" + }, + "dc:identifier": "SDN:R15::90", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/1/" + }, + "dce:identifier": "SDN:R15::140", + "pav:version": "1", + "skos:notation": "SDN:R15::140", + "skos:altLabel": "140", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-10" + }, + "dc:identifier": "SDN:R15::140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards FST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/1/" + }, + "dce:identifier": "SDN:R15::538", + "pav:version": "1", + "skos:notation": "SDN:R15::538", + "skos:altLabel": "538", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-12" + }, + "dc:identifier": "SDN:R15::538", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DAST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/1/" + }, + "dce:identifier": "SDN:R15::394", + "pav:version": "1", + "skos:notation": "SDN:R15::394", + "skos:altLabel": "394", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-6" + }, + "dc:identifier": "SDN:R15::394", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/1/" + }, + "dce:identifier": "SDN:R15::494", + "pav:version": "1", + "skos:notation": "SDN:R15::494", + "skos:altLabel": "494", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-6" + }, + "dc:identifier": "SDN:R15::494", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/1/" + }, + "dce:identifier": "SDN:R15::146", + "pav:version": "1", + "skos:notation": "SDN:R15::146", + "skos:altLabel": "146", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-4" + }, + "dc:identifier": "SDN:R15::146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/1/" + }, + "dce:identifier": "SDN:R15::0", + "pav:version": "1", + "skos:notation": "SDN:R15::0", + "skos:altLabel": "0", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Launch time" + }, + "dc:identifier": "SDN:R15::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Launch time and location of the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/1/" + }, + "dce:identifier": "SDN:R15::385", + "pav:version": "1", + "skos:notation": "SDN:R15::385", + "skos:altLabel": "385", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-15" + }, + "dc:identifier": "SDN:R15::385", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DDET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/1/" + }, + "dce:identifier": "SDN:R15::688", + "pav:version": "1", + "skos:notation": "SDN:R15::688", + "skos:altLabel": "688", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-12" + }, + "dc:identifier": "SDN:R15::688", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/1/" + }, + "dce:identifier": "SDN:R15::298", + "pav:version": "1", + "skos:notation": "SDN:R15::298", + "skos:altLabel": "298", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-2" + }, + "dc:identifier": "SDN:R15::298", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/1/" + }, + "dce:identifier": "SDN:R15::187", + "pav:version": "1", + "skos:notation": "SDN:R15::187", + "skos:altLabel": "187", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-13" + }, + "dc:identifier": "SDN:R15::187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/1/" + }, + "dce:identifier": "SDN:R15::711", + "pav:version": "1", + "skos:notation": "SDN:R15::711", + "skos:altLabel": "711", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+11" + }, + "dc:identifier": "SDN:R15::711", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/1/" + }, + "dce:identifier": "SDN:R15::96", + "pav:version": "1", + "skos:notation": "SDN:R15::96", + "skos:altLabel": "96", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-4" + }, + "dc:identifier": "SDN:R15::96", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/1/" + }, + "dce:identifier": "SDN:R15::550", + "pav:version": "1", + "skos:notation": "SDN:R15::550", + "skos:altLabel": "550", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST" + }, + "dc:identifier": "SDN:R15::550", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent from profile pressure to drift pressure. Used for floats that profile on descent and then move back up to drift pressure." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/1/" + }, + "dce:identifier": "SDN:R15::149", + "pav:version": "1", + "skos:notation": "SDN:R15::149", + "skos:altLabel": "149", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-1" + }, + "dc:identifier": "SDN:R15::149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards FST (see FST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/1/" + }, + "dce:identifier": "SDN:R15::811", + "pav:version": "1", + "skos:notation": "SDN:R15::811", + "skos:altLabel": "811", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET+11" + }, + "dc:identifier": "SDN:R15::811", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/1/" + }, + "dce:identifier": "SDN:R15::389", + "pav:version": "1", + "skos:notation": "SDN:R15::389", + "skos:altLabel": "389", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-11" + }, + "dc:identifier": "SDN:R15::389", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/1/" + }, + "dce:identifier": "SDN:R15::702", + "pav:version": "1", + "skos:notation": "SDN:R15::702", + "skos:altLabel": "702", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT" + }, + "dc:identifier": "SDN:R15::702", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Earliest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/1/" + }, + "dce:identifier": "SDN:R15::87", + "pav:version": "1", + "skos:notation": "SDN:R15::87", + "skos:altLabel": "87", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-13" + }, + "dc:identifier": "SDN:R15::87", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/1/" + }, + "dce:identifier": "SDN:R15::500", + "pav:version": "1", + "skos:notation": "SDN:R15::500", + "skos:altLabel": "500", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST" + }, + "dc:identifier": "SDN:R15::500", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at the start of the float's ascent to the surface." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/1/" + }, + "dce:identifier": "SDN:R15::198", + "pav:version": "1", + "skos:notation": "SDN:R15::198", + "skos:altLabel": "198", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-2" + }, + "dc:identifier": "SDN:R15::198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/1/" + }, + "dce:identifier": "SDN:R15::436", + "pav:version": "1", + "skos:notation": "SDN:R15::436", + "skos:altLabel": "436", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-14" + }, + "dc:identifier": "SDN:R15::436", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DPST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/1/" + }, + "dce:identifier": "SDN:R15::275", + "pav:version": "1", + "skos:notation": "SDN:R15::275", + "skos:altLabel": "275", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS" + }, + "dc:identifier": "SDN:R15::275", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positions and times determined during drift." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/1/" + }, + "dce:identifier": "SDN:R15::697", + "pav:version": "1", + "skos:notation": "SDN:R15::697", + "skos:altLabel": "697", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-3" + }, + "dc:identifier": "SDN:R15::697", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/1/" + }, + "dce:identifier": "SDN:R15::700", + "pav:version": "1", + "skos:notation": "SDN:R15::700", + "skos:altLabel": "700", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST" + }, + "dc:identifier": "SDN:R15::700", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the start of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/1/" + }, + "dce:identifier": "SDN:R15::196", + "pav:version": "1", + "skos:notation": "SDN:R15::196", + "skos:altLabel": "196", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-4" + }, + "dc:identifier": "SDN:R15::196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/1/" + }, + "dce:identifier": "SDN:R15::189", + "pav:version": "1", + "skos:notation": "SDN:R15::189", + "skos:altLabel": "189", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-11" + }, + "dc:identifier": "SDN:R15::189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/1/" + }, + "dce:identifier": "SDN:R15::545", + "pav:version": "1", + "skos:notation": "SDN:R15::545", + "skos:altLabel": "545", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-5" + }, + "dc:identifier": "SDN:R15::545", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/1/" + }, + "dce:identifier": "SDN:R15::799", + "pav:version": "1", + "skos:notation": "SDN:R15::799", + "skos:altLabel": "799", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-1" + }, + "dc:identifier": "SDN:R15::799", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TET (see TET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/1/" + }, + "dce:identifier": "SDN:R15::85", + "pav:version": "1", + "skos:notation": "SDN:R15::85", + "skos:altLabel": "85", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-15" + }, + "dc:identifier": "SDN:R15::85", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/1/" + }, + "dce:identifier": "SDN:R15::902", + "pav:version": "1", + "skos:notation": "SDN:R15::902", + "skos:altLabel": "902", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Time before recovery" + }, + "dc:identifier": "SDN:R15::902", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Last time before float recovery. For floats that have been recovered, it is important to know when this occurred. This time in the JULD array will be the last time before the float was recovered. Determined by inspection of data." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/1/" + }, + "dce:identifier": "SDN:R15::597", + "pav:version": "1", + "skos:notation": "SDN:R15::597", + "skos:altLabel": "597", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-3" + }, + "dc:identifier": "SDN:R15::597", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/1/" + }, + "dce:identifier": "SDN:R15::398", + "pav:version": "1", + "skos:notation": "SDN:R15::398", + "skos:altLabel": "398", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-2" + }, + "dc:identifier": "SDN:R15::398", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/1/" + }, + "dce:identifier": "SDN:R15::400", + "pav:version": "1", + "skos:notation": "SDN:R15::400", + "skos:altLabel": "400", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET" + }, + "dc:identifier": "SDN:R15::400", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual deep drift/profile pressure. This variable is based on pressure only and can be measured or estimated." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/1/" + }, + "dce:identifier": "SDN:R15::539", + "pav:version": "1", + "skos:notation": "SDN:R15::539", + "skos:altLabel": "539", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-11" + }, + "dc:identifier": "SDN:R15::539", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/1/" + }, + "dce:identifier": "SDN:R15::395", + "pav:version": "1", + "skos:notation": "SDN:R15::395", + "skos:altLabel": "395", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-5" + }, + "dc:identifier": "SDN:R15::395", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/1/" + }, + "dce:identifier": "SDN:R15::586", + "pav:version": "1", + "skos:notation": "SDN:R15::586", + "skos:altLabel": "586", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-14" + }, + "dc:identifier": "SDN:R15::586", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/1/" + }, + "dce:identifier": "SDN:R15::249", + "pav:version": "1", + "skos:notation": "SDN:R15::249", + "skos:altLabel": "249", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-1" + }, + "dc:identifier": "SDN:R15::249", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PST (see PST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/1/" + }, + "dce:identifier": "SDN:R15::547", + "pav:version": "1", + "skos:notation": "SDN:R15::547", + "skos:altLabel": "547", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-3" + }, + "dc:identifier": "SDN:R15::547", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/1/" + }, + "dce:identifier": "SDN:R15::588", + "pav:version": "1", + "skos:notation": "SDN:R15::588", + "skos:altLabel": "588", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-12" + }, + "dc:identifier": "SDN:R15::588", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/1/" + }, + "dce:identifier": "SDN:R15::445", + "pav:version": "1", + "skos:notation": "SDN:R15::445", + "skos:altLabel": "445", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-5" + }, + "dc:identifier": "SDN:R15::445", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/1/" + }, + "dce:identifier": "SDN:R15::386", + "pav:version": "1", + "skos:notation": "SDN:R15::386", + "skos:altLabel": "386", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-14" + }, + "dc:identifier": "SDN:R15::386", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DDET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/1/" + }, + "dce:identifier": "SDN:R15::788", + "pav:version": "1", + "skos:notation": "SDN:R15::788", + "skos:altLabel": "788", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-12" + }, + "dc:identifier": "SDN:R15::788", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (TET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/1/" + }, + "dce:identifier": "SDN:R15::135", + "pav:version": "1", + "skos:notation": "SDN:R15::135", + "skos:altLabel": "135", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-15" + }, + "dc:identifier": "SDN:R15::135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (FST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/1/" + }, + "dce:identifier": "SDN:R15::486", + "pav:version": "1", + "skos:notation": "SDN:R15::486", + "skos:altLabel": "486", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-14" + }, + "dc:identifier": "SDN:R15::486", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (AST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/1/" + }, + "dce:identifier": "SDN:R15::138", + "pav:version": "1", + "skos:notation": "SDN:R15::138", + "skos:altLabel": "138", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-12" + }, + "dc:identifier": "SDN:R15::138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (FST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/1/" + }, + "dce:identifier": "SDN:R15::94", + "pav:version": "1", + "skos:notation": "SDN:R15::94", + "skos:altLabel": "94", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-6" + }, + "dc:identifier": "SDN:R15::94", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/1/" + }, + "dce:identifier": "SDN:R15::97", + "pav:version": "1", + "skos:notation": "SDN:R15::97", + "skos:altLabel": "97", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-3" + }, + "dc:identifier": "SDN:R15::97", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/1/" + }, + "dce:identifier": "SDN:R15::447", + "pav:version": "1", + "skos:notation": "SDN:R15::447", + "skos:altLabel": "447", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-3" + }, + "dc:identifier": "SDN:R15::447", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/1/" + }, + "dce:identifier": "SDN:R15::488", + "pav:version": "1", + "skos:notation": "SDN:R15::488", + "skos:altLabel": "488", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-12" + }, + "dc:identifier": "SDN:R15::488", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (AST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/1/" + }, + "dce:identifier": "SDN:R15::703", + "pav:version": "1", + "skos:notation": "SDN:R15::703", + "skos:altLabel": "703", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FMT+1" + }, + "dc:identifier": "SDN:R15::703", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Surface times and locations (if available) during surface drift. Should be listed in chronological order." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/1/" + }, + "dce:identifier": "SDN:R15::595", + "pav:version": "1", + "skos:notation": "SDN:R15::595", + "skos:altLabel": "595", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-5" + }, + "dc:identifier": "SDN:R15::595", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/1/" + }, + "dce:identifier": "SDN:R15::88", + "pav:version": "1", + "skos:notation": "SDN:R15::88", + "skos:altLabel": "88", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-12" + }, + "dc:identifier": "SDN:R15::88", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/1/" + }, + "dce:identifier": "SDN:R15::245", + "pav:version": "1", + "skos:notation": "SDN:R15::245", + "skos:altLabel": "245", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-5" + }, + "dc:identifier": "SDN:R15::245", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/1/" + }, + "dce:identifier": "SDN:R15::785", + "pav:version": "1", + "skos:notation": "SDN:R15::785", + "skos:altLabel": "785", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-15" + }, + "dc:identifier": "SDN:R15::785", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/1/" + }, + "dce:identifier": "SDN:R15::286", + "pav:version": "1", + "skos:notation": "SDN:R15::286", + "skos:altLabel": "286", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-14" + }, + "dc:identifier": "SDN:R15::286", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/1/" + }, + "dce:identifier": "SDN:R15::100", + "pav:version": "1", + "skos:notation": "SDN:R15::100", + "skos:altLabel": "100", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST" + }, + "dc:identifier": "SDN:R15::100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made when float leaves the surface, beginning descent." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/1/" + }, + "dce:identifier": "SDN:R15::501", + "pav:version": "1", + "skos:notation": "SDN:R15::501", + "skos:altLabel": "501", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+1" + }, + "dc:identifier": "SDN:R15::501", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Down-time end time: end date of the down-time parameter reported by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/1/" + }, + "dce:identifier": "SDN:R15::199", + "pav:version": "1", + "skos:notation": "SDN:R15::199", + "skos:altLabel": "199", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-1" + }, + "dc:identifier": "SDN:R15::199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DET (see DET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/1/" + }, + "dce:identifier": "SDN:R15::496", + "pav:version": "1", + "skos:notation": "SDN:R15::496", + "skos:altLabel": "496", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-4" + }, + "dc:identifier": "SDN:R15::496", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/1/" + }, + "dce:identifier": "SDN:R15::794", + "pav:version": "1", + "skos:notation": "SDN:R15::794", + "skos:altLabel": "794", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-6" + }, + "dc:identifier": "SDN:R15::794", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/1/" + }, + "dce:identifier": "SDN:R15::438", + "pav:version": "1", + "skos:notation": "SDN:R15::438", + "skos:altLabel": "438", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-12" + }, + "dc:identifier": "SDN:R15::438", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DPST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/1/" + }, + "dce:identifier": "SDN:R15::797", + "pav:version": "1", + "skos:notation": "SDN:R15::797", + "skos:altLabel": "797", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-3" + }, + "dc:identifier": "SDN:R15::797", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/1/" + }, + "dce:identifier": "SDN:R15::296", + "pav:version": "1", + "skos:notation": "SDN:R15::296", + "skos:altLabel": "296", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-4" + }, + "dc:identifier": "SDN:R15::296", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/1/" + }, + "dce:identifier": "SDN:R15::236", + "pav:version": "1", + "skos:notation": "SDN:R15::236", + "skos:altLabel": "236", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-14" + }, + "dc:identifier": "SDN:R15::236", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (PST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/1/" + }, + "dce:identifier": "SDN:R15::299", + "pav:version": "1", + "skos:notation": "SDN:R15::299", + "skos:altLabel": "299", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-1" + }, + "dc:identifier": "SDN:R15::299", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards PET (see PET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/1/" + }, + "dce:identifier": "SDN:R15::495", + "pav:version": "1", + "skos:notation": "SDN:R15::495", + "skos:altLabel": "495", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-5" + }, + "dc:identifier": "SDN:R15::495", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards AST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/1/" + }, + "dce:identifier": "SDN:R15::147", + "pav:version": "1", + "skos:notation": "SDN:R15::147", + "skos:altLabel": "147", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-3" + }, + "dc:identifier": "SDN:R15::147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards FST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/1/" + }, + "dce:identifier": "SDN:R15::685", + "pav:version": "1", + "skos:notation": "SDN:R15::685", + "skos:altLabel": "685", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-15" + }, + "dc:identifier": "SDN:R15::685", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (TST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/1/" + }, + "dce:identifier": "SDN:R15::598", + "pav:version": "1", + "skos:notation": "SDN:R15::598", + "skos:altLabel": "598", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-2" + }, + "dc:identifier": "SDN:R15::598", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/1/" + }, + "dce:identifier": "SDN:R15::611", + "pav:version": "1", + "skos:notation": "SDN:R15::611", + "skos:altLabel": "611", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+11" + }, + "dc:identifier": "SDN:R15::611", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-air samples taken as part of a surface sequence (e.g. O2 samples taken after in air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/1/" + }, + "dce:identifier": "SDN:R15::240", + "pav:version": "1", + "skos:notation": "SDN:R15::240", + "skos:altLabel": "240", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-10" + }, + "dc:identifier": "SDN:R15::240", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/1/" + }, + "dce:identifier": "SDN:R15::610", + "pav:version": "1", + "skos:notation": "SDN:R15::610", + "skos:altLabel": "610", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET+10" + }, + "dc:identifier": "SDN:R15::610", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/1/" + }, + "dce:identifier": "SDN:R15::689", + "pav:version": "1", + "skos:notation": "SDN:R15::689", + "skos:altLabel": "689", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-11" + }, + "dc:identifier": "SDN:R15::689", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/1/" + }, + "dce:identifier": "SDN:R15::188", + "pav:version": "1", + "skos:notation": "SDN:R15::188", + "skos:altLabel": "188", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-12" + }, + "dc:identifier": "SDN:R15::188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/1/" + }, + "dce:identifier": "SDN:R15::548", + "pav:version": "1", + "skos:notation": "SDN:R15::548", + "skos:altLabel": "548", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-2" + }, + "dc:identifier": "SDN:R15::548", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DAST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/1/" + }, + "dce:identifier": "SDN:R15::450", + "pav:version": "1", + "skos:notation": "SDN:R15::450", + "skos:altLabel": "450", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST" + }, + "dc:identifier": "SDN:R15::450", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to a deep park drift mission. This variable is only defined if the float enters a deep drift phase (i.e. DPST not defined in cases of constant deep pressure due to bottom hits, or buoyancy issues)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/1/" + }, + "dce:identifier": "SDN:R15::589", + "pav:version": "1", + "skos:notation": "SDN:R15::589", + "skos:altLabel": "589", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-11" + }, + "dc:identifier": "SDN:R15::589", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/1/" + }, + "dce:identifier": "SDN:R15::537", + "pav:version": "1", + "skos:notation": "SDN:R15::537", + "skos:altLabel": "537", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-13" + }, + "dc:identifier": "SDN:R15::537", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DAST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/1/" + }, + "dce:identifier": "SDN:R15::387", + "pav:version": "1", + "skos:notation": "SDN:R15::387", + "skos:altLabel": "387", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-13" + }, + "dc:identifier": "SDN:R15::387", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DDET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/1/" + }, + "dce:identifier": "SDN:R15::144", + "pav:version": "1", + "skos:notation": "SDN:R15::144", + "skos:altLabel": "144", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-6" + }, + "dc:identifier": "SDN:R15::144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/1/" + }, + "dce:identifier": "SDN:R15::150", + "pav:version": "1", + "skos:notation": "SDN:R15::150", + "skos:altLabel": "150", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST" + }, + "dc:identifier": "SDN:R15::150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when a float first becomes water-neutral." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/1/" + }, + "dce:identifier": "SDN:R15::800", + "pav:version": "1", + "skos:notation": "SDN:R15::800", + "skos:altLabel": "800", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET" + }, + "dc:identifier": "SDN:R15::800", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Time and location of the end of transmission for the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/1/" + }, + "dce:identifier": "SDN:R15::185", + "pav:version": "1", + "skos:notation": "SDN:R15::185", + "skos:altLabel": "185", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-15" + }, + "dc:identifier": "SDN:R15::185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/1/" + }, + "dce:identifier": "SDN:R15::235", + "pav:version": "1", + "skos:notation": "SDN:R15::235", + "skos:altLabel": "235", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-15" + }, + "dc:identifier": "SDN:R15::235", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/1/" + }, + "dce:identifier": "SDN:R15::238", + "pav:version": "1", + "skos:notation": "SDN:R15::238", + "skos:altLabel": "238", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-12" + }, + "dc:identifier": "SDN:R15::238", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PST-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/1/" + }, + "dce:identifier": "SDN:R15::535", + "pav:version": "1", + "skos:notation": "SDN:R15::535", + "skos:altLabel": "535", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-15" + }, + "dc:identifier": "SDN:R15::535", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (DAST-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/1/" + }, + "dce:identifier": "SDN:R15::448", + "pav:version": "1", + "skos:notation": "SDN:R15::448", + "skos:altLabel": "448", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-2" + }, + "dc:identifier": "SDN:R15::448", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DPST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/1/" + }, + "dce:identifier": "SDN:R15::489", + "pav:version": "1", + "skos:notation": "SDN:R15::489", + "skos:altLabel": "489", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-11" + }, + "dc:identifier": "SDN:R15::489", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/1/" + }, + "dce:identifier": "SDN:R15::695", + "pav:version": "1", + "skos:notation": "SDN:R15::695", + "skos:altLabel": "695", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-5" + }, + "dc:identifier": "SDN:R15::695", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/1/" + }, + "dce:identifier": "SDN:R15::194", + "pav:version": "1", + "skos:notation": "SDN:R15::194", + "skos:altLabel": "194", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-6" + }, + "dc:identifier": "SDN:R15::194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/1/" + }, + "dce:identifier": "SDN:R15::437", + "pav:version": "1", + "skos:notation": "SDN:R15::437", + "skos:altLabel": "437", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-13" + }, + "dc:identifier": "SDN:R15::437", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (DPST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/1/" + }, + "dce:identifier": "SDN:R15::246", + "pav:version": "1", + "skos:notation": "SDN:R15::246", + "skos:altLabel": "246", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-4" + }, + "dc:identifier": "SDN:R15::246", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/1/" + }, + "dce:identifier": "SDN:R15::699", + "pav:version": "1", + "skos:notation": "SDN:R15::699", + "skos:altLabel": "699", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-1" + }, + "dc:identifier": "SDN:R15::699", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards TST (see TST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/1/" + }, + "dce:identifier": "SDN:R15::701", + "pav:version": "1", + "skos:notation": "SDN:R15::701", + "skos:altLabel": "701", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST+1" + }, + "dc:identifier": "SDN:R15::701", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Transmission start time directly transmitted by an APEX float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/1/" + }, + "dce:identifier": "SDN:R15::540", + "pav:version": "1", + "skos:notation": "SDN:R15::540", + "skos:altLabel": "540", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-10" + }, + "dc:identifier": "SDN:R15::540", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DAST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/1/" + }, + "dce:identifier": "SDN:R15::287", + "pav:version": "1", + "skos:notation": "SDN:R15::287", + "skos:altLabel": "287", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-13" + }, + "dc:identifier": "SDN:R15::287", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/1/" + }, + "dce:identifier": "SDN:R15::502", + "pav:version": "1", + "skos:notation": "SDN:R15::502", + "skos:altLabel": "502", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+2" + }, + "dc:identifier": "SDN:R15::502", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Ascent start time directly transmitted by APEX floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/1/" + }, + "dce:identifier": "SDN:R15::698", + "pav:version": "1", + "skos:notation": "SDN:R15::698", + "skos:altLabel": "698", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-2" + }, + "dc:identifier": "SDN:R15::698", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/1/" + }, + "dce:identifier": "SDN:R15::197", + "pav:version": "1", + "skos:notation": "SDN:R15::197", + "skos:altLabel": "197", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-3" + }, + "dc:identifier": "SDN:R15::197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/1/" + }, + "dce:identifier": "SDN:R15::704", + "pav:version": "1", + "skos:notation": "SDN:R15::704", + "skos:altLabel": "704", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT" + }, + "dc:identifier": "SDN:R15::704", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Latest time of all messages received by telecommunications system - may or may not have a location fix." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/1/" + }, + "dce:identifier": "SDN:R15::203", + "pav:version": "1", + "skos:notation": "SDN:R15::203", + "skos:altLabel": "203", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET+3" + }, + "dc:identifier": "SDN:R15::203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during descending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/1/" + }, + "dce:identifier": "SDN:R15::390", + "pav:version": "1", + "skos:notation": "SDN:R15::390", + "skos:altLabel": "390", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-10" + }, + "dc:identifier": "SDN:R15::390", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DDET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/1/" + }, + "dce:identifier": "SDN:R15::497", + "pav:version": "1", + "skos:notation": "SDN:R15::497", + "skos:altLabel": "497", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-3" + }, + "dc:identifier": "SDN:R15::497", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/1/" + }, + "dce:identifier": "SDN:R15::546", + "pav:version": "1", + "skos:notation": "SDN:R15::546", + "skos:altLabel": "546", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-4" + }, + "dc:identifier": "SDN:R15::546", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/1/" + }, + "dce:identifier": "SDN:R15::439", + "pav:version": "1", + "skos:notation": "SDN:R15::439", + "skos:altLabel": "439", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-11" + }, + "dc:identifier": "SDN:R15::439", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/1/" + }, + "dce:identifier": "SDN:R15::396", + "pav:version": "1", + "skos:notation": "SDN:R15::396", + "skos:altLabel": "396", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-4" + }, + "dc:identifier": "SDN:R15::396", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DDET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/1/" + }, + "dce:identifier": "SDN:R15::295", + "pav:version": "1", + "skos:notation": "SDN:R15::295", + "skos:altLabel": "295", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-5" + }, + "dc:identifier": "SDN:R15::295", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/1/" + }, + "dce:identifier": "SDN:R15::237", + "pav:version": "1", + "skos:notation": "SDN:R15::237", + "skos:altLabel": "237", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-13" + }, + "dc:identifier": "SDN:R15::237", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (PST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/1/" + }, + "dce:identifier": "SDN:R15::86", + "pav:version": "1", + "skos:notation": "SDN:R15::86", + "skos:altLabel": "86", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-14" + }, + "dc:identifier": "SDN:R15::86", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/1/" + }, + "dce:identifier": "SDN:R15::903", + "pav:version": "1", + "skos:notation": "SDN:R15::903", + "skos:altLabel": "903", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APEX pressure offset" + }, + "dc:identifier": "SDN:R15::903", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure offset used to correct APEX pressure measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/1/" + }, + "dce:identifier": "SDN:R15::399", + "pav:version": "1", + "skos:notation": "SDN:R15::399", + "skos:altLabel": "399", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-1" + }, + "dc:identifier": "SDN:R15::399", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DDET (see DDET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/1/" + }, + "dce:identifier": "SDN:R15::89", + "pav:version": "1", + "skos:notation": "SDN:R15::89", + "skos:altLabel": "89", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-11" + }, + "dc:identifier": "SDN:R15::89", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/1/" + }, + "dce:identifier": "SDN:R15::244", + "pav:version": "1", + "skos:notation": "SDN:R15::244", + "skos:altLabel": "244", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-6" + }, + "dc:identifier": "SDN:R15::244", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/1/" + }, + "dce:identifier": "SDN:R15::587", + "pav:version": "1", + "skos:notation": "SDN:R15::587", + "skos:altLabel": "587", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-13" + }, + "dc:identifier": "SDN:R15::587", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/1/" + }, + "dce:identifier": "SDN:R15::686", + "pav:version": "1", + "skos:notation": "SDN:R15::686", + "skos:altLabel": "686", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-14" + }, + "dc:identifier": "SDN:R15::686", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/1/" + }, + "dce:identifier": "SDN:R15::901", + "pav:version": "1", + "skos:notation": "SDN:R15::901", + "skos:altLabel": "901", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grounded" + }, + "dc:identifier": "SDN:R15::901", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grounded flag. Configuration phase." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/1/" + }, + "dce:identifier": "SDN:R15::440", + "pav:version": "1", + "skos:notation": "SDN:R15::440", + "skos:altLabel": "440", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-10" + }, + "dc:identifier": "SDN:R15::440", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DPST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/1/" + }, + "dce:identifier": "SDN:R15::397", + "pav:version": "1", + "skos:notation": "SDN:R15::397", + "skos:altLabel": "397", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-3" + }, + "dc:identifier": "SDN:R15::397", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards DDET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/1/" + }, + "dce:identifier": "SDN:R15::200", + "pav:version": "1", + "skos:notation": "SDN:R15::200", + "skos:altLabel": "200", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET" + }, + "dc:identifier": "SDN:R15::200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float first approaches within 3% of the eventual drift pressure. Float may be transitioning from the surface or from a deep profile. This variable is based on measured or estimated pressure only In the case of a float that overshoots the drift pressure on descent, DET is the time of the overshoot." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/1/" + }, + "dce:identifier": "SDN:R15::786", + "pav:version": "1", + "skos:notation": "SDN:R15::786", + "skos:altLabel": "786", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-14" + }, + "dc:identifier": "SDN:R15::786", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (TET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/1/" + }, + "dce:identifier": "SDN:R15::446", + "pav:version": "1", + "skos:notation": "SDN:R15::446", + "skos:altLabel": "446", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-4" + }, + "dc:identifier": "SDN:R15::446", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to DPST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/1/" + }, + "dce:identifier": "SDN:R15::285", + "pav:version": "1", + "skos:notation": "SDN:R15::285", + "skos:altLabel": "285", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-15" + }, + "dc:identifier": "SDN:R15::285", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (PET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/1/" + }, + "dce:identifier": "SDN:R15::710", + "pav:version": "1", + "skos:notation": "SDN:R15::710", + "skos:altLabel": "710", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "LMT+10" + }, + "dc:identifier": "SDN:R15::710", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any in-water samples taken as part of a surface sequence (e.g. O2 samples taken prior to air-bladder inflation or max buoyancy as part of in-air measurement sequence)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/1/" + }, + "dce:identifier": "SDN:R15::694", + "pav:version": "1", + "skos:notation": "SDN:R15::694", + "skos:altLabel": "694", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TST-6" + }, + "dc:identifier": "SDN:R15::694", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards TST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/1/" + }, + "dce:identifier": "SDN:R15::789", + "pav:version": "1", + "skos:notation": "SDN:R15::789", + "skos:altLabel": "789", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-11" + }, + "dc:identifier": "SDN:R15::789", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/1/" + }, + "dce:identifier": "SDN:R15::195", + "pav:version": "1", + "skos:notation": "SDN:R15::195", + "skos:altLabel": "195", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-5" + }, + "dc:identifier": "SDN:R15::195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/1/" + }, + "dce:identifier": "SDN:R15::549", + "pav:version": "1", + "skos:notation": "SDN:R15::549", + "skos:altLabel": "549", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-1" + }, + "dc:identifier": "SDN:R15::549", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DAST (see DAST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/1/" + }, + "dce:identifier": "SDN:R15::137", + "pav:version": "1", + "skos:notation": "SDN:R15::137", + "skos:altLabel": "137", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-13" + }, + "dc:identifier": "SDN:R15::137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (FST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/1/" + }, + "dce:identifier": "SDN:R15::136", + "pav:version": "1", + "skos:notation": "SDN:R15::136", + "skos:altLabel": "136", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-14" + }, + "dc:identifier": "SDN:R15::136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (FST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/1/" + }, + "dce:identifier": "SDN:R15::388", + "pav:version": "1", + "skos:notation": "SDN:R15::388", + "skos:altLabel": "388", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DDET-12" + }, + "dc:identifier": "SDN:R15::388", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (DDET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/1/" + }, + "dce:identifier": "SDN:R15::290", + "pav:version": "1", + "skos:notation": "SDN:R15::290", + "skos:altLabel": "290", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-10" + }, + "dc:identifier": "SDN:R15::290", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards PET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/1/" + }, + "dce:identifier": "SDN:R15::487", + "pav:version": "1", + "skos:notation": "SDN:R15::487", + "skos:altLabel": "487", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-13" + }, + "dc:identifier": "SDN:R15::487", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (AST-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/1/" + }, + "dce:identifier": "SDN:R15::139", + "pav:version": "1", + "skos:notation": "SDN:R15::139", + "skos:altLabel": "139", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-11" + }, + "dc:identifier": "SDN:R15::139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Active adjustment to buoyancy made at this time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/1/" + }, + "dce:identifier": "SDN:R15::95", + "pav:version": "1", + "skos:notation": "SDN:R15::95", + "skos:altLabel": "95", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-5" + }, + "dc:identifier": "SDN:R15::95", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards DST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/1/" + }, + "dce:identifier": "SDN:R15::590", + "pav:version": "1", + "skos:notation": "SDN:R15::590", + "skos:altLabel": "590", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-10" + }, + "dc:identifier": "SDN:R15::590", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/1/" + }, + "dce:identifier": "SDN:R15::250", + "pav:version": "1", + "skos:notation": "SDN:R15::250", + "skos:altLabel": "250", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST" + }, + "dc:identifier": "SDN:R15::250", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float transitions to its Park or Drift mission. This variable is based on float logic based on a descent timer (i.e. SOLO), or be based on measurements of pressure (i.e. PROVOR)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/1/" + }, + "dce:identifier": "SDN:R15::186", + "pav:version": "1", + "skos:notation": "SDN:R15::186", + "skos:altLabel": "186", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-14" + }, + "dc:identifier": "SDN:R15::186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DET-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/1/" + }, + "dce:identifier": "SDN:R15::98", + "pav:version": "1", + "skos:notation": "SDN:R15::98", + "skos:altLabel": "98", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-2" + }, + "dc:identifier": "SDN:R15::98", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards DST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/1/" + }, + "dce:identifier": "SDN:R15::99", + "pav:version": "1", + "skos:notation": "SDN:R15::99", + "skos:altLabel": "99", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DST-1" + }, + "dc:identifier": "SDN:R15::99", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DST (see DST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/1/" + }, + "dce:identifier": "SDN:R15::796", + "pav:version": "1", + "skos:notation": "SDN:R15::796", + "skos:altLabel": "796", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-4" + }, + "dc:identifier": "SDN:R15::796", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/1/" + }, + "dce:identifier": "SDN:R15::596", + "pav:version": "1", + "skos:notation": "SDN:R15::596", + "skos:altLabel": "596", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-4" + }, + "dc:identifier": "SDN:R15::596", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any averaged measurements made during transition to AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/1/" + }, + "dce:identifier": "SDN:R15::599", + "pav:version": "1", + "skos:notation": "SDN:R15::599", + "skos:altLabel": "599", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-1" + }, + "dc:identifier": "SDN:R15::599", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards AET (see AET-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/1/" + }, + "dce:identifier": "SDN:R15::594", + "pav:version": "1", + "skos:notation": "SDN:R15::594", + "skos:altLabel": "594", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-6" + }, + "dc:identifier": "SDN:R15::594", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards AET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/1/" + }, + "dce:identifier": "SDN:R15::101", + "pav:version": "1", + "skos:notation": "SDN:R15::101", + "skos:altLabel": "101", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Delayed-mode trajectory file measurement code ID" + }, + "dc:identifier": "SDN:R15::101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This measurement code is used in the delayed-mode trajectory (TRAJ) file when new cycles have been recovered during delayed-mode operations. This is because the technical (TECH) file, where surface pressure measurements usually belong, is not updated during delayed-mode operations on the TRAJ file. The pressure variable (PRES) should contain the measurement provided by the float (after 5dbar subtraction when needed). For APEX floats, this measurement is used to compute a pressure offset applied to all pressure measurements (see procedure 3.2.1 of Argo QC manual). This offset should be stored in the PRES_ADJUSTED variable. No information should be stored with this measurement code in real-time." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/1/" + }, + "dce:identifier": "SDN:R15::536", + "pav:version": "1", + "skos:notation": "SDN:R15::536", + "skos:altLabel": "536", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-14" + }, + "dc:identifier": "SDN:R15::536", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the average value (DAST-4)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/1/" + }, + "dce:identifier": "SDN:R15::449", + "pav:version": "1", + "skos:notation": "SDN:R15::449", + "skos:altLabel": "449", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DPST-1" + }, + "dc:identifier": "SDN:R15::449", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any single measurement transitioning towards DPST (see DPST-10 for a 'series' of measurements)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/1/" + }, + "dce:identifier": "SDN:R15::795", + "pav:version": "1", + "skos:notation": "SDN:R15::795", + "skos:altLabel": "795", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-5" + }, + "dc:identifier": "SDN:R15::795", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards TET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/1/" + }, + "dce:identifier": "SDN:R15::294", + "pav:version": "1", + "skos:notation": "SDN:R15::294", + "skos:altLabel": "294", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-6" + }, + "dc:identifier": "SDN:R15::294", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards PET." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/1/" + }, + "dce:identifier": "SDN:R15::247", + "pav:version": "1", + "skos:notation": "SDN:R15::247", + "skos:altLabel": "247", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PST-3" + }, + "dc:identifier": "SDN:R15::247", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/1/" + }, + "dce:identifier": "SDN:R15::787", + "pav:version": "1", + "skos:notation": "SDN:R15::787", + "skos:altLabel": "787", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-13" + }, + "dc:identifier": "SDN:R15::787", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the minimum value (TET-3)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/1/" + }, + "dce:identifier": "SDN:R15::798", + "pav:version": "1", + "skos:notation": "SDN:R15::798", + "skos:altLabel": "798", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TET-2" + }, + "dc:identifier": "SDN:R15::798", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards TET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/1/" + }, + "dce:identifier": "SDN:R15::297", + "pav:version": "1", + "skos:notation": "SDN:R15::297", + "skos:altLabel": "297", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-3" + }, + "dc:identifier": "SDN:R15::297", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Minimum value while float is transitioning towards PET (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/1/" + }, + "dce:identifier": "SDN:R15::503", + "pav:version": "1", + "skos:notation": "SDN:R15::503", + "skos:altLabel": "503", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST+3" + }, + "dc:identifier": "SDN:R15::503", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest bin reached during ascending profile." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/1/" + }, + "dce:identifier": "SDN:R15::300", + "pav:version": "1", + "skos:notation": "SDN:R15::300", + "skos:altLabel": "300", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET" + }, + "dc:identifier": "SDN:R15::300", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All measurements made at time when float exits from its Park or Drift mission. It may next rise to the surface (AST) or sink to profile depth." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/1/" + }, + "dce:identifier": "SDN:R15::190", + "pav:version": "1", + "skos:notation": "SDN:R15::190", + "skos:altLabel": "190", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DET-10" + }, + "dc:identifier": "SDN:R15::190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards DET (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/1/" + }, + "dce:identifier": "SDN:R15::288", + "pav:version": "1", + "skos:notation": "SDN:R15::288", + "skos:altLabel": "288", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET-12" + }, + "dc:identifier": "SDN:R15::288", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the maximum value (PET-2)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/1/" + }, + "dce:identifier": "SDN:R15::544", + "pav:version": "1", + "skos:notation": "SDN:R15::544", + "skos:altLabel": "544", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "DAST-6" + }, + "dc:identifier": "SDN:R15::544", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Standard deviation of measurements taken during transition towards DAST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/1/" + }, + "dce:identifier": "SDN:R15::490", + "pav:version": "1", + "skos:notation": "SDN:R15::490", + "skos:altLabel": "490", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-10" + }, + "dc:identifier": "SDN:R15::490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any series of measurements recorded while transitioning towards AST (e.g. PROVOR 'spy' measurements, SOLO-II pressure-time pairs, etc)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/1/" + }, + "dce:identifier": "SDN:R15::585", + "pav:version": "1", + "skos:notation": "SDN:R15::585", + "skos:altLabel": "585", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AET-15" + }, + "dc:identifier": "SDN:R15::585", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Any supporting measurements for the median value (AET-5)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/1/" + }, + "dce:identifier": "SDN:R15::498", + "pav:version": "1", + "skos:notation": "SDN:R15::498", + "skos:altLabel": "498", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AST-2" + }, + "dc:identifier": "SDN:R15::498", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Maximum value while float is transitioning towards AST (e.g. pressure)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/1/" + }, + "dce:identifier": "SDN:R15::301", + "pav:version": "1", + "skos:notation": "SDN:R15::301", + "skos:altLabel": "301", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PET+1" + }, + "dc:identifier": "SDN:R15::301", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Representative Park found either from measurements taken during drift or from metafile information." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/", + "pav:authoredOn": "2021-11-30 09:53:34.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/1/" + }, + "dce:identifier": "SDN:R15::145", + "pav:version": "1", + "skos:notation": "SDN:R15::145", + "skos:altLabel": "145", + "dc:date": "2021-11-30 09:53:34.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "FST-5" + }, + "dc:identifier": "SDN:R15::145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Median value while float is transitioning towards FST." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/687/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/435/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/810/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/690/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/499/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/248/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/239/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/444/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/289/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/485/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/696/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/600/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/790/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/90/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/538/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/394/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/494/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/385/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/688/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/298/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/711/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/96/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/550/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/811/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/389/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/702/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/87/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/500/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/436/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/275/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/697/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/545/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/799/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/85/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/902/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/597/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/398/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/400/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/539/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/395/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/586/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/249/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/547/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/588/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/445/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/386/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/788/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/486/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/94/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/97/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/447/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/488/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/703/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/595/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/88/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/245/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/785/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/286/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/501/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/496/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/794/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/438/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/797/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/296/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/236/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/299/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/495/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/685/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/598/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/611/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/240/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/610/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/689/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/548/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/450/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/589/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/537/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/387/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/800/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/235/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/238/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/535/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/448/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/489/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/695/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/437/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/246/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/699/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/701/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/540/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/287/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/502/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/698/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/704/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/390/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/497/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/546/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/439/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/396/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/295/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/237/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/86/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/903/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/399/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/89/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/244/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/587/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/686/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/901/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/440/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/397/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/786/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/446/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/285/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/710/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/694/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/789/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/549/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/388/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/290/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/487/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/95/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/590/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/250/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/98/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/99/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/796/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/596/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/599/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/594/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/536/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/449/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/795/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/294/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/247/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/787/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/798/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/297/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/503/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/300/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/288/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/544/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/585/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/301/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R15/current/498/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Measurement code IDs used in Argo Trajectory netCDF files. Argo netCDF variable MEASUREMENT_CODE is populated by R15 altLabel.", + "dc:title": "Argo trajectory measurement code identifiers", + "skos:prefLabel": "Argo trajectory measurement code identifiers", + "owl:versionInfo": "1", + "dc:date": "2021-12-01 02:00:02.0", + "skos:altLabel": "MEASUREMENT_CODE_ID", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "MEASUREMENT_CODE_ID", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre" + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067.js b/argopy/tests/test_data/4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067.js new file mode 100644 index 00000000..96c29cba --- /dev/null +++ b/argopy/tests/test_data/4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067.js @@ -0,0 +1,3 @@ +[ +{"_id":"6902746_001","geolocation":{"type":"Point","coordinates":[-60.139999999999986,20.13]},"basin":1,"timestamp":"2017-07-08T06:48:59.999Z","date_updated_argovis":"2023-01-31T13:55:16.864Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_001.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,46,55,65,75,85,96,106,115,125,136,145,155,166,176,185,196,205,215,226,235,246,256,265,275,285,295,305,315,325,335,345,363,388,413,438,463,489,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1039,1063,1088,1113,1137,1162,1188,1214,1238,1262,1287,1313,1338,1363,1388,1413,1438,1464,1488,1512,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1864,1888,1913,1938,1963,1989,2001],[27.965,27.965,27.966999,27.968,27.966999,27.968,27.966,27.968,27.968,27.993,27.771999,26.938999,26.357,26.041,25.739,25.459999,25.194,25.004999,24.555,24.146,23.445,22.885,22.462,21.993,21.370001,20.834999,20.516001,20.167999,19.792,19.393999,19.157,18.881001,18.615999,18.354,18.163,18.040001,17.813,17.698,17.500999,17.311001,17.028,16.757999,16.417,16.056999,15.459,14.946,14.473,13.765,13.25,12.754,12.32,11.874,11.357,10.893,10.367,9.622,8.925,8.141,7.681,7.281,7.098,6.836,6.683,6.53,6.478,6.188,6.025,6.12,6.137,5.933,5.808,5.821,5.786,5.705,5.657,5.582,5.519,5.439,5.351,5.286,5.223,5.159,5.085,4.995,4.874,4.768,4.661,4.615,4.55,4.508,4.471,4.404,4.343,4.288,4.242,4.194,4.147,4.094,4.035,3.986,3.929,3.882,3.84,3.807,3.769,3.744,3.713,3.692,3.672],[35.889999,35.889999,35.889,35.889,35.889999,35.888,35.889999,35.888,35.888,35.942001,36.424999,37.008999,37.096001,37.188999,37.221001,37.244999,37.251999,37.261002,37.251999,37.264999,37.221001,37.168999,37.134998,37.09,37.004002,36.938999,36.883999,36.826,36.766998,36.723,36.702999,36.659,36.618999,36.580002,36.551998,36.535999,36.502998,36.486,36.456001,36.426998,36.382,36.34,36.283001,36.223999,36.125999,36.042999,35.963001,35.838001,35.755001,35.682999,35.617001,35.550999,35.478001,35.409,35.335999,35.219002,35.099998,34.972,34.904999,34.848,34.839001,34.813,34.810001,34.808998,34.828999,34.808998,34.807999,34.845001,34.872002,34.867001,34.880001,34.911999,34.942001,34.952999,34.970001,34.984001,34.997002,35.005001,35.006001,35.011002,35.015999,35.019001,35.019001,35.02,35.019001,35.016998,35.013,35.011002,35.008999,35.007999,35.006001,35.002998,35.000999,34.998001,34.995998,34.993,34.991001,34.987999,34.985001,34.981998,34.98,34.977001,34.976002,34.973999,34.973,34.972,34.971001,34.972,34.971001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +] diff --git a/argopy/tests/test_data/4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122.nc b/argopy/tests/test_data/4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122.nc new file mode 100644 index 00000000..242a6831 Binary files /dev/null and b/argopy/tests/test_data/4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122.nc differ diff --git a/argopy/tests/test_data/4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b.yaml b/argopy/tests/test_data/4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b.yaml new file mode 100644 index 00000000..87fd05e3 --- /dev/null +++ b/argopy/tests/test_data/4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b.yaml @@ -0,0 +1,3480 @@ +components: + parameters: + Dir: + description: sorting direction. More details [here](https://agrest.io/protocol/#ordering-collection-with-sort-dir). + explode: false + in: query + name: dir + required: false + schema: + enum: + - ASC + - DESC + type: string + style: form + Excludes: + description: a list of excludes (either simple paths or JSON structures). More + details [here](https://agrest.io/protocol/#shaping-collection-with-include-exclude). + explode: true + in: query + name: exclude + required: false + schema: + items: + type: string + type: array + style: form + Exp: + description: condition applied to data in the format of Cayenne expression with + parameters. More details [here](https://agrest.io/protocol/#filtering-collection-with-exp). + explode: false + in: query + name: exp + required: false + schema: + type: string + style: form + Includes: + description: a list of includes (either simple paths or JSON structures). More + details [here](https://agrest.io/protocol/#shaping-collection-with-include-exclude). + explode: true + in: query + name: include + required: false + schema: + items: + type: string + type: array + style: form + Limit: + description: limit query parameter. Used for pagination. More details [here](https://agrest.io/protocol/#Pagination). + explode: false + in: query + name: limit + required: false + schema: + format: int32 + type: integer + style: form + MapBy: + description: map by query parameter to structure results. More details [here](https://agrest.io/protocol/#structuring-collection-with-mapby). + explode: false + in: query + name: mapBy + required: false + schema: + type: string + style: form + Sort: + description: sorting query parameter. More details [here](https://agrest.io/protocol/#ordering-collection-with-sort-dir). + explode: false + in: query + name: sort + required: false + schema: + type: string + style: form + Start: + description: start query parameter. Used for pagination. More details [here](https://agrest.io/protocol/#Pagination). + explode: false + in: query + name: start + required: false + schema: + format: int32 + type: integer + style: form + ptfId: + description: ID of Platform to fetch + in: path + name: ptfId + required: true + schema: + format: int32 + type: integer + ptfRef: + description: Reference of Platform to fetch + in: path + name: ptfRef + required: true + schema: + type: string + ptfWigosId: + description: Reference of Platform to fetch + in: path + name: ptfWigosId + required: true + schema: + type: string + schemas: + Agency: + properties: + address: + type: string + agencyDacTypes: + $ref: '#/components/schemas/AgencyDacType' + agencyPtfs: + $ref: '#/components/schemas/AgencyPtf' + agencySiteRoles: + $ref: '#/components/schemas/AgencySiteRole' + contacts: + $ref: '#/components/schemas/Contact' + country: + $ref: '#/components/schemas/Country' + cruises: + $ref: '#/components/schemas/Cruise' + deployer: + type: number + description: + type: string + email: + type: string + fax: + type: string + grid: + type: string + gtsCcccs: + $ref: '#/components/schemas/GtsCccc' + id: + type: number + image: + $ref: '#/components/schemas/Image' + images: + $ref: '#/components/schemas/Image' + lat: + type: number + lon: + type: number + manuf: + type: number + name: + type: string + nameShort: + type: string + pogoMember: + type: number + programAgencies: + $ref: '#/components/schemas/ProgramAgency' + ptfFirmwares: + $ref: '#/components/schemas/PtfFirmware' + ptfHullTypes: + $ref: '#/components/schemas/PtfHullType' + ptfModels: + $ref: '#/components/schemas/PtfModel' + purchaser: + type: number + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + ref: + type: string + sensorModels: + $ref: '#/components/schemas/SensorModel' + services: + $ref: '#/components/schemas/Service' + tel: + type: string + userGroupAgencies: + $ref: '#/components/schemas/UserGroupAgency' + weblink: + $ref: '#/components/schemas/Weblink' + type: object + AgencyDacType: + properties: + agency: + $ref: '#/components/schemas/Agency' + agencyId: + type: number + dacType: + $ref: '#/components/schemas/DacType' + dacTypeId: + type: number + dataPath: + type: string + description: + type: string + masterProgramId: + type: number + name: + type: string + nameShort: + type: string + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + oldDacId: + type: number + opMail: + type: string + weblink: + $ref: '#/components/schemas/Weblink' + type: object + AgencyPtf: + properties: + agency: + $ref: '#/components/schemas/Agency' + agencyRole: + $ref: '#/components/schemas/AgencyRole' + dacType: + $ref: '#/components/schemas/DacType' + id: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + type: object + AgencyRole: + properties: + agencyPtfs: + $ref: '#/components/schemas/AgencyPtf' + agencySiteRoles: + $ref: '#/components/schemas/AgencySiteRole' + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + programAgencies: + $ref: '#/components/schemas/ProgramAgency' + type: object + AgencySiteRole: + properties: + agency: + $ref: '#/components/schemas/Agency' + id: + type: number + role: + $ref: '#/components/schemas/AgencyRole' + site: + $ref: '#/components/schemas/Site' + siteId: + type: number + type: object + ApiWmoIdType: + properties: + code: + type: string + description: + type: string + name: + type: string + type: object + Config: + properties: + cycleTime: + type: number + driftPress: + type: number + iceDetection: + type: number + id: + type: number + nLevels: + type: number + obsSchedule: + type: string + pnp: + type: number + profilePress: + type: number + ptfConfigs: + $ref: '#/components/schemas/PtfConfig' + surfaceTime: + type: number + watchCircle: + type: number + type: object + Contact: + properties: + address: + type: string + agency: + $ref: '#/components/schemas/Agency' + betaTester: + type: number + contactPtfRoles: + $ref: '#/components/schemas/ContactPtfRole' + contactSiteRoles: + $ref: '#/components/schemas/ContactSiteRole' + country: + $ref: '#/components/schemas/Country' + cruiseContacts: + $ref: '#/components/schemas/CruiseContact' + email: + type: string + email2: + type: string + emailPublic: + type: string + fax: + type: string + firstName: + type: string + gdprApproved: + type: number + id: + type: number + image: + $ref: '#/components/schemas/Image' + lastName: + type: string + lastUpdate: + format: date-time + type: string + networkContacts: + $ref: '#/components/schemas/NetworkContact' + orcid: + type: string + programContacts: + $ref: '#/components/schemas/ProgramContact' + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + ptfHistories: + $ref: '#/components/schemas/PtfUpdateHistory' + ptfModels: + $ref: '#/components/schemas/PtfModel' + qrCodes: + $ref: '#/components/schemas/QrCode' + services: + $ref: '#/components/schemas/Service' + tel: + type: string + tel2: + type: string + telecomFormats: + $ref: '#/components/schemas/TelecomFormat' + title: + type: string + userGroupContacts: + $ref: '#/components/schemas/UserGroupContact' + weblink: + $ref: '#/components/schemas/Weblink' + type: object + ContactPtfRole: + properties: + contact: + $ref: '#/components/schemas/Contact' + id: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + role: + $ref: '#/components/schemas/Role' + sensorModel: + $ref: '#/components/schemas/SensorModel' + type: object + ContactSiteRole: + properties: + contact: + $ref: '#/components/schemas/Contact' + role: + $ref: '#/components/schemas/Role' + site: + $ref: '#/components/schemas/Site' + siteId: + type: number + type: object + Country: + properties: + active: + type: number + agencies: + $ref: '#/components/schemas/Agency' + code2: + type: string + code3: + type: string + color: + type: string + contacts: + $ref: '#/components/schemas/Contact' + countryCommitments: + $ref: '#/components/schemas/CountryCommitment' + cruiseCountries: + $ref: '#/components/schemas/CruiseCountry' + eez: + type: number + gtsCcccs: + $ref: '#/components/schemas/GtsCccc' + id: + type: number + iocMember: + type: number + mzmsPtfCountries: + $ref: '#/components/schemas/MzmsPtfCountry' + name: + type: string + nameLong: + type: string + nameShort: + type: string + networkCountries: + $ref: '#/components/schemas/NetworkCountry' + numcode: + type: number + programs: + $ref: '#/components/schemas/Program' + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + ptfHardwares: + $ref: '#/components/schemas/PtfHardware' + retrievals: + $ref: '#/components/schemas/Retrieval' + shipHistories: + $ref: '#/components/schemas/ShipHistory' + ships: + $ref: '#/components/schemas/Ship' + toNotify: + type: number + userGroupContacts: + $ref: '#/components/schemas/UserGroupContact' + weblinks: + $ref: '#/components/schemas/Weblink' + wmoMember: + type: number + type: object + CountryCommitment: + properties: + country: + $ref: '#/components/schemas/Country' + description: + type: string + id: + type: number + nbFunded: + type: number + network: + $ref: '#/components/schemas/Network' + year: + type: number + type: object + Cruise: + properties: + agency: + $ref: '#/components/schemas/Agency' + arrivalDate: + format: date-time + type: string + arrivalPort: + type: string + autonomy: + type: number + cooperations: + type: number + costMonth: + type: number + costUnit: + type: number + cruiseClass: + $ref: '#/components/schemas/CruiseClass' + cruiseContacts: + $ref: '#/components/schemas/CruiseContact' + cruiseCountries: + $ref: '#/components/schemas/CruiseCountry' + cruiseParent: + $ref: '#/components/schemas/Cruise' + cruisePrograms: + $ref: '#/components/schemas/CruiseProgram' + cruiseSensorModels: + $ref: '#/components/schemas/CruiseSensorModel' + cruiseStatus: + $ref: '#/components/schemas/CruiseStatus' + cruiseType: + $ref: '#/components/schemas/CruiseType' + cruiseVariables: + $ref: '#/components/schemas/CruiseVariable' + datesPending: + type: number + demobDate: + format: date-time + type: string + departureDate: + format: date-time + type: string + departurePort: + type: string + description: + type: string + embarkCapacity: + type: number + expocode: + type: string + flexibleRoute: + type: number + frequency: + $ref: '#/components/schemas/Frequency' + geom: + type: string + id: + type: number + iioe2Id: + type: string + image: + $ref: '#/components/schemas/Image' + insertDate: + format: date-time + type: string + mfpId: + type: string + mobDate: + format: date-time + type: string + modifDate: + format: date-time + type: string + nameLong: + type: string + operationDate: + format: date-time + type: string + performanceComment: + type: string + performanceIndex: + type: number + projectName: + type: string + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + ref: + type: string + refTmp: + type: string + retrievals: + $ref: '#/components/schemas/Retrieval' + routePending: + type: number + routePrivate: + type: number + services: + $ref: '#/components/schemas/Service' + ship: + $ref: '#/components/schemas/Ship' + shipStop: + type: number + storageCapacity: + type: number + survey: + $ref: '#/components/schemas/Survey' + unolsId: + type: number + updateDate: + format: date-time + type: string + validated: + type: number + weblink: + $ref: '#/components/schemas/Weblink' + type: object + CruiseClass: + properties: + cruises: + $ref: '#/components/schemas/Cruise' + description: + type: string + id: + type: number + name: + type: string + type: object + CruiseContact: + properties: + contact: + $ref: '#/components/schemas/Contact' + contactId: + type: number + cruise: + $ref: '#/components/schemas/Cruise' + cruiseId: + type: number + role: + $ref: '#/components/schemas/Role' + roleId: + type: number + type: object + CruiseCountry: + properties: + country: + $ref: '#/components/schemas/Country' + countryId: + type: number + cruise: + $ref: '#/components/schemas/Cruise' + cruiseId: + type: number + type: object + CruiseProgram: + properties: + cruise: + $ref: '#/components/schemas/Cruise' + cruiseId: + type: number + lead: + type: number + program: + $ref: '#/components/schemas/Program' + programId: + type: number + type: object + CruiseSensorModel: + properties: + cruise: + $ref: '#/components/schemas/Cruise' + cruiseId: + type: number + sensorModel: + $ref: '#/components/schemas/SensorModel' + sensorModelId: + type: number + type: object + CruiseStatus: + properties: + cruises: + $ref: '#/components/schemas/Cruise' + description: + type: string + id: + type: number + name: + type: string + nameLong: + type: string + nameShort: + type: string + type: object + CruiseType: + properties: + cruises: + $ref: '#/components/schemas/Cruise' + description: + type: string + id: + type: number + name: + type: string + nameLong: + type: string + nameShort: + type: string + type: object + CruiseVariable: + properties: + cruise: + $ref: '#/components/schemas/Cruise' + cruiseId: + type: number + variable: + $ref: '#/components/schemas/Variable' + variableId: + type: number + type: object + DacType: + properties: + agencyDacTypes: + $ref: '#/components/schemas/AgencyDacType' + agencyPtfs: + $ref: '#/components/schemas/AgencyPtf' + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + type: object + DataFormat: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + type: object + DataProcessingMethod: + properties: + description: + type: string + id: + type: number + name: + type: string + ref: + type: string + type: object + DataStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + type: object + DeplMethod: + properties: + description: + type: string + id: + type: number + name: + type: string + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + type: object + DeplType: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + type: object + EndingCause: + properties: + id: + type: number + name: + type: string + nameShort: + type: string + networkEndingCauses: + $ref: '#/components/schemas/NetworkEndingCause' + ptfs: + $ref: '#/components/schemas/Ptf' + type: object + Frequency: + properties: + cruises: + $ref: '#/components/schemas/Cruise' + id: + type: number + name: + type: string + nameShort: + type: string + type: object + GtsCccc: + properties: + agency: + $ref: '#/components/schemas/Agency' + cccc: + type: string + center: + type: string + city: + type: string + country: + $ref: '#/components/schemas/Country' + gtsCcccHeaders: + $ref: '#/components/schemas/GtsCcccHeader' + id: + type: number + insertMarine: + type: number + location: + type: string + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + tag: + type: string + tmp: + type: string + type: object + GtsCcccHeader: + properties: + gtsCccc: + $ref: '#/components/schemas/GtsCccc' + gtsCcccId: + type: number + gtsHeader: + $ref: '#/components/schemas/GtsHeader' + gtsHeaderId: + type: number + type: object + GtsCode: + properties: + active: + type: number + codeLetters: + type: string + codeName: + type: string + codeName2: + type: string + comments: + type: string + formalCode: + type: string + id: + type: number + mainPtfType: + type: string + tag: + type: string + type: object + GtsHeader: + properties: + endDate: + format: date-time + type: string + gtsCcccHeaders: + $ref: '#/components/schemas/GtsCcccHeader' + header: + type: string + id: + type: number + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + startDate: + format: date-time + type: string + text: + type: string + type: object + GtsInstrumentType: + properties: + code: + type: string + details: + type: string + fallrateA: + type: number + fallrateB: + type: number + id: + type: number + ptfModels: + $ref: '#/components/schemas/PtfModel' + type: + type: string + type: object + GtsRecorderType: + properties: + code: + type: string + details: + type: string + id: + type: number + type: + type: string + type: object + Image: + properties: + agencies: + $ref: '#/components/schemas/Agency' + agency: + $ref: '#/components/schemas/Agency' + contacts: + $ref: '#/components/schemas/Contact' + creationDate: + format: date-time + type: string + credits: + type: string + cruises: + $ref: '#/components/schemas/Cruise' + data: + type: string + description: + type: string + filename: + type: string + htmlAlt: + type: string + id: + type: number + imageType: + $ref: '#/components/schemas/ImageType' + name: + type: string + network: + $ref: '#/components/schemas/Network' + program: + $ref: '#/components/schemas/Program' + ptfModels: + $ref: '#/components/schemas/PtfModel' + ptfTypes: + $ref: '#/components/schemas/PtfType' + sensorModels: + $ref: '#/components/schemas/SensorModel' + ship: + $ref: '#/components/schemas/Ship' + storyId: + type: number + tags: + type: string + url: + type: string + type: object + ImageType: + properties: + description: + type: string + id: + type: number + images: + $ref: '#/components/schemas/Image' + name: + type: string + nameLong: + type: string + nameShort: + type: string + type: object + Indicator: + properties: + basinId: + type: number + core: + type: number + description: + type: string + explanation: + type: string + id: + type: number + indicatorCategory: + $ref: '#/components/schemas/IndicatorCategory' + indicatorValues: + $ref: '#/components/schemas/IndicatorValue' + legendMax: + type: number + legendMin: + type: number + masterNetwork: + $ref: '#/components/schemas/Network' + name: + type: string + network: + $ref: '#/components/schemas/Network' + nondefault: + type: number + percentage: + type: number + rank: + type: number + targetText: + type: string + targetValue: + type: number + variable: + $ref: '#/components/schemas/Variable' + type: object + IndicatorCategory: + properties: + description: + type: string + id: + type: number + indicators: + $ref: '#/components/schemas/Indicator' + name: + type: string + rank: + type: number + type: object + IndicatorValue: + properties: + endDate: + format: date-time + type: string + id: + type: number + indicator: + $ref: '#/components/schemas/Indicator' + startDate: + format: date-time + type: string + value: + type: number + valueRaw: + type: number + type: object + Latency: + properties: + id: + type: number + minutes: + type: number + name: + type: string + nameShort: + type: string + type: object + Line: + properties: + fromTo: + type: string + geom: + type: string + id: + type: number + lineDecadalStatus: + $ref: '#/components/schemas/LineDecadalStatus' + lineFamily: + $ref: '#/components/schemas/LineFamily' + linePrograms: + $ref: '#/components/schemas/LineProgram' + lineSurveys: + $ref: '#/components/schemas/LineSurvey' + name: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + weblink: + $ref: '#/components/schemas/Weblink' + type: object + LineDecadalStatus: + properties: + description: + type: string + id: + type: number + lines: + $ref: '#/components/schemas/Line' + name: + type: string + type: object + LineFamily: + properties: + description: + type: string + id: + type: number + lines: + $ref: '#/components/schemas/Line' + name: + type: string + nameShort: + type: string + type: object + LinePerformance: + properties: + description: + type: string + id: + type: number + lineSurveys: + $ref: '#/components/schemas/LineSurvey' + name: + type: string + type: object + LineProgram: + properties: + lead: + type: number + line: + $ref: '#/components/schemas/Line' + lineId: + type: number + program: + $ref: '#/components/schemas/Program' + programId: + type: number + type: object + LinePtf: + properties: + line: + $ref: '#/components/schemas/Line' + ptf: + $ref: '#/components/schemas/Ptf' + type: object + LineStatus: + properties: + description: + type: string + id: + type: number + lineSurveys: + $ref: '#/components/schemas/LineSurvey' + name: + type: string + type: object + LineSurvey: + properties: + line: + $ref: '#/components/schemas/Line' + lineId: + type: number + linePerformance: + $ref: '#/components/schemas/LinePerformance' + lineStatus: + $ref: '#/components/schemas/LineStatus' + lineType: + $ref: '#/components/schemas/LineType' + survey: + $ref: '#/components/schemas/Survey' + surveyId: + type: number + type: object + LineType: + properties: + comments: + type: string + drops: + type: number + horizResBoxes: + type: number + horizResolDeg: + type: number + horizResolHr: + type: number + horizResolKm: + type: number + id: + type: number + lineSurveys: + $ref: '#/components/schemas/LineSurvey' + maxHorizRes: + type: number + maxHorizResI4: + type: number + maxNbTrans12: + type: number + maxNbTrans6: + type: number + maxSdHorizRes: + type: number + maxSdPeriod: + type: number + minHorizRes: + type: number + minHorizResI4: + type: number + minNbTrans12: + type: number + minNbTrans6: + type: number + name: + type: string + nameLong: + type: string + nameShort: + type: string + percentBoxes: + type: number + percentGoodTr: + type: number + periodTolerance: + type: number + transects: + type: number + type: object + LocStatus: + properties: + id: + type: number + name: + type: string + nameShort: + type: string + ptfLocStatuses: + $ref: '#/components/schemas/PtfLocStatus' + type: object + LocSystem: + properties: + id: + type: number + name: + type: string + nameShort: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + ptfsBackup: + $ref: '#/components/schemas/Ptf' + wigosCode: + type: string + type: object + MapType: + properties: + freq: + type: number + id: + type: number + mapTypeNetworks: + $ref: '#/components/schemas/MapTypeNetwork' + name: + type: string + nameLong: + type: string + nameShort: + type: string + urlPath: + type: string + type: object + MapTypeNetwork: + properties: + mapType: + $ref: '#/components/schemas/MapType' + network: + $ref: '#/components/schemas/Network' + rank: + type: number + type: object + MzmsPtfCountry: + properties: + checked: + type: number + comments: + type: string + country: + $ref: '#/components/schemas/Country' + countryId: + type: number + formalNotificationDate: + format: date-time + type: string + latestReportDate: + format: date-time + type: string + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + warningDate: + format: date-time + type: string + type: object + Network: + properties: + agencyDacTypes: + $ref: '#/components/schemas/AgencyDacType' + countryCommitments: + $ref: '#/components/schemas/CountryCommitment' + description: + type: string + id: + type: number + images: + $ref: '#/components/schemas/Image' + mapTypeNetworks: + $ref: '#/components/schemas/MapTypeNetwork' + name: + type: string + nameShort: + type: string + networkContacts: + $ref: '#/components/schemas/NetworkContact' + networkCountries: + $ref: '#/components/schemas/NetworkCountry' + networkEndingCauses: + $ref: '#/components/schemas/NetworkEndingCause' + networkPtfs: + $ref: '#/components/schemas/NetworkPtf' + networkSites: + $ref: '#/components/schemas/NetworkSite' + networkType: + $ref: '#/components/schemas/NetworkType' + parentNetworkId: + type: number + programs: + $ref: '#/components/schemas/Program' + ptfModels: + $ref: '#/components/schemas/PtfModel' + rank: + type: number + sensorModelNetworks: + $ref: '#/components/schemas/SensorModelNetwork' + surveys: + $ref: '#/components/schemas/Survey' + userGroups: + $ref: '#/components/schemas/UserGroup' + weblinks: + $ref: '#/components/schemas/Weblink' + wigosCode: + type: string + type: object + NetworkContact: + properties: + contact: + $ref: '#/components/schemas/Contact' + contactId: + type: number + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + role: + $ref: '#/components/schemas/Role' + roleId: + type: number + type: object + NetworkCountry: + properties: + country: + $ref: '#/components/schemas/Country' + countryId: + type: number + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + type: object + NetworkEndingCause: + properties: + endingCause: + $ref: '#/components/schemas/EndingCause' + endingCauseId: + type: number + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + type: object + NetworkInformation: + properties: + data: + type: string + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + objectives: + type: string + oldSiteHomepage: + type: string + origins: + type: string + overview: + type: string + people: + type: string + tech: + type: string + type: object + NetworkPtf: + properties: + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + type: object + NetworkSite: + properties: + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + site: + $ref: '#/components/schemas/Site' + siteId: + type: number + type: object + NetworkType: + properties: + name: + type: string + nameShort: + type: string + type: object + ObsFishingvesselFdVariable: + properties: + variable: + $ref: '#/components/schemas/Variable' + type: object + ObsLatest: + properties: + id: + type: number + lat: + type: number + lon: + type: number + obsDate: + format: date-time + type: string + originId: + type: number + originTable: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + type: object + Parameter: + properties: + altLabel: + type: string + definition: + type: string + identifier: + type: string + parameterPtfs: + $ref: '#/components/schemas/ParameterPtf' + parameterVariables: + $ref: '#/components/schemas/ParameterVariable' + prefLabel: + type: string + updateDate: + format: date-time + type: string + uri: + type: string + type: object + ParameterPtf: + properties: + firstMeasured: + format: date-time + type: string + lastMeasured: + format: date-time + type: string + nbObs: + type: string + parameter: + $ref: '#/components/schemas/Parameter' + ptf: + $ref: '#/components/schemas/Ptf' + type: object + ParameterVariable: + properties: + parameter: + $ref: '#/components/schemas/Parameter' + variable: + $ref: '#/components/schemas/Variable' + type: object + PostRetrievalStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + retrievals: + $ref: '#/components/schemas/Retrieval' + type: object + Program: + properties: + active: + type: number + country: + $ref: '#/components/schemas/Country' + cruisePrograms: + $ref: '#/components/schemas/CruiseProgram' + defaultPtfModel: + $ref: '#/components/schemas/PtfModel' + description: + type: string + id: + type: number + images: + $ref: '#/components/schemas/Image' + linePrograms: + $ref: '#/components/schemas/LineProgram' + name: + type: string + nameShort: + type: string + network: + $ref: '#/components/schemas/Network' + programAgencies: + $ref: '#/components/schemas/ProgramAgency' + programContacts: + $ref: '#/components/schemas/ProgramContact' + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + ptfs: + $ref: '#/components/schemas/Ptf' + services: + $ref: '#/components/schemas/Service' + weblinks: + $ref: '#/components/schemas/Weblink' + wigosCode: + type: string + type: object + ProgramAgency: + properties: + agency: + $ref: '#/components/schemas/Agency' + lead: + type: number + program: + $ref: '#/components/schemas/Program' + role: + $ref: '#/components/schemas/AgencyRole' + type: object + ProgramContact: + properties: + contact: + $ref: '#/components/schemas/Contact' + program: + $ref: '#/components/schemas/Program' + role: + $ref: '#/components/schemas/Role' + type: object + Ptf: + properties: + activityCriterion: + type: number + agencyPtfs: + $ref: '#/components/schemas/AgencyPtf' + backupTelecom: + $ref: '#/components/schemas/Telecom' + backupTrackingSystem: + $ref: '#/components/schemas/LocSystem' + batchRequestRef: + type: string + closureCriterion: + type: number + contactPtfRoles: + $ref: '#/components/schemas/ContactPtfRole' + dataStatus: + $ref: '#/components/schemas/DataStatus' + dataUrl: + type: string + deleteTag: + type: number + description: + type: string + eNotificationDate: + format: date-time + type: string + endingCause: + $ref: '#/components/schemas/EndingCause' + endingDate: + format: date-time + type: string + id: + type: number + insertDate: + format: date-time + type: string + lastLocId: + type: string + lastUpdate: + format: date-time + type: string + latestObs: + $ref: '#/components/schemas/ObsLatest' + lines: + $ref: '#/components/schemas/Line' + locSystem: + $ref: '#/components/schemas/LocSystem' + metadataAvailable: + type: number + mzmsPtfCountries: + $ref: '#/components/schemas/MzmsPtfCountry' + name: + type: string + networkPtfs: + $ref: '#/components/schemas/NetworkPtf' + nokReason: + type: string + parameterPtfs: + $ref: '#/components/schemas/ParameterPtf' + program: + $ref: '#/components/schemas/Program' + ptfAncillaryDevices: + $ref: '#/components/schemas/PtfAncillaryDevice' + ptfAutomation: + $ref: '#/components/schemas/PtfAutomation' + ptfBatchStatus: + $ref: '#/components/schemas/PtfBatchStatus' + ptfConfigs: + $ref: '#/components/schemas/PtfConfig' + ptfDepl: + $ref: '#/components/schemas/PtfDeployment' + ptfHardware: + $ref: '#/components/schemas/PtfHardware' + ptfIdentifiers: + $ref: '#/components/schemas/PtfIdentifiers' + ptfLocStatuses: + $ref: '#/components/schemas/PtfLocStatus' + ptfModel: + $ref: '#/components/schemas/PtfModel' + ptfPtfStatuses: + $ref: '#/components/schemas/PtfPtfStatus' + ptfSoftware: + $ref: '#/components/schemas/PtfSoftware' + ptfStatistics: + $ref: '#/components/schemas/PtfStatistics' + ptfStatus: + $ref: '#/components/schemas/PtfStatus' + ptfUpdateHistories: + $ref: '#/components/schemas/PtfUpdateHistory' + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + ref: + type: string + refParent: + type: string + retrieval: + $ref: '#/components/schemas/Retrieval' + services: + $ref: '#/components/schemas/Service' + sitePtfs: + $ref: '#/components/schemas/SitePtf' + tags: + $ref: '#/components/schemas/Tag' + telecom: + $ref: '#/components/schemas/Telecom' + updateDate: + format: date-time + type: string + validated: + type: number + weblinks: + $ref: '#/components/schemas/Weblink' + wigosSynchronised: + type: number + wmos: + $ref: '#/components/schemas/Wmo' + type: object + PtfAncillaryDevice: + properties: + ptf: + $ref: '#/components/schemas/Ptf' + ptfAncillaryDeviceName: + $ref: '#/components/schemas/PtfAncillaryDeviceName' + ptfAncillaryDeviceVersion: + $ref: '#/components/schemas/PtfAncillaryDeviceVersion' + serialRef: + type: string + type: object + PtfAncillaryDeviceName: + properties: + description: + type: string + id: + type: number + name: + type: string + ptfAncillaryDeviceVersions: + $ref: '#/components/schemas/PtfAncillaryDeviceVersion' + type: object + PtfAncillaryDeviceVersion: + properties: + id: + type: number + ptfAncillaryDeviceName: + $ref: '#/components/schemas/PtfAncillaryDeviceName' + ptfModel: + $ref: '#/components/schemas/PtfModel' + version: + type: string + type: object + PtfAutomation: + properties: + description: + type: string + id: + type: number + pub47Ref: + type: string + ref: + type: string + type: object + PtfBatchStatus: + properties: + description: + type: string + name: + type: string + type: object + PtfBattery: + properties: + description: + type: string + id: + type: number + iniVoltage: + type: number + name: + type: string + nameShort: + type: string + ptfHardwares: + $ref: '#/components/schemas/PtfHardware' + type: object + PtfConfig: + properties: + config: + $ref: '#/components/schemas/Config' + cycle: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + type: object + PtfDeployment: + properties: + contact: + $ref: '#/components/schemas/Contact' + country: + $ref: '#/components/schemas/Country' + cruise: + $ref: '#/components/schemas/Cruise' + cruiseName: + type: string + ctd: + type: number + ctdRef: + type: string + ctdo2: + type: number + density: + type: number + deplDate: + format: date-time + type: string + deplHeight: + type: number + deplMethod: + $ref: '#/components/schemas/DeplMethod' + deplSpeed: + type: number + deplType: + $ref: '#/components/schemas/DeplType' + id: + type: number + label: + type: number + lat: + type: number + lon: + type: number + maxMooringDepth: + type: number + noSite: + type: number + ptfs: + $ref: '#/components/schemas/Ptf' + refStationId: + type: string + score: + type: number + seaStateId: + type: number + ship: + $ref: '#/components/schemas/Ship' + shipName: + type: string + weatherId: + type: number + windSpeed: + type: number + type: object + PtfFamily: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + ptfTypes: + $ref: '#/components/schemas/PtfType' + type: object + PtfFirmware: + properties: + agency: + $ref: '#/components/schemas/Agency' + bluetoothId: + type: string + formatRef: + type: string + id: + type: number + manufDate: + format: date-time + type: string + name: + type: string + ptfHardwares: + $ref: '#/components/schemas/PtfHardware' + ptfHardwares1: + $ref: '#/components/schemas/PtfHardware' + ptfModelFirmwares: + $ref: '#/components/schemas/PtfModelFirmware' + serialRef: + type: string + softwareName: + type: string + softwareVersion: + type: string + type: object + PtfHardware: + properties: + balloonSize: + type: number + batchRef: + type: string + battery: + $ref: '#/components/schemas/PtfBattery' + batteryPack: + type: string + drogue: + type: number + firmware: + $ref: '#/components/schemas/PtfFirmware' + firmwareAdd: + $ref: '#/components/schemas/PtfFirmware' + hullType: + $ref: '#/components/schemas/PtfHullType' + id: + type: number + manufDate: + format: date-time + type: string + mooringDepth: + type: number + mooringWeight: + type: number + ptfs: + $ref: '#/components/schemas/Ptf' + sensorUpgradeCountry: + $ref: '#/components/schemas/Country' + serialRef: + type: string + spec: + type: string + specialFeature: + type: string + type: object + PtfHullType: + properties: + agency: + $ref: '#/components/schemas/Agency' + description: + type: string + id: + type: number + manufDate: + format: date-time + type: string + name: + type: string + ptfHardwares: + $ref: '#/components/schemas/PtfHardware' + ptfModels: + $ref: '#/components/schemas/PtfModel' + type: object + PtfIdentifiers: + properties: + datacenterRef: + type: string + esurfmarRef: + type: string + glossRef: + type: string + id: + type: number + imoRef: + type: string + internalRef: + type: string + oceansitesRef: + type: string + odasRef: + type: string + operatorRef: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + qrCode: + type: string + seadatanetRef: + type: string + wigosRef: + type: string + type: object + PtfInspection: + properties: + description: + type: string + frequency: + type: number + id: + type: number + type: object + PtfLocStatus: + properties: + endDate: + format: date-time + type: string + locStatus: + $ref: '#/components/schemas/LocStatus' + locStatusId: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + source: + type: string + startDate: + format: date-time + type: string + type: object + PtfModel: + properties: + agency: + $ref: '#/components/schemas/Agency' + airDeplCertif: + type: number + apiWmoIdType: + $ref: '#/components/schemas/ApiWmoIdType' + commercial: + type: number + contact: + $ref: '#/components/schemas/Contact' + description: + type: string + gtsInstrumentType: + $ref: '#/components/schemas/GtsInstrumentType' + height: + type: number + heightAbove: + type: number + hullDepth: + type: number + hullType: + $ref: '#/components/schemas/PtfHullType' + id: + type: number + image: + $ref: '#/components/schemas/Image' + key: + type: string + length: + type: number + lifeTime: + type: string + name: + type: string + nameShort: + type: string + network: + $ref: '#/components/schemas/Network' + programs: + $ref: '#/components/schemas/Program' + ptfAncillaryDeviceVersions: + $ref: '#/components/schemas/PtfAncillaryDeviceVersion' + ptfModelFirmwares: + $ref: '#/components/schemas/PtfModelFirmware' + ptfType: + $ref: '#/components/schemas/PtfType' + ptfs: + $ref: '#/components/schemas/Ptf' + telecomFormats: + $ref: '#/components/schemas/TelecomFormat' + totalHeight: + type: number + weblink: + $ref: '#/components/schemas/Weblink' + weight: + type: number + width: + type: number + type: object + PtfModelFirmware: + properties: + ptfFirmware: + $ref: '#/components/schemas/PtfFirmware' + ptfModel: + $ref: '#/components/schemas/PtfModel' + type: object + PtfPtfStatus: + properties: + changingDate: + format: date-time + type: string + id: + type: number + insertDate: + format: date-time + type: string + ptf: + $ref: '#/components/schemas/Ptf' + ptfStatus: + $ref: '#/components/schemas/PtfStatus' + type: object + PtfSoftware: + properties: + id: + type: number + name: + type: string + ptfSoftwareType: + $ref: '#/components/schemas/PtfSoftwareType' + version: + type: string + type: object + PtfSoftwareType: + properties: + id: + type: number + name: + type: string + ptfSoftwares: + $ref: '#/components/schemas/PtfSoftware' + type: object + PtfStatistics: + properties: + delayAvg: + type: number + delayAvgGdac1: + type: number + delayAvgGdac2: + type: number + delayMedian: + type: number + delayMedianGdac1: + type: number + delayMedianGdac2: + type: number + nbObs: + type: number + nbObsDm: + type: number + nbObsDmEligible: + type: number + nbObsDmEligibleGdac1: + type: number + nbObsDmEligibleGdac2: + type: number + nbObsDmGdac1: + type: number + nbObsDmGdac2: + type: number + nbObsGdac1: + type: number + nbObsGdac2: + type: number + nbObsGts: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + type: object + PtfStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + ptfs: + $ref: '#/components/schemas/Ptf' + rank: + type: number + wigosCode: + type: string + type: object + PtfType: + properties: + description: + type: string + id: + type: number + image: + $ref: '#/components/schemas/Image' + name: + type: string + nameShort: + type: string + ptfFamily: + $ref: '#/components/schemas/PtfFamily' + ptfModels: + $ref: '#/components/schemas/PtfModel' + wigosCode: + type: string + type: object + PtfUpdateHistory: + properties: + contact: + $ref: '#/components/schemas/Contact' + fieldName: + type: string + newValue: + type: string + prevValue: + type: string + ptf: + $ref: '#/components/schemas/Ptf' + themeView: + type: string + updateDate: + format: date-time + type: string + type: object + PtfVariable: + properties: + accuracy: + type: string + calibDate: + format: date-time + type: string + calibDateNext: + format: date-time + type: string + comments: + type: string + controlSchedule: + type: string + dataProcessingMethod: + $ref: '#/components/schemas/DataProcessingMethod' + distanceX: + type: number + distanceY: + type: number + endDate: + format: date-time + type: string + firstMeasured: + format: date-time + type: string + height: + type: number + heightSecondaryRefLevel: + type: number + id: + type: number + lastMeasured: + format: date-time + type: string + manufDate: + format: date-time + type: string + manufWeblink: + $ref: '#/components/schemas/Weblink' + nbObs: + type: number + ownership: + type: string + packageN: + type: number + precision: + type: string + program: + $ref: '#/components/schemas/Program' + ptf: + $ref: '#/components/schemas/Ptf' + range: + type: string + rangeMax: + type: number + rangeMin: + type: number + resolution: + type: string + samplingRate: + type: string + samplingRateTotal: + type: string + sensorExposure: + $ref: '#/components/schemas/SensorExposure' + sensorGroup: + type: string + sensorLocation: + $ref: '#/components/schemas/SensorLocation' + sensorModel: + $ref: '#/components/schemas/SensorModel' + sensorStatus: + $ref: '#/components/schemas/SensorStatus' + serialNo: + type: string + sideIndicator: + type: string + startDate: + format: date-time + type: string + timeOffset: + type: number + uncertainty: + type: string + unit: + $ref: '#/components/schemas/Unit' + variable: + $ref: '#/components/schemas/Variable' + weblink: + $ref: '#/components/schemas/Weblink' + type: object + QcFeedback: + properties: + agency: + $ref: '#/components/schemas/Agency' + answer: + type: string + answerContact: + $ref: '#/components/schemas/Contact' + contact: + $ref: '#/components/schemas/Contact' + correctionType: + type: string + correctionValue: + type: number + done: + type: number + email: + type: string + endDate: + format: date-time + type: string + gtsCccc: + $ref: '#/components/schemas/GtsCccc' + gtsHeader: + $ref: '#/components/schemas/GtsHeader' + id: + type: number + message: + type: string + origin: + type: string + ptf: + $ref: '#/components/schemas/Ptf' + qcFeedbackAction: + $ref: '#/components/schemas/QcFeedbackAction' + qcFeedbackErrorType: + $ref: '#/components/schemas/QcFeedbackErrorType' + qcFeedbackObss: + $ref: '#/components/schemas/QcFeedbackObs' + qcFeedbackType: + $ref: '#/components/schemas/QcFeedbackType' + qcFeedbackVariables: + $ref: '#/components/schemas/QcFeedbackVariable' + recipients: + type: string + sent: + type: number + startDate: + format: date-time + type: string + subject: + type: string + topic: + $ref: '#/components/schemas/Topic' + variable: + $ref: '#/components/schemas/Variable' + weblink: + $ref: '#/components/schemas/Weblink' + wmo: + type: string + type: object + QcFeedbackAction: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + type: object + QcFeedbackErrorType: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + type: object + QcFeedbackObs: + properties: + obsId: + type: number + qcFeedback: + $ref: '#/components/schemas/QcFeedback' + qcFeedbackId: + type: number + type: object + QcFeedbackType: + properties: + description: + type: string + id: + type: number + name: + type: string + nameLong: + type: string + nameShort: + type: string + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + type: object + QcFeedbackVariable: + properties: + qcFeedback: + $ref: '#/components/schemas/QcFeedback' + qcFeedbackId: + type: number + variable: + $ref: '#/components/schemas/Variable' + variableId: + type: number + type: object + QrCode: + properties: + code: + type: string + contact: + $ref: '#/components/schemas/Contact' + creationDate: + format: date-time + type: string + requestId: + type: string + type: object + Retrieval: + properties: + contact: + type: string + country: + $ref: '#/components/schemas/Country' + cruise: + $ref: '#/components/schemas/Cruise' + cruiseName: + type: string + description: + type: string + email: + type: string + endDate: + format: date-time + type: string + id: + type: number + lat: + type: number + localContactInfo: + type: string + lon: + type: number + postRetrievalStatus: + $ref: '#/components/schemas/PostRetrievalStatus' + ptfs: + $ref: '#/components/schemas/Ptf' + refStationId: + type: string + region: + type: string + retrievalStatus: + $ref: '#/components/schemas/RetrievalStatus' + ship: + $ref: '#/components/schemas/Ship' + startDate: + format: date-time + type: string + tel: + type: string + type: object + RetrievalStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + retrievals: + $ref: '#/components/schemas/Retrieval' + type: object + Role: + properties: + contactPtfRoles: + $ref: '#/components/schemas/ContactPtfRole' + contactSiteRoles: + $ref: '#/components/schemas/ContactSiteRole' + cruiseContacts: + $ref: '#/components/schemas/CruiseContact' + description: + type: string + id: + type: number + name: + type: string + nameAlter: + type: string + nameShort: + type: string + networkContacts: + $ref: '#/components/schemas/NetworkContact' + programContacts: + $ref: '#/components/schemas/ProgramContact' + rank: + type: number + userGroupContacts: + $ref: '#/components/schemas/UserGroupContact' + type: object + Schedule: + properties: + name: + type: string + nameShort: + type: string + type: object + SensorExposure: + properties: + description: + type: string + id: + type: number + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + pub47Ref: + type: string + ref: + type: string + type: object + SensorFamily: + properties: + description: + type: string + id: + type: number + name: + type: string + sensorTypes: + $ref: '#/components/schemas/SensorType' + type: object + SensorLocation: + properties: + description: + type: string + id: + type: number + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + pub47Ref: + type: string + ref: + type: string + type: object + SensorModel: + properties: + agency: + $ref: '#/components/schemas/Agency' + axesNo: + type: number + bodcId: + type: string + calibFrequency: + type: number + cruiseSensorModels: + $ref: '#/components/schemas/CruiseSensorModel' + description: + type: string + id: + type: number + image: + $ref: '#/components/schemas/Image' + name: + type: string + nameLong: + type: string + nameShort: + type: string + originalDataset: + type: string + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + sensorModelNetworks: + $ref: '#/components/schemas/SensorModelNetwork' + sensorModelSensorTypes: + $ref: '#/components/schemas/SensorModelSensorType' + services: + $ref: '#/components/schemas/Service' + spec: + type: string + weblink: + $ref: '#/components/schemas/Weblink' + yearlyDrift: + type: number + type: object + SensorModelNetwork: + properties: + network: + $ref: '#/components/schemas/Network' + networkId: + type: number + sensorModel: + $ref: '#/components/schemas/SensorModel' + sensorModelId: + type: number + type: object + SensorModelSensorType: + properties: + accuracy: + type: string + precision: + type: string + range: + type: string + rangeMax: + type: number + rangeMin: + type: number + resolution: + type: string + sensorModel: + $ref: '#/components/schemas/SensorModel' + sensorType: + $ref: '#/components/schemas/SensorType' + unit: + $ref: '#/components/schemas/Unit' + type: object + SensorStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + ref: + type: string + type: object + SensorType: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + pub47Ref: + type: string + sensorFamily: + $ref: '#/components/schemas/SensorFamily' + sensorModelSensorTypes: + $ref: '#/components/schemas/SensorModelSensorType' + variable: + $ref: '#/components/schemas/Variable' + wigosCode: + type: string + type: object + Service: + properties: + agency: + $ref: '#/components/schemas/Agency' + contact: + $ref: '#/components/schemas/Contact' + cruise: + $ref: '#/components/schemas/Cruise' + description: + type: string + endDate: + format: date-time + type: string + id: + type: number + program: + $ref: '#/components/schemas/Program' + ptf: + $ref: '#/components/schemas/Ptf' + sensorModel: + $ref: '#/components/schemas/SensorModel' + serviceLocation: + $ref: '#/components/schemas/ServiceLocation' + serviceType: + $ref: '#/components/schemas/ServiceType' + startDate: + format: date-time + type: string + type: object + ServiceLocation: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + services: + $ref: '#/components/schemas/Service' + type: object + ServiceType: + properties: + id: + type: number + name: + type: string + nameShort: + type: string + services: + $ref: '#/components/schemas/Service' + type: object + Ship: + properties: + autonomy: + type: number + breadth: + type: number + bridge: + type: number + buoyCapacity: + type: number + callSign: + type: string + commissionedDate: + format: date-time + type: string + contactSeaEmail: + type: string + contactSeaEmail2: + type: string + contactSeaEmail3: + type: string + contactShoreEmail: + type: string + contactShoreEmail2: + type: string + contactShoreEmail3: + type: string + contactShoreName: + type: string + country: + $ref: '#/components/schemas/Country' + cruises: + $ref: '#/components/schemas/Cruise' + decommissionedDate: + format: date-time + type: string + description: + type: string + draught: + type: number + extUpdate: + format: date-time + type: string + floatCapacity: + type: number + freeboard: + type: number + height: + type: number + hideMetadata: + type: number + homePort: + type: string + id: + type: number + images: + $ref: '#/components/schemas/Image' + imo: + type: string + insertDate: + format: date-time + type: string + length: + type: number + mmsi: + type: string + name: + type: string + originalDataset: + type: string + passengerCapacity: + type: number + ptfDeployments: + $ref: '#/components/schemas/PtfDeployment' + ref: + type: string + refParent: + type: number + refTmp: + type: string + retrievals: + $ref: '#/components/schemas/Retrieval' + shipHistories: + $ref: '#/components/schemas/ShipHistory' + shipStatus: + $ref: '#/components/schemas/ShipStatus' + shipType: + $ref: '#/components/schemas/ShipType' + shippingAgency: + type: string + speed: + type: number + trackingSystemId: + type: number + updateDate: + format: date-time + type: string + validated: + type: number + weblink: + $ref: '#/components/schemas/Weblink' + type: object + ShipHistory: + properties: + callSign: + type: string + country: + $ref: '#/components/schemas/Country' + description: + type: string + endDate: + format: date-time + type: string + icesCode: + type: string + id: + type: number + insertDate: + format: date-time + type: string + mmsi: + type: string + name: + type: string + oldId: + type: number + ship: + $ref: '#/components/schemas/Ship' + startDate: + format: date-time + type: string + updateDate: + format: date-time + type: string + type: object + ShipStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameLong: + type: string + nameShort: + type: string + ships: + $ref: '#/components/schemas/Ship' + type: object + ShipType: + properties: + code: + type: string + description: + type: string + id: + type: number + name: + type: string + originalDataset: + type: string + ships: + $ref: '#/components/schemas/Ship' + type: object + Site: + properties: + agencySiteRoles: + $ref: '#/components/schemas/AgencySiteRole' + contactSiteRoles: + $ref: '#/components/schemas/ContactSiteRole' + description: + type: string + geom: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + networkSites: + $ref: '#/components/schemas/NetworkSite' + siteFamily: + $ref: '#/components/schemas/SiteFamily' + sitePtfs: + $ref: '#/components/schemas/SitePtf' + status: + $ref: '#/components/schemas/SiteStatus' + targetedOccupation: + type: number + type: object + SiteFamily: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + sites: + $ref: '#/components/schemas/Site' + type: object + SitePtf: + properties: + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + site: + $ref: '#/components/schemas/Site' + siteId: + type: number + type: object + SiteStatus: + properties: + description: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + sites: + $ref: '#/components/schemas/Site' + type: object + Survey: + properties: + cruises: + $ref: '#/components/schemas/Cruise' + description: + type: string + endDate: + format: date-time + type: string + id: + type: number + lineSurveys: + $ref: '#/components/schemas/LineSurvey' + name: + type: string + nameShort: + type: string + network: + $ref: '#/components/schemas/Network' + startDate: + format: date-time + type: string + type: object + Tag: + properties: + colour: + type: string + description: + type: string + name: + type: string + tagPtfs: + $ref: '#/components/schemas/TagPtf' + type: object + TagPtf: + properties: + ptf: + $ref: '#/components/schemas/Ptf' + tag: + $ref: '#/components/schemas/Tag' + type: object + Telecom: + properties: + endDate: + format: date-time + type: string + frequency: + type: string + id: + type: number + imei: + type: string + latency: + $ref: '#/components/schemas/Latency' + num: + type: string + ptf: + $ref: '#/components/schemas/Ptf' + ptfBackup: + $ref: '#/components/schemas/Ptf' + refProg: + type: string + startDate: + format: date-time + type: string + telecomFormat: + $ref: '#/components/schemas/TelecomFormat' + telecomService: + $ref: '#/components/schemas/TelecomService' + telecomType: + $ref: '#/components/schemas/TelecomType' + type: object + TelecomFormat: + properties: + contact: + $ref: '#/components/schemas/Contact' + description: + type: string + endDate: + format: date-time + type: string + id: + type: number + key: + type: string + name: + type: string + nameLong: + type: string + nameShort: + type: string + nbBits: + type: number + ptfModel: + $ref: '#/components/schemas/PtfModel' + startDate: + format: date-time + type: string + telecomFormatDocs: + $ref: '#/components/schemas/TelecomFormatDoc' + telecoms: + $ref: '#/components/schemas/Telecom' + version: + type: string + type: object + TelecomFormatDoc: + properties: + docId: + type: number + telecomFormat: + $ref: '#/components/schemas/TelecomFormat' + telecomFormatId: + type: number + type: object + TelecomService: + properties: + description: + type: string + id: + type: number + name: + type: string + telecoms: + $ref: '#/components/schemas/Telecom' + type: object + TelecomType: + properties: + description: + type: string + id: + type: number + name: + type: string + pub47Ref: + type: string + telecoms: + $ref: '#/components/schemas/Telecom' + type: object + Topic: + properties: + id: + type: number + name: + type: string + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + weblinks: + $ref: '#/components/schemas/Weblink' + type: object + Unit: + properties: + id: + type: number + name: + type: string + nameShort: + type: string + wigosCode: + type: string + type: object + UserGroup: + properties: + description: + type: string + email: + type: string + id: + type: number + name: + type: string + nameShort: + type: string + network: + $ref: '#/components/schemas/Network' + userGroupAgencies: + $ref: '#/components/schemas/UserGroupAgency' + userGroupContacts: + $ref: '#/components/schemas/UserGroupContact' + weblinks: + $ref: '#/components/schemas/Weblink' + type: object + UserGroupAgency: + properties: + agency: + $ref: '#/components/schemas/Agency' + agencyId: + type: number + userGroup: + $ref: '#/components/schemas/UserGroup' + userGroupId: + type: number + type: object + UserGroupContact: + properties: + contact: + $ref: '#/components/schemas/Contact' + contactId: + type: number + country: + $ref: '#/components/schemas/Country' + role: + $ref: '#/components/schemas/Role' + userGroup: + $ref: '#/components/schemas/UserGroup' + userGroupId: + type: number + type: object + Variable: + properties: + canonicalName: + type: string + canonicalUnit: + type: string + cruiseVariables: + $ref: '#/components/schemas/CruiseVariable' + dataSource: + type: string + description: + type: string + id: + type: number + imosRef: + type: string + indicators: + $ref: '#/components/schemas/Indicator' + name: + type: string + nameAlter: + type: string + nameShort: + type: string + p02Ref: + type: string + parameterVariables: + $ref: '#/components/schemas/ParameterVariable' + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + qcFeedbackVariables: + $ref: '#/components/schemas/QcFeedbackVariable' + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + qcRef: + type: string + sensorTypes: + $ref: '#/components/schemas/SensorType' + variableVariableFamilies: + $ref: '#/components/schemas/VariableVariableFamily' + wigosCode: + type: string + type: object + VariableFamily: + properties: + description: + type: string + ecv: + type: number + eov: + type: number + id: + type: number + name: + type: string + nameShort: + type: string + variableVariableFamilies: + $ref: '#/components/schemas/VariableVariableFamily' + type: object + VariableVariableFamily: + properties: + variable: + $ref: '#/components/schemas/Variable' + variableFamily: + $ref: '#/components/schemas/VariableFamily' + variableFamilyId: + type: number + variableId: + type: number + type: object + Weblink: + properties: + agencies: + $ref: '#/components/schemas/Agency' + agencyDacTypes: + $ref: '#/components/schemas/AgencyDacType' + contacts: + $ref: '#/components/schemas/Contact' + country: + $ref: '#/components/schemas/Country' + cruises: + $ref: '#/components/schemas/Cruise' + description: + type: string + id: + type: number + lines: + $ref: '#/components/schemas/Line' + name: + type: string + network: + $ref: '#/components/schemas/Network' + program: + $ref: '#/components/schemas/Program' + ptfModels: + $ref: '#/components/schemas/PtfModel' + ptfVariables: + $ref: '#/components/schemas/PtfVariable' + qcFeedbacks: + $ref: '#/components/schemas/QcFeedback' + rank: + type: number + sensorModels: + $ref: '#/components/schemas/SensorModel' + ships: + $ref: '#/components/schemas/Ship' + storyId: + type: number + topic: + $ref: '#/components/schemas/Topic' + url: + type: string + userGroup: + $ref: '#/components/schemas/UserGroup' + weblinkPtfs: + $ref: '#/components/schemas/WeblinkPtf' + type: object + WeblinkPtf: + properties: + ptf: + $ref: '#/components/schemas/Ptf' + ptfId: + type: number + weblink: + $ref: '#/components/schemas/Weblink' + weblinkId: + type: number + type: object + Wmo: + properties: + endDate: + format: date-time + type: string + fivedigitDuplExists: + type: number + id: + type: number + mask: + type: number + ptf: + $ref: '#/components/schemas/Ptf' + startDate: + format: date-time + type: string + wmo: + type: string + type: object + securitySchemes: + apiKeyId: + in: header + name: X-OceanOPS-Metadata-ID + type: apiKey + apiKeyToken: + in: header + name: X-OceanOPS-Metadata-Token + type: apiKey +info: + contact: + email: dev@ocean-ops.org + name: API Support + url: https://ocean-ops.org/api + description: An API for interacting with OceanOPS metadata + license: + name: Apache 2.0 + url: https://www.apache.org/licenses/LICENSE-2.0.html + title: OceanOPS API for metadata access + version: 1.14.1 +openapi: 3.0.3 +paths: + /data/platform: + get: + parameters: + - $ref: '#/components/parameters/Includes' + - $ref: '#/components/parameters/Excludes' + - $ref: '#/components/parameters/Exp' + - $ref: '#/components/parameters/MapBy' + - $ref: '#/components/parameters/Start' + - $ref: '#/components/parameters/Limit' + - $ref: '#/components/parameters/Sort' + - $ref: '#/components/parameters/Dir' + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success response. + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Get list of all platforms + tags: + - Platform + /data/platform/ref/{ptfRef}: + get: + description: Returns a particular Platform through its OceanOPS reference + parameters: + - $ref: '#/components/parameters/ptfRef' + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success responce + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Returns a particular Platform through its OceanOPS reference + tags: + - Platform + /data/platform/wigosid/{ptfWigosId}: + get: + description: Returns a particular Platform through its WIGOS ID + parameters: + - $ref: '#/components/parameters/ptfWigosId' + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success responce + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Returns a particular Platform through its WIGOS ID + tags: + - Platform + /data/platform/wmdr/ref/{ptfRef}: + get: + description: Returns a particular Platform, in a WIGOS XML compliant format, + through its OceanOPS reference + parameters: + - $ref: '#/components/parameters/ptfRef' + responses: + '200': + content: + application/xml: + example: TBD + description: Success responce + summary: Returns a particular WMDR Platform through its OceanOPS reference + tags: + - Platform + /data/platform/wmdr/wigosid/{ptfWigosId}: + get: + description: Returns a particular Platform, in a WIGOS XML compliant format, + through its WIGOS ID + parameters: + - $ref: '#/components/parameters/ptfWigosId' + responses: + '200': + content: + application/json: + example: TBD + description: Success responce + summary: Returns a particular WMDR Platform through its WIGOS ID + tags: + - Platform + /data/platform/wmdr/{ptfId}: + get: + description: Returns a particular Platform, in a WIGOS XML compliant format, + through its database identifier + parameters: + - $ref: '#/components/parameters/ptfId' + responses: + '200': + content: + application/xml: + example: TBD + description: Success responce + summary: Returns a particular WMDR Platform through its database identifier + tags: + - Platform + /data/platform/{ptfId}: + get: + description: Returns a particular Platform through its database identifier + parameters: + - $ref: '#/components/parameters/ptfId' + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success responce + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Returns a particular Platform through its database identifier + tags: + - Platform + /data/ship: + get: + parameters: + - $ref: '#/components/parameters/Includes' + - $ref: '#/components/parameters/Excludes' + - $ref: '#/components/parameters/Exp' + - $ref: '#/components/parameters/MapBy' + - $ref: '#/components/parameters/Start' + - $ref: '#/components/parameters/Limit' + - $ref: '#/components/parameters/Sort' + - $ref: '#/components/parameters/Dir' + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success response. + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Get list of all ships + tags: + - Ship + /data/ship/{shipId}: + get: + description: Returns a particular Ship through its database identifier + parameters: + - description: ID of Ship to fetch + in: path + name: shipId + required: true + schema: + format: int32 + type: integer + responses: + '200': + content: + application/json: + schema: + properties: + data: + items: + type: object + type: array + total: + type: number + type: object + description: Success responce + security: + - X-OceanOPS-Metadata-ID: [] + X-OceanOPS-Metadata-Token: [] + summary: Returns a particular Ship through its database identifier + tags: + - Ship +servers: +- url: https://www.ocean-ops.org/api +tags: +- description: 'This model represents a Platform entity and is used to retrieve a + platform information (schema model named ''Ptf''). + + ' + name: Platform +- description: 'This model represents a Ship entity and is used to retrieve a ship + information (schema model named ''Ship''). + + ' + name: Ship diff --git a/argopy/tests/test_data/4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611.nc b/argopy/tests/test_data/4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611.nc new file mode 100644 index 00000000..346ab54b Binary files /dev/null and b/argopy/tests/test_data/4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611.nc differ diff --git a/argopy/tests/test_data/5150c8a2024690637cdd9498f9e9dddeda167d8aaf286bb0a256245025d40923.nc b/argopy/tests/test_data/5150c8a2024690637cdd9498f9e9dddeda167d8aaf286bb0a256245025d40923.nc new file mode 100644 index 00000000..1fca0b2d Binary files /dev/null and b/argopy/tests/test_data/5150c8a2024690637cdd9498f9e9dddeda167d8aaf286bb0a256245025d40923.nc differ diff --git a/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html b/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html new file mode 100644 index 00000000..5e89a5da --- /dev/null +++ b/argopy/tests/test_data/54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a.html @@ -0,0 +1,14 @@ + + + Description of the Argo GDAC File Checks: Data Format and Consistency Checks + + + + + + +

Description of the Argo GDAC File Checks: Data Format and Consistency Checks

Every Argo data file submitted by a DAC for distribution on the GDAC has its format and data consistency checked by the Argo FileChecker. Two types of checks are applied: 1. Format checks. Ensures the file formats match the Argo standards precisely. 2. Data consistency checks. Additional data consistency checks are performed on a file after it passes the format checks. These checks do not duplicate any of the quality control checks performed elsewhere. These checks can be thought of as “sanity checks” to ensure that the data are consistent with each other. The data consistency checks enforce data standards and ensure that certain data values are reasonable and/or consistent with other information in the files. Examples of the “data standard” checks are the “mandatory parameters” defined for meta-data files and the technical parameter names in technical data files. Files with format or consistency errors are rejected by the GDAC and are not distributed. Less serious problems will generate warnings and the file will still be distributed on the GDAC. Reference Tables and Data Standards: Many of the consistency checks involve comparing the data to the published reference tables and data standards. These tables are documented in the User’s Manual. (The FileChecker implements “text versions” of these tables.)

Full Text

FilePagesSizeAccess
Obsolete version 2.4
17763 Ko
version 2.5.2 obsolete
241 Mo
obsolete version 2.5.4
25268 Ko
Publisher's official version
25483 Ko
How to cite
Ignaszewski Mark (2020). Description of the Argo GDAC File Checks: Data Format and Consistency Checks. Ifremer. https://doi.org/10.13155/46120

Copy this text

+ + + diff --git a/argopy/tests/test_data/547fa82ac64b5bc91813230a48416ef6bb92011e4c11be22a93d7dd589d19822.nc b/argopy/tests/test_data/547fa82ac64b5bc91813230a48416ef6bb92011e4c11be22a93d7dd589d19822.nc new file mode 100644 index 00000000..fd36e154 Binary files /dev/null and b/argopy/tests/test_data/547fa82ac64b5bc91813230a48416ef6bb92011e4c11be22a93d7dd589d19822.nc differ diff --git a/argopy/tests/test_data/5557b333ce112d39056a955cfa6ddad2e2a0256b4fa351551eddd648543ef4e5.nc b/argopy/tests/test_data/5557b333ce112d39056a955cfa6ddad2e2a0256b4fa351551eddd648543ef4e5.nc new file mode 100644 index 00000000..879dc2ea Binary files /dev/null and b/argopy/tests/test_data/5557b333ce112d39056a955cfa6ddad2e2a0256b4fa351551eddd648543ef4e5.nc differ diff --git a/argopy/tests/test_data/568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819.json b/argopy/tests/test_data/568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819.json new file mode 100644 index 00000000..80c1e52b --- /dev/null +++ b/argopy/tests/test_data/568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819.json @@ -0,0 +1,317 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/1/" + }, + "dce:identifier": "SDN:R28::CB0007", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0007", + "skos:altLabel": "USEA", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "USEA" + }, + "dc:identifier": "SDN:R28::CB0007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used in certain types of NKE Argo floats as secondary controller board. Developed in partnership with LOV. Mentioned in https://www.frontiersin.org/articles/10.3389/fmars.2020.577446/full" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0001/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0001/1/" + }, + "dce:identifier": "SDN:R28::CB0001", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0001", + "skos:altLabel": "N1", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "N1" + }, + "dc:identifier": "SDN:R28::CB0001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Seabird Navis 1st generation controller board. Controls functions such as integrating the sensor data streams, operating the buoyancy engine, and passing the telemetry to the iridium transmitter." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0006/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0006/1/" + }, + "dce:identifier": "SDN:R28::CB0006", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0006", + "skos:altLabel": "OSEAN", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "OSEAN" + }, + "dc:identifier": "SDN:R28::CB0006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used in certain types of NKE Argo floats as secondary controller board." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0003/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0003/1/" + }, + "dce:identifier": "SDN:R28::CB0003", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0003", + "skos:altLabel": "GG32", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GG32" + }, + "dc:identifier": "SDN:R28::CB0003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Controller board fitted to certain types of SOLO Argo floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/1/" + }, + "dce:identifier": "SDN:R28::CB0005", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0005", + "skos:altLabel": "I535", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "I535" + }, + "dc:identifier": "SDN:R28::CB0005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used in certain types of NKE Argo floats as primary controller board." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0004/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0004/1/" + }, + "dce:identifier": "SDN:R28::CB0004", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0004", + "skos:altLabel": "HC12", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "HC12" + }, + "dc:identifier": "SDN:R28::CB0004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Controller board fitted to certain types of SOLO Argo floats." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0002/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0002/1/" + }, + "dce:identifier": "SDN:R28::CB0002", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0002", + "skos:altLabel": "N2", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "N2" + }, + "dc:identifier": "SDN:R28::CB0002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Seabird Navis 2nd generation controller board. Controls functions such as integrating the sensor data streams, operating the buoyancy engine, and passing the telemetry to the iridium transmitter." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/", + "pav:authoredOn": "2023-06-22 12:52:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/1/" + }, + "dce:identifier": "SDN:R28::CB0008", + "pav:version": "1", + "skos:notation": "SDN:R28::CB0008", + "skos:altLabel": "APMT", + "dc:date": "2023-06-22 12:52:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "APMT" + }, + "dc:identifier": "SDN:R28::CB0008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Used in certain types of NKE Argo floats as primary controller board." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R28/current/CB0004/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo floats controller board types and generations. Argo netCDF variables CONTROLLER_BOARD_TYPE_PRIMARY and, when needed, CONTROLLER_BOARD_TYPE_SECONDARY, are populated by R28 altLabel.", + "dc:title": "Argo controller board types and generations", + "skos:prefLabel": "Argo controller board types and generations", + "owl:versionInfo": "1", + "dc:date": "2023-06-23 03:00:02.0", + "skos:altLabel": "CONTROLLER_BOARD_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "CONTROLLER_BOARD_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre" + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html b/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html new file mode 100644 index 00000000..a52ea4ea --- /dev/null +++ b/argopy/tests/test_data/577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d.html @@ -0,0 +1,17 @@ + + + Processing Argo measurement timing information at the DAC level + + + + + + +

Processing Argo measurement timing information at the DAC level

Thermal lag or sensor time response corrections (e.g., [1]) require knowledge of the time of each individual sensor observation. In the Argo data system, the float's trajectory file is the natural place to put measurement timing information. Historically, only few levels of a float's profile have been timed, and DACs stored these sparse timed levels of the float profile in the trajectory already. Depending on the DAC, all measured paramters are stored with the timing information, or just the PRES variable is stored together with the time. With the need to have all observations timed, this approach leads to the following problems: +a) With all parameters stored together with the timing information and put into the trajectory file, the trajectory file in effect duplicates all profiles. This contradicts the Argo data system's design to split profile and trajectory files and may pose a file size issue. +b) With only PRES stored together with the timing information and put into the trajectory file, the only link between trajectory timing information and profile parameter observations is through the PRES variable. Due to the potential occurrence of equal PRES values for different parameter observations, this link may be ambiguous. +To keep the structure of the Argo data system and to resolve these problems, Biogeochemical-Argo saw a need to be able to store timing information in the float's profile file. Following discussions at ADMT16, AST17, and ADMT17 it was concluded that timing information associated with each measured parameter of the profile is scientifically useful for Biogeochemical-Argo, but does not seem necessary for core Argo. Sparse timing data should remain in the trajectory file – it was designed to handle this data and keeps QC of timing information mostly to one file. Abundant timing information (i.e., timing information for all profile observations), however, are stored in the i-parameter "MTIME" in the b-profile files. It is optional to the individual DAC to use the MTIME parameter.

Full Text

FilePagesSizeAccess
Publisher's official version
8508 Ko
How to cite
Bittig Henry C., Schmechtig Catherine, Rannou Jean-Philippe, Poteau Antoine (2017). Processing Argo measurement timing information at the DAC level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/47998

Copy this text

+ + + diff --git a/argopy/tests/test_data/5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f.json b/argopy/tests/test_data/5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f.json new file mode 100644 index 00000000..aab16ffa --- /dev/null +++ b/argopy/tests/test_data/5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-11-26T19:43:00","lat":-52.8463,"lon":-46.5725,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903639"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-12-20T19:22:00","lat":-59.0923,"lon":-64.2943,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903640"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-23T11:27:00","lat":-34.55,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906492"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-16T08:33:00","lat":-34.51,"lon":-39.72,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906489"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-20T14:56:00","lat":-34.6,"lon":-28.08,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906487"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-02T05:06:00","lat":-34.46,"lon":-5.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-13T07:46:00","lat":-34.48,"lon":-47.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906488"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-07-25T16:20:00","lat":-54.5132,"lon":-0.4253,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901942"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-13T01:17:00","lat":-45.973,"lon":-52.0526,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903791"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-01-16T15:37:00","lat":-59.5183,"lon":-66.5147,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904093"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-01-02T19:22:00","lat":-59.1633,"lon":-64.13,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904091"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-19T10:00:00","lat":-45.0833,"lon":-23.7666,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904090"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-17T05:02:00","lat":-66.037,"lon":-43.5072,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900971"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-13T06:00:00","lat":-62.0033,"lon":-28.2433,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904079"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-25T15:59:00","lat":-36.6924,"lon":-44.6454,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904127"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-13T20:19:00","lat":-59.8471,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904207"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-07T14:08:00","lat":-0.8603,"lon":-19.9225,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-08T05:06:00","lat":-0.969,"lon":-18.383,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-10T02:48:00","lat":-1.9855,"lon":-15.2477,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902326"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-10T19:46:00","lat":-2.4832,"lon":-13.6977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T13:09:00","lat":-7.0373,"lon":-5.996,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902393"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-11T07:57:00","lat":-2.9302,"lon":-12.1145,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-12T01:04:00","lat":-3.5682,"lon":-10.5588,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902420"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-13T21:36:00","lat":-6.1359,"lon":-7.0286,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902399"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-15T02:39:00","lat":-7.9552,"lon":-6.1275,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902402"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-12T16:13:00","lat":-3.9882,"lon":-9.0021,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902403"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-09T02:43:00","lat":-1.4405,"lon":-16.8265,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T02:05:00","lat":-10.9567,"lon":-6.139,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-15T21:11:00","lat":-8.9634,"lon":-6.0318,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902419"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T00:28:00","lat":-13.0034,"lon":-5.9635,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902405"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T13:11:00","lat":-10.0008,"lon":-5.9901,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902418"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T16:25:00","lat":-14.9999,"lon":-5.9957,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902433"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-17T16:25:00","lat":-11.981,"lon":-6.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902568"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-13T07:14:00","lat":-5.004,"lon":-7.944,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902571"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-28T18:49:00","lat":-16.2062,"lon":-5.7531,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902410"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T09:24:00","lat":-14.0287,"lon":-6.0029,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902422"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-28T23:54:00","lat":-17.0001,"lon":-5.6913,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-29T12:56:00","lat":-19.0203,"lon":-5.6059,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902421"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2022-01-23T14:37:00","lat":-53.99,"lon":-0.0371,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903128"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-09T02:30:00","lat":-42.0192,"lon":-5.9868,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904083"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-31T15:48:00","lat":-21.3478,"lon":-1.1237,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-30T22:26:00","lat":-20.876,"lon":-3.0015,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902416"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-29T20:33:00","lat":-19.9998,"lon":-5.598,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902423"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-29T05:48:00","lat":-18.001,"lon":-5.622,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-09T19:22:00","lat":-45.0,"lon":-10.0333,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904082"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-10T21:18:00","lat":-50.0,"lon":-35.6667,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904081"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-11T23:30:00","lat":-56.0,"lon":-25.9683,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904080"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-08T21:49:00","lat":-59.9967,"lon":-66.657,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904092"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-02-10T21:38:00","lat":-2.0881,"lon":-0.0465,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902411"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-12T09:20:00","lat":-57.0,"lon":-29.095,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902007"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-13T06:00:00","lat":-62.0003,"lon":-28.2433,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902009"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-17T04:35:00","lat":-34.5,"lon":-37.3833,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-13T07:15:00","lat":-34.5,"lon":-47.3833,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902322"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-04T17:44:00","lat":-56.365,"lon":-44.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901987"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-05T17:30:00","lat":-55.0833,"lon":-45.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901988"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-14T18:56:00","lat":-53.1167,"lon":-34.4333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901993"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-11T07:30:00","lat":-52.0012,"lon":-20.8283,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902008"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-24T17:53:00","lat":-37.0833,"lon":-16.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901990"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-03-30T17:37:00","lat":-28.8113,"lon":-77.5857,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902248"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-26T19:59:00","lat":-37.215,"lon":-11.5983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901991"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-04-04T14:33:00","lat":-21.8582,"lon":-88.0817,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902247"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-19T09:42:00","lat":-48.0003,"lon":-53.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901568"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-18T19:54:00","lat":-46.0008,"lon":-51.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901569"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-20T20:10:00","lat":-41.5012,"lon":-47.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901570"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-21T13:00:00","lat":-37.9983,"lon":-43.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901571"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-07-25T12:45:00","lat":-55.475,"lon":-0.624,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902083"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-23T23:36:00","lat":-36.0727,"lon":-2.9992,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902451"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-24T08:21:00","lat":-35.2815,"lon":-4.9951,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-29T00:37:00","lat":-39.5007,"lon":-10.506,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902452"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-29T03:01:00","lat":-40.0021,"lon":-10.1037,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902449"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-28T15:27:00","lat":-38.0092,"lon":-11.6935,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902450"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-13T16:25:00","lat":-1.9786,"lon":-22.9989,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903480"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T14:58:00","lat":-19.0167,"lon":-14.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901576"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T12:00:00","lat":-18.8333,"lon":-14.215,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901575"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T03:25:00","lat":-19.495,"lon":-17.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-12T04:46:00","lat":-22.6538,"lon":-35.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901573"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-11-24T16:43:00","lat":-12.414,"lon":-8.6909,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-12-10T22:33:00","lat":-36.95,"lon":-45.5667,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-12-12T01:09:00","lat":-41.9883,"lon":-48.9267,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-12T07:00:00","lat":-62.2967,"lon":-63.2133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-11T01:58:00","lat":-58.6833,"lon":-63.5783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-20T15:52:00","lat":-63.3833,"lon":-88.305,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-11T15:09:00","lat":-60.41,"lon":-63.2317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906248"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-17T21:00:00","lat":-66.57,"lon":-0.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906496"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-04T23:51:00","lat":-69.04,"lon":-17.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906493"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-19T12:13:00","lat":-65.96,"lon":-12.14,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906494"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-17T21:00:00","lat":-65.4328,"lon":-44.6002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900972"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-18T12:38:00","lat":-64.7382,"lon":-43.5107,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900979"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-18T04:40:00","lat":-65.003,"lon":-43.9085,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900980"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T10:00:00","lat":-70.1336,"lon":-30.9983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900981"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T12:11:00","lat":-70.7476,"lon":-31.1762,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900982"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-15T12:32:00","lat":-65.0442,"lon":-41.1406,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900983"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-11T08:48:00","lat":-68.995,"lon":-31.9426,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900984"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T22:54:00","lat":-69.5538,"lon":-32.4705,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900985"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-23T20:30:31","lat":-70.4198,"lon":-9.8883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900986"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-16T17:20:00","lat":-66.3797,"lon":-41.3985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900987"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-08T06:12:00","lat":-69.959,"lon":-27.9483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900988"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T07:22:00","lat":-69.3748,"lon":-9.2657,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900990"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-02T21:40:17","lat":-70.6013,"lon":-12.2145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900991"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-03T17:33:58","lat":-69.7464,"lon":-15.2957,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900992"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-04T20:07:00","lat":-69.029,"lon":-17.4735,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900993"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-16T01:51:00","lat":-66.0815,"lon":-41.7635,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900994"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-02T23:17:41","lat":-70.4649,"lon":-12.8123,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900995"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-09T23:46:00","lat":-70.6338,"lon":-29.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900996"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T16:36:00","lat":-69.7669,"lon":-32.0227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900997"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T13:03:44","lat":-70.0591,"lon":-8.7277,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900998"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T12:27:15","lat":-70.047,"lon":-8.6591,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900999"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-15T09:00:00","lat":-59.5,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904130"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-13T22:10:00","lat":-64.0,"lon":-36.1917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901937"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-14T04:50:00","lat":-65.0217,"lon":-39.79,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901938"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-13T14:50:00","lat":-63.0,"lon":-32.45,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901936"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-14T10:50:00","lat":-66.0,"lon":-43.0183,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901939"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-12T22:51:00","lat":-66.6167,"lon":-27.2017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-14T16:31:00","lat":-65.675,"lon":-36.6867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906499"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":253} \ No newline at end of file diff --git a/argopy/tests/test_data/5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848.nc b/argopy/tests/test_data/5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848.nc new file mode 100644 index 00000000..acb6b833 Binary files /dev/null and b/argopy/tests/test_data/5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848.nc differ diff --git a/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json b/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json new file mode 100644 index 00000000..89468915 --- /dev/null +++ b/argopy/tests/test_data/5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1.json @@ -0,0 +1,159 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/I/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/I/1/" + }, + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/I/2/" + }, + "dce:identifier": "SDN:R13::I", + "pav:version": "2", + "skos:notation": "SDN:R13::I", + "skos:altLabel": "I", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Indian ocean area" + }, + "dc:identifier": "SDN:R13::I", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Below 30 degrees south, the Indian/Atlantic oceans boundary is at 20 degrees east, whereas the Indian/Pacific oceans boundary is at 145 degrees east. The Red Sea is part of the Indian ocean area." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/A/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/A/1/" + }, + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/A/2/" + }, + "dce:identifier": "SDN:R13::A", + "pav:version": "2", + "skos:notation": "SDN:R13::A", + "skos:altLabel": "A", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Atlantic ocean area" + }, + "dc:identifier": "SDN:R13::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Below 30 degrees south, the Atlantic/Pacific oceans boundary is at 70 degrees west, whereas the Atlantic/Indian oceans boundary is at 20 degrees east. The Caribbean Sea, the Mexico Gulf, the Mediterranean Sea, the Black Sea, the Baltic Sea, the Labrador Sea, the Baffin Bay and the Nordic seas (Greenland, Norwegian, Barents and Kara seas) are part of the Atlantic ocean area." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/P/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/P/1/" + }, + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/P/2/" + }, + "dce:identifier": "SDN:R13::P", + "pav:version": "2", + "skos:notation": "SDN:R13::P", + "skos:altLabel": "P", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Pacific ocean area" + }, + "dc:identifier": "SDN:R13::P", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Below 30 degrees south, the Pacific/Indian oceans boundary is at 145 degrees east, whereas the Pacific/Atlantic oceans boundary is at 70 degrees west. The South China Sea, the Indonesian seas, the Laptev, Beaufort, East Siberian and Chukchi seas are part of the Pacific ocean area." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/P/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R13/current/A/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Ocean area codes assigned to each profile in the Metadata directory (index) file of the Argo Global Assembly Centre.", + "dc:title": "Argo ocean area codes and boundary definitions", + "skos:prefLabel": "Argo ocean area codes and boundary definitions", + "owl:versionInfo": "2", + "dc:date": "2024-09-12 03:00:00.0", + "skos:altLabel": "OCEAN_CODE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "OCEAN_CODE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R13" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/5b98ae6601f522b8df882d58a10e562a6a28c7508b24204828918ccc4ca29d58.nc b/argopy/tests/test_data/5b98ae6601f522b8df882d58a10e562a6a28c7508b24204828918ccc4ca29d58.nc new file mode 100644 index 00000000..aed80e8f Binary files /dev/null and b/argopy/tests/test_data/5b98ae6601f522b8df882d58a10e562a6a28c7508b24204828918ccc4ca29d58.nc differ diff --git a/argopy/tests/test_data/5ba4bf7f88a6ebed02d3a0a34398a2a5ba0fe8cae65e83d4da02820a16875e52.nc b/argopy/tests/test_data/5ba4bf7f88a6ebed02d3a0a34398a2a5ba0fe8cae65e83d4da02820a16875e52.nc new file mode 100644 index 00000000..ecbe9ced Binary files /dev/null and b/argopy/tests/test_data/5ba4bf7f88a6ebed02d3a0a34398a2a5ba0fe8cae65e83d4da02820a16875e52.nc differ diff --git a/argopy/tests/test_data/5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230.nc b/argopy/tests/test_data/5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230.nc new file mode 100644 index 00000000..60e7c8cc Binary files /dev/null and b/argopy/tests/test_data/5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230.nc differ diff --git a/argopy/tests/test_data/5bef8b392db7b081c587402156770890550eba0ffa155c66a9566a7326a06ede.nc b/argopy/tests/test_data/5bef8b392db7b081c587402156770890550eba0ffa155c66a9566a7326a06ede.nc new file mode 100644 index 00000000..71208de8 Binary files /dev/null and b/argopy/tests/test_data/5bef8b392db7b081c587402156770890550eba0ffa155c66a9566a7326a06ede.nc differ diff --git a/argopy/tests/test_data/5c3b9c5a5376f2f49bf2146c091ca10baf498c826c7ab908f258ac2f85ebe505.ncHeader b/argopy/tests/test_data/5c3b9c5a5376f2f49bf2146c091ca10baf498c826c7ab908f258ac2f85ebe505.ncHeader new file mode 100644 index 00000000..4cab15e9 --- /dev/null +++ b/argopy/tests/test_data/5c3b9c5a5376f2f49bf2146c091ca10baf498c826c7ab908f258ac2f85ebe505.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_a649_09d4_a523.nc { + dimensions: + row = 54; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 147; + variables: + int config_mission_number(row=54); + :_FillValue = 99999; // int + :actual_range = 2, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=54); + :_FillValue = 99999; // int + :actual_range = 24, 26; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=54, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=54, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=54); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 0.42500000000000004, 0.728; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=54); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -16.391000000000002, -16.115000000000002; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=54, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=54, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=54); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 12.0f, 98.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 12.0f, 98.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 5.0f, 5.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=54, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=54, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 34.917f, 36.107f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 34.96365f, 36.15145f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=54, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=54, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 15.707f, 28.352f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 15.707f, 28.352f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=54); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=54, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=54, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=54); + :_CoordinateAxisType = "Time"; + :actual_range = 1.073193E9, 1.07492064E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=54, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=54, vertical_sampling_scheme_strlen=147); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -16.115000000000002; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 0.728; // double + :geospatial_lat_min = 0.42500000000000004; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -16.115000000000002; // double + :geospatial_lon_min = -16.391000000000002; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:58Z (local files) +2024-09-24T08:52:58Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres_adjusted%3E=0&pres_adjusted%3C=100.0&time%3E=1072915200.0&time%3C=1075507200.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 0.728; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 0.42500000000000004; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2004-01-24T05:04:00Z"; + :time_coverage_start = "2004-01-04T05:10:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -16.391000000000002; // double +} diff --git a/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json b/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json new file mode 100644 index 00000000..051a7f82 --- /dev/null +++ b/argopy/tests/test_data/5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad.json @@ -0,0 +1 @@ +{"schemaVersion": 1, "label": "Argo profiles", "message": "3035234" } diff --git a/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json b/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json new file mode 100644 index 00000000..2c01250f --- /dev/null +++ b/argopy/tests/test_data/5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f.json @@ -0,0 +1,576 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/2/" + }, + "dce:identifier": "SDN:R05::G", + "pav:version": "2", + "skos:notation": "SDN:R05::G", + "skos:altLabel": "G", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::G", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Positioning System (GPS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/1/" + }, + "dce:identifier": "SDN:R05::2", + "pav:version": "1", + "skos:notation": "SDN:R05::2", + "skos:altLabel": "2", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <500m radius" + }, + "dc:identifier": "SDN:R05::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/1/" + }, + "dce:identifier": "SDN:R05::Z", + "pav:version": "1", + "skos:notation": "SDN:R05::Z", + "skos:altLabel": "Z", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos invalid location" + }, + "dc:identifier": "SDN:R05::Z", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated due to invalid location measurements." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/1/" + }, + "dce:identifier": "SDN:R05::3", + "pav:version": "1", + "skos:notation": "SDN:R05::3", + "skos:altLabel": "3", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <250m radius" + }, + "dc:identifier": "SDN:R05::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 250m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/1/" + }, + "dce:identifier": "SDN:R05::1", + "pav:version": "1", + "skos:notation": "SDN:R05::1", + "skos:altLabel": "1", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy <1500m radius" + }, + "dc:identifier": "SDN:R05::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of less than 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/2/" + }, + "dce:identifier": "SDN:R05::H", + "pav:version": "2", + "skos:notation": "SDN:R05::H", + "skos:altLabel": "H", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GNSS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::H", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Global Navigation Satellite System (GNSS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/2/" + }, + "dce:identifier": "SDN:R05::E", + "pav:version": "2", + "skos:notation": "SDN:R05::E", + "skos:altLabel": "E", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from GLObal NAvigation Satellite System (GLONASS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/1/" + }, + "dce:identifier": "SDN:R05::R", + "pav:version": "1", + "skos:notation": "SDN:R05::R", + "skos:altLabel": "R", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS location accuracy" + }, + "dc:identifier": "SDN:R05::R", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/1/" + }, + "dce:identifier": "SDN:R05::U", + "pav:version": "1", + "skos:notation": "SDN:R05::U", + "skos:altLabel": "U", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated location accuracy" + }, + "dc:identifier": "SDN:R05::U", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from manual computation as not received by the float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/1/" + }, + "dce:identifier": "SDN:R05::B", + "pav:version": "1", + "skos:notation": "SDN:R05::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (one or two messages received)" + }, + "dc:identifier": "SDN:R05::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only one or two messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/1/" + }, + "dce:identifier": "SDN:R05::0", + "pav:version": "1", + "skos:notation": "SDN:R05::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos location accuracy >1500m radius" + }, + "dc:identifier": "SDN:R05::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Argos positioning system of over 1500m" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/2/" + }, + "dce:identifier": "SDN:R05::I", + "pav:version": "2", + "skos:notation": "SDN:R05::I", + "skos:altLabel": "I", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium accuracy (not better than 5 km)" + }, + "dc:identifier": "SDN:R05::I", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Iridium positioning system of less than 5000m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/2/" + }, + "dce:identifier": "SDN:R05::D", + "pav:version": "2", + "skos:notation": "SDN:R05::D", + "skos:altLabel": "D", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from BeiDou Navigation Satellite System (BDS) of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/1/" + }, + "dce:identifier": "SDN:R05::A", + "pav:version": "1", + "skos:notation": "SDN:R05::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos no location accuracy estimation (three messages received)" + }, + "dc:identifier": "SDN:R05::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The location accuracy radius from Argos positioning system cannot be estimated as only three messages were received." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/2/" + }, + "dce:identifier": "SDN:R05::F", + "pav:version": "2", + "skos:notation": "SDN:R05::F", + "skos:altLabel": "F", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "GALILEO accuracy (not better than 10 m)" + }, + "dc:identifier": "SDN:R05::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated location accuracy radius from Galileo positioning system of less than 10m." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/G/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/Z/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/H/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/R/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/U/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/I/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R05/current/A/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Accuracy in latitude and longitude measurements received from the positioning system, grouped by location accuracy classes.", + "dc:title": "Argo position accuracy", + "skos:prefLabel": "Argo position accuracy", + "owl:versionInfo": "1", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "POSITION_ACCURACY", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITION_ACCURACY", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R05" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485.nc b/argopy/tests/test_data/5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485.nc new file mode 100644 index 00000000..ec13ef0a Binary files /dev/null and b/argopy/tests/test_data/5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485.nc differ diff --git a/argopy/tests/test_data/5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076.json b/argopy/tests/test_data/5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076.json new file mode 100644 index 00000000..537749ef --- /dev/null +++ b/argopy/tests/test_data/5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076.json @@ -0,0 +1,320 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/1/" + }, + "dce:identifier": "SDN:R06::3B", + "pav:version": "1", + "skos:notation": "SDN:R06::3B", + "skos:altLabel": "3B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class B processing stage" + }, + "dc:identifier": "SDN:R06::3B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/1/" + }, + "dce:identifier": "SDN:R06::2C", + "pav:version": "1", + "skos:notation": "SDN:R06::2C", + "skos:altLabel": "2C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C processing stage" + }, + "dc:identifier": "SDN:R06::2C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/1/" + }, + "dce:identifier": "SDN:R06::1A", + "pav:version": "1", + "skos:notation": "SDN:R06::1A", + "skos:altLabel": "1A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 1, class A processing stage" + }, + "dc:identifier": "SDN:R06::1A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been converted to values independent of detailed instrument knowledge; automated calibrations may have been done; data may not have full geospatial and temporal referencing, but have sufficient information to uniquely reference the data to the point of measurement (Level 1). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/1/" + }, + "dce:identifier": "SDN:R06::3C", + "pav:version": "1", + "skos:notation": "SDN:R06::3C", + "skos:altLabel": "3C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 3, class C processing stage" + }, + "dc:identifier": "SDN:R06::3C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have been processed with assumptions about the scales of variability or thermodynamic relationships; the data are normally reduced to regular space, time intervals with enhanced signal to noise (Level 3). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/1/" + }, + "dce:identifier": "SDN:R06::2CP", + "pav:version": "1", + "skos:notation": "SDN:R06::2CP", + "skos:altLabel": "2C+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class C, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2CP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized fully including intra-record and intra-dataset comparison and consistency checks; scientists have been involved in the evaluation, and brought latest knowledge to bear; the procedures are published, widely available and widely accepted (Class C). In addition, the data are fully quality controlled and peer-reviewed, and are widely accepted as valid; documentation is complete and widely available." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/1/" + }, + "dce:identifier": "SDN:R06::0A", + "pav:version": "1", + "skos:notation": "SDN:R06::0A", + "skos:altLabel": "0A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 0, class A processing stage" + }, + "dc:identifier": "SDN:R06::0A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data are the raw output from instruments, without calibration, and not necessarily converted to engineering units (Level 0). Moreover, no scrutiny, value judgement or intercomparisons were performed on the data; the records are derived directly from the input with no filtering or sub-sampling (Class A)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/1/" + }, + "dce:identifier": "SDN:R06::2BP", + "pav:version": "1", + "skos:notation": "SDN:R06::2BP", + "skos:altLabel": "2B+", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B, subclass + processing stage" + }, + "dc:identifier": "SDN:R06::2BP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B). In addition, the measures have been tested on independent data sets for completeness and robustness, and are widely accepted (Subclass +)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/1/" + }, + "dce:identifier": "SDN:R06::2B", + "pav:version": "1", + "skos:notation": "SDN:R06::2B", + "skos:altLabel": "2B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Level 2, class B processing stage" + }, + "dc:identifier": "SDN:R06::2B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Data have complete geospatial and temporal references; information may have been sub-sampled, averaged or compressed in other ways, but no assumptions of scales and variability or thermodynamic relationships have been used in the processing (Level 2). Moreover, the data have been scrutinized and evaluated against a defined and documented set of measures; the process is often automated, and the measures are published and widely available (Class B)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/1A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/3C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/0A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2B/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R06/current/2BP/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Processing stage of the data based on the concatenation of processing level and class indicators. Argo netCDF variable DATA_STATE_INDICATOR is populated by R06 altLabel.", + "dc:title": "Argo data state indicators", + "skos:prefLabel": "Argo data state indicators", + "owl:versionInfo": "0", + "dc:date": "2020-04-04 15:45:13.0", + "skos:altLabel": "DATA_STATE_INDICATOR", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_STATE_INDICATOR", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R06" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc b/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc new file mode 100644 index 00000000..58e7efb4 Binary files /dev/null and b/argopy/tests/test_data/60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302.nc differ diff --git a/argopy/tests/test_data/608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec.gz b/argopy/tests/test_data/608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec.gz new file mode 100644 index 00000000..1fa523d4 Binary files /dev/null and b/argopy/tests/test_data/608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec.gz differ diff --git a/argopy/tests/test_data/61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227.nc b/argopy/tests/test_data/61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227.nc new file mode 100644 index 00000000..eb9bd0cd Binary files /dev/null and b/argopy/tests/test_data/61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227.nc differ diff --git a/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json b/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json new file mode 100644 index 00000000..43fc4ed7 --- /dev/null +++ b/argopy/tests/test_data/6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"2022-06-01T00:00:00","lat":2.155,"lon":-117.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-06-23T00:00:00","lat":35.6033,"lon":-125.0583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906445"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-17T15:52:00","lat":21.85,"lon":-114.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-14T21:19:00","lat":17.01,"lon":-107.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-01T02:39:00","lat":12.59,"lon":-92.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-05T08:18:00","lat":11.49,"lon":-94.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-08T07:29:00","lat":12.32,"lon":-100.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906483"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-14T20:56:00","lat":17.02,"lon":-107.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906484"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-11T13:59:00","lat":13.9,"lon":-103.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906485"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-02T20:28:00","lat":12.02,"lon":-94.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906486"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-02-04T18:26:00","lat":36.76,"lon":-122.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-30T00:29:00","lat":22.86,"lon":-157.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906529"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-26T06:10:00","lat":29.97,"lon":-145.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906520"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-03T16:40:00","lat":30.05,"lon":-170.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906521"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-18T09:05:00","lat":30.13,"lon":-158.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906514"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-07-09T12:47:00","lat":31.75,"lon":-119.74,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906517"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-07-03T08:00:00","lat":30.01,"lon":-131.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-28T21:23:00","lat":49.98,"lon":-144.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906531"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-30T19:23:00","lat":57.5,"lon":-147.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-29T21:17:00","lat":54.04,"lon":-146.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906533"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-30T05:44:00","lat":54.18,"lon":-158.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-15T03:04:00","lat":36.72,"lon":-138.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906530"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-18T15:02:00","lat":14.95,"lon":-132.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906547"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-19T21:44:00","lat":10.07,"lon":-136.24,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-17T08:34:00","lat":20.02,"lon":-128.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-10T00:00:00","lat":2.0333,"lon":-140.15,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903395"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-11T00:00:00","lat":14.0,"lon":-123.34,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-08T18:01:00","lat":19.9996,"lon":-121.436,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906798"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-09T00:00:00","lat":20.0,"lon":-121.37,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-12T01:44:00","lat":7.9667,"lon":-125.1,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-14T08:55:00","lat":2.0167,"lon":-125.167,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-25T05:14:00","lat":0.05,"lon":-140.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906795"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-10T04:10:00","lat":13.9935,"lon":-123.288,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906797"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-28T00:00:00","lat":5.0,"lon":-140.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906796"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-12T00:00:00","lat":11.0,"lon":-124.05,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903397"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-09T09:00:00","lat":16.9952,"lon":-122.364,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-14T00:00:00","lat":5.0,"lon":-125.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-13T10:03:00","lat":5.05,"lon":-124.867,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-16T00:00:00","lat":4.9833,"lon":-139.917,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906689"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-07T22:10:00","lat":22.9833,"lon":-120.467,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906690"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-15T22:33:00","lat":55.83,"lon":-151.59,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-22T09:09:00","lat":56.84,"lon":-146.88,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-21T00:52:00","lat":57.89,"lon":-146.79,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-03-28T11:00:00","lat":2.0,"lon":-166.54,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906765"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-03-28T21:00:00","lat":0.0,"lon":-167.43,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-22T16:07:00","lat":26.24,"lon":-153.38,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902273"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-02-04T23:00:00","lat":36.753,"lon":-122.512,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903026"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-02-23T00:00:00","lat":47.0735,"lon":-138.019,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902583"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-09T21:29:00","lat":49.696,"lon":-140.664,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902567"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-05T00:00:00","lat":47.0,"lon":-141.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902586"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-09T11:23:00","lat":49.564,"lon":-138.681,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902566"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-14T00:00:00","lat":57.0,"lon":-144.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902588"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-02-27T00:00:00","lat":55.031,"lon":-138.078,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902584"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-15T00:00:00","lat":55.0,"lon":-144.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902587"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-11T02:20:00","lat":50.002,"lon":-144.997,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-16T18:00:00","lat":53.0681,"lon":-143.9553,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902585"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-11T02:31:00","lat":50.006,"lon":-144.991,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902559"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-14T06:55:00","lat":34.0017,"lon":-176.8067,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906799"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-09T00:20:00","lat":28.74,"lon":-161.5633,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-08T05:53:00","lat":25.9967,"lon":-160.22,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-13T19:04:00","lat":34.0,"lon":-173.9383,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906804"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-28T05:20:00","lat":24.1135,"lon":-149.8382,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906811"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-23T06:59:00","lat":28.9617,"lon":-151.7367,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906812"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-26T12:35:00","lat":27.35,"lon":-149.77,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906813"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-30T02:20:00","lat":21.145,"lon":-149.9383,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906814"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-21T15:29:00","lat":23.2478,"lon":-155.8725,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906815"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-17T22:50:00","lat":55.0258,"lon":-173.0347,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903495"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-20T17:30:00","lat":48.0472,"lon":-173.9068,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903493"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-09T22:30:00","lat":52.6105,"lon":-156.8533,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903494"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-19T21:05:00","lat":49.6263,"lon":-169.8778,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903496"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-07-02T07:37:00","lat":41.4578,"lon":-172.8857,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903607"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-07-09T01:51:00","lat":41.4753,"lon":-164.8502,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903608"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-07-11T17:09:00","lat":53.4747,"lon":-148.5927,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902612"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-06-22T05:42:00","lat":53.2345,"lon":-135.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902616"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-18T19:00:00","lat":42.8767,"lon":-125.8867,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903499"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-19T18:00:00","lat":38.9517,"lon":-124.8683,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903500"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-11T23:48:00","lat":7.9722,"lon":-179.8433,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906821"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-10-31T22:40:00","lat":46.0608,"lon":-178.3958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903609"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-27T19:07:00","lat":5.0033,"lon":-154.9973,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906822"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-26T08:32:00","lat":7.9823,"lon":-154.9663,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-10-27T12:17:00","lat":34.0443,"lon":-145.0028,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906826"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-29T01:30:00","lat":1.9935,"lon":-154.9568,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906825"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-29T19:50:00","lat":1.0E-4,"lon":-155.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":224} \ No newline at end of file diff --git a/argopy/tests/test_data/62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6.nc b/argopy/tests/test_data/62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6.nc new file mode 100644 index 00000000..baabeebd Binary files /dev/null and b/argopy/tests/test_data/62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6.nc differ diff --git a/argopy/tests/test_data/63ec40c2aac7113ca9ac4ca572447aafee0c11bce17c5aa5599857f086180677.js b/argopy/tests/test_data/63ec40c2aac7113ca9ac4ca572447aafee0c11bce17c5aa5599857f086180677.js new file mode 100644 index 00000000..691f9103 --- /dev/null +++ b/argopy/tests/test_data/63ec40c2aac7113ca9ac4ca572447aafee0c11bce17c5aa5599857f086180677.js @@ -0,0 +1,23 @@ +[ +{"_id":"1901465_034","geolocation":{"type":"Point","coordinates":[-69.933,35.663]},"basin":1,"timestamp":"2012-03-16T11:10:59.000Z","date_updated_argovis":"2023-01-26T19:20:01.395Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_034.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[19.448,19.455999],[36.560856,36.561268]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"4901278_034","geolocation":{"type":"Point","coordinates":[-67.428,38.029]},"basin":1,"timestamp":"2012-03-16T11:10:01.001Z","date_updated_argovis":"2023-01-28T00:44:36.391Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901278/profiles/D4901278_034.nc","date_updated":"2019-08-30T10:36:05.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[22.333,22.334],[36.338993,36.338913]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901278_m0"]} +, +{"_id":"6900112_034","geolocation":{"type":"Point","coordinates":[-69.91,36.683]},"basin":1,"timestamp":"2012-03-10T23:23:32.002Z","date_updated_argovis":"2023-01-29T18:02:53.741Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_034.nc","date_updated":"2018-10-23T18:56:51.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.5,9.400001],[19.295,19.285999],[36.550999,36.550999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901139_070","geolocation":{"type":"Point","coordinates":[-66.06900024414062,37.152000427246094]},"basin":1,"timestamp":"2012-03-10T17:59:00.000Z","date_updated_argovis":"2023-08-24T03:32:49.023Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/SD4901139_070.nc","date_updated":"2023-08-21T22:23:02.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/R4901139_070.nc","date_updated":"2017-02-28T16:29:03.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.7],[19.43],[36.526001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901139_m0"]} +, +{"_id":"6900113_033","geolocation":{"type":"Point","coordinates":[-69.573,38.657]},"basin":1,"timestamp":"2012-03-07T05:24:46.000Z","date_updated_argovis":"2023-01-29T18:11:23.309Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900113/profiles/R6900113_033.nc","date_updated":"2018-10-23T18:57:46.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[16.851],[35.743999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900113_m0"]} +, +{"_id":"6900112_033","geolocation":{"type":"Point","coordinates":[-69.848,36.562]},"basin":1,"timestamp":"2012-03-06T23:19:35.002Z","date_updated_argovis":"2023-01-29T18:02:51.994Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_033.nc","date_updated":"2018-10-23T18:56:50.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.8],[19.525],[36.536999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901278_033","geolocation":{"type":"Point","coordinates":[-69.465,37.722]},"basin":1,"timestamp":"2012-03-06T11:45:38.001Z","date_updated_argovis":"2023-01-28T00:44:34.670Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901278/profiles/D4901278_033.nc","date_updated":"2019-08-30T10:36:01.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.351,20.35],[36.47102,36.471943]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901278_m0"]} +, +{"_id":"6900113_032","geolocation":{"type":"Point","coordinates":[-69.715,38.418]},"basin":1,"timestamp":"2012-03-03T05:21:09.000Z","date_updated_argovis":"2023-01-29T18:11:21.473Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900113/profiles/R6900113_032.nc","date_updated":"2018-10-23T18:57:46.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5],[15.659],[35.583]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900113_m0"]} +, +{"_id":"6900112_032","geolocation":{"type":"Point","coordinates":[-69.838,36.398]},"basin":1,"timestamp":"2012-03-02T23:16:25.002Z","date_updated_argovis":"2023-01-29T18:02:50.372Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_032.nc","date_updated":"2018-10-23T18:56:50.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4],[19.816],[36.542999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901139_069","geolocation":{"type":"Point","coordinates":[-65.68800354003906,35.763999938964844]},"basin":1,"timestamp":"2012-02-29T17:31:59.999Z","date_updated_argovis":"2023-08-24T03:32:47.886Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/SD4901139_069.nc","date_updated":"2023-08-21T22:22:50.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/R4901139_069.nc","date_updated":"2017-02-28T16:29:03.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.1],[19.524],[36.548]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901139_m0"]} +, +{"_id":"1901465_032","geolocation":{"type":"Point","coordinates":[-69.539,35.752]},"basin":1,"timestamp":"2012-02-25T10:43:19.000Z","date_updated_argovis":"2023-01-26T19:19:57.900Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_032.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.299,20.297001],[36.527935,36.520931]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +] diff --git a/argopy/tests/test_data/661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996.nc b/argopy/tests/test_data/661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996.nc new file mode 100644 index 00000000..2b32160c Binary files /dev/null and b/argopy/tests/test_data/661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996.nc differ diff --git a/argopy/tests/test_data/6659da36f0ec790950cc035377a6aba8e90ed1db2c770b582bfbc95bee830bff.nc b/argopy/tests/test_data/6659da36f0ec790950cc035377a6aba8e90ed1db2c770b582bfbc95bee830bff.nc new file mode 100644 index 00000000..4c48eba2 Binary files /dev/null and b/argopy/tests/test_data/6659da36f0ec790950cc035377a6aba8e90ed1db2c770b582bfbc95bee830bff.nc differ diff --git a/argopy/tests/test_data/66fa6f9cd55b68bdfbc2f05de41d8ca12fbbc6521a7879b8c16ac9dfc6323686.ncHeader b/argopy/tests/test_data/66fa6f9cd55b68bdfbc2f05de41d8ca12fbbc6521a7879b8c16ac9dfc6323686.ncHeader new file mode 100644 index 00000000..c5953714 --- /dev/null +++ b/argopy/tests/test_data/66fa6f9cd55b68bdfbc2f05de41d8ca12fbbc6521a7879b8c16ac9dfc6323686.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_f681_bfc8_2d28.nc { + dimensions: + row = 25560; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 29; + variables: + int config_mission_number(row=25560); + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=25560); + :_FillValue = 99999; // int + :actual_range = 1, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=25560, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=25560, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=25560); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -49.526, -21.902; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=25560); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 17.358, 142.722; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=25560, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=25560, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=25560); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.6f, 2001.1f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 4.5f, 2001.1f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=25560, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=25560, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 33.751f, 35.778f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 33.73227f, 35.778f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=25560, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=25560, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 28.155f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 28.155f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=25560); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=25560, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=25560, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=25560); + :_CoordinateAxisType = "Time"; + :actual_range = 1.261966039E9, 1.583463689E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=25560, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=25560, vertical_sampling_scheme_strlen=29); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 142.722; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -21.902; // double + :geospatial_lat_min = -49.526; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 142.722; // double + :geospatial_lon_min = 17.358; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:51:58Z (local files) +2024-09-24T08:51:58Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221901393%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = -21.902; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -49.526; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2020-03-06T03:01:29Z"; + :time_coverage_start = "2009-12-28T02:07:19Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = 17.358; // double +} diff --git a/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html b/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html new file mode 100644 index 00000000..e170f539 --- /dev/null +++ b/argopy/tests/test_data/671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf.html @@ -0,0 +1,19 @@ + + + BGC-Argo quality control manual for pH + + + + + + +

BGC-Argo quality control manual for pH

This document is the Argo quality control (QC) manual for pH, where the parameter name for the variable is PH_IN_SITU_TOTAL. The document describes two levels of quality control:

+ +
    +
  • The first level is the “real-time” (RT) quality control system, which includes a set of agreed-upon automatic quality-control tests on each measurement. Data adjustments can also be applied within the real-time system, and quality flags assigned accordingly.
  • +
  • The second level is the “delayed-mode” (DM) quality control system where data quality is assessed in detail by a delayed-mode operator and adjustments (based on comparison to high-quality reference fields) are derived. As mentioned, these adjustments can then be propagated forward and applied to incoming data in real-time until the next delayed-mode assessment is performed.
  • +

Keyword(s)

Argo, physical oceanography, in-situ marine data, profiling floats, pH, operational oceanography, biogeochemistry

Full Text

FilePagesSizeAccess
Version 1.0
274 Mo
How to cite
Johnson Kenneth S., Maurer Tanya L., Plant Joshua N., Takeshita Yuichihiro (2023). BGC-Argo quality control manual for pH. Argo. https://doi.org/10.13155/97828

Copy this text

+ + + diff --git a/argopy/tests/test_data/683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3.json b/argopy/tests/test_data/683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3.json new file mode 100644 index 00000000..ab4d07e4 --- /dev/null +++ b/argopy/tests/test_data/683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3.json @@ -0,0 +1,7289 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/1/" + }, + "dce:identifier": "SDN:R40::PI0107", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0107", + "skos:altLabel": "Juliet HERMES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juliet HERMES" + }, + "dc:identifier": "SDN:R40::PI0107", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/1/" + }, + "dce:identifier": "SDN:R40::PI0130", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0130", + "skos:altLabel": "Mike MEREDITH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mike MEREDITH" + }, + "dc:identifier": "SDN:R40::PI0130", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/1/" + }, + "dce:identifier": "SDN:R40::PI0025", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0025", + "skos:altLabel": "Camille DAUBORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Camille DAUBORD" + }, + "dc:identifier": "SDN:R40::PI0025", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/1/" + }, + "dce:identifier": "SDN:R40::PI0094", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0094", + "skos:altLabel": "Jens SCHIMANSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens SCHIMANSKI" + }, + "dc:identifier": "SDN:R40::PI0094", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/1/" + }, + "dce:identifier": "SDN:R40::PI0006", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0006", + "skos:altLabel": "Amy BOWER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Amy BOWER" + }, + "dc:identifier": "SDN:R40::PI0006", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/1/" + }, + "dce:identifier": "SDN:R40::PI0176", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0176", + "skos:altLabel": "Shin-Ichi ITO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shin-Ichi ITO" + }, + "dc:identifier": "SDN:R40::PI0176", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/1/" + }, + "dce:identifier": "SDN:R40::PI0117", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0117", + "skos:altLabel": "Laura TUOMI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laura TUOMI" + }, + "dc:identifier": "SDN:R40::PI0117", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/1/" + }, + "dce:identifier": "SDN:R40::PI0067", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0067", + "skos:altLabel": "Frederic VIVIER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Frederic VIVIER" + }, + "dc:identifier": "SDN:R40::PI0067", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/1/" + }, + "dce:identifier": "SDN:R40::PI0225", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0225", + "skos:altLabel": "Yutaka MICHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yutaka MICHIDA" + }, + "dc:identifier": "SDN:R40::PI0225", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/1/" + }, + "dce:identifier": "SDN:R40::PI0089", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0089", + "skos:altLabel": "Jamal Chioua", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jamal Chioua" + }, + "dc:identifier": "SDN:R40::PI0089", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/1/" + }, + "dce:identifier": "SDN:R40::PI0222", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0222", + "skos:altLabel": "Youngsoo JEON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Youngsoo JEON" + }, + "dc:identifier": "SDN:R40::PI0222", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/1/" + }, + "dce:identifier": "SDN:R40::PI0185", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0185", + "skos:altLabel": "Steven EMERSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven EMERSON" + }, + "dc:identifier": "SDN:R40::PI0185", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/1/" + }, + "dce:identifier": "SDN:R40::PI0133", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0133", + "skos:altLabel": "Molly BARINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Molly BARINGER" + }, + "dc:identifier": "SDN:R40::PI0133", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/1/" + }, + "dce:identifier": "SDN:R40::PI0159", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0159", + "skos:altLabel": "Robert MOLINARI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert MOLINARI" + }, + "dc:identifier": "SDN:R40::PI0159", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/1/" + }, + "dce:identifier": "SDN:R40::PI0033", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0033", + "skos:altLabel": "Christoph KIHM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christoph KIHM" + }, + "dc:identifier": "SDN:R40::PI0033", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/1/" + }, + "dce:identifier": "SDN:R40::PI0229", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0229", + "skos:altLabel": "Zhaohui CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zhaohui CHEN" + }, + "dc:identifier": "SDN:R40::PI0229", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/1/" + }, + "dce:identifier": "SDN:R40::PI0079", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0079", + "skos:altLabel": "Henry BITTIG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Henry BITTIG" + }, + "dc:identifier": "SDN:R40::PI0079", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/1/" + }, + "dce:identifier": "SDN:R40::PI0083", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0083", + "skos:altLabel": "Howard FREELAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Howard FREELAND" + }, + "dc:identifier": "SDN:R40::PI0083", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/1/" + }, + "dce:identifier": "SDN:R40::PI0012", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0012", + "skos:altLabel": "Antoine POTEAU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antoine POTEAU" + }, + "dc:identifier": "SDN:R40::PI0012", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/1/" + }, + "dce:identifier": "SDN:R40::PI0202", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0202", + "skos:altLabel": "Toshio SUGA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Toshio SUGA" + }, + "dc:identifier": "SDN:R40::PI0202", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/1/" + }, + "dce:identifier": "SDN:R40::PI0191", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0191", + "skos:altLabel": "Takashi KIKUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takashi KIKUCHI" + }, + "dc:identifier": "SDN:R40::PI0191", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/1/" + }, + "dce:identifier": "SDN:R40::PI0104", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0104", + "skos:altLabel": "Ju CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ju CHEN" + }, + "dc:identifier": "SDN:R40::PI0104", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/1/" + }, + "dce:identifier": "SDN:R40::PI0042", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0042", + "skos:altLabel": "Dan RUDNICK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dan RUDNICK" + }, + "dc:identifier": "SDN:R40::PI0042", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/1/" + }, + "dce:identifier": "SDN:R40::PI0219", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0219", + "skos:altLabel": "Yong-Hoon YOUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yong-Hoon YOUN" + }, + "dc:identifier": "SDN:R40::PI0219", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/1/" + }, + "dce:identifier": "SDN:R40::PI0153", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0153", + "skos:altLabel": "Philip BOYD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Philip BOYD" + }, + "dc:identifier": "SDN:R40::PI0153", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/1/" + }, + "dce:identifier": "SDN:R40::PI0101", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0101", + "skos:altLabel": "Jordi FONT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jordi FONT" + }, + "dc:identifier": "SDN:R40::PI0101", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/1/" + }, + "dce:identifier": "SDN:R40::PI0064", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0064", + "skos:altLabel": "Fiona GRANT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fiona GRANT" + }, + "dc:identifier": "SDN:R40::PI0064", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/1/" + }, + "dce:identifier": "SDN:R40::PI0172", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0172", + "skos:altLabel": "Serge LE RESTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serge LE RESTE" + }, + "dc:identifier": "SDN:R40::PI0172", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/1/" + }, + "dce:identifier": "SDN:R40::PI0029", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0029", + "skos:altLabel": "Charlie HORTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Charlie HORTON" + }, + "dc:identifier": "SDN:R40::PI0029", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/1/" + }, + "dce:identifier": "SDN:R40::PI0059", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0059", + "skos:altLabel": "Fabrizio D'ORTENZIO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabrizio D'ORTENZIO" + }, + "dc:identifier": "SDN:R40::PI0059", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/1/" + }, + "dce:identifier": "SDN:R40::PI0016", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0016", + "skos:altLabel": "Bert RUDELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bert RUDELS" + }, + "dc:identifier": "SDN:R40::PI0016", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/1/" + }, + "dce:identifier": "SDN:R40::PI0143", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0143", + "skos:altLabel": "Osvaldo ULLOA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Osvaldo ULLOA" + }, + "dc:identifier": "SDN:R40::PI0143", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/1/" + }, + "dce:identifier": "SDN:R40::PI0038", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0038", + "skos:altLabel": "Corinna JENSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Corinna JENSEN" + }, + "dc:identifier": "SDN:R40::PI0038", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/1/" + }, + "dce:identifier": "SDN:R40::PI0108", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0108", + "skos:altLabel": "Katrin LATARIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Katrin LATARIUS" + }, + "dc:identifier": "SDN:R40::PI0108", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/1/" + }, + "dce:identifier": "SDN:R40::PI0131", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0131", + "skos:altLabel": "Mikhail DANCHENKOV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mikhail DANCHENKOV" + }, + "dc:identifier": "SDN:R40::PI0131", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/1/" + }, + "dce:identifier": "SDN:R40::PI0068", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0068", + "skos:altLabel": "Gerard ELDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerard ELDIN" + }, + "dc:identifier": "SDN:R40::PI0068", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/1/" + }, + "dce:identifier": "SDN:R40::PI0226", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0226", + "skos:altLabel": "Yves GOURIOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves GOURIOU" + }, + "dc:identifier": "SDN:R40::PI0226", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/1/" + }, + "dce:identifier": "SDN:R40::PI0070", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0070", + "skos:altLabel": "Gerd ROHARDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerd ROHARDT" + }, + "dc:identifier": "SDN:R40::PI0070", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/1/" + }, + "dce:identifier": "SDN:R40::PI0177", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0177", + "skos:altLabel": "Sophie BONNET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie BONNET" + }, + "dc:identifier": "SDN:R40::PI0177", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/1/" + }, + "dce:identifier": "SDN:R40::PI0010", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0010", + "skos:altLabel": "Anja SCHNEEHORST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Anja SCHNEEHORST" + }, + "dc:identifier": "SDN:R40::PI0010", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/1/" + }, + "dce:identifier": "SDN:R40::PI0088", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0088", + "skos:altLabel": "Jae-Young BYON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jae-Young BYON" + }, + "dc:identifier": "SDN:R40::PI0088", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/1/" + }, + "dce:identifier": "SDN:R40::PI0032", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0032", + "skos:altLabel": "Christine PROVOST", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine PROVOST" + }, + "dc:identifier": "SDN:R40::PI0032", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/1/" + }, + "dce:identifier": "SDN:R40::PI0206", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0206", + "skos:altLabel": "Violeta SLABAKOVA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Violeta SLABAKOVA" + }, + "dc:identifier": "SDN:R40::PI0206", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/1/" + }, + "dce:identifier": "SDN:R40::PI0112", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0112", + "skos:altLabel": "Kjell A MORK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kjell A MORK" + }, + "dc:identifier": "SDN:R40::PI0112", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Kjell Arne Mork" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/1/" + }, + "dce:identifier": "SDN:R40::PI0051", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0051", + "skos:altLabel": "Einar SVENDSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Einar SVENDSEN" + }, + "dc:identifier": "SDN:R40::PI0051", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/1/" + }, + "dce:identifier": "SDN:R40::PI0223", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0223", + "skos:altLabel": "Yu ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yu ZHANG" + }, + "dc:identifier": "SDN:R40::PI0223", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/1/" + }, + "dce:identifier": "SDN:R40::PI0134", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0134", + "skos:altLabel": "Moon-Sik SUK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Moon-Sik SUK" + }, + "dc:identifier": "SDN:R40::PI0134", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/1/" + }, + "dce:identifier": "SDN:R40::PI0158", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0158", + "skos:altLabel": "Ricardo ROJAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ricardo ROJAS" + }, + "dc:identifier": "SDN:R40::PI0158", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/1/" + }, + "dce:identifier": "SDN:R40::PI0001", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0001", + "skos:altLabel": "Agus ATMADIPOERA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Agus ATMADIPOERA" + }, + "dc:identifier": "SDN:R40::PI0001", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/1/" + }, + "dce:identifier": "SDN:R40::PI0082", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0082", + "skos:altLabel": "Holger GIESE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Holger GIESE" + }, + "dc:identifier": "SDN:R40::PI0082", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/1/" + }, + "dce:identifier": "SDN:R40::PI0073", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0073", + "skos:altLabel": "Gregorio PARRILLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregorio PARRILLA" + }, + "dc:identifier": "SDN:R40::PI0073", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/1/" + }, + "dce:identifier": "SDN:R40::PI0009", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0009", + "skos:altLabel": "Andy REES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andy REES" + }, + "dc:identifier": "SDN:R40::PI0009", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/1/" + }, + "dce:identifier": "SDN:R40::PI0036", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0036", + "skos:altLabel": "Claudia SCHMID", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Claudia SCHMID" + }, + "dc:identifier": "SDN:R40::PI0036", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/1/" + }, + "dce:identifier": "SDN:R40::PI0105", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0105", + "skos:altLabel": "Juergen FISHER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Juergen FISHER" + }, + "dc:identifier": "SDN:R40::PI0105", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/1/" + }, + "dce:identifier": "SDN:R40::PI0091", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0091", + "skos:altLabel": "Jari HAAPALA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jari HAAPALA" + }, + "dc:identifier": "SDN:R40::PI0091", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/1/" + }, + "dce:identifier": "SDN:R40::PI0056", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0056", + "skos:altLabel": "Emmanuel BOSS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emmanuel BOSS" + }, + "dc:identifier": "SDN:R40::PI0056", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/1/" + }, + "dce:identifier": "SDN:R40::PI0213", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0213", + "skos:altLabel": "Xavier ANDRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier ANDRE" + }, + "dc:identifier": "SDN:R40::PI0213", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/1/" + }, + "dce:identifier": "SDN:R40::PI0055", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0055", + "skos:altLabel": "Emily OSBORNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emily OSBORNE" + }, + "dc:identifier": "SDN:R40::PI0055", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/1/" + }, + "dce:identifier": "SDN:R40::PI0152", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0152", + "skos:altLabel": "Phil SUTTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Phil SUTTON" + }, + "dc:identifier": "SDN:R40::PI0152", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/1/" + }, + "dce:identifier": "SDN:R40::PI0140", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0140", + "skos:altLabel": "Olaf BOEBEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf BOEBEL" + }, + "dc:identifier": "SDN:R40::PI0140", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/1/" + }, + "dce:identifier": "SDN:R40::PI0126", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0126", + "skos:altLabel": "Martin WHITE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Martin WHITE" + }, + "dc:identifier": "SDN:R40::PI0126", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/1/" + }, + "dce:identifier": "SDN:R40::PI0102", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0102", + "skos:altLabel": "Jose L OCHOA-DE-LA-TORRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jose L OCHOA-DE-LA-TORRE" + }, + "dc:identifier": "SDN:R40::PI0102", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Jose Luis Ochoa-de-la-Torre" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/1/" + }, + "dce:identifier": "SDN:R40::PI0065", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0065", + "skos:altLabel": "Franck DUMAS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Franck DUMAS" + }, + "dc:identifier": "SDN:R40::PI0065", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/1/" + }, + "dce:identifier": "SDN:R40::PI0099", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0099", + "skos:altLabel": "John GILSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "John GILSON" + }, + "dc:identifier": "SDN:R40::PI0099", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/1/" + }, + "dce:identifier": "SDN:R40::PI0109", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0109", + "skos:altLabel": "Kenneth JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kenneth JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0109", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/1/" + }, + "dce:identifier": "SDN:R40::PI0121", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0121", + "skos:altLabel": "Louis M PRIEUR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Louis M PRIEUR" + }, + "dc:identifier": "SDN:R40::PI0121", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Louis Marie Prieur" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/1/" + }, + "dce:identifier": "SDN:R40::PI0182", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0182", + "skos:altLabel": "Stephanie LOUAZEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie LOUAZEL" + }, + "dc:identifier": "SDN:R40::PI0182", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/1/" + }, + "dce:identifier": "SDN:R40::PI0144", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0144", + "skos:altLabel": "Pascal CONAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pascal CONAN" + }, + "dc:identifier": "SDN:R40::PI0144", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/1/" + }, + "dce:identifier": "SDN:R40::PI0205", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0205", + "skos:altLabel": "Vincent ECHEVIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent ECHEVIN" + }, + "dc:identifier": "SDN:R40::PI0205", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/1/" + }, + "dce:identifier": "SDN:R40::PI0023", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0023", + "skos:altLabel": "Brian KING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Brian KING" + }, + "dc:identifier": "SDN:R40::PI0023", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/1/" + }, + "dce:identifier": "SDN:R40::PI0227", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0227", + "skos:altLabel": "Yves MOREL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yves MOREL" + }, + "dc:identifier": "SDN:R40::PI0227", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/1/" + }, + "dce:identifier": "SDN:R40::PI0138", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0138", + "skos:altLabel": "Nicolas BARRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicolas BARRE" + }, + "dc:identifier": "SDN:R40::PI0138", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/1/" + }, + "dce:identifier": "SDN:R40::PI0199", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0199", + "skos:altLabel": "Tobias R S FERREIRA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tobias R S FERREIRA" + }, + "dc:identifier": "SDN:R40::PI0199", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Tobias Ramalho dos Santos Ferreira" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/1/" + }, + "dce:identifier": "SDN:R40::PI0209", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0209", + "skos:altLabel": "Walter ZENK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Walter ZENK" + }, + "dc:identifier": "SDN:R40::PI0209", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/1/" + }, + "dce:identifier": "SDN:R40::PI0052", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0052", + "skos:altLabel": "Elena MAURI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elena MAURI" + }, + "dc:identifier": "SDN:R40::PI0052", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/1/" + }, + "dce:identifier": "SDN:R40::PI0061", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0061", + "skos:altLabel": "Femke DE JONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Femke DE JONG" + }, + "dc:identifier": "SDN:R40::PI0061", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/1/" + }, + "dce:identifier": "SDN:R40::PI0026", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0026", + "skos:altLabel": "Carl SZCZECHOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Carl SZCZECHOWSKI" + }, + "dc:identifier": "SDN:R40::PI0026", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/1/" + }, + "dce:identifier": "SDN:R40::PI0135", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0135", + "skos:altLabel": "Nathalie ZILBERMAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nathalie ZILBERMAN" + }, + "dc:identifier": "SDN:R40::PI0135", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/1/" + }, + "dce:identifier": "SDN:R40::PI0162", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0162", + "skos:altLabel": "Romain CANCOUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Romain CANCOUET" + }, + "dc:identifier": "SDN:R40::PI0162", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/1/" + }, + "dce:identifier": "SDN:R40::PI0035", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0035", + "skos:altLabel": "Chunsheng JING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chunsheng JING" + }, + "dc:identifier": "SDN:R40::PI0035", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/1/" + }, + "dce:identifier": "SDN:R40::PI0074", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0074", + "skos:altLabel": "Gregory C JOHNSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gregory C JOHNSON" + }, + "dc:identifier": "SDN:R40::PI0074", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/1/" + }, + "dce:identifier": "SDN:R40::PI0057", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0057", + "skos:altLabel": "Fabien DURAND", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien DURAND" + }, + "dc:identifier": "SDN:R40::PI0057", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/1/" + }, + "dce:identifier": "SDN:R40::PI0165", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0165", + "skos:altLabel": "Ryuichi SHIROOKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ryuichi SHIROOKA" + }, + "dc:identifier": "SDN:R40::PI0165", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/1/" + }, + "dce:identifier": "SDN:R40::PI0193", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0193", + "skos:altLabel": "Tamaryn MORRIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tamaryn MORRIS" + }, + "dc:identifier": "SDN:R40::PI0193", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/1/" + }, + "dce:identifier": "SDN:R40::PI0096", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0096", + "skos:altLabel": "Jianhua ZHANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianhua ZHANG" + }, + "dc:identifier": "SDN:R40::PI0096", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/1/" + }, + "dce:identifier": "SDN:R40::PI0120", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0120", + "skos:altLabel": "Liu ZENGHONG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Liu ZENGHONG" + }, + "dc:identifier": "SDN:R40::PI0120", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/1/" + }, + "dce:identifier": "SDN:R40::PI0092", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0092", + "skos:altLabel": "Jean-Baptiste SALLEE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jean-Baptiste SALLEE" + }, + "dc:identifier": "SDN:R40::PI0092", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/1/" + }, + "dce:identifier": "SDN:R40::PI0020", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0020", + "skos:altLabel": "Bo QIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bo QIU" + }, + "dc:identifier": "SDN:R40::PI0020", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/1/" + }, + "dce:identifier": "SDN:R40::PI0214", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0214", + "skos:altLabel": "Xavier CAPET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CAPET" + }, + "dc:identifier": "SDN:R40::PI0214", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/1/" + }, + "dce:identifier": "SDN:R40::PI0211", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0211", + "skos:altLabel": "Weifang JIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Weifang JIN" + }, + "dc:identifier": "SDN:R40::PI0211", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/1/" + }, + "dce:identifier": "SDN:R40::PI0174", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0174", + "skos:altLabel": "Shangping XIE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Shangping XIE" + }, + "dc:identifier": "SDN:R40::PI0174", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/1/" + }, + "dce:identifier": "SDN:R40::PI0194", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0194", + "skos:altLabel": "Tero PUROKOSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tero PUROKOSKI" + }, + "dc:identifier": "SDN:R40::PI0194", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/1/" + }, + "dce:identifier": "SDN:R40::PI0041", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0041", + "skos:altLabel": "Damien DESBRUYERES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Damien DESBRUYERES" + }, + "dc:identifier": "SDN:R40::PI0041", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/1/" + }, + "dce:identifier": "SDN:R40::PI0124", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0124", + "skos:altLabel": "Marcel BABIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marcel BABIN" + }, + "dc:identifier": "SDN:R40::PI0124", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/1/" + }, + "dce:identifier": "SDN:R40::PI0024", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0024", + "skos:altLabel": "Byunghwan LIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Byunghwan LIM" + }, + "dc:identifier": "SDN:R40::PI0024", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/1/" + }, + "dce:identifier": "SDN:R40::PI0044", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0044", + "skos:altLabel": "David NICHOLSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "David NICHOLSON" + }, + "dc:identifier": "SDN:R40::PI0044", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/1/" + }, + "dce:identifier": "SDN:R40::PI0179", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0179", + "skos:altLabel": "Sorin BALAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sorin BALAN" + }, + "dc:identifier": "SDN:R40::PI0179", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/1/" + }, + "dce:identifier": "SDN:R40::PI0085", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0085", + "skos:altLabel": "Hyun-Suk KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hyun-Suk KANG" + }, + "dc:identifier": "SDN:R40::PI0085", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/1/" + }, + "dce:identifier": "SDN:R40::PI0208", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0208", + "skos:altLabel": "Waldemar WALCZOWSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Waldemar WALCZOWSKI" + }, + "dc:identifier": "SDN:R40::PI0208", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/1/" + }, + "dce:identifier": "SDN:R40::PI0139", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0139", + "skos:altLabel": "Nobuyuki SHIKAMA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nobuyuki SHIKAMA" + }, + "dc:identifier": "SDN:R40::PI0139", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/1/" + }, + "dce:identifier": "SDN:R40::PI0053", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0053", + "skos:altLabel": "Elodie MARTINEZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Elodie MARTINEZ" + }, + "dc:identifier": "SDN:R40::PI0053", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/1/" + }, + "dce:identifier": "SDN:R40::PI0161", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0161", + "skos:altLabel": "Robert WELLER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert WELLER" + }, + "dc:identifier": "SDN:R40::PI0161", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/1/" + }, + "dce:identifier": "SDN:R40::PI0148", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0148", + "skos:altLabel": "Peter HACKER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter HACKER" + }, + "dc:identifier": "SDN:R40::PI0148", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/1/" + }, + "dce:identifier": "SDN:R40::PI0170", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0170", + "skos:altLabel": "Satoru YOKOI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoru YOKOI" + }, + "dc:identifier": "SDN:R40::PI0170", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/1/" + }, + "dce:identifier": "SDN:R40::PI0018", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0018", + "skos:altLabel": "Birgit KLEIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Birgit KLEIN" + }, + "dc:identifier": "SDN:R40::PI0018", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/1/" + }, + "dce:identifier": "SDN:R40::PI0048", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0048", + "skos:altLabel": "Diarmuid O'CONCHUBHAIR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Diarmuid O'CONCHUBHAIR" + }, + "dc:identifier": "SDN:R40::PI0048", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/1/" + }, + "dce:identifier": "SDN:R40::PI0003", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0003", + "skos:altLabel": "Akira KUWANO-YOSHIDA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUWANO-YOSHIDA" + }, + "dc:identifier": "SDN:R40::PI0003", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/1/" + }, + "dce:identifier": "SDN:R40::PI0027", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0027", + "skos:altLabel": "Catherine WOODY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Catherine WOODY" + }, + "dc:identifier": "SDN:R40::PI0027", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/1/" + }, + "dce:identifier": "SDN:R40::PI0097", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0097", + "skos:altLabel": "Jianping XU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianping XU" + }, + "dc:identifier": "SDN:R40::PI0097", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/1/" + }, + "dce:identifier": "SDN:R40::PI0111", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0111", + "skos:altLabel": "KiRyong KANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KiRyong KANG" + }, + "dc:identifier": "SDN:R40::PI0111", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/1/" + }, + "dce:identifier": "SDN:R40::PI0058", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0058", + "skos:altLabel": "Fabien ROQUET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fabien ROQUET" + }, + "dc:identifier": "SDN:R40::PI0058", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/1/" + }, + "dce:identifier": "SDN:R40::PI0142", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0142", + "skos:altLabel": "Oliver ZIELINSKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Oliver ZIELINSKI" + }, + "dc:identifier": "SDN:R40::PI0142", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/1/" + }, + "dce:identifier": "SDN:R40::PI0168", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0168", + "skos:altLabel": "Sarah PURKEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sarah PURKEY" + }, + "dc:identifier": "SDN:R40::PI0168", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/1/" + }, + "dce:identifier": "SDN:R40::PI0114", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0114", + "skos:altLabel": "Koichi ISHIKAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koichi ISHIKAWA" + }, + "dc:identifier": "SDN:R40::PI0114", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/1/" + }, + "dce:identifier": "SDN:R40::PI0077", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0077", + "skos:altLabel": "Heather FUREY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Heather FUREY" + }, + "dc:identifier": "SDN:R40::PI0077", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/1/" + }, + "dce:identifier": "SDN:R40::PI0021", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0021", + "skos:altLabel": "Boris DEWITTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Boris DEWITTE" + }, + "dc:identifier": "SDN:R40::PI0021", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/1/" + }, + "dce:identifier": "SDN:R40::PI0187", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0187", + "skos:altLabel": "Sung-Dae KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sung-Dae KIM" + }, + "dc:identifier": "SDN:R40::PI0187", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/1/" + }, + "dce:identifier": "SDN:R40::PI0039", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0039", + "skos:altLabel": "Daigo YANAGIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daigo YANAGIMOTO" + }, + "dc:identifier": "SDN:R40::PI0039", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/1/" + }, + "dce:identifier": "SDN:R40::PI0212", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0212", + "skos:altLabel": "Wilmar VAN DER ZWET", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wilmar VAN DER ZWET" + }, + "dc:identifier": "SDN:R40::PI0212", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/1/" + }, + "dce:identifier": "SDN:R40::PI0217", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0217", + "skos:altLabel": "Yanfeng WANG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yanfeng WANG" + }, + "dc:identifier": "SDN:R40::PI0217", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/1/" + }, + "dce:identifier": "SDN:R40::PI0175", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0175", + "skos:altLabel": "Sheena FENNELL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sheena FENNELL" + }, + "dc:identifier": "SDN:R40::PI0175", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/1/" + }, + "dce:identifier": "SDN:R40::PI0062", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0062", + "skos:altLabel": "Feng ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Feng ZHOU" + }, + "dc:identifier": "SDN:R40::PI0062", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/1/" + }, + "dce:identifier": "SDN:R40::PI0231", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0231", + "skos:altLabel": "Francisco DOS SANTOS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Francisco DOS SANTOS" + }, + "dc:identifier": "SDN:R40::PI0231", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/1/" + }, + "dce:identifier": "SDN:R40::PI0145", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0145", + "skos:altLabel": "Pedro VELEZ-BELCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pedro VELEZ-BELCHI" + }, + "dc:identifier": "SDN:R40::PI0145", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/1/" + }, + "dce:identifier": "SDN:R40::PI0197", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0197", + "skos:altLabel": "Thomas PEACOCK", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thomas PEACOCK" + }, + "dc:identifier": "SDN:R40::PI0197", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/1/" + }, + "dce:identifier": "SDN:R40::PI0093", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0093", + "skos:altLabel": "Jens MEINCKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jens MEINCKE" + }, + "dc:identifier": "SDN:R40::PI0093", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/1/" + }, + "dce:identifier": "SDN:R40::PI0047", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0047", + "skos:altLabel": "Detlef QUADFASEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Detlef QUADFASEL" + }, + "dc:identifier": "SDN:R40::PI0047", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/1/" + }, + "dce:identifier": "SDN:R40::PI0066", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0066", + "skos:altLabel": "Fraser DAVIDSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fraser DAVIDSON" + }, + "dc:identifier": "SDN:R40::PI0066", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/1/" + }, + "dce:identifier": "SDN:R40::PI0007", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0007", + "skos:altLabel": "Andrea FASSBENDER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andrea FASSBENDER" + }, + "dc:identifier": "SDN:R40::PI0007", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/1/" + }, + "dce:identifier": "SDN:R40::PI0076", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0076", + "skos:altLabel": "Guoping GAO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guoping GAO" + }, + "dc:identifier": "SDN:R40::PI0076", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/1/" + }, + "dce:identifier": "SDN:R40::PI0171", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0171", + "skos:altLabel": "Satoshi MITARAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Satoshi MITARAI" + }, + "dc:identifier": "SDN:R40::PI0171", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/1/" + }, + "dce:identifier": "SDN:R40::PI0221", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0221", + "skos:altLabel": "Young-Hwa KIM", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Young-Hwa KIM" + }, + "dc:identifier": "SDN:R40::PI0221", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/1/" + }, + "dce:identifier": "SDN:R40::PI0118", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0118", + "skos:altLabel": "Laurent COPPOLA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laurent COPPOLA" + }, + "dc:identifier": "SDN:R40::PI0118", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/1/" + }, + "dce:identifier": "SDN:R40::PI0184", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0184", + "skos:altLabel": "Stephen RISER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephen RISER" + }, + "dc:identifier": "SDN:R40::PI0184", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/1/" + }, + "dce:identifier": "SDN:R40::PI0220", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0220", + "skos:altLabel": "Yonghua CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yonghua CHEN" + }, + "dc:identifier": "SDN:R40::PI0220", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/1/" + }, + "dce:identifier": "SDN:R40::PI0060", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0060", + "skos:altLabel": "Fei CHAI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fei CHAI" + }, + "dc:identifier": "SDN:R40::PI0060", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/1/" + }, + "dce:identifier": "SDN:R40::PI0228", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0228", + "skos:altLabel": "Zenghong LIU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Zenghong LIU" + }, + "dc:identifier": "SDN:R40::PI0228", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/1/" + }, + "dce:identifier": "SDN:R40::PI0167", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0167", + "skos:altLabel": "Sang-Boom RYOO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sang-Boom RYOO" + }, + "dc:identifier": "SDN:R40::PI0167", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/1/" + }, + "dce:identifier": "SDN:R40::PI0098", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0098", + "skos:altLabel": "Jianqing ZHOU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jianqing ZHOU" + }, + "dc:identifier": "SDN:R40::PI0098", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/1/" + }, + "dce:identifier": "SDN:R40::PI0216", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0216", + "skos:altLabel": "Xu JIANPING", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xu JIANPING" + }, + "dc:identifier": "SDN:R40::PI0216", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/1/" + }, + "dce:identifier": "SDN:R40::PI0127", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0127", + "skos:altLabel": "Mauricio M MATA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mauricio M MATA" + }, + "dc:identifier": "SDN:R40::PI0127", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/1/" + }, + "dce:identifier": "SDN:R40::PI0103", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0103", + "skos:altLabel": "Josep L PELEGRI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Josep L PELEGRI" + }, + "dc:identifier": "SDN:R40::PI0103", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Josep Lluis Pelegri" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/1/" + }, + "dce:identifier": "SDN:R40::PI0149", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0149", + "skos:altLabel": "Peter LAZAREVICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter LAZAREVICH" + }, + "dc:identifier": "SDN:R40::PI0149", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/1/" + }, + "dce:identifier": "SDN:R40::PI0150", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0150", + "skos:altLabel": "Peter OKE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter OKE" + }, + "dc:identifier": "SDN:R40::PI0150", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/1/" + }, + "dce:identifier": "SDN:R40::PI0136", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0136", + "skos:altLabel": "Nicholas P FOUKAL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nicholas P FOUKAL" + }, + "dc:identifier": "SDN:R40::PI0136", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/1/" + }, + "dce:identifier": "SDN:R40::PI0203", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0203", + "skos:altLabel": "Turki ALRADDADI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Turki ALRADDADI" + }, + "dc:identifier": "SDN:R40::PI0203", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/1/" + }, + "dce:identifier": "SDN:R40::PI0050", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0050", + "skos:altLabel": "Dongliang YUAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dongliang YUAN" + }, + "dc:identifier": "SDN:R40::PI0050", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/1/" + }, + "dce:identifier": "SDN:R40::PI0218", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0218", + "skos:altLabel": "Yoichi TANIMOTO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yoichi TANIMOTO" + }, + "dc:identifier": "SDN:R40::PI0218", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/1/" + }, + "dce:identifier": "SDN:R40::PI0015", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0015", + "skos:altLabel": "Bernard BOURLES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bernard BOURLES" + }, + "dc:identifier": "SDN:R40::PI0015", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/1/" + }, + "dce:identifier": "SDN:R40::PI0146", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0146", + "skos:altLabel": "Pelle E ROBBINS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pelle E ROBBINS" + }, + "dc:identifier": "SDN:R40::PI0146", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/1/" + }, + "dce:identifier": "SDN:R40::PI0129", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0129", + "skos:altLabel": "Miguel SANTOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Miguel SANTOS" + }, + "dc:identifier": "SDN:R40::PI0129", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/1/" + }, + "dce:identifier": "SDN:R40::PI0180", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0180", + "skos:altLabel": "Stephane BLAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephane BLAIN" + }, + "dc:identifier": "SDN:R40::PI0180", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/1/" + }, + "dce:identifier": "SDN:R40::PI0200", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0200", + "skos:altLabel": "Tom TRULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tom TRULL" + }, + "dc:identifier": "SDN:R40::PI0200", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/1/" + }, + "dce:identifier": "SDN:R40::PI0183", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0183", + "skos:altLabel": "Stephen RINTOUL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephen RINTOUL" + }, + "dc:identifier": "SDN:R40::PI0183", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/1/" + }, + "dce:identifier": "SDN:R40::PI0186", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0186", + "skos:altLabel": "Steven JAYNE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Steven JAYNE" + }, + "dc:identifier": "SDN:R40::PI0186", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/1/" + }, + "dce:identifier": "SDN:R40::PI0224", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0224", + "skos:altLabel": "Yugo SHIMIZU", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Yugo SHIMIZU" + }, + "dc:identifier": "SDN:R40::PI0224", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/1/" + }, + "dce:identifier": "SDN:R40::PI0110", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0110", + "skos:altLabel": "Kensuke TAKEUCHI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Kensuke TAKEUCHI" + }, + "dc:identifier": "SDN:R40::PI0110", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/1/" + }, + "dce:identifier": "SDN:R40::PI0137", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0137", + "skos:altLabel": "Nick HARDMAN-MOUNTFORD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Nick HARDMAN-MOUNTFORD" + }, + "dc:identifier": "SDN:R40::PI0137", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/1/" + }, + "dce:identifier": "SDN:R40::PI0189", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0189", + "skos:altLabel": "Susan WIJFFELS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Susan WIJFFELS" + }, + "dc:identifier": "SDN:R40::PI0189", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/1/" + }, + "dce:identifier": "SDN:R40::PI0031", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0031", + "skos:altLabel": "Christine COATANOAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christine COATANOAN" + }, + "dc:identifier": "SDN:R40::PI0031", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/1/" + }, + "dce:identifier": "SDN:R40::PI0178", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0178", + "skos:altLabel": "Sophie CRAVATTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sophie CRAVATTE" + }, + "dc:identifier": "SDN:R40::PI0178", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/1/" + }, + "dce:identifier": "SDN:R40::PI0080", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0080", + "skos:altLabel": "Herve CLAUSTRE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Herve CLAUSTRE" + }, + "dc:identifier": "SDN:R40::PI0080", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/1/" + }, + "dce:identifier": "SDN:R40::PI0113", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0113", + "skos:altLabel": "Klaus-Peter KOLTERMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Klaus-Peter KOLTERMANN" + }, + "dc:identifier": "SDN:R40::PI0113", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/1/" + }, + "dce:identifier": "SDN:R40::PI0022", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0022", + "skos:altLabel": "Breck OWENS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Breck OWENS" + }, + "dc:identifier": "SDN:R40::PI0022", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/1/" + }, + "dce:identifier": "SDN:R40::PI0034", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0034", + "skos:altLabel": "Christophe MAES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Christophe MAES" + }, + "dc:identifier": "SDN:R40::PI0034", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/1/" + }, + "dce:identifier": "SDN:R40::PI0063", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0063", + "skos:altLabel": "Fengying JI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fengying JI" + }, + "dc:identifier": "SDN:R40::PI0063", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/1/" + }, + "dce:identifier": "SDN:R40::PI0116", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0116", + "skos:altLabel": "Lars STEMMANN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lars STEMMANN" + }, + "dc:identifier": "SDN:R40::PI0116", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/1/" + }, + "dce:identifier": "SDN:R40::PI0232", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0232", + "skos:altLabel": "Markus JANOUT", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Markus JANOUT" + }, + "dc:identifier": "SDN:R40::PI0232", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/1/" + }, + "dce:identifier": "SDN:R40::PI0119", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0119", + "skos:altLabel": "Lili ZENG", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Lili ZENG" + }, + "dc:identifier": "SDN:R40::PI0119", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/", + "pav:authoredOn": "2023-07-31 13:30:31.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/1/" + }, + "dce:identifier": "SDN:R40::PI0230", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0230", + "skos:altLabel": "Colin STEDMON", + "dc:date": "2023-07-31 13:30:31.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Colin STEDMON" + }, + "dc:identifier": "SDN:R40::PI0230", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/1/" + }, + "dce:identifier": "SDN:R40::PI0215", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0215", + "skos:altLabel": "Xavier CARTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Xavier CARTON" + }, + "dc:identifier": "SDN:R40::PI0215", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/1/" + }, + "dce:identifier": "SDN:R40::PI0151", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0151", + "skos:altLabel": "Peter THOMPSON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter THOMPSON" + }, + "dc:identifier": "SDN:R40::PI0151", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/1/" + }, + "dce:identifier": "SDN:R40::PI0030", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0030", + "skos:altLabel": "Chris BULL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chris BULL" + }, + "dc:identifier": "SDN:R40::PI0030", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/", + "pav:authoredOn": "2024-04-25 11:42:03.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/1/" + }, + "dce:identifier": "SDN:R40::PI0233", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0233", + "skos:altLabel": "Meike MARTINS", + "dc:date": "2024-04-25 11:42:03.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Meike MARTINS" + }, + "dc:identifier": "SDN:R40::PI0233", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/1/" + }, + "dce:identifier": "SDN:R40::PI0072", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0072", + "skos:altLabel": "Giorgio DALL'OLMO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Giorgio DALL'OLMO" + }, + "dc:identifier": "SDN:R40::PI0072", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/1/" + }, + "dce:identifier": "SDN:R40::PI0071", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0071", + "skos:altLabel": "Gilles REVERDIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gilles REVERDIN" + }, + "dc:identifier": "SDN:R40::PI0071", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/1/" + }, + "dce:identifier": "SDN:R40::PI0154", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0154", + "skos:altLabel": "Pierre-Marie POULAIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pierre-Marie POULAIN" + }, + "dc:identifier": "SDN:R40::PI0154", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/1/" + }, + "dce:identifier": "SDN:R40::PI0100", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0100", + "skos:altLabel": "Jon TURTON", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jon TURTON" + }, + "dc:identifier": "SDN:R40::PI0100", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/1/" + }, + "dce:identifier": "SDN:R40::PI0013", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0013", + "skos:altLabel": "Ariel TROISI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ariel TROISI" + }, + "dc:identifier": "SDN:R40::PI0013", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/1/" + }, + "dce:identifier": "SDN:R40::PI0075", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0075", + "skos:altLabel": "Guillaume MAZE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Guillaume MAZE" + }, + "dc:identifier": "SDN:R40::PI0075", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/1/" + }, + "dce:identifier": "SDN:R40::PI0141", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0141", + "skos:altLabel": "Olaf KLATT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Olaf KLATT" + }, + "dc:identifier": "SDN:R40::PI0141", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/1/" + }, + "dce:identifier": "SDN:R40::PI0157", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0157", + "skos:altLabel": "Renske GELDERLOOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Renske GELDERLOOS" + }, + "dc:identifier": "SDN:R40::PI0157", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/1/" + }, + "dce:identifier": "SDN:R40::PI0054", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0054", + "skos:altLabel": "Emil STANEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Emil STANEV" + }, + "dc:identifier": "SDN:R40::PI0054", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/1/" + }, + "dce:identifier": "SDN:R40::PI0095", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0095", + "skos:altLabel": "Jerome VIALARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jerome VIALARD" + }, + "dc:identifier": "SDN:R40::PI0095", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/1/" + }, + "dce:identifier": "SDN:R40::PI0002", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0002", + "skos:altLabel": "Akira KUSAKA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Akira KUSAKA" + }, + "dc:identifier": "SDN:R40::PI0002", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/1/" + }, + "dce:identifier": "SDN:R40::PI0037", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0037", + "skos:altLabel": "Conall O'MALLEY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Conall O'MALLEY" + }, + "dc:identifier": "SDN:R40::PI0037", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/1/" + }, + "dce:identifier": "SDN:R40::PI0078", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0078", + "skos:altLabel": "Helen PHILLIPS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Helen PHILLIPS" + }, + "dc:identifier": "SDN:R40::PI0078", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/1/" + }, + "dce:identifier": "SDN:R40::PI0005", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0005", + "skos:altLabel": "Alban LAZAR", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alban LAZAR" + }, + "dc:identifier": "SDN:R40::PI0005", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/1/" + }, + "dce:identifier": "SDN:R40::PI0192", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0192", + "skos:altLabel": "Takuya HASEGAWA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Takuya HASEGAWA" + }, + "dc:identifier": "SDN:R40::PI0192", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/1/" + }, + "dce:identifier": "SDN:R40::PI0008", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0008", + "skos:altLabel": "Andreas STERL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Andreas STERL" + }, + "dc:identifier": "SDN:R40::PI0008", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/1/" + }, + "dce:identifier": "SDN:R40::PI0195", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0195", + "skos:altLabel": "Thierry DELCROIX", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry DELCROIX" + }, + "dc:identifier": "SDN:R40::PI0195", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/1/" + }, + "dce:identifier": "SDN:R40::PI0190", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0190", + "skos:altLabel": "Sven PETERSEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sven PETERSEN" + }, + "dc:identifier": "SDN:R40::PI0190", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/1/" + }, + "dce:identifier": "SDN:R40::PI0004", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0004", + "skos:altLabel": "Alain SERPETTE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Alain SERPETTE" + }, + "dc:identifier": "SDN:R40::PI0004", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/1/" + }, + "dce:identifier": "SDN:R40::PI0132", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0132", + "skos:altLabel": "Mohomudally BEEBEEJAUN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Mohomudally BEEBEEJAUN" + }, + "dc:identifier": "SDN:R40::PI0132", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/1/" + }, + "dce:identifier": "SDN:R40::PI0198", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0198", + "skos:altLabel": "Tmel OGUZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tmel OGUZ" + }, + "dc:identifier": "SDN:R40::PI0198", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/1/" + }, + "dce:identifier": "SDN:R40::PI0045", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0045", + "skos:altLabel": "Dean ROEMMICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dean ROEMMICH" + }, + "dc:identifier": "SDN:R40::PI0045", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/1/" + }, + "dce:identifier": "SDN:R40::PI0040", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0040", + "skos:altLabel": "Dake CHEN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dake CHEN" + }, + "dc:identifier": "SDN:R40::PI0040", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/1/" + }, + "dce:identifier": "SDN:R40::PI0173", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0173", + "skos:altLabel": "Serguey GLADYSHEV", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Serguey GLADYSHEV" + }, + "dc:identifier": "SDN:R40::PI0173", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/1/" + }, + "dce:identifier": "SDN:R40::PI0122", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0122", + "skos:altLabel": "Luis F S SANTOS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Luis F S SANTOS" + }, + "dc:identifier": "SDN:R40::PI0122", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Luis Felipe Silva Santos" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/1/" + }, + "dce:identifier": "SDN:R40::PI0086", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0086", + "skos:altLabel": "Inmaculada RUIZ-PARRADO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Inmaculada RUIZ-PARRADO" + }, + "dc:identifier": "SDN:R40::PI0086", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/1/" + }, + "dce:identifier": "SDN:R40::PI0115", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0115", + "skos:altLabel": "Koppillil RADHAKRISHNAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Koppillil RADHAKRISHNAN" + }, + "dc:identifier": "SDN:R40::PI0115", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/1/" + }, + "dce:identifier": "SDN:R40::PI0204", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0204", + "skos:altLabel": "Vincent DUTREUIL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Vincent DUTREUIL" + }, + "dc:identifier": "SDN:R40::PI0204", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/1/" + }, + "dce:identifier": "SDN:R40::PI0043", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0043", + "skos:altLabel": "Daniel BALLESTERO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Daniel BALLESTERO" + }, + "dc:identifier": "SDN:R40::PI0043", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/1/" + }, + "dce:identifier": "SDN:R40::PI0028", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0028", + "skos:altLabel": "Cecile CABANES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Cecile CABANES" + }, + "dc:identifier": "SDN:R40::PI0028", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/1/" + }, + "dce:identifier": "SDN:R40::PI0156", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0156", + "skos:altLabel": "Rena CZESCHEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rena CZESCHEL" + }, + "dc:identifier": "SDN:R40::PI0156", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/1/" + }, + "dce:identifier": "SDN:R40::PI0125", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0125", + "skos:altLabel": "Marek STAWARZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Marek STAWARZ" + }, + "dc:identifier": "SDN:R40::PI0125", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/1/" + }, + "dce:identifier": "SDN:R40::PI0069", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0069", + "skos:altLabel": "Gerasimos KORRES", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gerasimos KORRES" + }, + "dc:identifier": "SDN:R40::PI0069", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/1/" + }, + "dce:identifier": "SDN:R40::PI0207", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0207", + "skos:altLabel": "Virginie THIERRY", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Virginie THIERRY" + }, + "dc:identifier": "SDN:R40::PI0207", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/1/" + }, + "dce:identifier": "SDN:R40::PI0046", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0046", + "skos:altLabel": "Denis GILBERT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Denis GILBERT" + }, + "dc:identifier": "SDN:R40::PI0046", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/1/" + }, + "dce:identifier": "SDN:R40::PI0128", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0128", + "skos:altLabel": "Michel ARHAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Michel ARHAN" + }, + "dc:identifier": "SDN:R40::PI0128", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/1/" + }, + "dce:identifier": "SDN:R40::PI0049", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0049", + "skos:altLabel": "Dimitris KASSIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Dimitris KASSIS" + }, + "dc:identifier": "SDN:R40::PI0049", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/1/" + }, + "dce:identifier": "SDN:R40::PI0181", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0181", + "skos:altLabel": "Stephanie CORREARD", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stephanie CORREARD" + }, + "dc:identifier": "SDN:R40::PI0181", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/1/" + }, + "dce:identifier": "SDN:R40::PI0210", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0210", + "skos:altLabel": "Wei FAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Wei FAN" + }, + "dc:identifier": "SDN:R40::PI0210", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/1/" + }, + "dce:identifier": "SDN:R40::PI0160", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0160", + "skos:altLabel": "Robert S PICKART", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Robert S PICKART" + }, + "dc:identifier": "SDN:R40::PI0160", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/1/" + }, + "dce:identifier": "SDN:R40::PI0123", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0123", + "skos:altLabel": "M RAVICHANDRAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "M RAVICHANDRAN" + }, + "dc:identifier": "SDN:R40::PI0123", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/1/" + }, + "dce:identifier": "SDN:R40::PI0081", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0081", + "skos:altLabel": "Hiroyuki YAMADA", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hiroyuki YAMADA" + }, + "dc:identifier": "SDN:R40::PI0081", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/1/" + }, + "dce:identifier": "SDN:R40::PI0164", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0164", + "skos:altLabel": "Russ DAVIS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Russ DAVIS" + }, + "dc:identifier": "SDN:R40::PI0164", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/1/" + }, + "dce:identifier": "SDN:R40::PI0163", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0163", + "skos:altLabel": "Rosemary MORROW", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Rosemary MORROW" + }, + "dc:identifier": "SDN:R40::PI0163", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/1/" + }, + "dce:identifier": "SDN:R40::PI0106", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0106", + "skos:altLabel": "Julia UITZ", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Julia UITZ" + }, + "dc:identifier": "SDN:R40::PI0106", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/1/" + }, + "dce:identifier": "SDN:R40::PI0084", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0084", + "skos:altLabel": "Hubert LOISEL", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hubert LOISEL" + }, + "dc:identifier": "SDN:R40::PI0084", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/1/" + }, + "dce:identifier": "SDN:R40::PI0019", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0019", + "skos:altLabel": "Blair GREENAN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Blair GREENAN" + }, + "dc:identifier": "SDN:R40::PI0019", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/1/" + }, + "dce:identifier": "SDN:R40::PI0166", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0166", + "skos:altLabel": "Sabrina SPEICH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sabrina SPEICH" + }, + "dc:identifier": "SDN:R40::PI0166", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/1/" + }, + "dce:identifier": "SDN:R40::PI0147", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0147", + "skos:altLabel": "Peter BRANDT", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Peter BRANDT" + }, + "dc:identifier": "SDN:R40::PI0147", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/1/" + }, + "pav:authoredOn": "2024-04-25 11:42:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/2/" + }, + "dce:identifier": "SDN:R40::PI0087", + "pav:version": "2", + "skos:notation": "SDN:R40::PI0087", + "skos:altLabel": "Isabelle TAUPIER-LETAGE", + "dc:date": "2024-04-25 11:42:04.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Isabelle TAUPIER-LETAGE" + }, + "dc:identifier": "SDN:R40::PI0087", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/1/" + }, + "dce:identifier": "SDN:R40::PI0188", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0188", + "skos:altLabel": "Sunke SCHMIDTKO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sunke SCHMIDTKO" + }, + "dc:identifier": "SDN:R40::PI0188", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/1/" + }, + "dce:identifier": "SDN:R40::PI0090", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0090", + "skos:altLabel": "Jang-Won SEO", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jang-Won SEO" + }, + "dc:identifier": "SDN:R40::PI0090", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/1/" + }, + "dce:identifier": "SDN:R40::PI0169", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0169", + "skos:altLabel": "Sato NAOKI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sato NAOKI" + }, + "dc:identifier": "SDN:R40::PI0169", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/1/" + }, + "dce:identifier": "SDN:R40::PI0011", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0011", + "skos:altLabel": "Antje BOETIUS", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Antje BOETIUS" + }, + "dc:identifier": "SDN:R40::PI0011", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/1/" + }, + "dce:identifier": "SDN:R40::PI0014", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0014", + "skos:altLabel": "Arne KORTZINGER", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Arne KORTZINGER" + }, + "dc:identifier": "SDN:R40::PI0014", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/1/" + }, + "dce:identifier": "SDN:R40::PI0201", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0201", + "skos:altLabel": "Tomowo WATANABE", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tomowo WATANABE" + }, + "dc:identifier": "SDN:R40::PI0201", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/1/" + }, + "dce:identifier": "SDN:R40::PI0155", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0155", + "skos:altLabel": "Pritha TUTASI", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pritha TUTASI" + }, + "dc:identifier": "SDN:R40::PI0155", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/1/" + }, + "dce:identifier": "SDN:R40::PI0017", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0017", + "skos:altLabel": "Bettina FACH", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Bettina FACH" + }, + "dc:identifier": "SDN:R40::PI0017", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/", + "pav:authoredOn": "2023-06-22 12:58:04.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/1/" + }, + "dce:identifier": "SDN:R40::PI0196", + "pav:version": "1", + "skos:notation": "SDN:R40::PI0196", + "skos:altLabel": "Thierry MOUTIN", + "dc:date": "2023-06-22 12:58:04.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Thierry MOUTIN" + }, + "dc:identifier": "SDN:R40::PI0196", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": "", + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0107/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0130/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0025/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0094/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0006/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0176/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0117/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0067/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0225/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0089/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0222/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0185/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0133/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0159/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0033/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0229/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0079/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0083/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0012/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0202/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0191/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0104/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0042/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0219/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0153/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0101/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0064/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0172/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0029/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0059/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0016/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0143/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0038/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0108/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0131/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0068/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0226/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0070/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0177/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0010/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0088/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0032/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0206/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0112/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0051/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0223/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0134/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0158/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0001/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0082/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0073/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0009/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0036/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0105/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0091/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0056/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0213/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0055/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0152/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0140/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0126/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0102/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0065/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0099/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0109/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0121/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0182/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0144/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0205/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0023/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0227/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0138/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0199/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0209/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0052/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0061/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0026/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0135/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0162/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0035/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0074/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0057/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0165/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0193/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0096/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0120/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0092/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0020/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0214/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0211/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0174/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0194/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0041/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0124/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0024/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0044/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0179/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0085/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0208/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0139/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0053/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0161/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0148/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0170/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0018/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0048/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0003/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0027/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0097/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0111/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0058/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0142/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0168/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0114/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0077/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0021/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0187/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0039/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0212/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0217/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0175/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0062/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0231/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0145/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0197/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0093/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0047/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0066/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0007/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0076/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0171/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0221/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0118/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0184/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0220/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0060/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0228/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0167/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0098/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0216/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0127/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0103/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0149/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0150/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0136/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0203/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0050/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0218/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0015/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0146/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0129/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0180/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0200/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0183/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0186/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0224/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0110/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0137/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0189/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0031/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0178/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0080/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0113/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0022/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0034/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0063/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0116/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0232/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0119/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0230/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0215/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0151/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0030/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0233/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0072/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0071/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0154/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0100/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0013/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0075/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0141/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0157/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0054/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0095/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0002/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0037/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0078/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0005/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0192/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0008/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0195/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0190/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0004/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0132/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0198/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0045/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0040/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0173/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0122/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0086/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0115/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0204/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0043/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0028/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0156/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0125/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0069/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0207/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0046/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0128/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0049/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0181/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0210/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0160/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0123/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0081/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0164/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0163/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0106/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0084/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0019/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0166/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0147/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0087/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0188/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0090/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0169/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0011/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0014/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0201/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0196/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0017/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R40/current/PI0155/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Principal Investigator (PI) names in charge of Argo floats. Argo netCDF variable PI_NAME is populated by R40 altLabel.", + "dc:title": "Argo Principal Investigator (PI) names", + "skos:prefLabel": "Argo Principal Investigator (PI) names", + "owl:versionInfo": "3", + "dc:date": "2024-04-26 03:00:10.0", + "skos:altLabel": "PI_NAME", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PI_NAME", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre" + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/6918ebb21678ed4afaea25795956bcff02c9b8eb4680c21320e42a033eb449d8.nc b/argopy/tests/test_data/6918ebb21678ed4afaea25795956bcff02c9b8eb4680c21320e42a033eb449d8.nc new file mode 100644 index 00000000..c13bdbfe Binary files /dev/null and b/argopy/tests/test_data/6918ebb21678ed4afaea25795956bcff02c9b8eb4680c21320e42a033eb449d8.nc differ diff --git a/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html b/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html new file mode 100644 index 00000000..ace29e94 --- /dev/null +++ b/argopy/tests/test_data/6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7.html @@ -0,0 +1,22 @@ + + + Processing BGC-Argo CDOM concentration at the DAC level + + + + + + +

Processing BGC-Argo CDOM concentration at the DAC level

In the open ocean, Colored Dissolved Organic Matter (CDOM) is the fraction of the total Dissolved Organic Matter (DOM), composed by a mixture of chemically complex algal degradation products that interact with light. CDOM absorbs solar radiation in the UV and visible ranges (Bricaud et al., 1981) and, if illuminated, re-emits light as fluorescence (i.e., FDOM; Coble 1996). These optical measurements can be used as proxies of CDOM concentration. Whereas CDOM absorption measurements are given by the entire pool of the organic matter, FDOM measurements detect only sub-fractions. Depending on excitation and emission wavelengths of the fluorometer, FDOM can represent the fresh-material produced by microbial degradation of phytoplankton cells and/or from zooplanktonic excretion, or aged humic substances (Stedmon and Nelson, 2015; Nelson and Gauglitz, 2016). Whereas CDOM absorption measurements require laboratory facilities, FDOM detection can be easily implemented on autonomous Biogeochemical-Argo profiling floats.

+ +

Though being only a small part of the DOM, CDOM (and FDOM) plays an important role in the ocean carbon cycle (Mopper and Kieber, 2002). Its distribution varies from the surface to the ocean interior and across world’s oceanic regions (Nelson and Siegel, 2013). It can indicate presence of bacterial (Organelli et al., 2014) and zooplankton (Steinberg et al., 2004) activities, planktonic food-web interactions (Xing et al., 2014), or accumulate below the thermocline depending on water mass ventilation ages (Nelson et al., 2010). Relation between consumed oxygen and CDOM optical proxies is a consequence of this accumulation, and it can be linked to remineralization processes of marine organic particles in the deep ocean (Nelson et al., 2010; Nelson and Siegel, 2013). Knowledge of CDOM (and FDOM) spatio-temporal variability is also important for remote sensing applications as it can confound standard algorithms used for the retrieval of biogeochemical and bio-optical products from space (Organelli et al., 2016; Organelli et al., 2017).

+ +

FDOM sensors currently installed on BGC-Argo floats have excitation/emission wavelengths of 370 and 460 nm, respectively. Thus, FDOM measurements correspond to more aged refractory organic material (Nelson and Gauglitz, 2016). Hereafter, we refer to FDOM measurements as CDOM.

+ +

 

+ +

At the moment all fluorescence sensors implemented on floats are developed by the WET labs Company and are of the ECO serie. These CDOM fluorometers are not standalone sensors and combine the CDOM measurements together two measurements (ECO triplet) which generally are Chlorophyll-A fluorescence and backscattering at 700 nm. The present document is focused on the management of the CDOM fluorescence data flow acquired by those sensors (section 3). As soon as others sensors are implemented and successfully tested on floats, the present document would be accordingly updated.

Full Text

FilePagesSizeAccess
Publisher's official version
11149 Ko
How to cite
Schmechtig Catherine, Organelli Emanuele, Poteau Antoine, Claustre Hervé, D'Ortenzio Fabrizio (2017). Processing BGC-Argo CDOM concentration at the DAC level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/54541

Copy this text

+ + + diff --git a/argopy/tests/test_data/6a83503d6022c7f803d9c5ff544f7c114aa79fb533176aee1a71479f2d97a20a.nc b/argopy/tests/test_data/6a83503d6022c7f803d9c5ff544f7c114aa79fb533176aee1a71479f2d97a20a.nc new file mode 100644 index 00000000..a8ac4fbe Binary files /dev/null and b/argopy/tests/test_data/6a83503d6022c7f803d9c5ff544f7c114aa79fb533176aee1a71479f2d97a20a.nc differ diff --git a/argopy/tests/test_data/6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3.json b/argopy/tests/test_data/6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3.json new file mode 100644 index 00000000..69ba025a --- /dev/null +++ b/argopy/tests/test_data/6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3.json @@ -0,0 +1,332 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/0/1/" + }, + "dce:identifier": "SDN:RR2::0", + "pav:version": "1", + "skos:notation": "SDN:RR2::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RR2::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No real-time quality control (QC) tests were performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/8/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/8/1/" + }, + "dce:identifier": "SDN:RR2::8", + "pav:version": "1", + "skos:notation": "SDN:RR2::8", + "skos:altLabel": "8", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value" + }, + "dc:identifier": "SDN:RR2::8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated value (interpolated, extrapolated or other estimation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/2/", + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/2/1/" + }, + "dce:identifier": "SDN:RR2::2", + "pav:version": "1", + "skos:notation": "SDN:RR2::2", + "skos:altLabel": "2", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably good data" + }, + "dc:identifier": "SDN:RR2::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "These measurements are to be used with caution." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/1/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/1/2/" + }, + "dce:identifier": "SDN:RR2::1", + "pav:version": "2", + "skos:notation": "SDN:RR2::1", + "skos:altLabel": "1", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Good data" + }, + "dc:identifier": "SDN:RR2::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "All Argo real-time quality controls (QC) tests passed. These measurements are good within the limits of the Argo real-time QC tests." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/5/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/5/1/" + }, + "dce:identifier": "SDN:RR2::5", + "pav:version": "1", + "skos:notation": "SDN:RR2::5", + "skos:altLabel": "5", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value changed" + }, + "dc:identifier": "SDN:RR2::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/9/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/9/2/" + }, + "dce:identifier": "SDN:RR2::9", + "pav:version": "2", + "skos:notation": "SDN:RR2::9", + "skos:altLabel": "9", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Missing Value" + }, + "dc:identifier": "SDN:RR2::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Missing value. Data parameter will record FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/4/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/4/2/" + }, + "dce:identifier": "SDN:RR2::4", + "pav:version": "2", + "skos:notation": "SDN:RR2::4", + "skos:altLabel": "4", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Bad data" + }, + "dc:identifier": "SDN:RR2::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "These measurements are not to be used. A flag '4' indicates that a relevant real-time quality control test has failed. A flag '4' may also be assigned for bad measurements that are known to be not adjustable, e.g. due to sensor failure." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/3/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/3/2/" + }, + "dce:identifier": "SDN:RR2::3", + "pav:version": "2", + "skos:notation": "SDN:RR2::3", + "skos:altLabel": "3", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably bad data that are potentially adjustable" + }, + "dc:identifier": "SDN:RR2::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "These measurements are not to be used without scientific adjustment, e.g. data affected by sensor drift but may be adjusted in delayed-mode." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RR2/current/4/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality flag scale for real-time measurements. Argo netCDF variables _QC in 'R' mode and _ADJUSTED_QC in 'A' mode are populated by RR2 altLabel.", + "dc:title": "Argo real-time quality control measurement flags", + "skos:prefLabel": "Argo real-time quality control measurement flags", + "owl:versionInfo": "1", + "dc:date": "2024-04-19 03:00:08.0", + "skos:altLabel": "RT_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "RT_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/RR2" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597.nc b/argopy/tests/test_data/700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597.nc new file mode 100644 index 00000000..8ae0a0de Binary files /dev/null and b/argopy/tests/test_data/700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597.nc differ diff --git a/argopy/tests/test_data/705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9.nc b/argopy/tests/test_data/705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9.nc new file mode 100644 index 00000000..a22e5ec9 Binary files /dev/null and b/argopy/tests/test_data/705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9.nc differ diff --git a/argopy/tests/test_data/729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6.nc b/argopy/tests/test_data/729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6.nc new file mode 100644 index 00000000..33f36337 Binary files /dev/null and b/argopy/tests/test_data/729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6.nc differ diff --git a/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json b/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json new file mode 100644 index 00000000..3685a6a7 --- /dev/null +++ b/argopy/tests/test_data/7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-10T18:47:00","lat":42.0456,"lon":4.6818,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903632"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T09:31:00","lat":42.9671,"lon":8.3503,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904239"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"BULGARIA"},"nameShort":"BulArgo"},"ptfDepl":{"deplDate":"2022-11-03T04:54:00","lat":42.9337,"lon":28.859,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906866"},{"program":{"country":{"nameShort":"SAUDI ARABIA"},"nameShort":"Argo_SAUDI_ARABIA"},"ptfDepl":{"deplDate":"2022-03-29T13:19:00","lat":26.85,"lon":35.13,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906868"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-01T20:50:00","lat":74.505,"lon":15.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904242"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-05-31T01:00:00","lat":72.2545,"lon":19.6202,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901007"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T21:20:00","lat":69.8045,"lon":0.834,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902465"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T12:59:00","lat":69.903,"lon":3.499,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902464"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-06-05T19:23:00","lat":64.8,"lon":23.4833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904243"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-11T18:04:00","lat":14.992,"lon":133.6309,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902470"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-16T07:05:00","lat":17.0,"lon":132.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901012"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-13T09:49:00","lat":15.0,"lon":132.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906968"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-10-03T00:00:00","lat":78.0667,"lon":29.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990507"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-01T18:28:00","lat":29.51,"lon":177.54,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906506"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-04T13:14:00","lat":24.67,"lon":165.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906502"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-06T19:43:00","lat":19.59,"lon":155.02,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906503"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-06T21:58:00","lat":30.47,"lon":134.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906510"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-08T12:42:00","lat":30.15,"lon":138.46,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906511"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-03T08:49:00","lat":26.44,"lon":136.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-29T09:07:00","lat":30.08,"lon":179.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906516"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-14T10:58:00","lat":29.95,"lon":151.34,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906518"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-01T23:59:00","lat":21.02,"lon":140.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906519"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-10T07:15:00","lat":30.07,"lon":143.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906522"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-19T09:35:00","lat":30.03,"lon":160.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906515"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-24T04:58:00","lat":30.1,"lon":169.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906512"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-31T14:42:00","lat":57.1945,"lon":20.0199,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904226"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2022-11-16T12:04:00","lat":39.2717,"lon":1.987,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902467"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2022-07-20T10:46:00","lat":39.0,"lon":0.73,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903635"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-07T23:00:00","lat":16.78,"lon":150.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906764"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-07T12:00:00","lat":17.93,"lon":151.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906763"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-03T18:00:00","lat":26.16,"lon":168.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906761"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-05T16:00:00","lat":22.28,"lon":160.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-02T06:00:00","lat":28.69,"lon":175.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-02T23:00:00","lat":27.57,"lon":172.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-09T03:00:00","lat":2.0,"lon":180.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906829"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-01-15T14:50:00","lat":24.952,"lon":136.981,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903694"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-01-16T10:26:00","lat":27.949,"lon":137.001,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903695"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-02-09T14:55:00","lat":38.957,"lon":143.126,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903696"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-03T13:53:00","lat":40.7276,"lon":2.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903818"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-02-23T16:20:00","lat":40.5575,"lon":2.6215,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903816"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-04T09:33:00","lat":40.8882,"lon":2.7773,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903817"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-03-21T01:26:00","lat":33.056,"lon":138.815,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903697"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-17T10:17:00","lat":43.6778,"lon":14.2697,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903815"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-04-19T13:24:15","lat":11.508,"lon":86.0,"noSite":0},"ptfModel":{"nameShort":"HM2000"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902837"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-18T01:47:00","lat":34.3372,"lon":143.9438,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903703"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-04-19T00:44:00","lat":33.9988,"lon":149.0322,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903667"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-05-03T02:05:00","lat":29.015,"lon":176.1317,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903701"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T23:46:00","lat":39.668,"lon":147.8792,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903702"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T08:54:00","lat":41.3113,"lon":146.6777,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903698"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T14:15:00","lat":40.6647,"lon":147.1577,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903699"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-05-02T01:22:22","lat":46.9997,"lon":160.0413,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903700"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-21T18:49:00","lat":38.8915,"lon":13.2905,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903820"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-19T21:02:00","lat":40.5058,"lon":10.9962,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903819"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-25T07:57:00","lat":35.9032,"lon":14.1008,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903821"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-01T02:22:00","lat":32.2983,"lon":136.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903704"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-01T14:26:00","lat":29.3097,"lon":135.9917,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903705"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-06-01T11:41:00","lat":36.2643,"lon":20.5184,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903822"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-07-04T05:38:00","lat":42.398,"lon":152.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902857"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T05:53:00","lat":69.9,"lon":6.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903590"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-07-04T09:07:00","lat":40.6813,"lon":150.991,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-25T01:35:00","lat":48.9858,"lon":178.2178,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903492"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-30T09:06:00","lat":26.9886,"lon":133.9897,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-24T17:00:00","lat":16.9833,"lon":178.5,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-16T05:26:00","lat":29.2883,"lon":177.7783,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-15T08:27:00","lat":32.1617,"lon":179.6683,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-20T19:00:00","lat":24.09,"lon":177.51,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906805"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-25T07:03:00","lat":14.505,"lon":178.965,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906806"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-21T10:00:00","lat":21.4598,"lon":176.924,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906808"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-07-03T00:12:00","lat":44.3973,"lon":155.5742,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906816"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-27T00:56:00","lat":54.9608,"lon":175.1197,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-30T19:30:00","lat":48.1347,"lon":163.425,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-28T19:33:00","lat":50.1573,"lon":171.9137,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903490"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-26T19:10:00","lat":12.35,"lon":179.2333,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906809"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-07-20T18:58:00","lat":32.3342,"lon":135.6679,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903707"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-07-06T05:22:00","lat":37.01,"lon":129.92,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903636"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-07-06T05:22:00","lat":37.01,"lon":129.92,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903637"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-07-30T21:45:00","lat":17.9353,"lon":148.0512,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902013"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-08-11T22:45:00","lat":21.3222,"lon":149.8605,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902014"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2022-07-24T16:06:00","lat":20.16,"lon":130.51,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902880"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-08-13T23:10:00","lat":15.8428,"lon":143.3893,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902012"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-08-23T22:54:00","lat":27.9898,"lon":138.0549,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903710"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-08-22T14:50:00","lat":25.0097,"lon":133.0188,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903709"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-04T00:27:00","lat":9.9972,"lon":136.9808,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5905872"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-01T10:49:00","lat":28.4655,"lon":140.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903711"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-06T11:08:00","lat":25.9927,"lon":132.044,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-08-15T11:19:00","lat":19.283,"lon":155.7893,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906818"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-08-23T10:00:00","lat":10.0,"lon":164.9603,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906817"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-11T02:18:00","lat":20.0267,"lon":137.0565,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903708"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-08-31T07:00:00","lat":14.06,"lon":133.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906391"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-02T02:30:00","lat":18.05,"lon":132.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906392"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-04T04:15:00","lat":23.42,"lon":131.56,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906393"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-07T10:31:00","lat":27.963,"lon":137.001,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903712"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-09T06:37:00","lat":30.001,"lon":137.04,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903714"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-11T03:38:00","lat":31.995,"lon":137.024,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903716"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-12T01:08:00","lat":30.4133,"lon":173.3383,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903730"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-10-23T03:38:00","lat":39.2163,"lon":145.3983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903731"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"BULGARIA"},"nameShort":"BulArgo"},"ptfDepl":{"deplDate":"2022-11-03T08:05:00","lat":43.1216,"lon":29.1122,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902006"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-11-14T04:27:00","lat":24.21,"lon":134.835,"noSite":null},"ptfModel":{"nameShort":"HM2000"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902881"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-26T15:30:00","lat":39.75,"lon":24.15,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901017"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-11-21T08:42:00","lat":34.31,"lon":33.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-11-25T17:18:40","lat":33.9432,"lon":28.1062,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-05T16:38:00","lat":10.9438,"lon":62.0342,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903137"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-06T11:13:00","lat":8.3911,"lon":64.9986,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903140"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-04T19:35:00","lat":13.8739,"lon":58.5501,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903142"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-07T04:52:00","lat":5.8121,"lon":68.0403,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903138"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-12-11T00:50:00","lat":28.981,"lon":134.959,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903717"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-15T13:20:00","lat":34.8961,"lon":23.4967,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903826"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-12-16T22:08:00","lat":32.9961,"lon":139.3458,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903718"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-14T08:13:00","lat":41.4961,"lon":18.1179,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903825"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_eq_CHINA"},"ptfDepl":{"deplDate":"2022-07-01T08:10:00","lat":39.01,"lon":149.99,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2902878"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-18T05:18:00","lat":35.7674,"lon":22.2987,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-19T04:45:00","lat":26.4733,"lon":178.1817,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5906807"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-01-01T05:35:00","lat":3.4505,"lon":77.5037,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-16T21:10:00","lat":35.6,"lon":22.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903827"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-10-03T00:00:00","lat":78.0667,"lon":29.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906973"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-10-03T14:24:00","lat":81.0,"lon":15.88,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903641"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-07-16T00:00:00","lat":80.6791,"lon":15.3,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904222"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-04T20:50:00","lat":74.5022,"lon":0.9805,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-01T20:51:00","lat":82.2372,"lon":34.9264,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903143"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-01T20:33:00","lat":82.2509,"lon":34.9568,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903144"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-25T01:10:00","lat":82.2501,"lon":33.8817,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903145"},{"program":{"country":{"nameShort":"POLAND"},"nameShort":"Argo_POLAND"},"ptfDepl":{"deplDate":"2022-07-26T23:08:00","lat":76.5102,"lon":0.9225,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-07-16T05:00:00","lat":81.0,"lon":12.0385,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904221"}],"total":262} \ No newline at end of file diff --git a/argopy/tests/test_data/73e262cd948072bc9b67846cdf5b919aec54feffa08e2cdacfd2144bac706864.ncHeader b/argopy/tests/test_data/73e262cd948072bc9b67846cdf5b919aec54feffa08e2cdacfd2144bac706864.ncHeader new file mode 100644 index 00000000..13fb62a2 --- /dev/null +++ b/argopy/tests/test_data/73e262cd948072bc9b67846cdf5b919aec54feffa08e2cdacfd2144bac706864.ncHeader @@ -0,0 +1,686 @@ +netcdf ArgoFloats-synthetic-BGC_2547_508f_3435.nc { + dimensions: + row = 83615; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -9.164699E-4f, 0.05414488f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -9.164699E-4f, 0.05414488f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=83615, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=83615, bbp700_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.761025f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01356583f, 3.577122f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=83615, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=83615, chla_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=83615); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 0.0307578f, 37.92605f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=83615, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=83615, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=83615); + :_FillValue = 99999; // int + :actual_range = 1, 57; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=83615, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.484757E-4f, 0.7294909f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.455375E-5f, 0.7292956f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01458591f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=83615, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=83615, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.274848E-5f, 1.377052f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.610992E-5f, 1.376981f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02753962f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=83615, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=83615, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -8.524217E-5f, 1.843542f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.414902E-5f, 1.84358f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.0368716f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=83615, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=83615, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.4787728f, 2514.499f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.05009519f, 2514.08f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 125.704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=83615, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=83615, downwelling_par_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 259.8413f, 344.439f; // float + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :long_name = "Dissolved oxygen"; + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=83615); + :actual_range = 264.4146f, 99999.0f; // float + + float doxy_adjusted_error(row=83615); + :actual_range = 12.55041f, 99999.0f; // float + + char doxy_adjusted_qc(row=83615, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char doxy_qc(row=83615, doxy_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=83615); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.84967733333333, 57.650632166666675; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=83615); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.10385516666667, -43.740898; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 3.8049f, 21.64844f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=83615); + :actual_range = 0.9445617f, 99999.0f; // float + + float nitrate_adjusted_error(row=83615); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=83615, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=83615, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 7.010946f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=83615, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=83615, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=83615, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=83615); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=83615); + :_ChunkSizes = 106, 787; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2005.056f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.054f, 2003.352f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=83615, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=83615, pres_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 27.411f, 34.936f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.20806f, 34.93495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=83615, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=83615, psal_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=83615); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=83615, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=83615, temp_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=83615); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653827397E9, 1.701612697015E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=83615); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -43.740898; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 57.650632166666675; // double + :geospatial_lat_min = 55.84967733333333; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -43.740898; // double + :geospatial_lon_min = -53.10385516666667; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:48:43Z (local files) +2024-09-25T05:48:43Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904241%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 57.650632166666675; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.84967733333333; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-12-03T14:11:37Z"; + :time_coverage_start = "2022-05-29T12:29:57Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.10385516666667; // double +} diff --git a/argopy/tests/test_data/7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f.nc b/argopy/tests/test_data/7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f.nc new file mode 100644 index 00000000..ac4f093c Binary files /dev/null and b/argopy/tests/test_data/7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f.nc differ diff --git a/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html b/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html new file mode 100644 index 00000000..c6d77f2c --- /dev/null +++ b/argopy/tests/test_data/75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f.html @@ -0,0 +1,14 @@ + + + Processing BGC-Argo chlorophyll-A concentration at the DAC level + + + + + + +

Processing BGC-Argo chlorophyll-A concentration at the DAC level

Ce document ne traite pas le contrôle qualité de la chlorophylle-a (en temps réel ou différé). Il est une étape préliminaire à cet objectif; il est destiné aux équipes qui déploient des flotteurs bio-Argo équipés de capteurs de chlorophylle-a pour qu’elles documentent leurs données et métadonnées correctement. Nous avons produit ce document en réponse à l'action 9 de la première réunion Bio-Argo gestion de données d'Hyderabad (12-13 novembre 2012). Si les recommandations de ce document sont adoptées, la communauté bio-Argo pourra produire un jeu de données de chlorophylle-a de particules homogène, qui permettra l'analyse des données des différentes équipes, dans l'esprit de partage de données Argo.

This document does NOT address the issue of chlorophyll-a quality control (either real-time or delayed mode). As a preliminary step towards that goal, this document seeks to ensure that all countries deploying floats equipped with chlorophyll-a sensors document the data and metadata related to these floats properly. We produced this document in response to action item 3 from the first Bio-Argo Data Management meeting in Hyderabad (November 12-13, 2012). If the recommendations contained herein are followed, we will end up with a more uniform set of chlorophyll-a data within the Bio-Argo data system, allowing users to begin analyzing not only their own chlorophyll-a data, but also those of others, in the true spirit of Argo data sharing.

Full Text

FilePagesSizeAccess
37945.pdf
12552 Ko
How to cite
Schmechtig Catherine, Poteau Antoine, Claustre Hervé, D'Ortenzio Fabrizio, Boss Emmanuel (2015). Processing BGC-Argo chlorophyll-A concentration at the DAC level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/39468

Copy this text

+ + + diff --git a/argopy/tests/test_data/769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00.nc b/argopy/tests/test_data/769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00.nc new file mode 100644 index 00000000..0558a053 Binary files /dev/null and b/argopy/tests/test_data/769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00.nc differ diff --git a/argopy/tests/test_data/78bc3091b4e335a8f3f1929e855477d8684119cc86f9a918fe76893399023615.xml b/argopy/tests/test_data/78bc3091b4e335a8f3f1929e855477d8684119cc86f9a918fe76893399023615.xml new file mode 100644 index 00000000..5c5e8d3f --- /dev/null +++ b/argopy/tests/test_data/78bc3091b4e335a8f3f1929e855477d8684119cc86f9a918fe76893399023615.xml @@ -0,0 +1,1983 @@ + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at 380 nm wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE380 + Raw downwelling irradiance at 380 nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE380 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE380 + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE380 + + + + 2020-04-04 15:05:33.0 + + + Number of samples in bin (dimensionless). + + false + accepted + SDN:R03::NB_SAMPLE + Number of samples in bin + 1 + 2020-04-04 15:05:33.0 + NB_SAMPLE + SDN:R03::NB_SAMPLE + + 1 + SDN:R03::NB_SAMPLE + + + + 2020-04-04 15:05:33.0 + + SDN:R03::LED_FLASHING_COUNT_DOXY + 1 + SDN:R03::LED_FLASHING_COUNT_DOXY + LED_FLASHING_COUNT_DOXY + 2020-04-04 15:05:33.0 + 1 + Number of times oxygen sensor flashing to measure oxygen + SDN:R03::LED_FLASHING_COUNT_DOXY + accepted + false + + Light-emitting diode (LED) flashing frequency (count) from dissolved oxygen sensor. + + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at 555 nm wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE555 + Downwelling irradiance at 555 nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE555 + SDN:R03::DOWN_IRRADIANCE555 + + 1 + SDN:R03::DOWN_IRRADIANCE555 + + + + 2020-04-04 15:05:33.0 + + + Raw output signal (hertz) from dissolved oxygen sensor. + + false + accepted + SDN:R03::FREQUENCY_DOXY + Frequency reported by oxygen sensor + 1 + 2020-04-04 15:05:33.0 + FREQUENCY_DOXY + SDN:R03::FREQUENCY_DOXY + + 1 + SDN:R03::FREQUENCY_DOXY + + + + 2020-04-04 15:05:33.0 + + + Raw output signal (volt) from dissolved oxygen sensor. + + false + accepted + SDN:R03::VOLTAGE_DOXY + Voltage reported by oxygen sensor + 1 + 2020-04-04 15:05:33.0 + VOLTAGE_DOXY + SDN:R03::VOLTAGE_DOXY + + 1 + SDN:R03::VOLTAGE_DOXY + + + + 2020-04-04 15:05:33.0 + + SDN:R03::HUMIDITY_NITRATE + 1 + SDN:R03::HUMIDITY_NITRATE + HUMIDITY_NITRATE + 2020-04-04 15:05:33.0 + 1 + Relative humidity inside the nitrate sensor + SDN:R03::HUMIDITY_NITRATE + accepted + false + + Relative humidity inside the nitrate sensor (If > 50% there is a leak) + + + + + 2020-04-04 15:05:33.0 + + + Upwelling radiance (W/m^2/nm/sr) at 412 nm wavelength. + + false + accepted + SDN:R03::UP_RADIANCE412 + Upwelling radiance at 412 nanometers + 1 + 2020-04-04 15:05:33.0 + UP_RADIANCE412 + SDN:R03::UP_RADIANCE412 + + 1 + SDN:R03::UP_RADIANCE412 + + + + 2020-04-04 15:05:33.0 + + + Raw fluorescence signal (count) from coloured dissolved organic matter (CDOM) sensor. + + false + accepted + SDN:R03::FLUORESCENCE_CDOM + Raw fluorescence from coloured dissolved organic matter sensor + 1 + 2020-04-04 15:05:33.0 + FLUORESCENCE_CDOM + SDN:R03::FLUORESCENCE_CDOM + + 1 + SDN:R03::FLUORESCENCE_CDOM + + + + 2020-04-04 15:05:33.0 + + + Raw backscattering signal (count) from backscattering meter at 532 nm wavelength. + + false + accepted + SDN:R03::BETA_BACKSCATTERING532 + Total angle specific volume from backscattering sensor at 532 nanometers + 1 + 2020-04-04 15:05:33.0 + BETA_BACKSCATTERING532 + SDN:R03::BETA_BACKSCATTERING532 + + 1 + SDN:R03::BETA_BACKSCATTERING532 + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at 380 nm wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE380 + Downwelling irradiance at 380 nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE380 + SDN:R03::DOWN_IRRADIANCE380 + + 1 + SDN:R03::DOWN_IRRADIANCE380 + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_CTD + 1 + SDN:R03::NB_SAMPLE_CTD + NB_SAMPLE_CTD + 2021-02-01 14:09:51.0 + 1 + Number of CTD samples in each pressure bin + SDN:R03::NB_SAMPLE_CTD + accepted + false + + Number of CTD samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + + Particle beam attenuation (/m) at unspecified wavelength. + + false + accepted + SDN:R03::CP + Particle beam attenuation at x nanometers + 1 + 2020-04-04 15:05:33.0 + CP + SDN:R03::CP + + 1 + SDN:R03::CP + + + + 2020-04-04 15:05:33.0 + + + Dissolved oxygen concentration (umol/l) uncorrected for salinity and pressure effects. + + false + accepted + SDN:R03::MOLAR_DOXY + Uncompensated (pressure and salinity) oxygen concentration reported +by the oxygen sensor + 1 + 2020-04-04 15:05:33.0 + MOLAR_DOXY + SDN:R03::MOLAR_DOXY + + 1 + SDN:R03::MOLAR_DOXY + + + + 2020-04-04 15:05:33.0 + + SDN:R03::TEMP_NITRATE + 1 + SDN:R03::TEMP_NITRATE + TEMP_NITRATE + 2020-04-04 15:05:33.0 + 1 + Internal temperature of the nitrate sensor + SDN:R03::TEMP_NITRATE + accepted + false + + Internal temperature (degC) of the nitrate sensor + + + + + 2020-04-04 15:05:33.0 + + + Raw output signal (volt) from pH sensor, equating to the potential between the transistor source and the reference electrode. + + false + accepted + SDN:R03::VRS_PH + Voltage difference between reference and source from pH sensor + 1 + 2020-04-04 15:05:33.0 + VRS_PH + SDN:R03::VRS_PH + + 1 + SDN:R03::VRS_PH + + + + 2020-04-04 15:05:33.0 + + + Upwelling radiance (W/m^2/nm/sr) at 490 nm wavelength. + + false + accepted + SDN:R03::UP_RADIANCE490 + Upwelling radiance at 490 nanometers + 1 + 2020-04-04 15:05:33.0 + UP_RADIANCE490 + SDN:R03::UP_RADIANCE490 + + 1 + SDN:R03::UP_RADIANCE490 + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_STM + 1 + SDN:R03::NB_SAMPLE_STM + NB_SAMPLE_STM + 2021-02-01 14:09:51.0 + 1 + Number of STM samples in each pressure bin + SDN:R03::NB_SAMPLE_STM + accepted + false + + Number of Seapoint Turbidity Meter (STM) sensor samples in each pressure bin (dimensionless). + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_DURAFET + 1 + SDN:R03::NB_SAMPLE_DURAFET + NB_SAMPLE_DURAFET + 2021-02-01 14:09:51.0 + 1 + Number of DURAFET samples in each pressure bin + SDN:R03::NB_SAMPLE_DURAFET + accepted + false + + Number of Durafet pH sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + SDN:R03::RAW_UPWELLING_RADIANCE443 + 1 + SDN:R03::RAW_UPWELLING_RADIANCE443 + RAW_UPWELLING_RADIANCE443 + 2020-04-04 15:05:33.0 + 1 + Raw upwelling radiance at 443 nanometers + SDN:R03::RAW_UPWELLING_RADIANCE443 + accepted + false + + Raw upwelling radiance signal (count) at 443 nm wavelength. + + + + + + 2024-08-20 12:02:47.0 + + + Raw temperature signal (count) from thermistor on backscattering meter and/or fluorometer. + + false + accepted + SDN:R03::TEMP_CPU_CHLA + Thermistor signal from backscattering meter and/or fluorometer + 2 + 2024-08-20 12:02:47.0 + TEMP_CPU_CHLA + SDN:R03::TEMP_CPU_CHLA + + 2 + SDN:R03::TEMP_CPU_CHLA + + + + 2019-10-11 15:02:22.0 + + + Practical salinity of the water body by conductivity cell and computation using the UNESCO 1983 algorithm. + + false + accepted + SDN:R03::PSAL + Practical salinity + 1 + 2019-10-11 15:02:22.0 + PSAL + SDN:R03::PSAL + + 1 + SDN:R03::PSAL + + + + 2020-04-04 15:05:33.0 + + SDN:R03::TEMP_COUNT_DOXY + 1 + SDN:R03::TEMP_COUNT_DOXY + TEMP_COUNT_DOXY + 2020-04-04 15:05:33.0 + 1 + Count which is expressive of uncalibrated temperature value reported by oxygen sensor + SDN:R03::TEMP_COUNT_DOXY + accepted + false + + Raw temperature signal (count) from thermistor on dissolved oxygen sensor. + + + + + 2020-04-04 15:05:33.0 + + SDN:R03::PHASE_DELAY_DOXY + 1 + SDN:R03::PHASE_DELAY_DOXY + PHASE_DELAY_DOXY + 2020-04-04 15:05:33.0 + 1 + Phase delay reported by oxygen sensor + SDN:R03::PHASE_DELAY_DOXY + accepted + false + + Raw phase delay (usec) by optode. + + + + + 2019-10-11 15:02:22.0 + + + Measure of electrical flow through water. + + false + accepted + SDN:R03::CNDC + Electrical conductivity + 1 + 2019-10-11 15:02:22.0 + CNDC + SDN:R03::CNDC + + 1 + SDN:R03::CNDC + + + + 2020-04-04 15:05:33.0 + + + Raw backscattering signal (count) from backscattering meter at 700 nm wavelength. + + false + accepted + SDN:R03::BETA_BACKSCATTERING700 + Total angle specific volume from backscattering sensor at 700 nanometers + 1 + 2020-04-04 15:05:33.0 + BETA_BACKSCATTERING700 + SDN:R03::BETA_BACKSCATTERING700 + + 1 + SDN:R03::BETA_BACKSCATTERING700 + + + + 2020-04-04 15:05:33.0 + + SDN:R03::MTIME + 1 + SDN:R03::MTIME + MTIME + 2020-04-04 15:05:33.0 + 1 + Fractional day of the individual measurement relative to JULD of the station + SDN:R03::MTIME + accepted + false + + Fractional day of the individual measurement relative to JULD of the station (days). + + + + + 2020-04-04 15:05:33.0 + + + Upwelling radiance (W/m^2/nm/sr) at 555 nm wavelength. + + false + accepted + SDN:R03::UP_RADIANCE555 + Upwelling radiance at 555 nanometers + 1 + 2020-04-04 15:05:33.0 + UP_RADIANCE555 + SDN:R03::UP_RADIANCE555 + + 1 + SDN:R03::UP_RADIANCE555 + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_ECO + 1 + SDN:R03::NB_SAMPLE_ECO + NB_SAMPLE_ECO + 2021-02-01 14:09:51.0 + 1 + Number of ECO samples in each pressure bin + SDN:R03::NB_SAMPLE_ECO + accepted + false + + Number of Environmental Characterization Optics (ECO) sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at 443 nm wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE443 + Downwelling irradiance at 443 nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE443 + SDN:R03::DOWN_IRRADIANCE443 + + 1 + SDN:R03::DOWN_IRRADIANCE443 + + + + 2020-04-04 15:05:33.0 + + SDN:R03::RAW_UPWELLING_RADIANCE412 + 1 + SDN:R03::RAW_UPWELLING_RADIANCE412 + RAW_UPWELLING_RADIANCE412 + 2020-04-04 15:05:33.0 + 1 + Raw upwelling radiance at 412 nanometers + SDN:R03::RAW_UPWELLING_RADIANCE412 + accepted + false + + Raw upwelling radiance signal (count) at 412 nm wavelength. + + + + + 2020-04-04 15:05:33.0 + + + Temperature (degC) from thermistor on dissolved oxygen sensor, expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. + + false + accepted + SDN:R03::TEMP_DOXY + Sea temperature from oxygen sensor ITS-90 scale + 1 + 2020-04-04 15:05:33.0 + TEMP_DOXY + SDN:R03::TEMP_DOXY + + 1 + SDN:R03::TEMP_DOXY + + + + 2020-04-04 15:05:33.0 + + + Raw ultra-violet (UV) flux signal (count) in seawater and darkness from nitrate sensor. + + false + accepted + SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE + Intensity of ultra-violet flux dark seawater from nitrate sensor + 1 + 2020-04-04 15:05:33.0 + UV_INTENSITY_DARK_SEAWATER_NITRATE + SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE + + 1 + SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE + + + + 2020-04-04 15:05:33.0 + + + Dissolved oxygen concentration (ml/l) uncorrected for salinity and pressure effects. + + false + accepted + SDN:R03::MLPL_DOXY + Oxygen concentration reported by the oxygen sensor + 1 + 2020-04-04 15:05:33.0 + MLPL_DOXY + SDN:R03::MLPL_DOXY + + 1 + SDN:R03::MLPL_DOXY + + + + + + + Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F. + + false + accepted + SDN:R03::C1PHASE_DOXY + Uncalibrated blue excitation light phase shift reported by Aanderaa optode 4330/4330F + 2 + 2020-05-03 17:42:05.0 + C1PHASE_DOXY + SDN:R03::C1PHASE_DOXY + 2 + SDN:R03::C1PHASE_DOXY + + 2020-05-03 17:42:05.0 + + + 2020-04-04 15:05:33.0 + + + Raw beam attenuation signal (count) from transmissometer sensor at unspecified wavelength. + + false + accepted + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION + Beam attenuation from transmissometer sensor at x nanometers + 1 + 2020-04-04 15:05:33.0 + TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION + + 1 + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at 490 nm wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE490 + Raw downwelling irradiance at 490 nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE490 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE490 + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE490 + + + + + 2020-05-03 17:42:33.0 + + + Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F. + + false + accepted + SDN:R03::C2PHASE_DOXY + Uncalibrated red excitation light phase shift reported by Aanderaa optode 4330/4330F + 2 + 2020-05-03 17:42:33.0 + C2PHASE_DOXY + SDN:R03::C2PHASE_DOXY + + 2 + SDN:R03::C2PHASE_DOXY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Natural Environment Research Council + Terms describing individual measured phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel; R03 altLabel is also used to name netCDF profile files parameter variables <PARAMETER>. + Argo parameter codes + Argo parameter codes + 7 + 2024-08-21 03:00:01.0 + PARAMETER + Argo Data Management Team + PARAMETER + Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server. + Argo Data Management Team + British Oceanographic Data Centre + + + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_OCR + 1 + SDN:R03::NB_SAMPLE_OCR + NB_SAMPLE_OCR + 2021-02-01 14:09:51.0 + 1 + Number of OCR samples in each pressure bin + SDN:R03::NB_SAMPLE_OCR + accepted + false + + Number of OCR sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at 555 nm wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE555 + Raw downwelling irradiance at 555 nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE555 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE555 + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE555 + + + + + 2020-05-03 17:40:52.0 + + + Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 3830. + + false + accepted + SDN:R03::BPHASE_DOXY + Uncalibrated blue excitation light phase shift reported by Aanderaa optode 3830 + 2 + 2020-05-03 17:40:52.0 + BPHASE_DOXY + SDN:R03::BPHASE_DOXY + + 2 + SDN:R03::BPHASE_DOXY + + + + 2020-04-04 15:05:33.0 + + + Raw output signal (count) from dissolved oxygen sensor. + + false + accepted + SDN:R03::COUNT_DOXY + Count reported by oxygen sensor + 1 + 2020-04-04 15:05:33.0 + COUNT_DOXY + SDN:R03::COUNT_DOXY + + 1 + SDN:R03::COUNT_DOXY + + + + 2020-04-04 15:05:33.0 + + + Particle backscattering (/m) at unspecified wavelength. + + false + accepted + SDN:R03::BBP + Particle backscattering at x nanometers + 1 + 2020-04-04 15:05:33.0 + BBP + SDN:R03::BBP + + 1 + SDN:R03::BBP + + + + 2020-04-04 15:05:33.0 + + + pH against the free scale. + + false + accepted + SDN:R03::PH_IN_SITU_FREE + pH (free scale) + 1 + 2020-04-04 15:05:33.0 + PH_IN_SITU_FREE + SDN:R03::PH_IN_SITU_FREE + + 1 + SDN:R03::PH_IN_SITU_FREE + + + + 2020-04-04 15:05:33.0 + + + pH against the seawater scale. + + false + accepted + SDN:R03::PH_IN_SITU_SEAWATER + pH (seawater scale) + 1 + 2020-04-04 15:05:33.0 + PH_IN_SITU_SEAWATER + SDN:R03::PH_IN_SITU_SEAWATER + + 1 + SDN:R03::PH_IN_SITU_SEAWATER + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_SUNA + 1 + SDN:R03::NB_SAMPLE_SUNA + NB_SAMPLE_SUNA + 2021-02-01 14:09:51.0 + 1 + Number of SUNA samples in each pressure bin + SDN:R03::NB_SAMPLE_SUNA + accepted + false + + Number of SUNA sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + SDN:R03::RAW_UPWELLING_RADIANCE555 + 1 + SDN:R03::RAW_UPWELLING_RADIANCE555 + RAW_UPWELLING_RADIANCE555 + 2020-04-04 15:05:33.0 + 1 + Raw upwelling radiance at 555 nanometers + SDN:R03::RAW_UPWELLING_RADIANCE555 + accepted + false + + Raw upwelling radiance signal (count) at 555 nm wavelength. + + + + + 2020-04-04 15:05:33.0 + + + Particle backscattering (/m) at 470 nm wavelength. + + false + accepted + SDN:R03::BBP470 + Particle backscattering at 470 nanometers + 1 + 2020-04-04 15:05:33.0 + BBP470 + SDN:R03::BBP470 + + 1 + SDN:R03::BBP470 + + + + 2020-04-04 15:05:33.0 + + + Nitrate concentration (umol/kg). + + false + accepted + SDN:R03::NITRATE + Nitrate concentration + 1 + 2020-04-04 15:05:33.0 + NITRATE + SDN:R03::NITRATE + + 1 + SDN:R03::NITRATE + + + + 2020-04-04 15:05:33.0 + + + Particle beam attenuation (/m) at 660 nm wavelength. + + false + accepted + SDN:R03::CP660 + Particle beam attenuation at 660 nanometers + 1 + 2020-04-04 15:05:33.0 + CP660 + SDN:R03::CP660 + + 1 + SDN:R03::CP660 + + + + 2020-04-04 15:05:33.0 + + + Raw turbidity signal (count) from side scattering sensor. + + false + accepted + SDN:R03::SIDE_SCATTERING_TURBIDITY + Turbidity signal from side scattering sensor + 1 + 2020-04-04 15:05:33.0 + SIDE_SCATTERING_TURBIDITY + SDN:R03::SIDE_SCATTERING_TURBIDITY + + 1 + SDN:R03::SIDE_SCATTERING_TURBIDITY + + + + + 2023-10-05 14:49:26.0 + + + Raw temperature signal (volt) from thermistor on dissolved oxygen sensor. + + false + accepted + SDN:R03::TEMP_VOLTAGE_DOXY + Thermistor voltage reported by oxygen sensor + 2 + 2023-10-05 14:49:26.0 + TEMP_VOLTAGE_DOXY + SDN:R03::TEMP_VOLTAGE_DOXY + + 2 + SDN:R03::TEMP_VOLTAGE_DOXY + + + + 2020-04-04 15:05:33.0 + + + Oxygen partial pressure (mBar). + + false + accepted + SDN:R03::PPOX_DOXY + Partial pressure of oxygen + 1 + 2020-04-04 15:05:33.0 + PPOX_DOXY + SDN:R03::PPOX_DOXY + + 1 + SDN:R03::PPOX_DOXY + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_MCOMS + 1 + SDN:R03::NB_SAMPLE_MCOMS + NB_SAMPLE_MCOMS + 2021-02-01 14:09:51.0 + 1 + Number of MCOMS samples in each pressure bin + SDN:R03::NB_SAMPLE_MCOMS + accepted + false + + Number of WET Labs MCOMS sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + SDN:R03::IK_PH + 1 + SDN:R03::IK_PH + IK_PH + 2020-04-04 15:05:33.0 + 1 + Counter electrode current of pH sensor + SDN:R03::IK_PH + accepted + false + + Counter electrode current (nA) from pH sensor. + + + + + 2020-04-04 15:05:33.0 + + + Nitrate concentration (umol/l). + + false + accepted + SDN:R03::MOLAR_NITRATE + Molar nitrate concentration + 1 + 2020-04-04 15:05:33.0 + MOLAR_NITRATE + SDN:R03::MOLAR_NITRATE + + 1 + SDN:R03::MOLAR_NITRATE + + + + 2023-08-31 11:21:18.0 + + SDN:R03::CHLA_FLUORESCENCE + 1 + SDN:R03::CHLA_FLUORESCENCE + CHLA_FLUORESCENCE + 2023-08-31 11:21:18.0 + 1 + Chlorophyll fluorescence with factory calibration + SDN:R03::CHLA_FLUORESCENCE + accepted + false + + Chlorophyll fluorescence in relative unit with factory calibration + + + + 2020-04-04 15:05:33.0 + + + Downwelling photosynthetically available radiation (PAR) (uE/m^2/s). + + false + accepted + SDN:R03::DOWNWELLING_PAR + Downwelling photosynthetically available radiation + 1 + 2020-04-04 15:05:33.0 + DOWNWELLING_PAR + SDN:R03::DOWNWELLING_PAR + + 1 + SDN:R03::DOWNWELLING_PAR + + + + 2020-04-04 15:05:33.0 + + SDN:R03::RAW_UPWELLING_RADIANCE490 + 1 + SDN:R03::RAW_UPWELLING_RADIANCE490 + RAW_UPWELLING_RADIANCE490 + 2020-04-04 15:05:33.0 + 1 + Raw upwelling radiance at 490 nanometers + SDN:R03::RAW_UPWELLING_RADIANCE490 + accepted + false + + Raw upwelling radiance signal (count) at 490 nm wavelength. + + + + + 2020-04-04 15:05:33.0 + + SDN:R03::IB_PH + 1 + SDN:R03::IB_PH + IB_PH + 2020-04-04 15:05:33.0 + 1 + Base current of pH sensor + SDN:R03::IB_PH + accepted + false + + Base current (nA) of pH sensor chip. + + + + + 2020-04-04 15:05:33.0 + + + Raw ultra-violet (UV) flux signal (count) from nitrate sensor. + + false + accepted + SDN:R03::UV_INTENSITY_NITRATE + Intensity of ultra-violet flux from nitrate sensor + 1 + 2020-04-04 15:05:33.0 + UV_INTENSITY_NITRATE + SDN:R03::UV_INTENSITY_NITRATE + + 1 + SDN:R03::UV_INTENSITY_NITRATE + + + + 2020-04-04 15:05:33.0 + + + pH against the total scale. + + false + accepted + SDN:R03::PH_IN_SITU_TOTAL + pH (total scale) + 1 + 2020-04-04 15:05:33.0 + PH_IN_SITU_TOTAL + SDN:R03::PH_IN_SITU_TOTAL + + 1 + SDN:R03::PH_IN_SITU_TOTAL + + + + 2020-04-04 15:05:33.0 + + + Upwelling radiance (W/m^2/nm/sr) at 443 nm wavelength. + + false + accepted + SDN:R03::UP_RADIANCE443 + Upwelling radiance at 443 nanometers + 1 + 2020-04-04 15:05:33.0 + UP_RADIANCE443 + SDN:R03::UP_RADIANCE443 + + 1 + SDN:R03::UP_RADIANCE443 + + + + 2020-04-04 15:05:33.0 + + SDN:R03::RAW_UPWELLING_RADIANCE + 1 + SDN:R03::RAW_UPWELLING_RADIANCE + RAW_UPWELLING_RADIANCE + 2020-04-04 15:05:33.0 + 1 + Raw upwelling radiance at x nanometers + SDN:R03::RAW_UPWELLING_RADIANCE + accepted + false + + Raw upwelling radiance signal (count) at unspecified wavelength. + + + + + 2020-04-04 15:05:33.0 + + + Coloured dissolved organic matter (CDOM) concentration (ppb). + + false + accepted + SDN:R03::CDOM + Concentration of coloured dissolved organic matter in seawater + 1 + 2020-04-04 15:05:33.0 + CDOM + SDN:R03::CDOM + + 1 + SDN:R03::CDOM + + + + 2020-04-04 15:05:33.0 + + + Raw backscattering signal (count) from backscattering meter at 470 nm wavelength. + + false + accepted + SDN:R03::BETA_BACKSCATTERING470 + Total angle specific volume from backscattering sensor at 470 nanometers + 1 + 2020-04-04 15:05:33.0 + BETA_BACKSCATTERING470 + SDN:R03::BETA_BACKSCATTERING470 + + 1 + SDN:R03::BETA_BACKSCATTERING470 + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_CYC + 1 + SDN:R03::NB_SAMPLE_CYC + NB_SAMPLE_CYC + 2021-02-01 14:09:51.0 + 1 + Number of CYCLOPS samples in each pressure bin + SDN:R03::NB_SAMPLE_CYC + accepted + false + + Number of Cyclops sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + + Particle backscattering (/m) at 700 nm wavelength. + + false + accepted + SDN:R03::BBP700 + Particle backscattering at 700 nanometers + 1 + 2020-04-04 15:05:33.0 + BBP700 + SDN:R03::BBP700 + + 1 + SDN:R03::BBP700 + + + + 2020-04-04 15:05:33.0 + + SDN:R03::TILT + 1 + SDN:R03::TILT + TILT + 2020-04-04 15:05:33.0 + 1 + Inclination of the float axis in respect to the local vertical + SDN:R03::TILT + accepted + false + + Inclination of the float axis in respect to the local vertical (deg). + + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at 412 nm wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE412 + Raw downwelling irradiance at 412 nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE412 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE412 + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE412 + + + + 2020-04-04 15:05:33.0 + + + Bisulfide concentration (umol/kg). + + false + accepted + SDN:R03::BISULFIDE + Bisulfide concentration + 1 + 2020-04-04 15:05:33.0 + BISULFIDE + SDN:R03::BISULFIDE + + 1 + SDN:R03::BISULFIDE + + + + 2020-04-04 15:05:33.0 + + SDN:R03::VK_PH + 1 + SDN:R03::VK_PH + VK_PH + 2020-04-04 15:05:33.0 + 1 + Counter electrode voltage of pH sensor + SDN:R03::VK_PH + accepted + false + + Counter electrode signal (volt) from pH sensor. + + + + + 2020-04-04 15:05:33.0 + + + Raw ultra-violet (UV) flux signal (count) in darkness from nitrate sensor. + + false + accepted + SDN:R03::UV_INTENSITY_DARK_NITRATE + Intensity of ultra-violet flux dark measurement from nitrate sensor + 1 + 2020-04-04 15:05:33.0 + UV_INTENSITY_DARK_NITRATE + SDN:R03::UV_INTENSITY_DARK_NITRATE + + 1 + SDN:R03::UV_INTENSITY_DARK_NITRATE + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at unspecified wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE + Downwelling irradiance at x nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE + SDN:R03::DOWN_IRRADIANCE + + 1 + SDN:R03::DOWN_IRRADIANCE + + + + 2020-04-04 15:05:33.0 + + + Raw beam attenuation signal (count) from transmissometer sensor at 660 nm wavelength. + + false + accepted + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 + Particle beam attenuation from transmissometer sensor at 660 nanometers + 1 + 2020-04-04 15:05:33.0 + TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 + + 1 + SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660 + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at unspecified wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE + Raw downwelling irradiance at x nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE + SDN:R03::RAW_DOWNWELLING_IRRADIANCE + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE + + + + 2020-04-04 15:05:33.0 + + + Calibration fit error of nitrate (dimensionless). + + false + accepted + SDN:R03::FIT_ERROR_NITRATE + Nitrate fit error + 1 + 2020-04-04 15:05:33.0 + FIT_ERROR_NITRATE + SDN:R03::FIT_ERROR_NITRATE + + 1 + SDN:R03::FIT_ERROR_NITRATE + + + + 2019-10-11 15:02:22.0 + + + The force per unit area exerted by the water column on a pressure sensor, corrected to read zero at sea level. + + false + accepted + SDN:R03::PRES + Sea water pressure, equals 0 at sea-level + 1 + 2019-10-11 15:02:22.0 + PRES + SDN:R03::PRES + + 1 + SDN:R03::PRES + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling photosynthetically available radiation (PAR) signal (count). + + false + accepted + SDN:R03::RAW_DOWNWELLING_PAR + Raw downwelling photosynthetically available radiation + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_PAR + SDN:R03::RAW_DOWNWELLING_PAR + + 1 + SDN:R03::RAW_DOWNWELLING_PAR + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at 412 nm wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE412 + Downwelling irradiance at 412 nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE412 + SDN:R03::DOWN_IRRADIANCE412 + + 1 + SDN:R03::DOWN_IRRADIANCE412 + + + + 2020-04-04 15:05:33.0 + + + Dissolved oxygen concentration (umol/kg). + + false + accepted + SDN:R03::DOXY + Dissolved oxygen concentration + 1 + 2020-04-04 15:05:33.0 + DOXY + SDN:R03::DOXY + + 1 + SDN:R03::DOXY + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_ISUS + 1 + SDN:R03::NB_SAMPLE_ISUS + NB_SAMPLE_ISUS + 2021-02-01 14:09:51.0 + 1 + Number of ISUS samples in each pressure bin + SDN:R03::NB_SAMPLE_ISUS + accepted + false + + Number of In Situ Ultraviolet Spectrophotometer (ISUS) sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + SDN:R03::TEMP_PH + 1 + SDN:R03::TEMP_PH + TEMP_PH + 2020-04-04 15:05:33.0 + 1 + Sea temperature from pH sensor + SDN:R03::TEMP_PH + accepted + false + + Temperature (degC) of seawater from pH sensor. + + + + + 2020-04-04 15:05:33.0 + + + Chlorophyll-a concentration (mg/m^3). + + false + accepted + SDN:R03::CHLA + Chlorophyll-a concentration + 1 + 2020-04-04 15:05:33.0 + CHLA + SDN:R03::CHLA + + 1 + SDN:R03::CHLA + + + + 2020-04-04 15:05:33.0 + + + Raw fluorescence signal (count) from chlorophyll-a fluorometer. + + false + accepted + SDN:R03::FLUORESCENCE_CHLA + Raw signal from chlorophyll-a fluorometer + 1 + 2020-04-04 15:05:33.0 + FLUORESCENCE_CHLA + SDN:R03::FLUORESCENCE_CHLA + + 1 + SDN:R03::FLUORESCENCE_CHLA + + + + + 2020-05-03 17:43:30.0 + + + Uncalibrated temperature compensated phase shift (deg) reported by oxygen sensor. + + false + accepted + SDN:R03::TPHASE_DOXY + Uncalibrated temperature compensated phase shift reported by oxygen sensor + 2 + 2020-05-03 17:43:30.0 + TPHASE_DOXY + SDN:R03::TPHASE_DOXY + + 2 + SDN:R03::TPHASE_DOXY + + + + 2020-04-04 15:05:33.0 + + + Turbidity (NTU) of seawater. + + false + accepted + SDN:R03::TURBIDITY + seawater turbidity + 1 + 2020-04-04 15:05:33.0 + TURBIDITY + SDN:R03::TURBIDITY + + 1 + SDN:R03::TURBIDITY + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_OPTODE + 1 + SDN:R03::NB_SAMPLE_OPTODE + NB_SAMPLE_OPTODE + 2021-02-01 14:09:51.0 + 1 + Number of optode samples in each pressure bin + SDN:R03::NB_SAMPLE_OPTODE + accepted + false + + Number of optode samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + + Raw downwelling irradiance signal (count) at 443 nm wavelength. + + false + accepted + SDN:R03::RAW_DOWNWELLING_IRRADIANCE443 + Raw downwelling irradiance at 443 nanometers + 1 + 2020-04-04 15:05:33.0 + RAW_DOWNWELLING_IRRADIANCE443 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE443 + + 1 + SDN:R03::RAW_DOWNWELLING_IRRADIANCE443 + + + + 2020-04-04 15:05:33.0 + + + Calibrated phase (deg) by optode. + + false + accepted + SDN:R03::DPHASE_DOXY + Calibrated phase shift reported by oxygen sensor + 1 + 2020-04-04 15:05:33.0 + DPHASE_DOXY + SDN:R03::DPHASE_DOXY + + 1 + SDN:R03::DPHASE_DOXY + + + + 2020-04-04 15:05:33.0 + + SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE + 1 + SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE + TEMP_SPECTROPHOTOMETER_NITRATE + 2020-04-04 15:05:33.0 + 1 + Temperature of the spectrometer + SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE + accepted + false + + Spectrometer temperature (degC) of nitrate sensor. + + + + + 2021-02-01 14:09:51.0 + + SDN:R03::NB_SAMPLE_CROVER + 1 + SDN:R03::NB_SAMPLE_CROVER + NB_SAMPLE_CROVER + 2021-02-01 14:09:51.0 + 1 + Number of c-Rover samples in each pressure bin + SDN:R03::NB_SAMPLE_CROVER + accepted + false + + Number of c-Rover sensor samples in each pressure bin (dimensionless). + + + + 2020-04-04 15:05:33.0 + + SDN:R03::UP_RADIANCE + 1 + SDN:R03::UP_RADIANCE + UP_RADIANCE + 2020-04-04 15:05:33.0 + 1 + Upwelling radiance at x nanometers + SDN:R03::UP_RADIANCE + accepted + false + + Upwelling radiance (W/m^2/nm/sr) at unspecified wavelength. + + + + + + 2020-05-03 17:41:38.0 + + + Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 3830. + + false + accepted + SDN:R03::RPHASE_DOXY + Uncalibrated red excitation light phase shift reported by Aanderaa optode 3830 + 2 + 2020-05-03 17:41:38.0 + RPHASE_DOXY + SDN:R03::RPHASE_DOXY + + 2 + SDN:R03::RPHASE_DOXY + + + + 2019-10-11 15:02:22.0 + + + Temperature of the water body expressed against the International Temperature Scale 1990 (ITS-90) calibration standard. + + false + accepted + SDN:R03::TEMP + Sea temperature in-situ ITS-90 scale + 1 + 2019-10-11 15:02:22.0 + TEMP + SDN:R03::TEMP + + 1 + SDN:R03::TEMP + + + + 2021-02-01 14:09:51.0 + + SDN:R03::TEMP_CNDC + 1 + + SDN:R03::TEMP_CNDC + TEMP_CNDC + 2021-02-01 14:09:51.0 + 1 + Internal temperature of the conductivity cell + SDN:R03::TEMP_CNDC + accepted + false + + Internal temperature (degC) of the conductivity cell. + + + + 2020-04-04 15:05:33.0 + + + Downwelling irradiance (W/m^2/nm) at 490 nm wavelength. + + false + accepted + SDN:R03::DOWN_IRRADIANCE490 + Downwelling irradiance at 490 nanometers + 1 + 2020-04-04 15:05:33.0 + DOWN_IRRADIANCE490 + SDN:R03::DOWN_IRRADIANCE490 + + 1 + SDN:R03::DOWN_IRRADIANCE490 + + + + 2020-04-04 15:05:33.0 + + + Raw backscattering signal (count) from backscattering meter at unspecified wavelength. + + false + accepted + SDN:R03::BETA_BACKSCATTERING + Total angle specific volume from backscattering sensor at x nanometers + 1 + 2020-04-04 15:05:33.0 + BETA_BACKSCATTERING + SDN:R03::BETA_BACKSCATTERING + + 1 + SDN:R03::BETA_BACKSCATTERING + + + + 2020-04-04 15:05:33.0 + + + Particle backscattering (/m) at 532 nm wavelength. + + false + accepted + SDN:R03::BBP532 + Particle backscattering at 532 nanometers + 1 + 2020-04-04 15:05:33.0 + BBP532 + SDN:R03::BBP532 + + 1 + SDN:R03::BBP532 + + + diff --git a/argopy/tests/test_data/7b0efd4231f4ac6ff7c5a68a35252c3589448e44f774d044d0f8ad142c056388.ncHeader b/argopy/tests/test_data/7b0efd4231f4ac6ff7c5a68a35252c3589448e44f774d044d0f8ad142c056388.ncHeader new file mode 100644 index 00000000..6d055bd7 --- /dev/null +++ b/argopy/tests/test_data/7b0efd4231f4ac6ff7c5a68a35252c3589448e44f774d044d0f8ad142c056388.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_d9c3_d593_2204.nc { + dimensions: + row = 141; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=141); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=141); + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=141, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=141); + :actual_range = 172.5826f, 335.1566f; // float + + float doxy_adjusted_error(row=141); + :actual_range = 5.177477f, 10.0547f; // float + + char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=141); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.064, -55.979; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=141); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 144.484, 149.71; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=141, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.7f, 2005.1f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.72545f, 34.74495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01158624f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.576f, 4.475f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=141); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=141); + :_CoordinateAxisType = "Time"; + :actual_range = 1.266899783E9, 1.276412397E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 149.71; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -55.979; // double + :geospatial_lat_min = -57.064; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 149.71; // double + :geospatial_lon_min = 144.484; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:56Z (local files) +2024-09-25T05:50:56Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -55.979; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.064; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2010-06-13T06:59:57Z"; + :time_coverage_start = "2010-02-23T04:36:23Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 144.484; // double +} diff --git a/argopy/tests/test_data/7c3a19176d6b988bb1eaf062c057a5610b4263732b6cd2c3638f1d2bf847f510.nc b/argopy/tests/test_data/7c3a19176d6b988bb1eaf062c057a5610b4263732b6cd2c3638f1d2bf847f510.nc new file mode 100644 index 00000000..2aeb4e3b Binary files /dev/null and b/argopy/tests/test_data/7c3a19176d6b988bb1eaf062c057a5610b4263732b6cd2c3638f1d2bf847f510.nc differ diff --git a/argopy/tests/test_data/7cb9b350c04b2e50a6a8845ed95d90cf69ab8d41bae7dafcc91fcb1ed52505e6.ncHeader b/argopy/tests/test_data/7cb9b350c04b2e50a6a8845ed95d90cf69ab8d41bae7dafcc91fcb1ed52505e6.ncHeader new file mode 100644 index 00000000..30c374f9 --- /dev/null +++ b/argopy/tests/test_data/7cb9b350c04b2e50a6a8845ed95d90cf69ab8d41bae7dafcc91fcb1ed52505e6.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_f0e4_554f_98d3.nc { + dimensions: + row = 732; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=732); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 9; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=732); + :_FillValue = 99999; // int + :actual_range = 7, 157; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=732, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 248.6568f, 288.2258f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 269.7927f, 308.8627f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.415855f, 16.55767f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=732, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=732, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=732); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.019996666666664, 56.95117983333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=732); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.62549666666666; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=732, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=732); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=732); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 9.9f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.000083f, 2.004125f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=732, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=732, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 31.927f, 34.478f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 31.96201f, 34.488f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=732, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=732, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.247f, 11.566f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.278f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=732, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=732, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=732); + :_CoordinateAxisType = "Time"; + :actual_range = 1.6591383E9, 1.66561998E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=732); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.62549666666666; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.95117983333333; // double + :geospatial_lat_min = 55.019996666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.62549666666666; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:48:03Z (local files) +2024-09-24T12:48:03Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1658724480.0&time%3C=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.95117983333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.019996666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2022-10-13T00:13:00Z"; + :time_coverage_start = "2022-07-29T23:45:00Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859.json b/argopy/tests/test_data/7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859.json new file mode 100644 index 00000000..6647fd66 --- /dev/null +++ b/argopy/tests/test_data/7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859.json @@ -0,0 +1,354 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/1/" + }, + "dce:identifier": "SDN:R09::GALILEO", + "pav:version": "1", + "skos:notation": "SDN:R09::GALILEO", + "skos:altLabel": "GALILEO", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "dc:identifier": "SDN:R09::GALILEO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Galileo navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/1/" + }, + "dce:identifier": "SDN:R09::BEIDOU", + "pav:version": "1", + "skos:notation": "SDN:R09::BEIDOU", + "skos:altLabel": "BEIDOU", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "dc:identifier": "SDN:R09::BEIDOU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Beidou navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/1/" + }, + "dce:identifier": "SDN:R09::GLONASS", + "pav:version": "1", + "skos:notation": "SDN:R09::GLONASS", + "skos:altLabel": "GLONASS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "dc:identifier": "SDN:R09::GLONASS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GLONASS navigation satellite system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/1/" + }, + "dce:identifier": "SDN:R09::NONE", + "pav:version": "1", + "skos:notation": "SDN:R09::NONE", + "skos:altLabel": "NONE", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "More than one system used or none available" + }, + "dc:identifier": "SDN:R09::NONE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "For profile file only: if an estimated position is based on two or more positioning systems, or if the estimation does not rely on information from positioning systems." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R09::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R09::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "dc:identifier": "SDN:R09::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/1/" + }, + "dce:identifier": "SDN:R09::RAFOS", + "pav:version": "1", + "skos:notation": "SDN:R09::RAFOS", + "skos:altLabel": "RAFOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "dc:identifier": "SDN:R09::RAFOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "RAFOS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/1/" + }, + "dce:identifier": "SDN:R09::GNSS", + "pav:version": "1", + "skos:notation": "SDN:R09::GNSS", + "skos:altLabel": "GNSS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "dc:identifier": "SDN:R09::GNSS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Global Navigation Satellite System" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R09::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R09::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos positioning system" + }, + "dc:identifier": "SDN:R09::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/1/" + }, + "dce:identifier": "SDN:R09::GPS", + "pav:version": "1", + "skos:notation": "SDN:R09::GPS", + "skos:altLabel": "GPS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GPS positioning system" + }, + "dc:identifier": "SDN:R09::GPS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "GPS positioning system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GALILEO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/BEIDOU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GLONASS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/NONE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/RAFOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GNSS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/GPS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R09/current/ARGOS/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of float location measuring systems. Argo netCDF variable POSITIONING_SYSTEM is populated by R09 altLabel.", + "dc:title": "Argo positioning system", + "skos:prefLabel": "Argo positioning system", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "POSITIONING_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "POSITIONING_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R09" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html b/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html new file mode 100644 index 00000000..06380dac --- /dev/null +++ b/argopy/tests/test_data/7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4.html @@ -0,0 +1,16 @@ + + + Argo quality control manual for biogeochemical data + + + + + + +

Argo quality control manual for biogeochemical data

This document is the Argo quality control manual for biogeochemical data. It describes two levels of quality control: +• The first level is the real-time system that performs a set of agreed automatic checks. +• The second level is the delayed-mode quality control system.

Full Text

FilePagesSizeAccess
Version 1.1 (last version)
36712 Ko
Obsolete versions
-1 Mo
How to cite
Schmechtig Catherine, Wong Annie, Maurer Tanya L., Bittig Henry, Thierry Virginie (2023). Argo quality control manual for biogeochemical data. Bio-Argo group. https://doi.org/10.13155/40879

Copy this text

+ + + diff --git a/argopy/tests/test_data/819c42622a8205a721de4444b18fe6b091bdd2d4022a9a67341267bad92018a1.ncHeader b/argopy/tests/test_data/819c42622a8205a721de4444b18fe6b091bdd2d4022a9a67341267bad92018a1.ncHeader new file mode 100644 index 00000000..bbbec80e --- /dev/null +++ b/argopy/tests/test_data/819c42622a8205a721de4444b18fe6b091bdd2d4022a9a67341267bad92018a1.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_9d22_8668_778c.nc { + dimensions: + row = 41; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 89; + variables: + int config_mission_number(row=41); + :_FillValue = 99999; // int + :actual_range = 0, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=41); + :_FillValue = 99999; // int + :actual_range = 10, 98; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=41, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=41, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=41); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 40.20399856567383, 43.39500045776367; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=41); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -58.93600082397461, -55.21699905395508; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=41, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=41, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=41); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=41, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=41, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 31.719f, 36.157f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 31.71919f, 36.14999f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01038f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=41, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=41, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 14.579f, 27.918f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 14.579f, 27.918f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=41); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=41, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=41, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=41); + :_CoordinateAxisType = "Time"; + :actual_range = 1.18597716E9, 1.18857948E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=41, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=41, vertical_sampling_scheme_strlen=89); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -55.21699905395508; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 43.39500045776367; // double + :geospatial_lat_min = 40.20399856567383; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -55.21699905395508; // double + :geospatial_lon_min = -58.93600082397461; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:54:18Z (local files) +2024-09-24T08:54:18Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres%3E=0.0&pres%3C=20.0&time%3E=1185926400.0&time%3C=1188604800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 43.39500045776367; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 40.20399856567383; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2007-08-31T16:58:00Z"; + :time_coverage_start = "2007-08-01T14:06:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -58.93600082397461; // double +} diff --git a/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html b/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html new file mode 100644 index 00000000..87d098cb --- /dev/null +++ b/argopy/tests/test_data/81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026.html @@ -0,0 +1,19 @@ + + + BGC-Argo quality control manual for nitrate concentration + + + + + + +

BGC-Argo quality control manual for nitrate concentration

This document is the Argo quality control (QC) manual for nitrate concentration, where the metadata parameter name for the state variable is NITRATE with units μmol kg-1. The document describes two levels of quality control:

+ +
    +
  • The first level is the “real-time” (RT) quality control system, which always includes a set of agreed-upon automatic quality-control tests on each measurement. Data adjustments can also be applied within the real-time system, and quality flags assigned accordingly.
  • +
  • The second level is the “delayed-mode” (DM) quality control system where data quality is assessed in detail by a delayed-mode operator and adjustments (based on comparison to high-quality reference fields) are derived. As mentioned, these adjustments can then be propagated forward and applied to incoming data in real-time until the next delayed-mode assessment is performed.
  • +

Keyword(s)

Argo, physical oceanography, in-situ marine data, profiling floats, nitrate, operational oceanography, biogeochemistry

Full Text

FilePagesSizeAccess
Publisher's official version
28910 Ko
How to cite
Johnson Kenneth, Maurer Tanya, Plant Joshua, Bittig Henry, Schallenberg Christina, Schmechtig Catherine (2021). BGC-Argo quality control manual for nitrate concentration. Ifremer. https://doi.org/10.13155/84370

Copy this text

+ + + diff --git a/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html b/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html new file mode 100644 index 00000000..cedcb1a5 --- /dev/null +++ b/argopy/tests/test_data/86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1.html @@ -0,0 +1,14 @@ + + + BGC-Argo quality control manual for the Chlorophyll-A concentration + + + + + + +

BGC-Argo quality control manual for the Chlorophyll-A concentration

This document is the BGC-Argo quality control manual for Chlorophyll A concentration. It describes the method used in real-time to apply quality control flags to Chlorophyll A concentration calculated from specific sensors mounted on Argo profiling floats.

Keyword(s)

Argo, physical oceanography, in-situ marine data, profiling floats, chlorophyll, operational oceanography, biogeochemistry

Full Text

FilePagesSizeAccess
Version 3.0 (last version)
161 Mo
Previous obsolete versions
-913 Ko
How to cite
Schmechtig Catherine, Claustre Herve, Poteau Antoine, D'Ortenzio Fabrizio, Schallenberg Christina, Trull Thomas, Xing Xiaogang (2023). BGC-Argo quality control manual for the Chlorophyll-A concentration. Ifremer. https://doi.org/10.13155/35385

Copy this text

+ + + diff --git a/argopy/tests/test_data/86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f.json b/argopy/tests/test_data/86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f.json new file mode 100644 index 00000000..2ace225c --- /dev/null +++ b/argopy/tests/test_data/86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f.json @@ -0,0 +1 @@ +[{"id":4172501,"cvNumber":2,"coordinate":{"lat":54.82215,"lon":-15.47173},"level":0},{"id":4192913,"cvNumber":6,"coordinate":{"lat":55.00298,"lon":-16.65554},"level":0},{"id":4597617,"cvNumber":49,"coordinate":{"lat":57.55099,"lon":-17.25859},"level":0},{"id":4491928,"cvNumber":29,"coordinate":{"lat":55.14974,"lon":-18.64806},"level":0},{"id":4645013,"cvNumber":57,"coordinate":{"lat":57.05715,"lon":-18.08483},"level":0},{"id":4519523,"cvNumber":34,"coordinate":{"lat":55.91075,"lon":-18.69593},"level":0},{"id":4569920,"cvNumber":44,"coordinate":{"lat":57.69014,"lon":-16.307},"level":0},{"id":4461910,"cvNumber":24,"coordinate":{"lat":54.0082,"lon":-19.32005},"level":0},{"id":4472422,"cvNumber":26,"coordinate":{"lat":54.38691,"lon":-20.1983},"level":0},{"id":4524203,"cvNumber":35,"coordinate":{"lat":56.36876,"lon":-18.98636},"level":0},{"id":4412717,"cvNumber":15,"coordinate":{"lat":54.16193,"lon":-16.02747},"level":0},{"id":4775425,"cvNumber":79,"coordinate":{"lat":58.57713,"lon":-16.73443},"level":0},{"id":4770404,"cvNumber":78,"coordinate":{"lat":58.83374,"lon":-16.50212},"level":0},{"id":4770403,"cvNumber":76,"coordinate":{"lat":58.80949,"lon":-15.36668},"level":0},{"id":4737517,"cvNumber":73,"coordinate":{"lat":58.43438,"lon":-19.45568},"level":0},{"id":4812742,"cvNumber":86,"coordinate":{"lat":58.5198,"lon":-17.14956},"level":0},{"id":4808089,"cvNumber":85,"coordinate":{"lat":58.67414,"lon":-17.05931},"level":0},{"id":4764339,"cvNumber":77,"coordinate":{"lat":58.98261,"lon":-15.85382},"level":0},{"id":4786178,"cvNumber":81,"coordinate":{"lat":58.80359,"lon":-16.32123},"level":0},{"id":4750574,"cvNumber":75,"coordinate":{"lat":58.77149,"lon":-15.68564},"level":0},{"id":4744377,"cvNumber":74,"coordinate":{"lat":58.84834,"lon":-18.84773},"level":0},{"id":4708898,"cvNumber":68,"coordinate":{"lat":56.6271,"lon":-20.01933},"level":0},{"id":4714418,"cvNumber":69,"coordinate":{"lat":57.27664,"lon":-20.12999},"level":0},{"id":4797101,"cvNumber":83,"coordinate":{"lat":58.60921,"lon":-17.00869},"level":0},{"id":4802156,"cvNumber":84,"coordinate":{"lat":58.73689,"lon":-17.00536},"level":0},{"id":4900127,"cvNumber":102,"coordinate":{"lat":59.38923,"lon":-17.26264},"level":0},{"id":4894078,"cvNumber":101,"coordinate":{"lat":59.03056,"lon":-17.98159},"level":0},{"id":4833005,"cvNumber":90,"coordinate":{"lat":58.10506,"lon":-17.23889},"level":0},{"id":4817707,"cvNumber":87,"coordinate":{"lat":58.32619,"lon":-17.42224},"level":0},{"id":4827557,"cvNumber":89,"coordinate":{"lat":58.27889,"lon":-17.27009},"level":0},{"id":4822778,"cvNumber":88,"coordinate":{"lat":58.20421,"lon":-17.33671},"level":0},{"id":4843737,"cvNumber":92,"coordinate":{"lat":57.39982,"lon":-18.44305},"level":0},{"id":4905280,"cvNumber":103,"coordinate":{"lat":59.52392,"lon":-16.68186},"level":0},{"id":4870015,"cvNumber":96,"coordinate":{"lat":57.67298,"lon":-19.91722},"level":0},{"id":4875049,"cvNumber":97,"coordinate":{"lat":57.98109,"lon":-19.29338},"level":0},{"id":4889201,"cvNumber":100,"coordinate":{"lat":58.40615,"lon":-19.02183},"level":0},{"id":4879999,"cvNumber":98,"coordinate":{"lat":58.12681,"lon":-19.02356},"level":0},{"id":4198203,"cvNumber":7,"coordinate":{"lat":55.22541,"lon":-16.42535},"level":0},{"id":4208106,"cvNumber":9,"coordinate":{"lat":55.03991,"lon":-16.64589},"level":0},{"id":4203574,"cvNumber":8,"coordinate":{"lat":55.17807,"lon":-16.52152},"level":0},{"id":4182111,"cvNumber":4,"coordinate":{"lat":55.05419,"lon":-15.57138},"level":0},{"id":4177128,"cvNumber":3,"coordinate":{"lat":55.11099,"lon":-15.42748},"level":0},{"id":4403257,"cvNumber":13,"coordinate":{"lat":54.63462,"lon":-16.01929},"level":0},{"id":4408016,"cvNumber":14,"coordinate":{"lat":54.11355,"lon":-16.35289},"level":0},{"id":4386506,"cvNumber":10,"coordinate":{"lat":55.23034,"lon":-15.89882},"level":0},{"id":4549100,"cvNumber":40,"coordinate":{"lat":57.50651,"lon":-17.04049},"level":0},{"id":4544191,"cvNumber":39,"coordinate":{"lat":57.6292,"lon":-17.05243},"level":0},{"id":4554520,"cvNumber":41,"coordinate":{"lat":57.55011,"lon":-16.7159},"level":0},{"id":4539381,"cvNumber":38,"coordinate":{"lat":57.57189,"lon":-17.38597},"level":0},{"id":4486285,"cvNumber":28,"coordinate":{"lat":54.8536,"lon":-19.17729},"level":0},{"id":4514492,"cvNumber":33,"coordinate":{"lat":55.26706,"lon":-18.60712},"level":0},{"id":4498686,"cvNumber":30,"coordinate":{"lat":55.36536,"lon":-18.51987},"level":0},{"id":4509602,"cvNumber":32,"coordinate":{"lat":55.39986,"lon":-18.39787},"level":0},{"id":4529332,"cvNumber":36,"coordinate":{"lat":56.74855,"lon":-18.82032},"level":0},{"id":4504456,"cvNumber":31,"coordinate":{"lat":55.39605,"lon":-18.25479},"level":0},{"id":4534254,"cvNumber":37,"coordinate":{"lat":57.01977,"lon":-17.7111},"level":0},{"id":4171040,"cvNumber":1,"coordinate":{"lat":53.67167,"lon":-16.49225},"level":0},{"id":4650398,"cvNumber":58,"coordinate":{"lat":57.361,"lon":-17.45839},"level":0},{"id":4673583,"cvNumber":62,"coordinate":{"lat":57.45435,"lon":-17.40279},"level":0},{"id":4668734,"cvNumber":61,"coordinate":{"lat":57.17598,"lon":-19.08851},"level":0},{"id":4679132,"cvNumber":63,"coordinate":{"lat":57.42743,"lon":-17.74671},"level":0},{"id":4699940,"cvNumber":67,"coordinate":{"lat":56.61364,"lon":-19.66739},"level":0},{"id":4693836,"cvNumber":66,"coordinate":{"lat":56.93688,"lon":-19.35073},"level":0},{"id":4634381,"cvNumber":55,"coordinate":{"lat":57.02725,"lon":-18.40289},"level":0},{"id":4639610,"cvNumber":56,"coordinate":{"lat":56.85638,"lon":-17.79709},"level":0},{"id":4628918,"cvNumber":54,"coordinate":{"lat":57.21195,"lon":-19.03403},"level":0},{"id":4656275,"cvNumber":59,"coordinate":{"lat":57.18365,"lon":-17.73683},"level":0},{"id":4664508,"cvNumber":60,"coordinate":{"lat":57.41596,"lon":-18.2533},"level":0},{"id":4688652,"cvNumber":65,"coordinate":{"lat":57.245,"lon":-18.36527},"level":0},{"id":4683742,"cvNumber":64,"coordinate":{"lat":56.99334,"lon":-18.68061},"level":0},{"id":4467373,"cvNumber":25,"coordinate":{"lat":53.77326,"lon":-20.04341},"level":0},{"id":4480963,"cvNumber":27,"coordinate":{"lat":54.63867,"lon":-19.65486},"level":0},{"id":4450997,"cvNumber":22,"coordinate":{"lat":54.50836,"lon":-18.38775},"level":0},{"id":4456180,"cvNumber":23,"coordinate":{"lat":54.39093,"lon":-18.95335},"level":0},{"id":4417273,"cvNumber":16,"coordinate":{"lat":54.54695,"lon":-15.92301},"level":0},{"id":4421933,"cvNumber":17,"coordinate":{"lat":54.64196,"lon":-16.218},"level":0},{"id":4444716,"cvNumber":21,"coordinate":{"lat":54.75768,"lon":-17.42887},"level":0},{"id":4439227,"cvNumber":20,"coordinate":{"lat":54.7425,"lon":-17.22943},"level":0},{"id":4584952,"cvNumber":47,"coordinate":{"lat":57.34062,"lon":-17.32262},"level":0},{"id":4579729,"cvNumber":46,"coordinate":{"lat":57.64115,"lon":-16.97603},"level":0},{"id":4611719,"cvNumber":51,"coordinate":{"lat":57.44955,"lon":-17.18861},"level":0},{"id":4605286,"cvNumber":50,"coordinate":{"lat":57.57669,"lon":-17.44851},"level":0},{"id":4617547,"cvNumber":52,"coordinate":{"lat":57.54238,"lon":-17.31089},"level":0},{"id":4623074,"cvNumber":53,"coordinate":{"lat":57.37944,"lon":-18.41073},"level":0},{"id":4564724,"cvNumber":43,"coordinate":{"lat":57.84321,"lon":-16.30162},"level":0},{"id":4559949,"cvNumber":42,"coordinate":{"lat":57.55701,"lon":-16.65682},"level":0},{"id":4590546,"cvNumber":48,"coordinate":{"lat":57.4608,"lon":-17.37929},"level":0},{"id":4574620,"cvNumber":45,"coordinate":{"lat":57.83243,"lon":-16.88148},"level":0},{"id":4187330,"cvNumber":5,"coordinate":{"lat":54.53325,"lon":-15.98118},"level":0},{"id":4398184,"cvNumber":12,"coordinate":{"lat":55.03279,"lon":-15.52631},"level":0},{"id":4393432,"cvNumber":11,"coordinate":{"lat":54.98293,"lon":-15.9501},"level":0},{"id":4427102,"cvNumber":18,"coordinate":{"lat":54.90125,"lon":-17.02408},"level":0},{"id":4434372,"cvNumber":19,"coordinate":{"lat":54.85261,"lon":-17.25892},"level":0},{"id":5193233,"cvNumber":151,"coordinate":{"lat":63.94678,"lon":-12.29761},"level":0},{"id":5187780,"cvNumber":150,"coordinate":{"lat":63.26365,"lon":-12.12518},"level":0},{"id":5130625,"cvNumber":142,"coordinate":{"lat":61.29164,"lon":-10.00747},"level":0},{"id":5124545,"cvNumber":141,"coordinate":{"lat":61.31548,"lon":-10.04466},"level":0},{"id":5182595,"cvNumber":149,"coordinate":{"lat":62.16085,"lon":-10.66924},"level":0},{"id":5170882,"cvNumber":147,"coordinate":{"lat":61.33107,"lon":-7.48075},"level":0},{"id":5107700,"cvNumber":138,"coordinate":{"lat":61.16901,"lon":-11.96042},"level":0},{"id":5002363,"cvNumber":120,"coordinate":{"lat":60.34052,"lon":-10.96452},"level":0},{"id":4990927,"cvNumber":118,"coordinate":{"lat":60.20195,"lon":-10.94612},"level":0},{"id":5165196,"cvNumber":146,"coordinate":{"lat":62.07631,"lon":-9.05162},"level":0},{"id":5156607,"cvNumber":145,"coordinate":{"lat":61.62166,"lon":-8.87166},"level":0},{"id":5367289,"cvNumber":183,"coordinate":{"lat":62.53989,"lon":-0.35684},"level":0},{"id":5373638,"cvNumber":184,"coordinate":{"lat":62.65184,"lon":-0.45329},"level":0},{"id":5380345,"cvNumber":185,"coordinate":{"lat":63.12578,"lon":-0.72843},"level":0},{"id":5399493,"cvNumber":188,"coordinate":{"lat":62.33566,"lon":-0.046},"level":0},{"id":5386723,"cvNumber":186,"coordinate":{"lat":63.17617,"lon":-0.24932},"level":0},{"id":5336816,"cvNumber":178,"coordinate":{"lat":61.35715,"lon":-3.53693},"level":0},{"id":5330505,"cvNumber":177,"coordinate":{"lat":62.54454,"lon":-4.28722},"level":0},{"id":5350651,"cvNumber":180,"coordinate":{"lat":62.36165,"lon":0.82394},"level":0},{"id":5355429,"cvNumber":181,"coordinate":{"lat":62.81069,"lon":0.13814},"level":0},{"id":5343074,"cvNumber":179,"coordinate":{"lat":61.52214,"lon":-2.47236},"level":0},{"id":5361626,"cvNumber":182,"coordinate":{"lat":62.91089,"lon":0.08152},"level":0},{"id":5427829,"cvNumber":193,"coordinate":{"lat":61.48279,"lon":-3.59994},"level":0},{"id":5410828,"cvNumber":190,"coordinate":{"lat":61.71323,"lon":-3.4528},"level":0},{"id":5415800,"cvNumber":191,"coordinate":{"lat":61.59029,"lon":-3.71148},"level":0},{"id":5392798,"cvNumber":187,"coordinate":{"lat":62.87869,"lon":0.55348},"level":0},{"id":5405671,"cvNumber":189,"coordinate":{"lat":61.8271,"lon":-2.03741},"level":0},{"id":5422120,"cvNumber":192,"coordinate":{"lat":61.49456,"lon":-3.25646},"level":0},{"id":4926294,"cvNumber":107,"coordinate":{"lat":59.67615,"lon":-17.13814},"level":0},{"id":5087091,"cvNumber":135,"coordinate":{"lat":61.7442,"lon":-12.97266},"level":0},{"id":5037014,"cvNumber":126,"coordinate":{"lat":60.52781,"lon":-15.93557},"level":0},{"id":5230956,"cvNumber":158,"coordinate":{"lat":62.37408,"lon":-8.82737},"level":0},{"id":5271898,"cvNumber":166,"coordinate":{"lat":62.35864,"lon":-10.23287},"level":0},{"id":5266905,"cvNumber":165,"coordinate":{"lat":62.28553,"lon":-10.50787},"level":0},{"id":5118905,"cvNumber":140,"coordinate":{"lat":61.50413,"lon":-10.8322},"level":0},{"id":5292188,"cvNumber":170,"coordinate":{"lat":62.60382,"lon":-11.16106},"level":0},{"id":4791061,"cvNumber":82,"coordinate":{"lat":58.68411,"lon":-16.74316},"level":0},{"id":4864970,"cvNumber":95,"coordinate":{"lat":57.385,"lon":-20.2288},"level":0},{"id":4857841,"cvNumber":94,"coordinate":{"lat":56.67244,"lon":-19.63578},"level":0},{"id":4885087,"cvNumber":99,"coordinate":{"lat":58.07649,"lon":-18.99605},"level":0},{"id":4915308,"cvNumber":105,"coordinate":{"lat":59.68997,"lon":-16.34428},"level":0},{"id":4942985,"cvNumber":110,"coordinate":{"lat":59.56514,"lon":-15.88328},"level":0},{"id":4936889,"cvNumber":109,"coordinate":{"lat":59.4947,"lon":-16.43479},"level":0},{"id":4957339,"cvNumber":112,"coordinate":{"lat":59.40157,"lon":-15.96248},"level":0},{"id":4910286,"cvNumber":104,"coordinate":{"lat":59.64957,"lon":-16.23991},"level":0},{"id":4921109,"cvNumber":106,"coordinate":{"lat":59.68363,"lon":-16.75887},"level":0},{"id":4838393,"cvNumber":91,"coordinate":{"lat":57.73185,"lon":-17.78118},"level":0},{"id":4849466,"cvNumber":93,"coordinate":{"lat":57.2501,"lon":-19.33942},"level":0},{"id":4731976,"cvNumber":72,"coordinate":{"lat":58.04299,"lon":-19.45226},"level":0},{"id":4719965,"cvNumber":70,"coordinate":{"lat":57.5641,"lon":-19.90614},"level":0},{"id":4725731,"cvNumber":71,"coordinate":{"lat":57.6053,"lon":-19.83704},"level":0},{"id":4780813,"cvNumber":80,"coordinate":{"lat":58.50037,"lon":-15.99187},"level":0},{"id":4996374,"cvNumber":119,"coordinate":{"lat":60.26063,"lon":-10.34638},"level":0},{"id":4969867,"cvNumber":114,"coordinate":{"lat":59.49408,"lon":-14.3717},"level":0},{"id":4974444,"cvNumber":115,"coordinate":{"lat":59.80679,"lon":-11.82067},"level":0},{"id":4963316,"cvNumber":113,"coordinate":{"lat":59.4801,"lon":-14.69412},"level":0},{"id":5032466,"cvNumber":125,"coordinate":{"lat":60.46418,"lon":-13.79616},"level":0},{"id":5015942,"cvNumber":122,"coordinate":{"lat":60.03802,"lon":-12.17785},"level":0},{"id":5010025,"cvNumber":121,"coordinate":{"lat":60.04604,"lon":-12.19904},"level":0},{"id":4980324,"cvNumber":116,"coordinate":{"lat":60.23811,"lon":-10.884},"level":0},{"id":4985485,"cvNumber":117,"coordinate":{"lat":60.21741,"lon":-9.88571},"level":0},{"id":5026585,"cvNumber":124,"coordinate":{"lat":60.11172,"lon":-12.84729},"level":0},{"id":4948562,"cvNumber":111,"coordinate":{"lat":59.57842,"lon":-15.96082},"level":0},{"id":4931818,"cvNumber":108,"coordinate":{"lat":59.68373,"lon":-16.63808},"level":0},{"id":5021451,"cvNumber":123,"coordinate":{"lat":60.03934,"lon":-12.70026},"level":0},{"id":5113361,"cvNumber":139,"coordinate":{"lat":61.55298,"lon":-12.13013},"level":0},{"id":5062932,"cvNumber":131,"coordinate":{"lat":61.10274,"lon":-11.54177},"level":0},{"id":5051943,"cvNumber":129,"coordinate":{"lat":60.48303,"lon":-14.03469},"level":0},{"id":5057188,"cvNumber":130,"coordinate":{"lat":61.16538,"lon":-13.5711},"level":0},{"id":5147952,"cvNumber":144,"coordinate":{"lat":61.5588,"lon":-8.38953},"level":0},{"id":5137317,"cvNumber":143,"coordinate":{"lat":61.53205,"lon":-9.86763},"level":0},{"id":5042316,"cvNumber":127,"coordinate":{"lat":60.09151,"lon":-15.41133},"level":0},{"id":5047045,"cvNumber":128,"coordinate":{"lat":60.91264,"lon":-14.34336},"level":0},{"id":5102167,"cvNumber":137,"coordinate":{"lat":61.34405,"lon":-12.56557},"level":0},{"id":5092810,"cvNumber":136,"coordinate":{"lat":61.68313,"lon":-13.52947},"level":0},{"id":5069225,"cvNumber":132,"coordinate":{"lat":61.23078,"lon":-9.75079},"level":0},{"id":5074378,"cvNumber":133,"coordinate":{"lat":61.63248,"lon":-9.94795},"level":0},{"id":5079749,"cvNumber":134,"coordinate":{"lat":61.8457,"lon":-11.78036},"level":0},{"id":5177253,"cvNumber":148,"coordinate":{"lat":62.52239,"lon":-8.7725},"level":0},{"id":5218271,"cvNumber":156,"coordinate":{"lat":62.19324,"lon":-9.44193},"level":0},{"id":5262141,"cvNumber":164,"coordinate":{"lat":62.57092,"lon":-10.62947},"level":0},{"id":5242151,"cvNumber":160,"coordinate":{"lat":62.57729,"lon":-10.35109},"level":0},{"id":5236258,"cvNumber":159,"coordinate":{"lat":62.69312,"lon":-8.93493},"level":0},{"id":5213869,"cvNumber":155,"coordinate":{"lat":62.68007,"lon":-10.495},"level":0},{"id":5208161,"cvNumber":154,"coordinate":{"lat":63.56385,"lon":-10.90747},"level":0},{"id":5251920,"cvNumber":162,"coordinate":{"lat":61.94883,"lon":-10.07602},"level":0},{"id":5246525,"cvNumber":161,"coordinate":{"lat":62.12424,"lon":-9.90861},"level":0},{"id":5198452,"cvNumber":152,"coordinate":{"lat":64.22874,"lon":-12.28796},"level":0},{"id":5203446,"cvNumber":153,"coordinate":{"lat":64.44137,"lon":-11.44177},"level":0},{"id":5225071,"cvNumber":157,"coordinate":{"lat":62.23491,"lon":-9.30311},"level":0},{"id":5301735,"cvNumber":172,"coordinate":{"lat":62.4466,"lon":-8.54536},"level":0},{"id":5306711,"cvNumber":173,"coordinate":{"lat":62.64054,"lon":-7.83988},"level":0},{"id":5318075,"cvNumber":175,"coordinate":{"lat":62.79558,"lon":-6.79186},"level":0},{"id":5316887,"cvNumber":174,"coordinate":{"lat":62.7434,"lon":-7.17362},"level":0},{"id":5276737,"cvNumber":167,"coordinate":{"lat":62.12723,"lon":-9.07109},"level":0},{"id":5324924,"cvNumber":176,"coordinate":{"lat":62.86367,"lon":-5.0824},"level":0},{"id":5282089,"cvNumber":168,"coordinate":{"lat":62.47217,"lon":-9.79039},"level":0},{"id":5287254,"cvNumber":169,"coordinate":{"lat":62.72309,"lon":-10.76317},"level":0},{"id":5296940,"cvNumber":171,"coordinate":{"lat":62.40331,"lon":-10.3973},"level":0},{"id":5257201,"cvNumber":163,"coordinate":{"lat":62.0141,"lon":-9.32643},"level":0},{"id":5533034,"cvNumber":209,"coordinate":{"lat":68.51686,"lon":10.85222},"level":0},{"id":5515436,"cvNumber":206,"coordinate":{"lat":66.6625,"lon":7.29287},"level":0},{"id":5510606,"cvNumber":205,"coordinate":{"lat":64.999,"lon":5.50508},"level":0},{"id":5449072,"cvNumber":197,"coordinate":{"lat":60.99847,"lon":-4.54048},"level":0},{"id":5433278,"cvNumber":194,"coordinate":{"lat":61.81416,"lon":-3.28625},"level":0},{"id":5438580,"cvNumber":195,"coordinate":{"lat":61.2901,"lon":-3.91299},"level":0},{"id":5485218,"cvNumber":204,"coordinate":{"lat":63.56736,"lon":5.41763},"level":0},{"id":5475240,"cvNumber":202,"coordinate":{"lat":61.3643,"lon":-1.91198},"level":0},{"id":5470298,"cvNumber":201,"coordinate":{"lat":61.31072,"lon":-2.32613},"level":0},{"id":5443801,"cvNumber":196,"coordinate":{"lat":61.01515,"lon":-3.54841},"level":0},{"id":5523060,"cvNumber":207,"coordinate":{"lat":68.24948,"lon":10.50543},"level":0},{"id":5559736,"cvNumber":212,"coordinate":{"lat":69.17077,"lon":4.68949},"level":0},{"id":5576692,"cvNumber":214,"coordinate":{"lat":70.73521,"lon":4.17038},"level":0},{"id":5553536,"cvNumber":211,"coordinate":{"lat":68.46785,"lon":5.20809},"level":0},{"id":5454058,"cvNumber":198,"coordinate":{"lat":60.83912,"lon":-5.9961},"level":0},{"id":5459438,"cvNumber":199,"coordinate":{"lat":60.33436,"lon":-5.06887},"level":0},{"id":5465158,"cvNumber":200,"coordinate":{"lat":60.31973,"lon":-4.57881},"level":0},{"id":5542027,"cvNumber":210,"coordinate":{"lat":68.40957,"lon":7.96411},"level":0},{"id":5565178,"cvNumber":213,"coordinate":{"lat":69.67724,"lon":1.24964},"level":0},{"id":5480439,"cvNumber":203,"coordinate":{"lat":62.23202,"lon":2.73538},"level":0},{"id":5581760,"cvNumber":215,"coordinate":{"lat":71.16077,"lon":3.98725},"level":0},{"id":5594740,"cvNumber":217,"coordinate":{"lat":72.12915,"lon":4.13927},"level":0},{"id":5528347,"cvNumber":208,"coordinate":{"lat":68.42738,"lon":11.21186},"level":0},{"id":5701943,"cvNumber":235,"coordinate":{"lat":76.82737,"lon":9.10499},"level":0},{"id":5694661,"cvNumber":233,"coordinate":{"lat":76.70511,"lon":13.2034},"level":0},{"id":5661972,"cvNumber":228,"coordinate":{"lat":74.49503,"lon":13.29639},"level":0},{"id":5668611,"cvNumber":229,"coordinate":{"lat":74.84115,"lon":12.95322},"level":0},{"id":5651313,"cvNumber":226,"coordinate":{"lat":74.44711,"lon":10.73791},"level":0},{"id":5624624,"cvNumber":223,"coordinate":{"lat":74.17329,"lon":8.28478},"level":0},{"id":5629676,"cvNumber":224,"coordinate":{"lat":74.32286,"lon":7.48703},"level":0},{"id":5612907,"cvNumber":218,"coordinate":{"lat":72.30666,"lon":6.79119},"level":0},{"id":5612908,"cvNumber":219,"coordinate":{"lat":72.56687,"lon":8.16993},"level":0},{"id":5619672,"cvNumber":222,"coordinate":{"lat":73.95364,"lon":9.76238},"level":0},{"id":5612504,"cvNumber":220,"coordinate":{"lat":73.19182,"lon":8.83639},"level":0},{"id":5614509,"cvNumber":221,"coordinate":{"lat":73.58041,"lon":8.79651},"level":0},{"id":5649434,"cvNumber":225,"coordinate":{"lat":74.23237,"lon":9.76623},"level":0},{"id":5589248,"cvNumber":216,"coordinate":{"lat":72.12954,"lon":4.3008},"level":0},{"id":5675483,"cvNumber":230,"coordinate":{"lat":75.10084,"lon":12.74671},"level":0},{"id":5717034,"cvNumber":237,"coordinate":{"lat":76.72053,"lon":9.02717},"level":0},{"id":5679933,"cvNumber":231,"coordinate":{"lat":75.14029,"lon":12.61409},"level":0},{"id":5696602,"cvNumber":234,"coordinate":{"lat":77.01267,"lon":10.63261},"level":0},{"id":5685444,"cvNumber":232,"coordinate":{"lat":75.10207,"lon":13.16723},"level":0},{"id":5656579,"cvNumber":227,"coordinate":{"lat":75.08741,"lon":11.65905},"level":0},{"id":5742625,"cvNumber":240,"coordinate":{"lat":76.59893,"lon":10.33002},"level":0},{"id":5736810,"cvNumber":239,"coordinate":{"lat":76.55486,"lon":9.36259},"level":0},{"id":5731545,"cvNumber":238,"coordinate":{"lat":76.07349,"lon":9.404},"level":0},{"id":5708166,"cvNumber":236,"coordinate":{"lat":76.56772,"lon":8.49337},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d.nc b/argopy/tests/test_data/87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d.nc new file mode 100644 index 00000000..4220e6b2 Binary files /dev/null and b/argopy/tests/test_data/87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d.nc differ diff --git a/argopy/tests/test_data/888487608637748a579126f9c9d20cb3e1ddd5f489271afb7daedddb0351b8fc.nc b/argopy/tests/test_data/888487608637748a579126f9c9d20cb3e1ddd5f489271afb7daedddb0351b8fc.nc new file mode 100644 index 00000000..fdb3b770 Binary files /dev/null and b/argopy/tests/test_data/888487608637748a579126f9c9d20cb3e1ddd5f489271afb7daedddb0351b8fc.nc differ diff --git a/argopy/tests/test_data/891bc99f0d7b049195f7f42ef0c724e08bd15329b02c99abd794add57265e6c3.nc b/argopy/tests/test_data/891bc99f0d7b049195f7f42ef0c724e08bd15329b02c99abd794add57265e6c3.nc new file mode 100644 index 00000000..f0bf76ab Binary files /dev/null and b/argopy/tests/test_data/891bc99f0d7b049195f7f42ef0c724e08bd15329b02c99abd794add57265e6c3.nc differ diff --git a/argopy/tests/test_data/893b1c1d47463b38969ea18011112690c6f98cd189d3b1bc500bef7ffe3dda65.nc b/argopy/tests/test_data/893b1c1d47463b38969ea18011112690c6f98cd189d3b1bc500bef7ffe3dda65.nc new file mode 100644 index 00000000..bbc4269b Binary files /dev/null and b/argopy/tests/test_data/893b1c1d47463b38969ea18011112690c6f98cd189d3b1bc500bef7ffe3dda65.nc differ diff --git a/argopy/tests/test_data/8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6.nc b/argopy/tests/test_data/8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6.nc new file mode 100644 index 00000000..8cb0d7af Binary files /dev/null and b/argopy/tests/test_data/8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6.nc differ diff --git a/argopy/tests/test_data/8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5.png b/argopy/tests/test_data/8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5.png new file mode 100644 index 00000000..f3cc03bb Binary files /dev/null and b/argopy/tests/test_data/8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5.png differ diff --git a/argopy/tests/test_data/8b6ccd8c2c1bbed33b70d9ef5921ef18bb7d6518c326bde0df404f5e1b4a77f7.ncHeader b/argopy/tests/test_data/8b6ccd8c2c1bbed33b70d9ef5921ef18bb7d6518c326bde0df404f5e1b4a77f7.ncHeader new file mode 100644 index 00000000..c1256562 --- /dev/null +++ b/argopy/tests/test_data/8b6ccd8c2c1bbed33b70d9ef5921ef18bb7d6518c326bde0df404f5e1b4a77f7.ncHeader @@ -0,0 +1,690 @@ +netcdf ArgoFloats-synthetic-BGC_a2f8_2c37_602e.nc { + dimensions: + row = 29557; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.953782E-4f, 0.04400722f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.475482E-5f, 0.04400722f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.950965E-6f, 0.002592091f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=29557, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=29557, bbp700_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.1728f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.04015f, 4.0661f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=29557, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=29557, chla_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=29557); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 0, 65; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 0.1697397f, 19.58223f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=29557, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=29557, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=29557); + :_FillValue = 99999; // int + :actual_range = 0, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=29557, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.040283E-5f, 0.6385083f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.6381621f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01276324f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=29557, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=29557, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.153E-4f, 1.227665f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 1.075224f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02150448f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=29557, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=29557, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.273E-4f, 1.711586f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.310853f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02621705f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=29557, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=29557, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01326383f, 1939.872f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1509.441f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 75.47203f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=29557, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=29557, downwelling_par_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :long_name = "Dissolved oxygen"; + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=29557); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=29557); + :actual_range = 2.630909f, 99999.0f; // float + + char doxy_adjusted_qc(row=29557, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char doxy_qc(row=29557, doxy_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=29557); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.00095666666667, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=29557); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.999, -47.00874350000001; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 3.829968f, 12.175f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=29557); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=29557); + :actual_range = 0.7363588f, 99999.0f; // float + + char nitrate_adjusted_qc(row=29557, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=29557, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=29557); + :_FillValue = 99999.0f; // float + :actual_range = 5.686137f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=29557); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=29557, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=29557, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=29557, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=29557); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=29557); + :_ChunkSizes = 106, 787; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.768372E-7f, 10.49f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=29557, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=29557, pres_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.208f, 35.02467f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 35.02467f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 1.046394f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=29557, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=29557, psal_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 15.6335f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 12.905f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=29557); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=29557, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=29557, temp_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=29557); + :_CoordinateAxisType = "Time"; + :actual_range = 1.063557316224E9, 1.72709058E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=29557); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.00874350000001; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.00095666666667; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.00874350000001; // double + :geospatial_lon_min = -54.999; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:48:49Z (local files) +2024-09-25T05:48:49Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.00095666666667; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-23T11:23:00Z"; + :time_coverage_start = "2003-09-14T16:35:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.999; // double +} diff --git a/argopy/tests/test_data/8d7b59726fd07fca3f55889fe8666cf958829e48e6bfc544baf9fabf6ca66844.ncHeader b/argopy/tests/test_data/8d7b59726fd07fca3f55889fe8666cf958829e48e6bfc544baf9fabf6ca66844.ncHeader new file mode 100644 index 00000000..660a3413 --- /dev/null +++ b/argopy/tests/test_data/8d7b59726fd07fca3f55889fe8666cf958829e48e6bfc544baf9fabf6ca66844.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_3307_2374_c03a.nc { + dimensions: + row = 30160; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 212; + variables: + int config_mission_number(row=30160); + :_FillValue = 99999; // int + :actual_range = -1, 538976288; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=30160); + :_FillValue = 99999; // int + :actual_range = 0, 879; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=30160, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=30160, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=30160); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 40.00062, 44.96799850463867; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=30160); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -59.99700927734375, -55.00059509277344; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=30160, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=30160, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=30160); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 20.7f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 20.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=30160, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=30160, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 0.065f, 74.521f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 0.116f, 36.77397f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.25234f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=30160, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=30160, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = -0.41f, 60.472f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = -0.41f, 32.782f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=30160); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=30160, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=30160, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=30160); + :_CoordinateAxisType = "Time"; + :actual_range = 1.00546218E9, 1.72693668E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=30160, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=30160, vertical_sampling_scheme_strlen=212); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -55.00059509277344; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 44.96799850463867; // double + :geospatial_lat_min = 40.00062; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -55.00059509277344; // double + :geospatial_lon_min = -59.99700927734375; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:53:02Z (local files) +2024-09-24T08:53:02Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres%3E=0.0&pres%3C=20.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 44.96799850463867; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 40.00062; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2024-09-21T16:38:00Z"; + :time_coverage_start = "2001-11-11T07:03:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -59.99700927734375; // double +} diff --git a/argopy/tests/test_data/8f371321f042787dcf9ccef1a90a4c1c709e705d16a1e3a940fc89997fc838a2.ncHeader b/argopy/tests/test_data/8f371321f042787dcf9ccef1a90a4c1c709e705d16a1e3a940fc89997fc838a2.ncHeader new file mode 100644 index 00000000..0ee499aa --- /dev/null +++ b/argopy/tests/test_data/8f371321f042787dcf9ccef1a90a4c1c709e705d16a1e3a940fc89997fc838a2.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_443d_9b66_6ea7.nc { + dimensions: + row = 141; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=141); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=141); + :_FillValue = 99999; // int + :actual_range = 12, 13; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=141, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 159.7738f, 309.8683f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 174.5238f, 338.4748f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.235715f, 10.15425f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=141, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=141); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.553, -57.064; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=141); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 149.635, 149.71; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=141, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=141); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.6f, 2001.9f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.8f, 2002.1f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=141, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.738f, 34.745f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.73788f, 34.74495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=141, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.053f, 2.246f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.054f, 2.246f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=141, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=141); + :_CoordinateAxisType = "Time"; + :actual_range = 1.276412397E9, 1.277268306E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 149.71; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -57.064; // double + :geospatial_lat_min = -57.553; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 149.71; // double + :geospatial_lon_min = 149.635; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:38Z (local files) +2024-09-24T12:43:38Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%2212%7C13%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -57.064; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.553; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2010-06-23T04:45:06Z"; + :time_coverage_start = "2010-06-13T06:59:57Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 149.635; // double +} diff --git a/argopy/tests/test_data/8ff0d7680d72c8cd969ecea6fcb628f481d5ffa98531e9e1f462a26831d7d0fd.js b/argopy/tests/test_data/8ff0d7680d72c8cd969ecea6fcb628f481d5ffa98531e9e1f462a26831d7d0fd.js new file mode 100644 index 00000000..a38a77c1 --- /dev/null +++ b/argopy/tests/test_data/8ff0d7680d72c8cd969ecea6fcb628f481d5ffa98531e9e1f462a26831d7d0fd.js @@ -0,0 +1,25 @@ +[ +{"_id":"6900112_054","geolocation":{"type":"Point","coordinates":[-67.878,37.562]},"basin":1,"timestamp":"2012-05-29T23:32:34.002Z","date_updated_argovis":"2023-01-29T18:03:29.667Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_054.nc","date_updated":"2018-10-23T18:56:55.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,10],[26.051001,26.049],[35.955002,35.955002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"6901085_004","geolocation":{"type":"Point","coordinates":[-67.45800000000003,37.177]},"basin":1,"timestamp":"2012-05-28T17:23:08.999Z","date_updated_argovis":"2023-01-29T02:56:00.670Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6901085/profiles/D6901085_004.nc","date_updated":"2018-01-08T16:01:37.000Z"}],"cycle_number":4,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4],[25.264999],[36.148033]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6901085_m0"]} +, +{"_id":"4901298_009","geolocation":{"type":"Point","coordinates":[-69.806,39.312]},"basin":1,"timestamp":"2012-05-26T22:43:45.998Z","date_updated_argovis":"2023-01-28T02:01:04.581Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901298/profiles/D4901298_009.nc","date_updated":"2019-06-13T08:33:20.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[1,2,3,4,5,6,7,8,9,10],[18.357,17.273001,16.785999,16.525,16.007,15.663,15.196,15.02,15.059,15.053],[33.682999,33.668999,33.695999,33.750999,33.858002,33.879002,33.817001,33.798,33.848999,33.859001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901298_m0"]} +, +{"_id":"6900112_053","geolocation":{"type":"Point","coordinates":[-68.987,38.099]},"basin":1,"timestamp":"2012-05-25T23:26:20.002Z","date_updated_argovis":"2023-01-29T18:03:27.905Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_053.nc","date_updated":"2018-10-23T18:56:55.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,9.9],[25.41,25.408001],[36.034,36.034]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901278_041","geolocation":{"type":"Point","coordinates":[-65.381,36.556]},"basin":1,"timestamp":"2012-05-25T10:18:10.001Z","date_updated_argovis":"2023-01-28T00:44:49.010Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901278/profiles/D4901278_041.nc","date_updated":"2019-08-30T10:36:30.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[22.094,21.896],[36.245281,36.253792]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901278_m0"]} +, +{"_id":"4901298_008","geolocation":{"type":"Point","coordinates":[-69.748,39.105]},"basin":1,"timestamp":"2012-05-21T22:43:14.002Z","date_updated_argovis":"2023-01-28T02:01:02.991Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901298/profiles/D4901298_008.nc","date_updated":"2019-06-13T08:33:19.000Z"}],"cycle_number":8,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[1,2,3,4,5,6,7,8,9,10],[14.31,14.313,14.308,14.273,14.268,14.253,14.217,14.137,14.041,14.167],[33.161999,33.161999,33.164001,33.165001,33.166,33.168999,33.175999,33.188,33.252998,33.491001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901298_m0"]} +, +{"_id":"6901085_003","geolocation":{"type":"Point","coordinates":[-69.43900000000002,38.096]},"basin":1,"timestamp":"2012-05-18T17:23:02.999Z","date_updated_argovis":"2023-01-29T02:55:58.880Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6901085/profiles/D6901085_003.nc","date_updated":"2018-01-08T16:01:36.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.7],[25.780001,25.778],[36.030029,36.031029]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6901085_m0"]} +, +{"_id":"4901278_040","geolocation":{"type":"Point","coordinates":[-66.697,36.575]},"basin":1,"timestamp":"2012-05-15T10:54:30.001Z","date_updated_argovis":"2023-01-28T00:44:47.194Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901278/profiles/D4901278_040.nc","date_updated":"2019-08-30T10:36:26.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[24.038,24.037001],[36.232025,36.236298]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901278_m0"]} +, +{"_id":"6901085_002","geolocation":{"type":"Point","coordinates":[-69.88999999999999,38.378]},"basin":1,"timestamp":"2012-05-08T17:13:50.999Z","date_updated_argovis":"2023-01-29T02:55:57.272Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6901085/profiles/D6901085_002.nc","date_updated":"2018-01-08T16:01:35.000Z"}],"cycle_number":2,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2],[null],[null]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6901085_m0"]} +, +{"_id":"4901278_039","geolocation":{"type":"Point","coordinates":[-66.073,37.448]},"basin":1,"timestamp":"2012-05-05T11:04:15.001Z","date_updated_argovis":"2023-01-28T00:44:45.296Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901278/profiles/D4901278_039.nc","date_updated":"2019-08-30T10:36:23.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[23.829,23.827],[36.235039,36.23632]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["4901278_m0"]} +, +{"_id":"6901217_001","geolocation":{"type":"Point","coordinates":[-66.02600000000001,35.001]},"basin":1,"timestamp":"2012-04-29T18:53:04.000Z","date_updated_argovis":"2023-01-29T03:02:19.501Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6901217/profiles/D6901217_001.nc","date_updated":"2020-09-06T18:50:14.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.6],[20.396,20.396999],[36.497002,36.495998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6901217_m0"]} +, +{"_id":"6901085_001","geolocation":{"type":"Point","coordinates":[-69.161,38.674]},"basin":1,"timestamp":"2012-04-28T20:34:43.999Z","date_updated_argovis":"2023-01-29T02:55:55.479Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6901085/profiles/D6901085_001.nc","date_updated":"2018-01-08T16:01:34.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3],[12.7],[33.937]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6901085_m0"]} +] diff --git a/argopy/tests/test_data/903baa969cf055fca46818948dcbac9ccc02642aea747769d2bad692e1c04953.nc b/argopy/tests/test_data/903baa969cf055fca46818948dcbac9ccc02642aea747769d2bad692e1c04953.nc new file mode 100644 index 00000000..072d9c97 Binary files /dev/null and b/argopy/tests/test_data/903baa969cf055fca46818948dcbac9ccc02642aea747769d2bad692e1c04953.nc differ diff --git a/argopy/tests/test_data/90aba90b541e593ff265ed3bef52805141f33315e8c37617549178d333edbe82.ncHeader b/argopy/tests/test_data/90aba90b541e593ff265ed3bef52805141f33315e8c37617549178d333edbe82.ncHeader new file mode 100644 index 00000000..2030d180 --- /dev/null +++ b/argopy/tests/test_data/90aba90b541e593ff265ed3bef52805141f33315e8c37617549178d333edbe82.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_78a9_4717_ef37.nc { + dimensions: + row = 16481; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=16481); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 0, 65; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=16481); + :_FillValue = 99999; // int + :actual_range = 0, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=16481, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=16481); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=16481); + :actual_range = 2.644278f, 99999.0f; // float + + char doxy_adjusted_qc(row=16481, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=16481); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.00095666666667, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=16481); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.999, -47.00874350000001; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=16481, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=16481); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -7.4505806E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=16481, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 35.02467f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 1.046394f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=16481, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.401f, 12.905f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=16481); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=16481, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=16481); + :_CoordinateAxisType = "Time"; + :actual_range = 1.063557316224E9, 1.72658856E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=16481); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.00874350000001; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.00095666666667; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.00874350000001; // double + :geospatial_lon_min = -54.999; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:52:16Z (local files) +2024-09-25T05:52:16Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres_adjusted%3E=0&pres_adjusted%3C=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.00095666666667; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-17T15:56:00Z"; + :time_coverage_start = "2003-09-14T16:35:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.999; // double +} diff --git a/argopy/tests/test_data/90ad7404e541b019eab281db18b6dce6dfb519db7513eeb27c59c1e1cb3a3509.ncHeader b/argopy/tests/test_data/90ad7404e541b019eab281db18b6dce6dfb519db7513eeb27c59c1e1cb3a3509.ncHeader new file mode 100644 index 00000000..b3c72885 --- /dev/null +++ b/argopy/tests/test_data/90ad7404e541b019eab281db18b6dce6dfb519db7513eeb27c59c1e1cb3a3509.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_ef54_3e26_66d4.nc { + dimensions: + row = 1432; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=1432); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 9; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=1432); + :_FillValue = 99999; // int + :actual_range = 1, 145; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=1432, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 277.7341f, 344.6638f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 296.7589f, 354.268f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.383679f, 17.84084f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=1432, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=1432, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=1432); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.063523333333336, 56.94360833333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=1432); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.544945, -47.436168333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=1432, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=1432); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=1432); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004125f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=1432, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=1432, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 27.411f, 34.764f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.022f, 34.774f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.005f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=1432, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=1432, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.937f, 8.6839f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.937f, 7.881f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=1432); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=1432, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=1432, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=1432); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.65870072E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=1432); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.436168333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.94360833333333; // double + :geospatial_lat_min = 55.063523333333336; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.436168333333335; // double + :geospatial_lon_min = -53.544945; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:47:42Z (local files) +2024-09-24T12:47:42Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1651363200.0&time%3C=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.94360833333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.063523333333336; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2022-07-24T22:12:00Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.544945; // double +} diff --git a/argopy/tests/test_data/9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a.nc b/argopy/tests/test_data/9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a.nc new file mode 100644 index 00000000..8f9896c7 Binary files /dev/null and b/argopy/tests/test_data/9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a.nc differ diff --git a/argopy/tests/test_data/918d01b8821b8c7ed4cf8381f92997155c7c659bae31d4114aa848c0764c5636.ncHeader b/argopy/tests/test_data/918d01b8821b8c7ed4cf8381f92997155c7c659bae31d4114aa848c0764c5636.ncHeader new file mode 100644 index 00000000..9654700e --- /dev/null +++ b/argopy/tests/test_data/918d01b8821b8c7ed4cf8381f92997155c7c659bae31d4114aa848c0764c5636.ncHeader @@ -0,0 +1,763 @@ +netcdf ArgoFloats-synthetic-BGC_8594_142f_17f2.nc { + dimensions: + row = 5041; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.01180728f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.016987E-4f, 0.01180728f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=5041, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=5041, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.012117f, 2.564167f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=5041, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=5041, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0438f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0803f, 3.5186f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=5041, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=5041, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=5041); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 0.1697397f, 19.58223f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=5041, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=5041, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=5041); + :_FillValue = 99999; // int + :actual_range = 1, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=5041, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.667699E-4f, 0.5660256f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.4718581f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.009437162f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=5041, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=5041, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 6.57517E-5f, 1.100864f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 0.8742118f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01748424f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=5041, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=5041, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -8.08818E-5f, 1.255575f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.255584f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02511167f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=5041, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=5041, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01326383f, 1309.106f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1308.671f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 65.43353f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=5041, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=5041, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.415855f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=5041, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=5041, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=5041); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=5041); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 3.829968f, 10.41807f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=5041); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=5041); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=5041, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=5041, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=5041); + :_FillValue = 99999.0f; // float + :actual_range = 7.990134f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=5041); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=5041, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=5041, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=5041, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=5041); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.649095E-7f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=5041, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=5041, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.767f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=5041, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=5041, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.884f, 11.566f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=5041, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=5041, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=5041); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:22:09Z (local files) +2024-09-24T12:22:09Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1651363200.0&time%3C=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/9220cb543038c779fc346c06f2868449ce3d201be3b7c24e0d4aa4c01273a9a4.nc b/argopy/tests/test_data/9220cb543038c779fc346c06f2868449ce3d201be3b7c24e0d4aa4c01273a9a4.nc new file mode 100644 index 00000000..d7631c90 Binary files /dev/null and b/argopy/tests/test_data/9220cb543038c779fc346c06f2868449ce3d201be3b7c24e0d4aa4c01273a9a4.nc differ diff --git a/argopy/tests/test_data/92c42c14ebd6b15156e067be012411ff281071a324ad6d82391c6c7765e8397f.js b/argopy/tests/test_data/92c42c14ebd6b15156e067be012411ff281071a324ad6d82391c6c7765e8397f.js new file mode 100644 index 00000000..91f67511 --- /dev/null +++ b/argopy/tests/test_data/92c42c14ebd6b15156e067be012411ff281071a324ad6d82391c6c7765e8397f.js @@ -0,0 +1,39 @@ +[ +{"_id":"4901139_068","geolocation":{"type":"Point","coordinates":[-65.5479965209961,35.24599838256836]},"basin":1,"timestamp":"2012-02-19T15:50:00.000Z","date_updated_argovis":"2023-08-24T03:32:46.756Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/SD4901139_068.nc","date_updated":"2023-08-21T22:22:38.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/R4901139_068.nc","date_updated":"2017-02-28T16:29:03.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.3,9.8],[19.76,19.764],[36.527,36.528999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901139_m0"]} +, +{"_id":"6900112_028","geolocation":{"type":"Point","coordinates":[-69.715,36.06]},"basin":1,"timestamp":"2012-02-15T23:18:17.002Z","date_updated_argovis":"2023-01-29T18:02:43.201Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_028.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.7],[19.905001],[36.563999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"1901465_031","geolocation":{"type":"Point","coordinates":[-69.263,36.279]},"basin":1,"timestamp":"2012-02-15T10:05:16.997Z","date_updated_argovis":"2023-01-26T19:19:56.175Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_031.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.294001,20.294001],[36.529995,36.53001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"6900112_027","geolocation":{"type":"Point","coordinates":[-69.227,36.213]},"basin":1,"timestamp":"2012-02-11T23:20:28.002Z","date_updated_argovis":"2023-01-29T18:02:41.501Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_027.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.1,9.8],[20.118999,20.122],[36.550999,36.550999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_157","geolocation":{"type":"Point","coordinates":[-66.658,38.199]},"basin":1,"timestamp":"2012-02-09T13:15:19.001Z","date_updated_argovis":"2023-01-28T00:12:48.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_157.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":157,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.5],[21.032],[36.096001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"6900112_026","geolocation":{"type":"Point","coordinates":[-68.564,36.821]},"basin":1,"timestamp":"2012-02-07T23:18:04.002Z","date_updated_argovis":"2023-01-29T18:02:39.708Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_026.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[20.294001],[36.515999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_156","geolocation":{"type":"Point","coordinates":[-67.768,37.896]},"basin":1,"timestamp":"2012-02-05T13:07:53.001Z","date_updated_argovis":"2023-01-28T00:12:46.080Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_156.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":156,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,10],[18.388,18.351999],[35.977001,35.965]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"1901465_030","geolocation":{"type":"Point","coordinates":[-68.622,36.611]},"basin":1,"timestamp":"2012-02-05T11:29:06.000Z","date_updated_argovis":"2023-01-26T19:19:54.300Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_030.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.231001,20.240999],[36.550808,36.549038]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"6900112_025","geolocation":{"type":"Point","coordinates":[-69.119,37.27]},"basin":1,"timestamp":"2012-02-03T23:22:33.002Z","date_updated_argovis":"2023-01-29T18:02:38.012Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_025.nc","date_updated":"2018-10-23T18:56:48.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[21.348],[36.455002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_155","geolocation":{"type":"Point","coordinates":[-68.726,37.857]},"basin":1,"timestamp":"2012-02-01T13:12:10.001Z","date_updated_argovis":"2023-01-28T00:12:44.310Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_155.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":155,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4],[16.441],[35.803001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"4901155_066","geolocation":{"type":"Point","coordinates":[-66.38400268554688,38.77399826049805]},"basin":1,"timestamp":"2012-01-30T23:14:00.000Z","date_updated_argovis":"2023-02-01T05:34:12.390Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_066.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.4],[15.474],[35.318001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"4901268_154","geolocation":{"type":"Point","coordinates":[-69.537,37.972]},"basin":1,"timestamp":"2012-01-28T13:13:31.001Z","date_updated_argovis":"2023-01-28T00:12:42.569Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_154.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":154,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[18.705999],[35.868999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"4901155_065","geolocation":{"type":"Point","coordinates":[-66.10099792480469,39.189998626708984]},"basin":1,"timestamp":"2012-01-20T23:18:00.000Z","date_updated_argovis":"2023-02-01T05:34:10.681Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_065.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6],[13.898],[34.570999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"5903377_083","geolocation":{"type":"Point","coordinates":[-65.13,37.609]},"basin":1,"timestamp":"2012-01-12T15:34:23.999Z","date_updated_argovis":"2024-07-01T06:37:45.722Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_083.nc","date_updated":"2024-06-30T16:16:12.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_083.nc","date_updated":"2017-06-01T16:36:52.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.21,6.21,7.81,8.21],[22.329,22.325001,null,22.333],[36.467926,36.467926,null,36.467918]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +, +{"_id":"1901378_172","geolocation":{"type":"Point","coordinates":[-68.418,35.134]},"basin":1,"timestamp":"2012-01-11T23:31:40.995Z","date_updated_argovis":"2024-06-30T06:37:11.937Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/SD1901378_172.nc","date_updated":"2024-06-29T20:28:55.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/D1901378_172.nc","date_updated":"2019-05-22T11:13:01.000Z"}],"cycle_number":172,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.36,5.96,7.56,7.96,9.96],[20.482,20.483999,null,20.49,20.496],[36.493019,36.493023,null,36.492008,36.492012]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901378_m0"]} +, +{"_id":"4901155_064","geolocation":{"type":"Point","coordinates":[-66.0999984741211,39.37099838256836]},"basin":1,"timestamp":"2012-01-10T23:16:00.000Z","date_updated_argovis":"2023-02-01T05:34:08.989Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_064.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.6],[10.242],[32.966]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"5903377_082","geolocation":{"type":"Point","coordinates":[-66.901,37.254]},"basin":1,"timestamp":"2012-01-07T10:36:33.998Z","date_updated_argovis":"2024-07-01T06:37:44.627Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_082.nc","date_updated":"2024-06-30T16:16:03.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_082.nc","date_updated":"2017-06-01T16:36:51.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.4,6.2,7.900001,8.200001,10],[22.193001,22.191999,null,22.188999,22.188],[36.38596,36.38596,null,36.386978,36.386978]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +, +{"_id":"1901378_171","geolocation":{"type":"Point","coordinates":[-68.524,35.243]},"basin":1,"timestamp":"2012-01-06T20:08:44.998Z","date_updated_argovis":"2024-06-30T06:37:10.828Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/SD1901378_171.nc","date_updated":"2024-06-29T20:28:45.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/D1901378_171.nc","date_updated":"2019-05-22T11:13:01.000Z"}],"cycle_number":171,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.03,5.83,7.43,7.83,9.83],[20.583,20.580999,null,20.584999,20.587],[36.519054,36.51907,null,36.518066,36.518078]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901378_m0"]} +, +{"_id":"5903377_081","geolocation":{"type":"Point","coordinates":[-68.436,38.157]},"basin":1,"timestamp":"2012-01-02T04:56:23.999Z","date_updated_argovis":"2024-07-01T06:37:43.477Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_081.nc","date_updated":"2024-06-30T16:15:53.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_081.nc","date_updated":"2017-06-01T16:36:51.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.33,6.03,7.73,8.13],[23.52,23.523001,null,23.523001],[36.252941,36.25396,null,36.25396]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +] diff --git a/argopy/tests/test_data/92f8242645b957569610e01ac67f756166ff1d2948eac5eee454e2034085cfc7.ncHeader b/argopy/tests/test_data/92f8242645b957569610e01ac67f756166ff1d2948eac5eee454e2034085cfc7.ncHeader new file mode 100644 index 00000000..1c370425 --- /dev/null +++ b/argopy/tests/test_data/92f8242645b957569610e01ac67f756166ff1d2948eac5eee454e2034085cfc7.ncHeader @@ -0,0 +1,437 @@ +netcdf ArgoFloats-synthetic-BGC_9a94_abb2_032a.nc { + dimensions: + row = 2155; + bbp700_adjusted_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + float bbp700_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.001526594f, 0.01046f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=2155, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.12775f, 3.5186f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=2155, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=2155); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 10; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660_adjusted(row=2155); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=2155); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=2155, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=2155); + :_FillValue = 99999; // int + :actual_range = 1, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=2155, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.40309E-5f, 0.4718581f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.009437162f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=2155, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.226209E-5f, 0.8742118f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01748424f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=2155, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.264853E-5f, 1.255584f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02511167f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=2155, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.03640744f, 1308.671f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 65.43353f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=2155, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy_adjusted(row=2155); + :actual_range = -1655.856f, 99999.0f; // float + + float doxy_adjusted_error(row=2155); + :actual_range = 8.415855f, 99999.0f; // float + + char doxy_adjusted_qc(row=2155, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=2155); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=2155); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate_adjusted(row=2155); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=2155); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=2155, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total_adjusted(row=2155); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=2155); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=2155, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=2155, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=2155); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.128737E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=2155, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=2155, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=2155); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=2155, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=2155); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=2155); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:51:56Z (local files) +2024-09-25T05:51:56Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres_adjusted%3E=0&pres_adjusted%3C=10&time%3E=1651363200.0&time%3C=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19.nc b/argopy/tests/test_data/9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19.nc new file mode 100644 index 00000000..b4ded5d1 Binary files /dev/null and b/argopy/tests/test_data/9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19.nc differ diff --git a/argopy/tests/test_data/936a40ab98e5e729e241006691ddeb914f14e5601e3e59b0513e3ea8a3e32295.ncHeader b/argopy/tests/test_data/936a40ab98e5e729e241006691ddeb914f14e5601e3e59b0513e3ea8a3e32295.ncHeader new file mode 100644 index 00000000..02f136f6 --- /dev/null +++ b/argopy/tests/test_data/936a40ab98e5e729e241006691ddeb914f14e5601e3e59b0513e3ea8a3e32295.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_107d_e4f8_ca7b.nc { + dimensions: + row = 55; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 147; + variables: + int config_mission_number(row=55); + :_FillValue = 99999; // int + :actual_range = 2, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=55); + :_FillValue = 99999; // int + :actual_range = 24, 26; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=55, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=55, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=55); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 0.42500000000000004, 0.728; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=55); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -16.391000000000002, -16.115000000000002; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=55, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=55, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=55); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 8.0f, 98.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 8.0f, 98.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 5.0f, 5.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=55, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=55, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 34.917f, 36.107f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 34.96365f, 36.15145f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=55, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=55, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 15.707f, 28.352f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 15.707f, 28.352f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=55); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=55, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=55, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=55); + :_CoordinateAxisType = "Time"; + :actual_range = 1.073193E9, 1.07492064E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=55, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=55, vertical_sampling_scheme_strlen=147); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -16.115000000000002; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 0.728; // double + :geospatial_lat_min = 0.42500000000000004; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -16.115000000000002; // double + :geospatial_lon_min = -16.391000000000002; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:38Z (local files) +2024-09-24T08:52:38Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres%3E=0&pres%3C=100.0&time%3E=1072915200.0&time%3C=1075507200.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 0.728; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 0.42500000000000004; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2004-01-24T05:04:00Z"; + :time_coverage_start = "2004-01-04T05:10:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -16.391000000000002; // double +} diff --git a/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html b/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html new file mode 100644 index 00000000..e59ab753 --- /dev/null +++ b/argopy/tests/test_data/941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588.html @@ -0,0 +1,20 @@ + + + BGC-Argo synthetic profile file processing and format on Coriolis GDAC + + + + + + +

BGC-Argo synthetic profile file processing and format on Coriolis GDAC

The current V3.1 Argo netCDF format that produces a pair of core- and b- profile files per cycle, with N_PROF > 1, allows storage of all profile information returned from BGC floats, in a manner that is as close to float output as possible. These can include multiple full-depth profiles with different pressure levels, multiple shallow profiles with different pressure levels, and recording of spatial and/or temporal delays between the CTD and various BGC sensor outputs. The advantage of this data management approach is that float outputs are faithfully recorded, so that any reprocessing demands that require access to the raw data can be met with ease.

+ +

However, when measurements from multiple sensors are not aligned during onboard processing by the floats, they are recorded in their raw pressure locations. This makes it difficult to study these BGC parameters as co-located measurements, since some data manipulation to align them needs to be done before scientific studies can be carried out. Moreover, because the V3.1 format requires that all parameters have dimensions (N_PROF, N_LEVELS), where N_LEVELS = maximum number of vertical levels, the files are large in file size and are mostly filled with white space.

+ +

The goal of a simplified synthetic profile is to co-locate as many BGC observations as possible while preserving the character of the sampling pattern, i.e., sample interval, number of samples, and approximate pressure locations. Data come from the single-cycle c- and b-files. Only c- and b- parameters are included (with all subfields), which means no intermediate BGC parameters (i-argo params) are included. The synthetic pressure axis is constructed from the BGC sampling levels from each cycle. This means that there is no fixed vertical grid for all floats and all cycles. At the end, each single-cycle synthetic profile will have dimension N_PROF = 1. The co-location takes different vertical attachments of BGC sensors into account by displacing the pressure location (based on the config parameter vertical_pressure_offset), which is not the case in core- or b- profile files.

+ +

This document details the processing steps used to generate synthetic profile data from Argo profile data. It also describes the format of the NetCDF files produced by the Coriolis GDAC to store the synthetic profile data.

Full Text

FilePagesSizeAccess
obsolete version 1.0
16221 Ko
obsolete version 1.1
201013 Ko
obsolete version 1.2
211 Mo
Obsolete version 1.21
21712 Ko
Last version 1.3
21895 Ko
How to cite
Bittig Henry, Wong Annie, Plant Josh (2022). BGC-Argo synthetic profile file processing and format on Coriolis GDAC. Ifremer. https://doi.org/10.13155/55637

Copy this text

+ + + diff --git a/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html b/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html new file mode 100644 index 00000000..e03f2340 --- /dev/null +++ b/argopy/tests/test_data/97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9.html @@ -0,0 +1,14 @@ + + + Argo GDAC cookbook + + + + + + +

Argo GDAC cookbook

This document is the Argo GDAC cook-book. It describes the detailed implementation of the GDAC services. It ensures that both GDACs provides the same services. The GDAC is Argo's "Global Data Assembly Centre" which aggregates Argo metadata, profile, trajectory and technical files.

Full Text

FilePagesSizeAccess
Publisher's official version
9258 Ko
How to cite
Carval Thierry, Ignaszewski Mark (2017). Argo GDAC cookbook. Ifremer. https://doi.org/10.13155/46202

Copy this text

+ + + diff --git a/argopy/tests/test_data/976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d.json b/argopy/tests/test_data/976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d.json new file mode 100644 index 00000000..84a97ff6 --- /dev/null +++ b/argopy/tests/test_data/976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d.json @@ -0,0 +1,932 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PL/", + "pav:authoredOn": "2021-01-08 10:01:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PL/1/" + }, + "dce:identifier": "SDN:R04::PL", + "pav:version": "1", + "skos:notation": "SDN:R04::PL", + "skos:altLabel": "PL", + "dc:date": "2021-01-08 10:01:58.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "IOPAN, Institute of Oceanology Polish Academy of Science" + }, + "dc:identifier": "SDN:R04::PL", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Institute of Oceanology Polish Academy of Science (IOPAN), hosted in Poland." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NA/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NA/1/" + }, + "dce:identifier": "SDN:R04::NA", + "pav:version": "1", + "skos:notation": "SDN:R04::NA", + "skos:altLabel": "NA", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NAVO, USA" + }, + "dc:identifier": "SDN:R04::NA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Naval Oceanographic Office (NAVO), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JA/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JA/1/" + }, + "dce:identifier": "SDN:R04::JA", + "pav:version": "1", + "skos:notation": "SDN:R04::JA", + "skos:altLabel": "JA", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "JMA, Japan" + }, + "dc:identifier": "SDN:R04::JA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japan Meteorological Agency (JMA), hosted in Japan." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/RU/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/RU/1/" + }, + "dce:identifier": "SDN:R04::RU", + "pav:version": "1", + "skos:notation": "SDN:R04::RU", + "skos:altLabel": "RU", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Russia" + }, + "dc:identifier": "SDN:R04::RU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Russia" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/UW/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/UW/1/" + }, + "dce:identifier": "SDN:R04::UW", + "pav:version": "1", + "skos:notation": "SDN:R04::UW", + "skos:altLabel": "UW", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "University of Washington, USA" + }, + "dc:identifier": "SDN:R04::UW", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "University of Washington (UW), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/BO/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/BO/1/" + }, + "dce:identifier": "SDN:R04::BO", + "pav:version": "1", + "skos:notation": "SDN:R04::BO", + "skos:altLabel": "BO", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "BODC, United Kingdom" + }, + "dc:identifier": "SDN:R04::BO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "British Oceanographic Data Centre (BODC), hosted in the United Kingdom (UK)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SP/1/" + }, + "dce:identifier": "SDN:R04::SP", + "pav:version": "1", + "skos:notation": "SDN:R04::SP", + "skos:altLabel": "SP", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Spain" + }, + "dc:identifier": "SDN:R04::SP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spain" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/VL/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/VL/1/" + }, + "dce:identifier": "SDN:R04::VL", + "pav:version": "1", + "skos:notation": "SDN:R04::VL", + "skos:altLabel": "VL", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Far Eastern Regional Hydrometeorological Research Institute of Vladivostock, Russia" + }, + "dc:identifier": "SDN:R04::VL", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Far Eastern Regional Hydrometeorological Research Institute of Vladivostock (FERHRI), hosted in Russia." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KO/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KO/1/" + }, + "dce:identifier": "SDN:R04::KO", + "pav:version": "1", + "skos:notation": "SDN:R04::KO", + "skos:altLabel": "KO", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KORDI, Korea" + }, + "dc:identifier": "SDN:R04::KO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korea Institute of Ocean Science and Technology (KORDI), hosted in South Korea." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JM/1/" + }, + "dce:identifier": "SDN:R04::JM", + "pav:version": "1", + "skos:notation": "SDN:R04::JM", + "skos:altLabel": "JM", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Jamstec, Japan" + }, + "dc:identifier": "SDN:R04::JM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Japan Agency for Marine-Earth Science and Technology (JAMSTEC), hosted in Japan." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/AO/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/AO/1/" + }, + "dce:identifier": "SDN:R04::AO", + "pav:version": "1", + "skos:notation": "SDN:R04::AO", + "skos:altLabel": "AO", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "AOML, USA" + }, + "dc:identifier": "SDN:R04::AO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Atlantic Oceanographic and Meteorological Laboratory (AOML), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KM/1/" + }, + "dce:identifier": "SDN:R04::KM", + "pav:version": "1", + "skos:notation": "SDN:R04::KM", + "skos:altLabel": "KM", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "KMA, Korea" + }, + "dc:identifier": "SDN:R04::KM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Korean Meteorological Administration (KMA), hosted in South Korea." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GT/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GT/1/" + }, + "dce:identifier": "SDN:R04::GT", + "pav:version": "1", + "skos:notation": "SDN:R04::GT", + "skos:altLabel": "GT", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "GTS : used for data coming from WMO GTS network" + }, + "dc:identifier": "SDN:R04::GT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Global Telecommunication System (GTS)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/MB/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/MB/1/" + }, + "dce:identifier": "SDN:R04::MB", + "pav:version": "1", + "skos:notation": "SDN:R04::MB", + "skos:altLabel": "MB", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "MBARI, USA" + }, + "dc:identifier": "SDN:R04::MB", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Monterey Bay Aquarium Research Institute (MBARI), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NM/1/" + }, + "dce:identifier": "SDN:R04::NM", + "pav:version": "1", + "skos:notation": "SDN:R04::NM", + "skos:altLabel": "NM", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NMDIS, China" + }, + "dc:identifier": "SDN:R04::NM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "National Marine Data and Information Service (NMDIS), hosted in China." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/LV/", + "pav:authoredOn": "2021-01-08 10:01:58.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/LV/1/" + }, + "dce:identifier": "SDN:R04::LV", + "pav:version": "1", + "skos:notation": "SDN:R04::LV", + "skos:altLabel": "LV", + "dc:date": "2021-01-08 10:01:58.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Laboratoire Océanographique de Villefranche, Sorbonne University" + }, + "dc:identifier": "SDN:R04::LV", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Laboratoire Océanographique de Villefranche, Sorbonne University, hosted in France." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IF/1/" + }, + "dce:identifier": "SDN:R04::IF", + "pav:version": "1", + "skos:notation": "SDN:R04::IF", + "skos:altLabel": "IF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Ifremer, France" + }, + "dc:identifier": "SDN:R04::IF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "French Research Institute for the Sustainable Exploration of the Sea (Ifremer), hosted in France." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/HZ/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/HZ/1/" + }, + "dce:identifier": "SDN:R04::HZ", + "pav:version": "1", + "skos:notation": "SDN:R04::HZ", + "skos:altLabel": "HZ", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CSIO, China Second Institute of Oceanography" + }, + "dc:identifier": "SDN:R04::HZ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "China Second Institute of Oceanography (CSIO), hosted in China." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PM/1/" + }, + "dce:identifier": "SDN:R04::PM", + "pav:version": "1", + "skos:notation": "SDN:R04::PM", + "skos:altLabel": "PM", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "PMEL, USA" + }, + "dc:identifier": "SDN:R04::PM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pacific Marine Environmental Laboratory (PMEL), a National Oceanic and Atmospheric Administration (NOAA) laboratory, hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/WH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/WH/1/" + }, + "dce:identifier": "SDN:R04::WH", + "pav:version": "1", + "skos:notation": "SDN:R04::WH", + "skos:altLabel": "WH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution, USA" + }, + "dc:identifier": "SDN:R04::WH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution (WHOI), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GE/1/" + }, + "dce:identifier": "SDN:R04::GE", + "pav:version": "1", + "skos:notation": "SDN:R04::GE", + "skos:altLabel": "GE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "BSH, Germany" + }, + "dc:identifier": "SDN:R04::GE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Federal Maritime and Hydrographic Agency (BSH), hosted in Germany." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IN/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IN/1/" + }, + "dce:identifier": "SDN:R04::IN", + "pav:version": "1", + "skos:notation": "SDN:R04::IN", + "skos:altLabel": "IN", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "INCOIS, India" + }, + "dc:identifier": "SDN:R04::IN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Indian National Centre for Ocean Information Services (INCOIS), hosted in India." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SI/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SI/1/" + }, + "dce:identifier": "SDN:R04::SI", + "pav:version": "1", + "skos:notation": "SDN:R04::SI", + "skos:altLabel": "SI", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "SIO, Scripps, USA" + }, + "dc:identifier": "SDN:R04::SI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Scripps Institution of Oceanography (SIO), a division of the University of California San Diego (UCSD), hosted in the United States of America (USA)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CI/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CI/1/" + }, + "dce:identifier": "SDN:R04::CI", + "pav:version": "1", + "skos:notation": "SDN:R04::CI", + "skos:altLabel": "CI", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Institute of Ocean Sciences, Canada" + }, + "dc:identifier": "SDN:R04::CI", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Institute of Ocean Sciences (IOS), operated by Fisheries and Oceans Canada and hosted in Canada." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CS/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CS/1/" + }, + "dce:identifier": "SDN:R04::CS", + "pav:version": "1", + "skos:notation": "SDN:R04::CS", + "skos:altLabel": "CS", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "CSIRO, Australia" + }, + "dc:identifier": "SDN:R04::CS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Commonwealth Scientific and Industrial Research Organisation (CSIRO), hosted in Australia." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/ME/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/ME/1/" + }, + "dce:identifier": "SDN:R04::ME", + "pav:version": "1", + "skos:notation": "SDN:R04::ME", + "skos:altLabel": "ME", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "MEDS, Canada" + }, + "dc:identifier": "SDN:R04::ME", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Marine Environmental Data Service (MEDS), hosted in Canada." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/RU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/UW/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/BO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/VL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/JM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/AO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/KM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/MB/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/NM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/LV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/HZ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/PM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/WH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/GE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/IN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/SI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/ME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R04/current/CS/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Codes for data centres and institutions handling or managing Argo data. Argo netCDF variable DATA_CENTRE is populated by R04 altLabel.", + "dc:title": "Argo data centres and institutions", + "skos:prefLabel": "Argo data centres and institutions", + "owl:versionInfo": "1", + "dc:date": "2021-01-08 14:00:02.0", + "skos:altLabel": "DATA_CENTRE_CODES", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_CENTRE_CODES", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R04" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/97dd965aa0b685f35f4ff29505902e9bebd8e9c13addfdae96be246eceaf205a.nc b/argopy/tests/test_data/97dd965aa0b685f35f4ff29505902e9bebd8e9c13addfdae96be246eceaf205a.nc new file mode 100644 index 00000000..73fca225 Binary files /dev/null and b/argopy/tests/test_data/97dd965aa0b685f35f4ff29505902e9bebd8e9c13addfdae96be246eceaf205a.nc differ diff --git a/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html b/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html new file mode 100644 index 00000000..411235fb --- /dev/null +++ b/argopy/tests/test_data/980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340.html @@ -0,0 +1,15 @@ + + + Argo DAC trajectory cookbook + + + + + + +

Argo DAC trajectory cookbook

This DAC cookbook is to include instructions for the DACs on how to calculate different variables for the Argo files. It is separate from other data manuals because users do not need to understand all these details, but that it is important that all DACs to be calculating the variables in the same manner.

Full Text

FilePagesSizeAccess
obsolete version 5.0
1484 Mo
Obsolete versions
-5 Mo
Obsolete version 6.0
1754 Mo
Argo Trajectory Measurement Code Tables
631 Mo
Publisher's official version
1843 Mo
How to cite
Scanderbeg Megan, Rannou Jean-Philippe, Buck Justin, Schmid Claudia, Gilson John, Swift Dana (2022). Argo DAC trajectory cookbook. Ifremer. https://doi.org/10.13155/29824

Copy this text

+ + + diff --git a/argopy/tests/test_data/98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225.nc b/argopy/tests/test_data/98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225.nc new file mode 100644 index 00000000..4c7e8417 Binary files /dev/null and b/argopy/tests/test_data/98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225.nc differ diff --git a/argopy/tests/test_data/990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229.js b/argopy/tests/test_data/990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229.js new file mode 100644 index 00000000..c7a91975 --- /dev/null +++ b/argopy/tests/test_data/990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229.js @@ -0,0 +1,735 @@ +[ +{"_id":"1901393_367","geolocation":{"type":"Point","coordinates":[142.722,-48.042]},"basin":3,"timestamp":"2020-03-06T03:01:29.000Z","date_updated_argovis":"2023-01-26T10:49:53.421Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_367.nc","date_updated":"2020-11-12T10:22:10.000Z"}],"cycle_number":367,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.4,20.700001,30.700001,40.799999,50,60.400002,69.899994,80,90.599998,100.399994,110.099998,120.699997,130.599991,140.300003,150,160,170.300003,179.899994,189.800003,200.199997,209.800003,217.599991,230.399994,240.5,250.599991,260.5,270.400024,280.100006,290.100006,300.400024,310.400024,320.200012,330.400024,340.100006,350.700012,360.200012,380,400.100006,450.5,500.400024,550.100037,599.900024,649.900024,700.400024,750.100037,800.400024,850.299988,900.5,950.200012,1000.5,1050.199951,1100.599976,1150.699951,1199.699951,1250.5,1300.699951,1350.599976,1398,1450.299927,1499.699951,1549.799927,1600.199951,1650.299927,1700.5,1750.599976,1800.099976,1849,1897.399902,1949.899902],[10.247,10.223,10.233,10.289,10.276,10.268,10.257,10.259,10.214,9.105,9.107,8.894,8.951,9.13,9.245,9.326,9.325,9.292,9.171,9.199,9.24,9.225,9.274,9.264,9.256,9.261,9.273,9.266,9.171,9.162,9.137,9.137,9.127,9.115,9.118,9.132,9.124,9.087,9.045,9.012,9.001,8.956,8.948,8.96,8.316,7.872,7.66,7.275,6.629,6.148,5.762,5.355,5.013,4.708,4.365,4.214,3.845,3.613,3.505,3.311,3.201,3.073,3.028,2.943,2.848,2.767,2.719,2.668,2.635,2.591],[34.237576,34.240559,34.257534,34.297512,34.300514,34.300499,34.300514,34.300514,34.296524,34.381466,34.448406,34.440426,34.464417,34.513348,34.54533,34.565304,34.570305,34.563309,34.550312,34.561314,34.577305,34.579292,34.593281,34.595295,34.600273,34.607277,34.618267,34.617271,34.603287,34.605278,34.60527,34.60928,34.609295,34.608276,34.610294,34.61628,34.616276,34.614285,34.610291,34.611279,34.613274,34.611282,34.613285,34.621281,34.521378,34.468414,34.468437,34.443455,34.406506,34.375546,34.365559,34.34259,34.340599,34.342609,34.334602,34.368591,34.377586,34.376587,34.403576,34.415581,34.436573,34.461548,34.489521,34.506512,34.528488,34.549484,34.570457,34.587452,34.603451,34.622429]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_366","geolocation":{"type":"Point","coordinates":[142.228,-48.436]},"basin":3,"timestamp":"2020-02-24T22:14:43.002Z","date_updated_argovis":"2023-01-26T10:49:51.505Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_366.nc","date_updated":"2020-11-12T10:22:10.000Z"}],"cycle_number":366,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.4,20.700001,30.5,40.200001,50.5,60.100002,70.799995,80.699997,89.899994,100.799995,110.299995,120.399994,130.399994,140.300003,150.399994,160.599991,170.599991,180.399994,189.800003,200.5,209.5,220.300003,230.599991,240.399994,250.599991,260.400024,270.600006,280.300018,290.100006,300.300018,310.600006,320.400024,330.5,340.700012,350.300018,360.300018,380.200012,400,450.300018,500.800018,550.700012,599.900024,647.799988,700.600037,750.700012,800.299988,850.5,900.299988,950.600037,999.700012,1049.699951,1100.699951,1150.599976,1200.5,1250.299927,1300.5,1350.699951,1398.899902,1450.5,1500.299927,1550.399902,1600.599976,1650.399902,1699.699951,1750.5,1800.599976,1850.399902,1899.799927,1950.299927,2001.099976],[10.961,10.961,10.963,10.96,10.964,10.96,10.93,10.415,10.049,9.764,9.642,9.436,9.351,9.364,9.269,9.279,9.265,9.265,9.276,9.251,9.281,9.193,9.391,9.234,9.236,9.19,9.094,9.05,9.014,9.025,9.048,9.058,9.041,9.055,9.052,9.036,9.022,9.007,8.991,9.001,8.998,8.966,8.797,8.494,8.172,7.852,7.463,7.286,6.787,6.127,5.766,5.42,5.093,4.692,4.463,4.213,4.039,3.634,3.472,3.354,3.171,3.088,3.015,2.966,2.807,2.782,2.752,2.682,2.631,2.579,2.532],[34.370689,34.370697,34.370697,34.370689,34.370705,34.372696,34.3787,34.414665,34.444653,34.469646,34.503632,34.503609,34.517609,34.543579,34.564564,34.585556,34.59853,34.610531,34.625526,34.629528,34.645512,34.633514,34.677479,34.653511,34.654503,34.647511,34.62952,34.621536,34.616543,34.618534,34.626518,34.628517,34.625534,34.629524,34.630535,34.629528,34.626518,34.62653,34.62352,34.628532,34.633526,34.628529,34.598553,34.548611,34.50465,34.47467,34.439732,34.454708,34.420738,34.380806,34.364815,34.365833,34.360828,34.358852,34.364853,34.374851,34.394836,34.392849,34.407837,34.426819,34.43483,34.46479,34.491783,34.514771,34.53474,34.553741,34.570724,34.590721,34.610703,34.627674,34.643669]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_365","geolocation":{"type":"Point","coordinates":[141.89,-48.895]},"basin":3,"timestamp":"2020-02-14T18:53:49.002Z","date_updated_argovis":"2023-01-26T10:49:49.767Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_365.nc","date_updated":"2020-11-12T10:22:10.000Z"}],"cycle_number":365,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.9,20,30.4,40.100002,49.900002,59.800003,69.400002,80.5,90.300003,100.200005,109.900002,120.5,130,139.799988,150.399994,159.599991,169.5,179.899994,189.899994,200,210.299988,218.099991,230.5,240.199997,250.099991,260,270.5,279.699982,290.199982,299.600006,310,319.799988,330.100006,339.5,350.199982,359.899994,379.5,400.100006,450,500.100006,550.300049,599.600037,649.700012,700.200012,750.100037,800.100037,850.200012,899.900024,949.600037,1000.100037,1049.800049,1100.300049,1149.599976,1199.700073,1250,1300.099976,1349.300049,1397.800049,1450.400024,1499.700073,1550.5,1600.400024,1650.099976,1699.700073,1750.5,1800.200073,1849.5,1899.200073,1945.800049],[10.832,10.831,10.813,10.786,10.749,10.705,10.478,10.17,9.786,9.679,9.499,9.47,9.258,9.321,9.374,9.33,9.278,9.145,9.13,9.118,9.088,9.074,9.073,9.065,9.07,9.065,9.055,9.052,9.027,9.022,9.022,9.022,9.016,9.026,9.037,9.031,8.963,8.913,8.891,8.882,8.98,9.037,8.979,8.686,8.242,7.868,7.526,7.277,6.716,6.071,5.448,5.103,4.811,4.451,4.317,4.071,3.879,3.753,3.56,3.253,3.099,3.011,2.946,2.878,2.787,2.739,2.673,2.625,2.588,2.548],[34.40406,34.402088,34.402073,34.400074,34.397072,34.391075,34.384083,34.44104,34.482021,34.503998,34.512012,34.568954,34.559978,34.590958,34.632912,34.631916,34.630905,34.61594,34.614914,34.615929,34.613937,34.614933,34.615944,34.61694,34.620934,34.622925,34.622921,34.624931,34.621937,34.620918,34.62093,34.620922,34.620926,34.624924,34.625935,34.625927,34.613953,34.605953,34.603935,34.603939,34.628925,34.643917,34.631912,34.57798,34.508041,34.470089,34.450108,34.454102,34.417141,34.378201,34.342243,34.335262,34.336254,34.339275,34.361267,34.375252,34.386242,34.403236,34.423225,34.439213,34.462208,34.485203,34.498192,34.518173,34.538151,34.560154,34.588127,34.610104,34.624096,34.640072]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_364","geolocation":{"type":"Point","coordinates":[141.352,-48.932]},"basin":3,"timestamp":"2020-02-04T14:17:20.001Z","date_updated_argovis":"2023-01-26T10:49:47.949Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_364.nc","date_updated":"2020-11-12T10:22:10.000Z"}],"cycle_number":364,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.4,20.5,30.199999,40.100002,50.100002,59.900002,70.099998,80.099998,90.200005,100,110.300003,120.400002,130.299988,140.099991,149.799988,159.899994,170.299988,179.799988,190.399994,200.099991,210.299988,220.299988,229.599991,240,250.099991,260,270.100006,279.699982,289.799988,300,309.799988,319.600006,329.799988,340.199982,349.799988,359.5,379.799988,400.199982,450.5,499.899994,550.200012,599.5,650,700.300049,750.300049,799.800049,849.400024,899.800049,950,1000,1049.300049,1099.800049,1150.300049,1199.5,1250.5,1300.200073,1350.300049,1399.800049,1449.700073,1499.700073,1549.5,1599.700073,1649.800049,1700.300049,1750,1799.800049,1849.700073,1899.5,1949.5,2000.099976],[10.759,10.759,10.762,10.762,10.764,10.763,10.438,9.933,9.656,9.369,9.216,9.289,9.265,9.247,9.294,9.302,9.272,9.183,9.196,9.173,9.158,9.117,9.089,9.072,9.059,9.024,9.036,9.029,9.033,9.038,9.04,9.052,9.066,9.035,9.048,9.035,8.923,8.913,9.006,9.003,8.997,8.983,8.924,8.71,8.404,7.969,7.674,7.36,6.892,6.192,5.72,5.314,4.985,4.756,4.335,4.177,3.856,3.591,3.441,3.255,3.138,3.067,2.982,2.869,2.829,2.768,2.696,2.641,2.613,2.569,2.542],[34.4403,34.439304,34.439301,34.439301,34.440296,34.439293,34.442307,34.516251,34.497292,34.476299,34.502277,34.566231,34.591209,34.615196,34.63517,34.646164,34.645168,34.633183,34.643158,34.642159,34.642162,34.637177,34.633179,34.631176,34.629181,34.623173,34.62619,34.624191,34.627186,34.629192,34.629192,34.632183,34.636177,34.631195,34.635185,34.632183,34.612206,34.610207,34.631199,34.636166,34.636169,34.635178,34.623188,34.581238,34.530281,34.48032,34.465343,34.455357,34.434395,34.379452,34.367474,34.360489,34.357502,34.36549,34.360508,34.389477,34.385513,34.390503,34.414501,34.428493,34.45546,34.473457,34.497429,34.511444,34.536411,34.558388,34.578384,34.602367,34.61734,34.634342,34.647339]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_363","geolocation":{"type":"Point","coordinates":[140.639,-48.698]},"basin":3,"timestamp":"2020-01-25T10:56:26.001Z","date_updated_argovis":"2023-01-26T10:49:46.121Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_363.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":363,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.5,20.200001,30.800001,40,50,60.200001,69.399994,80.799995,90.599998,100.5,110.599998,119.899994,130.800003,140.5,149.800003,160.599991,170.599991,179.099991,190.199997,200.300003,210.199997,220.800003,230.5,240.099991,250.699997,260.300018,270.700012,280.700012,290.100006,300.300018,310,319.900024,330.600006,340.700012,350.200012,360.400024,380,399.800018,450.700012,500.300018,550,600.299988,650,700.700012,750.299988,800.400024,850.200012,900.5,950.299988,1000.100037,1050.399902,1100.5,1150.399902,1199.699951,1250.099976,1299.899902,1350.099976,1400.099976,1450.599976,1500.099976,1550.399902,1600.5,1650.399902,1698.5,1750.599976,1800.099976,1850.299927,1900.299927,1949.699951],[11.14,11.148,11.135,10.853,9.791,9.726,9.672,9.591,9.731,9.55,9.363,9.06,9.144,9.026,9.108,9.059,8.998,8.896,8.904,8.898,9.009,8.977,9.021,9.011,9.037,8.961,8.957,8.939,8.942,8.932,8.917,8.886,8.861,8.863,8.873,8.869,8.866,8.898,8.898,8.984,9.028,8.931,8.717,8.399,7.969,7.72,7.34,7.03,6.582,6.112,5.496,5.153,4.763,4.603,4.296,4.048,3.854,3.673,3.498,3.288,3.038,2.96,2.931,2.905,2.813,2.733,2.675,2.604,2.559,2.51],[34.505363,34.503345,34.503368,34.486382,34.447422,34.448429,34.448441,34.460426,34.533367,34.530376,34.538368,34.524372,34.575344,34.570343,34.598339,34.590343,34.580341,34.575352,34.58334,34.588337,34.61232,34.608315,34.619312,34.620304,34.627319,34.615322,34.614296,34.611309,34.613316,34.612316,34.609333,34.604324,34.599327,34.599339,34.601326,34.602322,34.600342,34.60833,34.608318,34.629318,34.640297,34.626305,34.586346,34.5364,34.484447,34.478458,34.447487,34.447491,34.425514,34.388577,34.339603,34.33363,34.326649,34.370621,34.366631,34.391609,34.409595,34.427578,34.446579,34.462563,34.468575,34.490562,34.509548,34.539528,34.55851,34.583492,34.599464,34.618458,34.631458,34.648441]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_362","geolocation":{"type":"Point","coordinates":[140.078,-47.996]},"basin":3,"timestamp":"2020-01-15T06:12:29.000Z","date_updated_argovis":"2023-01-26T10:49:44.323Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_362.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":362,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.7,20.300001,30.5,40.299999,49.700001,60.600002,70.799995,80.799995,90.599998,100.599998,110.399994,120.399994,130.399994,140.699997,150.300003,160,170.199997,179.800003,190,200.099991,210.599991,220.5,230.5,239.899994,250.399994,260.5,270.600006,280.200012,290.100006,300.600006,310.100006,320.100006,330.200012,340.400024,350,360.600006,380.600006,400.300018,450.400024,500.300018,550.200012,600.700012,650,700.200012,750.5,800.400024,850.400024,900.200012,950.100037,1000.100037,1049,1100.099976,1150,1200.099976,1249.699951,1300.599976,1350.599976,1399.899902,1449.599976,1500.599976,1550.199951,1600.699951,1650.5,1700.299927,1750.299927,1800,1850,1899.699951,1950.199951,2000.099976],[10.415,10.348,10.294,10.251,10.18,10.112,10.066,10.035,10.022,9.972,9.883,9.477,9.251,9.222,9.049,9.117,9.144,9.551,9.59,9.186,8.97,8.891,8.881,8.879,8.872,8.842,8.839,8.842,8.818,8.813,8.821,8.832,8.844,8.857,8.873,8.869,8.865,8.894,8.945,9.012,8.956,8.8,8.616,8.391,7.978,7.674,7.547,7.072,6.48,6.009,5.391,5.028,4.714,4.541,4.324,4.166,3.821,3.568,3.505,3.326,3.186,3.1,3.03,2.908,2.818,2.758,2.681,2.625,2.57,2.529,2.481],[34.563587,34.5616,34.5616,34.561588,34.5616,34.562595,34.564587,34.562607,34.560612,34.557613,34.549603,34.546627,34.54163,34.54063,34.555622,34.595589,34.612579,34.71249,34.728481,34.658527,34.614586,34.601578,34.60059,34.600578,34.59959,34.596596,34.596588,34.596603,34.592602,34.592594,34.594589,34.597595,34.60059,34.603596,34.606594,34.607586,34.607586,34.615574,34.62756,34.644577,34.632565,34.602589,34.56863,34.527668,34.470715,34.443745,34.475727,34.450745,34.396797,34.369839,34.338882,34.323883,34.329895,34.343903,34.357883,34.381866,34.390877,34.40086,34.425854,34.444839,34.475819,34.496807,34.511799,34.527794,34.543781,34.564762,34.597744,34.61272,34.627716,34.641701,34.654705]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_361","geolocation":{"type":"Point","coordinates":[140.086,-47.629]},"basin":3,"timestamp":"2020-01-05T02:56:16.000Z","date_updated_argovis":"2023-01-26T10:49:42.584Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_361.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":361,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.9,20.4,30.200001,40.599998,50.599998,60.400002,70.5,79.800003,90,100.099998,109.5,119.5,130.199997,140,149.699997,159.5,170.300003,180.199997,190.5,199.5,210.399994,220.399994,230.300003,240.199997,250.600006,260.100006,270.100006,280,290.600006,300,310.299988,320.299988,329.899994,340.399994,350.299988,360.399994,380,400.399994,450.299988,500.200012,550.200012,599.599976,650.400024,700.299988,749.799988,800.299988,849.900024,900.400024,950,999.900024,1050.300049,1099.900024,1150.400024,1199.900024,1250.5,1300.400024,1350.300049,1399.900024,1450.199951,1500.300049,1548.300049,1599.800049,1650.099976,1699.300049,1750.400024,1799.900024,1849.900024,1899.900024,1949.599976],[9.704,9.705,9.691,9.69,9.697,9.705,9.725,9.741,9.742,9.741,9.75,9.756,9.72,9.728,9.533,9.681,9.724,9.702,9.688,9.597,9.38,9.271,9.137,9.018,9.053,9.065,9.044,9.065,9.076,9.084,8.978,9.005,9.006,8.999,8.987,8.978,8.951,9.047,9.011,8.993,9.027,9.021,8.9,8.665,8.337,7.834,7.418,6.997,6.419,5.872,5.492,5.064,4.753,4.454,4.346,4.006,3.809,3.57,3.389,3.312,3.161,3.081,2.908,2.857,2.765,2.695,2.652,2.611,2.567,2.523],[34.527988,34.527985,34.530964,34.538971,34.542965,34.548962,34.555965,34.561954,34.566944,34.57795,34.597927,34.626907,34.64489,34.692863,34.672871,34.701847,34.727821,34.734814,34.737812,34.721836,34.687855,34.671898,34.649895,34.63092,34.638897,34.645916,34.637913,34.64291,34.644917,34.644913,34.624928,34.632919,34.63192,34.63092,34.626923,34.625916,34.622932,34.642914,34.635906,34.633926,34.643913,34.642899,34.619923,34.578972,34.531006,34.472057,34.446095,34.425125,34.391159,34.358196,34.358208,34.338238,34.345245,34.358238,34.396206,34.389233,34.404209,34.41423,34.422199,34.456192,34.474186,34.498158,34.51915,34.535152,34.555122,34.579117,34.599091,34.615086,34.631065,34.647053]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_360","geolocation":{"type":"Point","coordinates":[140.195,-47.368]},"basin":3,"timestamp":"2019-12-25T22:04:51.002Z","date_updated_argovis":"2023-01-26T10:49:40.778Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_360.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":360,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.4,20.700001,30.200001,40.600002,50.600002,59.799999,70.199997,80.299995,90.599998,100.699997,110.599998,120.699997,130.099991,140.699997,150.300003,160.099991,170.399994,180,190,200.399994,209.899994,220.5,230.599991,240.599991,249.699997,260.600006,270.200012,280.700012,290.400024,300.200012,310.400024,320.5,330.100006,340.100006,350.100006,360.400024,379.900024,400.200012,450.200012,500.100006,550,600.299988,650.5,700.100037,750.700012,800,849.700012,900.799988,950.600037,1000.299988,1050.299927,1100.5,1150.199951,1199.699951,1250.299927,1300.099976,1350.099976,1400.199951,1450.599976,1500.599976,1550.699951,1600.399902,1649.899902,1700.599976,1750.599976,1800,1849.899902,1900,1950.399902,1999.799927],[9.429,9.425,9.416,9.417,9.255,9.126,9.114,9.093,9.092,9.079,9.036,9.014,8.962,8.868,8.842,8.871,8.919,8.972,8.935,8.893,8.964,8.962,8.951,8.965,8.977,8.955,8.932,8.938,8.915,8.931,8.926,8.914,8.895,8.899,8.904,8.892,8.886,8.876,8.842,8.906,8.959,9.045,9.009,8.571,8.156,7.726,7.432,7.065,6.328,5.807,5.404,4.96,4.736,4.439,4.118,3.978,3.807,3.605,3.396,3.262,3.118,2.976,2.887,2.794,2.745,2.697,2.666,2.622,2.582,2.546,2.502],[34.504169,34.504166,34.503178,34.501183,34.510166,34.515175,34.514164,34.514175,34.513176,34.51218,34.512161,34.510178,34.512173,34.519176,34.535175,34.558151,34.579132,34.595119,34.593102,34.589127,34.608086,34.610096,34.609108,34.614098,34.618107,34.6161,34.612106,34.613106,34.610111,34.61409,34.613091,34.612099,34.607098,34.608109,34.609104,34.607113,34.605099,34.604103,34.597107,34.61211,34.624104,34.64407,34.63908,34.567154,34.504211,34.461243,34.450256,34.428288,34.384342,34.362362,34.341389,34.324413,34.3484,34.360397,34.358398,34.390381,34.416363,34.422363,34.436367,34.458351,34.480335,34.504322,34.524311,34.543289,34.563282,34.581268,34.594246,34.612255,34.627243,34.64222,34.656212]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_359","geolocation":{"type":"Point","coordinates":[140.618,-47.338]},"basin":3,"timestamp":"2019-12-15T18:59:49.002Z","date_updated_argovis":"2023-01-26T10:49:39.020Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_359.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":359,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.4,20.1,29.200001,40.400002,50.299999,60.700001,70.799995,80.699997,90.099998,100.299995,110,120.699997,129.899994,140.5,150.300003,160.5,170.5,180.300003,190.199997,200.599991,210.599991,219.699997,229.199997,240.399994,250.300003,260.5,270.800018,280.700012,290.100006,300.400024,310.5,320.5,330.600006,340.300018,349.900024,359.900024,380.200012,400.300018,450.5,500.300018,549.900024,599.600037,649.799988,700.700012,750,800.100037,849.700012,900.200012,950.200012,1000,1050.599976,1100.699951,1150,1200.399902,1250.299927,1300.199951,1349.899902,1400.699951,1450.199951,1500,1550.099976,1600.199951,1650.199951,1700,1750.399902,1800.299927,1850.199951,1899.899902,1950.299927],[9.348,9.349,9.191,9.154,9.103,9.085,9.016,8.962,8.939,8.935,8.944,8.945,8.951,8.974,8.998,8.969,9.141,9.527,9.209,9.068,9.044,8.971,8.981,8.909,8.959,8.919,8.923,8.964,8.979,8.981,8.982,8.983,8.989,8.992,9.006,9.073,9.079,9.08,9.076,9.029,8.934,8.777,8.599,8.419,7.971,7.687,7.467,6.864,6.381,5.828,5.335,5.08,4.708,4.411,4.293,4.125,3.923,3.717,3.606,3.396,3.166,3.063,2.974,2.888,2.834,2.735,2.674,2.631,2.593,2.551],[34.529427,34.529411,34.5284,34.527416,34.524418,34.523422,34.527428,34.532429,34.53743,34.541416,34.543419,34.543419,34.544411,34.550404,34.554405,34.555405,34.604366,34.710281,34.660328,34.63633,34.635353,34.623348,34.627357,34.615364,34.627346,34.619343,34.621357,34.632347,34.635345,34.637344,34.636333,34.636333,34.639324,34.639359,34.643341,34.658325,34.657322,34.658321,34.657326,34.648331,34.629353,34.598373,34.563404,34.536427,34.479485,34.463497,34.459511,34.41256,34.388596,34.362614,34.341652,34.34964,34.351639,34.340679,34.37365,34.396626,34.405632,34.416634,34.452599,34.46859,34.486588,34.507584,34.528564,34.545547,34.559532,34.574535,34.591515,34.609505,34.623497,34.641491]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_358","geolocation":{"type":"Point","coordinates":[140.955,-47.59]},"basin":3,"timestamp":"2019-12-05T14:55:04.001Z","date_updated_argovis":"2023-01-26T10:49:37.221Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_358.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":358,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[7,10.5,19.9,30.599998,40.299999,50.399998,60.799999,70.600006,80.700005,90.700005,100.200005,110.400002,120.5,130.199997,140.300003,150.300003,160.199997,170,178.699997,190.5,200.600006,210.699997,220.300003,230.699997,240.100006,250.400009,260.299988,270.599976,280,290.399994,300.599976,310.5,320.699982,330.199982,340.5,350.099976,360.199982,380.599976,400.799988,450.599976,500.399994,550.099976,600.200012,650.200012,700.799988,750.799988,800.200012,850.599976,900.700012,950.700012,999.799988,1050.200073,1100.200073,1150.100098,1200.700073,1250.600098,1300.100098,1350.100098,1400.700073,1450.200073,1500.5,1551,1600.5,1650.600098,1700.800049,1750.200073,1800.100098,1850,1899.700073,1947.5],[8.903,8.904,8.905,8.906,8.909,8.912,8.916,8.917,8.919,8.919,8.92,8.922,8.917,8.889,8.863,8.816,8.824,8.826,8.835,8.857,8.872,8.884,8.865,8.861,8.844,8.839,8.827,8.826,8.822,8.822,8.805,8.808,8.795,8.824,8.834,8.843,8.842,8.828,8.832,8.841,9.014,9.034,8.922,8.535,8.067,7.723,7.354,6.905,6.458,5.818,5.329,4.909,4.623,4.404,4.063,3.927,3.71,3.397,3.303,3.2,3.075,3.088,2.987,2.903,2.791,2.728,2.678,2.63,2.586,2.548],[34.539619,34.540623,34.540619,34.540634,34.541622,34.541622,34.544632,34.543613,34.545631,34.545628,34.544628,34.544621,34.545628,34.549618,34.554634,34.577614,34.586594,34.587601,34.590599,34.596592,34.600594,34.60458,34.601578,34.601578,34.598591,34.597599,34.595596,34.595596,34.595589,34.594582,34.590591,34.591599,34.589596,34.597595,34.597588,34.596596,34.598595,34.59959,34.599579,34.60458,34.64455,34.649548,34.626564,34.554642,34.486683,34.457718,34.441742,34.418766,34.399792,34.350838,34.334866,34.319885,34.323872,34.345875,34.338875,34.36787,34.381855,34.376858,34.398846,34.424835,34.44883,34.494801,34.515781,34.535755,34.553741,34.577736,34.593719,34.610714,34.624714,34.641693]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_357","geolocation":{"type":"Point","coordinates":[141.471,-47.762]},"basin":3,"timestamp":"2019-11-25T10:14:51.001Z","date_updated_argovis":"2023-01-26T10:49:35.403Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_357.nc","date_updated":"2020-11-12T10:22:09.000Z"}],"cycle_number":357,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.9,10.8,20.300001,29.900002,40.400002,50.600002,60.100002,70,80,90.699997,100.199997,110.799995,120.299995,130.699997,140.5,150.699997,160.399994,170.5,179.800003,190,200.399994,210.5,220.199997,230.5,240.5,250.599991,260.5,270.700012,280.400024,290.800018,300.300018,310.200012,320.200012,330.400024,340,350.600006,360.5,380.200012,399.800018,450.800018,500.300018,550,600.5,650.299988,700.100037,750.400024,800.5,849.900024,900.299988,950,1000.299988,1050.299927,1100.799927,1150.099976,1199.699951,1250.599976,1300.5,1350.399902,1400.399902,1450.5,1500.199951,1549.899902,1600.099976,1650.299927,1700.599976,1750.299927,1800.399902,1849.899902,1899.799927,1950.299927,1999.799927],[9.041,9.041,9.051,9.035,9.008,8.977,8.974,8.967,8.961,8.959,8.941,8.825,8.829,8.834,8.796,8.836,8.834,8.843,8.861,8.873,8.846,8.849,8.83,8.817,8.816,8.808,8.808,8.804,8.801,8.799,8.798,8.797,8.797,8.801,8.804,8.809,8.81,8.819,8.83,8.884,8.967,9.084,9.095,8.858,8.042,7.753,7.448,6.934,6.499,5.872,5.39,4.981,4.586,4.308,4.312,3.98,3.812,3.575,3.494,3.287,3.191,3.131,3.01,2.915,2.843,2.778,2.705,2.657,2.603,2.573,2.538],[34.533939,34.532913,34.532936,34.53194,34.529938,34.525944,34.525951,34.52594,34.526943,34.526943,34.52594,34.524948,34.528942,34.532955,34.540939,34.574902,34.581905,34.59388,34.5989,34.601871,34.5979,34.598896,34.595898,34.593887,34.593899,34.591896,34.591896,34.590897,34.589897,34.589912,34.589897,34.589905,34.589912,34.591911,34.590908,34.592899,34.592907,34.594894,34.596893,34.608891,34.626869,34.654858,34.657852,34.612888,34.488987,34.465015,34.456024,34.423065,34.40509,34.348145,34.339161,34.322189,34.317196,34.327179,34.373169,34.372173,34.381165,34.39518,34.430126,34.448128,34.471111,34.495102,34.512085,34.529068,34.540081,34.564056,34.584045,34.601032,34.621021,34.631004,34.646008]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_356","geolocation":{"type":"Point","coordinates":[142.145,-47.901]},"basin":3,"timestamp":"2019-11-15T06:58:38.000Z","date_updated_argovis":"2023-01-26T10:49:33.608Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_356.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":356,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.099999,20.1,30.200001,40.700001,47.799999,60.100002,70.799995,80.299995,90.099998,100.099998,110.599998,120.399994,130.599991,140.199997,150,160,170.099991,180.199997,190.399994,200.300003,209.899994,220.399994,230.599991,240.300003,250.399994,260.300018,270.700012,280.100006,290.300018,300.800018,310.100006,320.200012,330.600006,340.5,350.300018,360.300018,380.100006,400,449.900024,500.200012,550,600.100037,649.200012,700.700012,750.299988,800.100037,850,900.600037,950,1000.299988,1050.599976,1100.299927,1150.299927,1200.099976,1247.899902,1300.699951,1350.399902,1400.399902,1450.599976,1500,1548,1600.599976,1650.699951,1700.299927,1750.099976,1800.099976,1850.099976,1900.199951,1949.699951],[8.711,8.71,8.707,8.709,8.7,8.695,8.688,8.688,8.691,8.694,8.698,8.707,8.714,8.724,8.743,8.746,8.753,8.774,8.816,8.832,8.849,8.852,8.877,8.894,8.893,8.917,8.896,8.867,8.856,8.849,8.838,8.835,8.824,8.82,8.817,8.809,8.804,8.805,8.8,8.806,8.895,9.182,8.948,8.385,7.849,7.591,7.349,6.937,6.385,6.016,5.421,4.913,4.518,4.226,4.06,3.827,3.675,3.507,3.438,3.375,3.251,3.111,2.969,2.856,2.803,2.752,2.707,2.644,2.594,2.549],[34.481239,34.48024,34.482231,34.481232,34.483242,34.484234,34.486233,34.486244,34.489231,34.490234,34.491245,34.495224,34.498215,34.504219,34.522209,34.540199,34.553185,34.566181,34.581161,34.58617,34.592159,34.593163,34.600163,34.60516,34.60416,34.610138,34.607143,34.603146,34.600155,34.599144,34.597157,34.596157,34.593159,34.593151,34.592155,34.59016,34.589153,34.589165,34.589153,34.59016,34.614143,34.678089,34.630142,34.525223,34.454292,34.446304,34.445293,34.426319,34.393356,34.37339,34.339409,34.31945,34.310455,34.311451,34.333458,34.339458,34.354446,34.373421,34.422405,34.461376,34.473373,34.485355,34.501347,34.519352,34.542316,34.56731,34.582306,34.601288,34.623268,34.640266]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_355","geolocation":{"type":"Point","coordinates":[142.717,-48.074]},"basin":3,"timestamp":"2019-11-05T02:12:49.000Z","date_updated_argovis":"2023-01-26T10:49:31.809Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_355.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":355,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.9,10.8,20.4,30.599998,39.899998,50.799999,60.099998,70.200005,80.600006,90.400002,100.600006,110.200005,120.800003,130.400009,140.400009,150.699997,160.400009,170.300003,179.900009,190.100006,200.5,209.900009,219.900009,230.699997,238.699997,250.300003,260.399994,270.299988,280.5,290.5,300.699982,310.399994,320.599976,330.599976,340,350.799988,360.399994,380.099976,400.299988,450.699982,500.599976,550.599976,600.399963,649.899963,700.299988,750.099976,800.5,850.399963,900.700012,950.599976,1000.700012,1050.200073,1100.300049,1150.700073,1200.200073,1250,1300.400024,1350,1400.400024,1450.100098,1500.5,1549.900024,1600.5,1650.600098,1699.800049,1750.800049,1800.400024,1850.700073,1899.700073,1950.700073,2000.600098],[8.651,8.651,8.65,8.653,8.655,8.656,8.655,8.656,8.665,8.672,8.669,8.655,8.649,8.627,8.639,8.631,8.627,8.645,8.687,8.725,8.736,8.736,8.775,8.798,8.825,8.871,8.886,8.89,8.907,8.923,8.936,8.941,8.944,8.943,8.938,8.929,8.917,8.877,8.862,8.831,8.808,8.809,8.783,8.132,7.845,7.789,7.435,6.871,6.418,5.913,5.323,4.856,4.581,4.283,4.046,3.838,3.687,3.489,3.369,3.22,3.139,3.028,2.973,2.956,2.833,2.783,2.712,2.666,2.616,2.584,2.541],[34.469463,34.467464,34.469467,34.468464,34.468456,34.468452,34.468468,34.478466,34.495434,34.507431,34.508446,34.503437,34.504444,34.503445,34.511425,34.514442,34.518425,34.527412,34.541401,34.557396,34.560402,34.562389,34.571392,34.579372,34.585381,34.596382,34.600353,34.601372,34.604374,34.609356,34.613354,34.614361,34.615353,34.614368,34.614353,34.612362,34.610352,34.601376,34.599365,34.593376,34.586384,34.587364,34.585388,34.482471,34.453487,34.475468,34.454498,34.422543,34.395565,34.3666,34.335632,34.318645,34.31168,34.311657,34.321671,34.332653,34.349648,34.373631,34.39164,34.41861,34.443592,34.463596,34.490566,34.533524,34.540535,34.56752,34.586502,34.602489,34.617485,34.62849,34.643467]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_354","geolocation":{"type":"Point","coordinates":[142.286,-48.467]},"basin":3,"timestamp":"2019-10-25T22:52:52.002Z","date_updated_argovis":"2023-01-26T10:49:29.991Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_354.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":354,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10,20.300001,30.300001,40.5,50.200001,60.5,70,80.899994,90.599998,100.699997,110.299995,120.199997,130.300003,140.699997,150.599991,159.899994,170,180.300003,190.099991,200.699997,210.5,219.800003,230,239.199997,250.199997,260.100006,270.100006,280.5,290.400024,299.800018,310.5,320.400024,330.100006,340.600006,350.400024,360.600006,380,400.100006,449.800018,500.5,550.200012,600.100037,650.100037,700.799988,750.5,800.299988,850.600037,900.600037,949.900024,999.900024,1048.099976,1100.599976,1150,1200.399902,1250.699951,1300.699951,1350.199951,1400,1450.099976,1500.299927,1549.599976,1600.699951,1650.199951,1700,1750.399902,1800.199951,1849.799927,1899.799927,1950.299927],[8.584,8.583,8.582,8.584,8.584,8.587,8.589,8.602,8.7,8.722,8.717,8.714,8.726,8.733,8.751,8.811,8.867,8.854,8.932,8.908,8.896,8.878,8.829,8.828,8.823,8.809,8.806,8.804,8.803,8.806,8.807,8.805,8.805,8.803,8.801,8.799,8.799,8.806,8.801,8.814,8.811,8.822,8.851,8.228,7.923,7.542,7.119,6.6,5.958,5.48,5.063,4.721,4.335,4.079,3.911,3.738,3.519,3.404,3.216,3.081,2.998,2.928,2.843,2.782,2.71,2.665,2.653,2.614,2.583,2.554],[34.488754,34.488754,34.487751,34.487747,34.487755,34.487762,34.488758,34.49575,34.528728,34.546707,34.548706,34.549713,34.552704,34.555698,34.563698,34.581676,34.597675,34.596676,34.616653,34.611671,34.609653,34.603668,34.595673,34.595673,34.595676,34.591686,34.591679,34.589684,34.589684,34.590679,34.590694,34.590675,34.589684,34.589684,34.589684,34.588669,34.588676,34.589684,34.587673,34.591682,34.590683,34.593693,34.599674,34.511749,34.483768,34.4618,34.436821,34.407856,34.370899,34.34193,34.324944,34.318966,34.309978,34.319977,34.340954,34.358963,34.367935,34.389942,34.404926,34.433907,34.465893,34.490875,34.512852,34.536846,34.551834,34.571827,34.592808,34.614803,34.628788,34.641788]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_353","geolocation":{"type":"Point","coordinates":[140.641,-49.185]},"basin":3,"timestamp":"2019-10-15T18:55:34.002Z","date_updated_argovis":"2023-01-26T10:49:28.176Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_353.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":353,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.2,20.5,30.1,39.600002,50.400002,60.700001,70.099998,80.599998,90.599998,100.699997,110.199997,120.099998,130.599991,140.199997,149.699997,160.599991,170.399994,179.800003,190.599991,200.399994,210.300003,220.300003,230.099991,240.300003,250.399994,260.700012,270.5,280.300018,290.400024,300.5,310.600006,320.300018,330.100006,340.100006,350.5,359.900024,380.400024,399.700012,450.5,500.200012,550.299988,599.799988,650,699.799988,750.600037,800.299988,847.600037,900.200012,950.100037,1000,1050.599976,1100.299927,1150.699951,1199.799927,1250.5,1299.899902,1348.899902,1400.099976,1450,1500.099976,1550.199951,1600.599976,1650.299927,1699.799927,1747.599976,1800.5,1850,1900.399902,1949.799927],[8.525,8.526,8.555,8.557,8.555,8.553,8.546,8.564,8.591,8.789,8.843,8.844,8.836,8.82,8.849,8.88,8.824,8.824,8.839,8.785,8.778,8.781,8.781,8.782,8.783,8.783,8.785,8.785,8.787,8.788,8.789,8.79,8.79,8.791,8.79,8.792,8.787,8.792,8.796,8.823,8.841,8.845,8.897,8.6,7.984,7.571,7.198,6.715,6.139,5.67,5.162,4.774,4.408,4.156,3.946,3.761,3.577,3.381,3.282,3.17,3.067,2.983,2.913,2.856,2.794,2.696,2.69,2.626,2.567,2.558],[34.492004,34.492012,34.495018,34.495014,34.495014,34.496017,34.493015,34.500015,34.507004,34.567947,34.585941,34.586937,34.587929,34.589928,34.601921,34.607925,34.597939,34.597931,34.599926,34.590946,34.589931,34.589935,34.589935,34.589939,34.589939,34.590954,34.590946,34.590946,34.590946,34.589931,34.590935,34.590939,34.590946,34.589939,34.589931,34.590946,34.588932,34.589935,34.591927,34.596947,34.598934,34.598942,34.609924,34.560963,34.487034,34.463062,34.441071,34.41312,34.381142,34.355179,34.329208,34.321217,34.312225,34.318233,34.330227,34.346218,34.364212,34.383202,34.407181,34.424164,34.444168,34.470139,34.498127,34.524113,34.546085,34.55909,34.589066,34.598053,34.619049,34.637047]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_352","geolocation":{"type":"Point","coordinates":[138.886,-49.276]},"basin":3,"timestamp":"2019-10-05T14:17:13.001Z","date_updated_argovis":"2023-01-26T10:49:26.192Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_352.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":352,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.599999,20.6,30.300001,40.600002,50.5,60.5,70.699997,80.199997,90.699997,100,110.399994,120,130,139.899994,150.5,159.800003,170,180.199997,189.800003,200.599991,210.5,219.699997,230.699997,238.699997,250.300003,260.700012,270.700012,280.300018,290.5,300.200012,310.600006,320.400024,330.200012,340,350.100006,359.900024,380.600006,400.100006,450.300018,500.200012,550.200012,600.700012,650.299988,700.400024,750.5,799.900024,849.799988,900.600037,950.600037,999.799988,1048.299927,1100.099976,1150.599976,1199.899902,1250.299927,1300.099976,1350.399902,1400.099976,1450.599976,1499.799927,1549.599976,1600.5,1650.399902,1700.399902,1750.099976,1800.199951,1850.099976,1900.5,1950.299927,1998.899902],[8.774,8.778,8.78,8.78,8.781,8.778,8.775,8.777,8.776,8.777,8.778,8.779,8.78,8.781,8.782,8.783,8.783,8.785,8.786,8.787,8.787,8.789,8.79,8.791,8.793,8.795,8.8,8.799,8.8,8.802,8.801,8.801,8.8,8.799,8.797,8.799,8.799,8.793,8.789,8.784,8.775,8.786,8.749,8.377,8.083,7.709,7.326,6.812,6.353,5.877,5.372,4.852,4.524,4.241,3.971,3.756,3.598,3.462,3.34,3.209,3.102,3.029,2.955,2.864,2.763,2.726,2.686,2.652,2.623,2.577,2.543],[34.5872,34.586193,34.586201,34.587204,34.586197,34.587193,34.587208,34.587196,34.586205,34.587204,34.587204,34.587204,34.587196,34.587204,34.586205,34.586197,34.587204,34.586205,34.587212,34.586205,34.587215,34.5872,34.587208,34.5872,34.587219,34.588196,34.589214,34.587212,34.588196,34.589207,34.589207,34.589199,34.588203,34.588196,34.588196,34.588184,34.588196,34.586216,34.585201,34.584217,34.581211,34.586201,34.587208,34.528248,34.497288,34.470306,34.451328,34.420345,34.391396,34.363419,34.341434,34.316475,34.313484,34.32048,34.328495,34.339481,34.358475,34.381454,34.399448,34.426437,34.451408,34.472397,34.490391,34.518372,34.533356,34.560349,34.576324,34.595322,34.619305,34.634296,34.648281]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_351","geolocation":{"type":"Point","coordinates":[138.501,-48.838]},"basin":3,"timestamp":"2019-09-25T10:52:36.001Z","date_updated_argovis":"2023-01-26T10:49:24.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_351.nc","date_updated":"2020-11-12T10:21:16.000Z"}],"cycle_number":351,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.8,20.200001,30.1,40.100002,50.5,60,69.899994,80.5,90.699997,100.299995,110.699997,120.399994,130.599991,140,149.899994,160.300003,170.099991,180.599991,190,200,210.5,220.399994,230.599991,240.599991,250.199997,260.400024,270.100006,280.800018,290,300,310.400024,320.5,330.600006,339.900024,350.200012,360.400024,380.100006,399.800018,450.5,500.300018,550.100037,600.5,650.400024,700.200012,750.100037,800.5,850.5,900.600037,950.5,1000.5,1048.299927,1100.299927,1149.899902,1199.799927,1250.5,1300.599976,1350.199951,1400.5,1450.099976,1499.599976,1549.399902,1600.299927,1649.899902,1700.299927,1750.199951,1800.699951,1850.5,1900.299927,1950.099976],[8.739,8.739,8.741,8.742,8.738,8.743,8.744,8.743,8.736,8.737,8.736,8.739,8.739,8.74,8.741,8.742,8.743,8.744,8.744,8.745,8.746,8.748,8.748,8.748,8.749,8.751,8.751,8.752,8.754,8.754,8.756,8.757,8.758,8.759,8.76,8.761,8.762,8.766,8.768,8.775,8.779,8.788,8.788,8.753,8.217,7.908,7.508,7.083,6.636,5.999,5.535,5.203,4.749,4.448,4.143,3.973,3.759,3.524,3.44,3.354,3.243,3.139,3.016,2.921,2.833,2.771,2.713,2.678,2.637,2.597],[34.582451,34.582462,34.58247,34.582455,34.582462,34.582458,34.58147,34.582462,34.58147,34.581482,34.581474,34.581467,34.58147,34.58147,34.58147,34.581478,34.581467,34.58147,34.581478,34.58147,34.58147,34.58147,34.58147,34.58147,34.581478,34.581474,34.581482,34.581474,34.581474,34.581474,34.581482,34.581474,34.581493,34.581474,34.581474,34.582462,34.582462,34.581478,34.58147,34.580475,34.581474,34.582474,34.581463,34.576481,34.511536,34.482555,34.457558,34.435604,34.408634,34.370678,34.3437,34.328716,34.315731,34.314728,34.316738,34.340721,34.359715,34.365742,34.3937,34.417694,34.442688,34.463661,34.476654,34.491646,34.514622,34.536625,34.566608,34.586605,34.607586,34.625568]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_350","geolocation":{"type":"Point","coordinates":[138.394,-48.895]},"basin":3,"timestamp":"2019-09-15T06:04:55.000Z","date_updated_argovis":"2023-01-26T10:49:22.180Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_350.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":350,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.5,20.4,30.4,40.099998,50.599998,60.400002,69.800003,79.800003,90.199997,100.199997,109.599998,120.300003,130.399994,140,149.5,160,169.399994,180.100006,190.199997,200,209.800003,220.300003,229.699997,240.100006,249.800003,259,270.600006,280.200012,290.100006,300.299988,309.799988,320.5,329.700012,339.899994,350.299988,359.799988,380.200012,400.299988,450.200012,499.799988,549.900024,600.5,649.900024,700.400024,750.200012,800.099976,849.900024,898.200012,950.5,1000.299988,1050.599976,1100.5,1149.900024,1200,1250.400024,1299.800049,1349.900024,1400.599976,1449.800049,1499.900024,1550.300049,1598.400024,1649.800049,1700,1750,1799.699951,1849.699951,1900.199951,1949.599976,2000.199951],[8.773,8.774,8.777,8.777,8.778,8.779,8.78,8.781,8.782,8.783,8.784,8.783,8.785,8.786,8.786,8.788,8.79,8.791,8.792,8.792,8.794,8.795,8.795,8.796,8.798,8.798,8.799,8.8,8.801,8.804,8.805,8.807,8.808,8.808,8.809,8.811,8.814,8.815,8.817,8.821,8.826,8.832,8.837,8.843,8.04,7.916,7.382,6.931,6.542,5.973,5.526,5.009,4.624,4.365,4.132,3.887,3.781,3.507,3.356,3.26,3.164,3.076,2.988,2.847,2.798,2.739,2.696,2.65,2.623,2.591,2.563],[34.589813,34.58881,34.589809,34.588818,34.588818,34.589825,34.588825,34.588814,34.588814,34.588814,34.58783,34.588818,34.586815,34.588821,34.587811,34.588821,34.58881,34.588821,34.588818,34.587818,34.58881,34.587811,34.587811,34.588821,34.588818,34.587818,34.588814,34.587811,34.586819,34.587807,34.587807,34.587818,34.587807,34.587807,34.589817,34.588821,34.587818,34.587814,34.587814,34.587822,34.587814,34.588818,34.588825,34.585823,34.481899,34.494892,34.455936,34.430962,34.412975,34.371029,34.351055,34.325066,34.316093,34.316109,34.319107,34.330097,34.360073,34.36908,34.389065,34.414066,34.436054,34.471027,34.492985,34.515999,34.532993,34.554977,34.573963,34.594944,34.608952,34.626911,34.643887]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_349","geolocation":{"type":"Point","coordinates":[138.187,-48.85]},"basin":3,"timestamp":"2019-09-05T02:56:10.000Z","date_updated_argovis":"2023-01-26T10:49:20.384Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_349.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":349,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,10.099999,20.200001,30.6,40.400002,50.200001,60.5,70.399994,79.799995,90.399994,100.199997,110,119.799995,129.800003,139.800003,150.199997,158.099991,170.399994,180.399994,190.5,200.399994,210.300003,220.300003,230.699997,240.199997,250.300003,260.200012,270.600006,280,290.700012,300.5,310.5,319.900024,330.100006,339.900024,350.600006,360,379.900024,400.300018,450.400024,500.300018,550.799988,600,649.299988,700.700012,750.700012,800.299988,849.799988,900.299988,950.100037,1000.100037,1049.699951,1100.399902,1150.5,1200.099976,1250.599976,1300.099976,1350.199951,1400.299927,1450.5,1500.299927,1549.899902,1600.5,1650.699951,1699.799927,1750.399902,1800,1850,1900.199951,1949.699951],[8.772,8.773,8.77,8.771,8.771,8.772,8.773,8.774,8.774,8.775,8.777,8.778,8.779,8.78,8.781,8.782,8.783,8.784,8.785,8.786,8.787,8.788,8.789,8.791,8.791,8.793,8.793,8.795,8.796,8.797,8.798,8.8,8.8,8.801,8.802,8.803,8.804,8.806,8.808,8.814,8.82,8.825,8.829,8.549,8.116,7.815,7.454,7.09,6.635,6.053,5.634,5.1,4.63,4.339,4.017,3.93,3.713,3.51,3.36,3.274,3.1,3.07,2.989,2.874,2.812,2.758,2.708,2.655,2.616,2.586],[34.579987,34.578995,34.579979,34.578983,34.578995,34.579994,34.578983,34.578983,34.578995,34.579987,34.578995,34.579987,34.578995,34.578983,34.579002,34.578979,34.578991,34.578999,34.579983,34.578999,34.578999,34.578991,34.579983,34.577988,34.57999,34.579987,34.579987,34.578987,34.578987,34.578995,34.578987,34.578995,34.579987,34.579994,34.579987,34.578987,34.578995,34.579994,34.579983,34.577991,34.578987,34.57999,34.577991,34.549015,34.496063,34.472076,34.458099,34.440128,34.414139,34.378189,34.375179,34.331223,34.317253,34.317253,34.319271,34.34824,34.365223,34.372227,34.38422,34.419212,34.440193,34.474194,34.499161,34.513165,34.531143,34.557129,34.572132,34.593102,34.614086,34.631096]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_348","geolocation":{"type":"Point","coordinates":[136.875,-48.677]},"basin":3,"timestamp":"2019-08-25T22:28:05.002Z","date_updated_argovis":"2023-01-26T10:49:18.478Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_348.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":348,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.3,20,29.800001,39.5,49.700001,59.400002,67,80.599998,90.399994,100.699997,110.5,120.299995,130.300003,140.399994,150.599991,160.300003,169.800003,180.300003,190.199997,200.399994,210.399994,220.5,229.899994,239.899994,250.099991,260.700012,270.200012,280.800018,290.400024,300.600006,310.300018,320.100006,330.800018,340.400024,350.5,360.100006,380.300018,400.600006,448.700012,500.100006,550.299988,600.400024,650.200012,700.5,750.100037,800.5,850,898.200012,950.200012,1000.700012,1049.899902,1100.399902,1150.199951,1200.199951,1250.099976,1299.899902,1350.599976,1400.199951,1450.599976,1500.199951,1547.799927,1600.5,1650.799927,1700.099976,1750.299927,1800,1850.299927,1899.699951,1950.199951,2000.699951],[8.504,8.503,8.499,8.502,8.502,8.5,8.502,8.512,8.513,8.523,8.532,8.543,8.704,8.711,8.643,8.642,8.667,8.714,8.823,8.844,8.849,8.854,8.888,8.904,8.913,8.903,8.912,8.93,8.95,8.964,8.966,8.964,8.979,8.976,8.953,8.95,8.949,8.973,9.014,9.058,9.057,8.871,8.543,8.22,7.976,7.451,6.975,6.55,5.952,5.539,4.972,4.623,4.283,3.982,3.762,3.545,3.429,3.31,3.214,3.114,3.01,2.95,2.833,2.779,2.703,2.665,2.63,2.599,2.572,2.525,2.492],[34.507305,34.506294,34.50629,34.505306,34.506302,34.505295,34.505291,34.508305,34.507301,34.510292,34.511299,34.521294,34.546268,34.547264,34.534267,34.533291,34.541283,34.55027,34.574245,34.578259,34.579247,34.582249,34.590237,34.594242,34.59824,34.594246,34.597248,34.602234,34.606228,34.609222,34.610214,34.609222,34.612225,34.611233,34.607216,34.606236,34.606228,34.610222,34.619221,34.628216,34.627232,34.59623,34.555271,34.514294,34.501312,34.460369,34.435387,34.407406,34.371445,34.349457,34.32349,34.321503,34.31551,34.323524,34.336517,34.359512,34.377495,34.400475,34.425446,34.448441,34.476429,34.495419,34.516411,34.538395,34.558392,34.58337,34.599377,34.624336,34.640327,34.65633,34.669315]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_347","geolocation":{"type":"Point","coordinates":[135.099,-47.777]},"basin":3,"timestamp":"2019-08-15T18:51:19.002Z","date_updated_argovis":"2023-01-26T10:49:16.685Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_347.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":347,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.599999,20.200001,29.400002,40,50.799999,60.600002,70,80,90.199997,100.299995,110.399994,119.699997,130,140.5,150.399994,159.5,170.5,180.399994,190,200.199997,210.199997,220.300003,230.5,239.599991,249.699997,259.200012,270.800018,280.800018,290.800018,300.200012,310.5,320.5,330.100006,340.5,350.200012,360.300018,380.5,400.600006,450.700012,500.700012,550.100037,600.700012,650.100037,699.700012,749.900024,800.299988,849.900024,900.600037,950.700012,1000.5,1050.699951,1100.599976,1150.399902,1200.599976,1250.699951,1300.599976,1350.099976,1400.699951,1450,1499.899902,1549,1600.099976,1650.399902,1700.099976,1750.599976,1800.199951,1850.399902,1900.599976,1950.399902],[8.896,8.896,8.899,8.901,8.896,8.896,8.898,8.903,8.909,8.909,8.91,8.911,8.911,8.912,8.914,8.914,8.916,8.917,8.918,8.918,8.919,8.92,8.921,8.922,8.923,8.925,8.926,8.927,8.927,8.927,8.928,8.927,8.928,8.929,8.929,8.931,8.94,8.943,8.944,8.95,8.954,8.956,8.727,8.284,7.985,7.662,7.22,6.678,6.088,5.6,5.082,4.726,4.278,4.036,3.803,3.714,3.531,3.364,3.295,3.158,3.089,2.997,2.898,2.832,2.771,2.71,2.661,2.614,2.587,2.563],[34.602497,34.602482,34.603489,34.602478,34.602489,34.60149,34.601475,34.602501,34.602501,34.602505,34.601494,34.602505,34.602497,34.602501,34.603504,34.602493,34.601482,34.602497,34.602474,34.60149,34.601486,34.60149,34.602489,34.601505,34.602489,34.602497,34.602493,34.602489,34.60149,34.60149,34.601498,34.601494,34.600498,34.602493,34.60149,34.602493,34.60149,34.601505,34.602493,34.602493,34.602497,34.601501,34.577507,34.51857,34.491577,34.476589,34.450623,34.414654,34.377682,34.355717,34.329746,34.323753,34.306774,34.314766,34.328758,34.34676,34.365765,34.386723,34.41872,34.435703,34.460697,34.4837,34.506672,34.527645,34.556641,34.581631,34.600628,34.619602,34.635597,34.648598]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_346","geolocation":{"type":"Point","coordinates":[133.928,-47.918]},"basin":3,"timestamp":"2019-08-05T14:14:50.001Z","date_updated_argovis":"2023-01-26T10:49:14.970Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_346.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":346,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.4,20.1,30,40.799999,50.200001,60,70.699997,80.399994,90.599998,100.799995,110.399994,120.5,130.099991,140.5,150.199997,160.599991,170.300003,180.399994,190.5,199.899994,210.5,219.899994,229.699997,239.699997,249.699997,258.800018,270.400024,280.800018,290.100006,300.700012,310.600006,320.200012,330.600006,340.400024,350.300018,360.200012,380.600006,400.400024,450.400024,500.700012,550.5,599.900024,650.299988,698.200012,750.5,800.600037,850.200012,899.799988,950.5,1000.400024,1050.5,1100.199951,1150.699951,1200,1250.5,1300.399902,1350,1400.699951,1450.399902,1500.299927,1550.399902,1600.199951,1650.099976,1699.799927,1750.299927,1800.199951,1850.299927,1900.399902,1950.199951,2000.299927],[8.991,8.995,9,9.003,9.008,9.006,9.005,9.003,8.999,8.988,8.976,8.967,8.96,8.965,8.961,8.968,8.972,8.974,8.975,8.976,8.976,8.976,8.976,8.976,8.977,8.977,8.976,8.976,8.976,8.978,8.978,8.98,8.981,8.981,8.981,8.982,8.983,8.983,8.985,8.985,8.983,8.87,8.702,8.358,7.945,7.654,7.356,6.984,6.481,5.775,5.294,4.899,4.619,4.227,3.959,3.78,3.594,3.455,3.361,3.234,3.114,3.026,2.941,2.852,2.788,2.738,2.703,2.661,2.618,2.58,2.542],[34.59774,34.604736,34.609734,34.611736,34.61274,34.610741,34.611736,34.611736,34.612751,34.610756,34.609741,34.605736,34.604759,34.605751,34.603756,34.606762,34.607738,34.607738,34.60675,34.607738,34.60675,34.606758,34.606743,34.60675,34.605747,34.607742,34.606735,34.606743,34.605747,34.605736,34.606743,34.605736,34.60574,34.605747,34.60574,34.60574,34.605747,34.605747,34.605743,34.605743,34.604763,34.599762,34.574768,34.527813,34.482861,34.467873,34.453896,34.429897,34.402935,34.35997,34.334011,34.315002,34.302021,34.304024,34.317039,34.341015,34.359013,34.379997,34.412979,34.428978,34.448971,34.474957,34.493938,34.520931,34.546913,34.567898,34.58387,34.603863,34.619865,34.63686,34.654839]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_345","geolocation":{"type":"Point","coordinates":[133.031,-48.165]},"basin":3,"timestamp":"2019-07-26T10:50:13.001Z","date_updated_argovis":"2023-01-26T10:49:13.171Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_345.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":345,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.8,20.5,30.1,39.700001,50.200001,60.100002,70.299995,80.599998,89.5,100.099998,110.5,120,130.199997,140.300003,150.699997,160.199997,170.399994,180.099991,190,199.5,210.399994,220.5,230.399994,240.199997,250.099991,260.100006,270.100006,279.600006,290.600006,299.400024,310.200012,320.800018,330.700012,340.600006,350.200012,360.400024,380.400024,400.300018,450.600006,500.100006,550.200012,600.299988,650.299988,700.200012,750,800.299988,850,900.400024,950.200012,1000,1050.599976,1100.199951,1150.399902,1200.099976,1250.399902,1300.199951,1350.199951,1400.199951,1450.099976,1500.199951,1548.299927,1600,1650.199951,1700.599976,1750.399902,1800.699951,1850.399902,1899.599976,1950.5],[9.063,9.062,9.064,9.065,9.067,9.066,9.075,9.075,9.076,9.074,9.075,9.076,9.078,9.079,9.08,9.081,9.082,9.083,9.084,9.087,9.088,9.091,9.092,9.093,9.094,9.094,9.096,9.098,9.098,9.1,9.101,9.103,9.105,9.107,9.108,9.11,9.112,9.117,9.123,9.15,9.062,8.927,8.756,8.495,8.221,7.943,7.519,7.062,6.551,6.045,5.462,5.096,4.722,4.393,4.074,3.937,3.728,3.589,3.449,3.359,3.227,3.113,2.946,2.892,2.82,2.769,2.725,2.674,2.633,2.596],[34.608002,34.606995,34.607006,34.606007,34.60701,34.606991,34.608006,34.608013,34.608013,34.606014,34.605995,34.607006,34.606007,34.607006,34.607014,34.60701,34.607006,34.607002,34.607002,34.607018,34.606998,34.608002,34.60701,34.607002,34.606998,34.607014,34.609005,34.608002,34.607002,34.608006,34.607002,34.608006,34.608997,34.608009,34.60701,34.610004,34.608994,34.609005,34.611,34.634987,34.628986,34.611008,34.585022,34.544064,34.511082,34.490101,34.46212,34.432144,34.402168,34.370216,34.345234,34.32925,34.318283,34.320274,34.319283,34.337276,34.361259,34.375259,34.397243,34.427227,34.451214,34.469204,34.482201,34.505184,34.531178,34.556149,34.57814,34.597145,34.614128,34.63311]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_344","geolocation":{"type":"Point","coordinates":[132.525,-48.017]},"basin":3,"timestamp":"2019-07-16T06:19:19.000Z","date_updated_argovis":"2023-01-26T10:49:11.473Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_344.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":344,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.5,20.6,30.6,40.5,50.5,60.299999,70.199997,80.199997,90.699997,100.399994,110.5,120.599998,130.399994,140.199997,150.300003,160.5,170.699997,180.199997,190.5,200.099991,210.699997,220.5,230.099991,240.699997,250.599991,260.700012,270.200012,280.600006,290.300018,300,310.700012,320.700012,330.400024,340.400024,350.200012,360.100006,380.400024,400.100006,450.100006,500.300018,550.400024,600.100037,650.200012,700.799988,750.100037,800.200012,850.600037,900.200012,950.400024,999.900024,1050.099976,1100.599976,1149.899902,1199.799927,1248.299927,1300.699951,1350.699951,1400.5,1450.199951,1500.199951,1550.199951,1600,1650.099976,1700.5,1750.099976,1800.699951,1850.399902,1899.899902,1950.199951,2000.599976],[9.012,9.012,9.013,9.013,9.013,9.015,9.016,9.017,9.019,9.02,9.02,9.021,9.022,9.024,9.024,9.024,9.027,9.027,9.026,9.026,9.028,9.029,9.03,9.032,9.033,9.034,9.035,9.035,9.036,9.037,9.039,9.04,9.041,9.042,9.043,9.044,9.045,9.048,9.053,9.114,9.09,8.975,8.774,8.415,8.065,7.781,7.281,6.862,6.367,5.905,5.456,5.028,4.633,4.356,4.088,3.864,3.77,3.61,3.466,3.313,3.235,3.118,2.998,2.922,2.822,2.776,2.728,2.678,2.638,2.605,2.588],[34.594276,34.594276,34.593277,34.59428,34.594265,34.594273,34.594273,34.595276,34.594276,34.594276,34.594276,34.594269,34.594269,34.593273,34.59428,34.594276,34.593269,34.594276,34.593277,34.594269,34.593269,34.594276,34.594269,34.594276,34.594276,34.594273,34.594269,34.594269,34.594269,34.594273,34.594273,34.593269,34.594276,34.594276,34.594276,34.594269,34.59428,34.594269,34.59528,34.621277,34.628254,34.613266,34.584282,34.534325,34.497364,34.484371,34.444393,34.427422,34.396461,34.372478,34.347496,34.324516,34.320538,34.321518,34.324535,34.338547,34.378517,34.395508,34.413498,34.437481,34.453461,34.479454,34.502445,34.52243,34.531437,34.556412,34.578407,34.597404,34.613384,34.62838,34.642365]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_343","geolocation":{"type":"Point","coordinates":[132.515,-47.844]},"basin":3,"timestamp":"2019-07-06T02:13:38.000Z","date_updated_argovis":"2023-01-26T10:49:09.694Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_343.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":343,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.4,19.6,30.4,40.200001,50,60.400002,70.200005,80.300003,89.700005,100.400002,109.800003,119.900002,129.799988,140.299988,150,160,169.5,179.699997,190,199.399994,210,219.399994,228.299988,240.299988,250.5,260.199982,270.299988,279.799988,289.799988,299.899994,309.899994,319.899994,330.199982,340,349.799988,359.899994,380,399.5,449.899994,500.299988,550.200012,600.200012,649,700.300049,750.300049,799.900024,850.100037,900,950,999.800049,1050.099976,1100.300049,1150.300049,1200.300049,1250,1300.300049,1349.599976,1399.099976,1449.800049,1499.599976,1549.5,1599.800049,1649.599976,1699.400024,1748.599976,1800,1849.800049,1899.5,1950,2000.599976],[9.046,9.047,9.046,9.047,9.047,9.048,9.05,9.05,9.051,9.051,9.052,9.053,9.054,9.054,9.055,9.059,9.06,9.058,9.06,9.061,9.06,9.059,9.061,9.057,9.056,9.058,9.059,9.059,9.061,9.061,9.063,9.065,9.069,9.086,9.087,9.097,9.098,9.127,9.166,9.106,9.094,9.046,8.848,8.618,8.127,7.879,7.511,7.097,6.447,5.933,5.481,4.943,4.635,4.425,4.126,3.863,3.698,3.575,3.46,3.331,3.203,3.083,2.97,2.873,2.811,2.762,2.714,2.658,2.624,2.583,2.55],[34.590675,34.589684,34.590675,34.591675,34.590668,34.590675,34.590675,34.590691,34.590668,34.590675,34.590683,34.590675,34.590687,34.590672,34.590679,34.590672,34.590672,34.590672,34.58968,34.589668,34.58968,34.588669,34.589676,34.588676,34.588676,34.589668,34.58968,34.590672,34.590672,34.591671,34.591663,34.592674,34.593681,34.596668,34.596684,34.598663,34.598671,34.608658,34.621647,34.621655,34.629658,34.624657,34.59568,34.562698,34.495747,34.487759,34.469776,34.445808,34.394871,34.369877,34.354893,34.322926,34.320919,34.323933,34.33194,34.346928,34.365917,34.389915,34.411896,34.434898,34.457878,34.485855,34.50386,34.516853,34.536823,34.558819,34.582802,34.60479,34.61779,34.63377,34.647766]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_342","geolocation":{"type":"Point","coordinates":[132.805,-47.77]},"basin":3,"timestamp":"2019-06-25T22:50:53.002Z","date_updated_argovis":"2023-01-26T10:49:07.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_342.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":342,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,11.099999,20.200001,30,40.700001,50.200001,60.5,70.099998,80,90.799995,100.5,109.899994,120,130.199997,139.899994,150.599991,160.5,169.800003,180.199997,190.5,198.800003,210.800003,220.199997,230.199997,240.199997,250.699997,260.5,270.700012,280.600006,290.700012,300.100006,310.100006,320.200012,330.600006,340.300018,350.100006,360,380.200012,399.800018,450.5,500.100006,549.900024,600.100037,647,700.200012,750.200012,800.100037,850.200012,900.299988,950,1000.100037,1050.599976,1100.5,1149.799927,1200.099976,1250.699951,1300,1350.599976,1397.699951,1450.099976,1500.599976,1550.799927,1600.5,1650.099976,1700,1750.299927,1800.599976,1850.099976,1899.699951,1949.799927],[9.145,9.143,9.143,9.145,9.149,9.148,9.148,9.143,9.14,9.122,9.111,9.098,9.097,9.092,9.093,9.095,9.095,9.094,9.096,9.095,9.096,9.098,9.098,9.102,9.109,9.123,9.127,9.128,9.128,9.13,9.138,9.153,9.196,9.213,9.249,9.296,9.297,9.218,9.177,9.131,9.094,9.013,8.801,8.477,8.097,7.787,7.468,6.994,6.382,5.873,5.443,4.898,4.576,4.32,4.071,3.856,3.644,3.504,3.381,3.226,3.137,3.005,2.908,2.862,2.812,2.753,2.702,2.647,2.606,2.58],[34.592796,34.592789,34.592808,34.592789,34.592789,34.592789,34.591797,34.590786,34.592785,34.588795,34.587799,34.5868,34.586792,34.585812,34.586807,34.5868,34.585789,34.5868,34.585781,34.585796,34.585796,34.5868,34.586784,34.5868,34.588799,34.591793,34.592796,34.592789,34.591793,34.592804,34.593784,34.598793,34.610786,34.614792,34.626755,34.641769,34.643761,34.628784,34.623764,34.620777,34.62677,34.618774,34.589794,34.542835,34.498871,34.479877,34.459911,34.440918,34.39098,34.366985,34.345005,34.32304,34.317043,34.32304,34.334042,34.349052,34.366035,34.381031,34.401009,34.426003,34.44899,34.474979,34.494965,34.517956,34.544933,34.563931,34.586918,34.60891,34.625893,34.633888]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_341","geolocation":{"type":"Point","coordinates":[132.984,-47.726]},"basin":3,"timestamp":"2019-06-15T18:19:04.001Z","date_updated_argovis":"2023-01-26T10:49:06.090Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_341.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":341,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,10.3,20.1,30.900002,40.5,50.700001,60.600002,70.099998,80.099998,90.699997,100,110.5,120.199997,129.899994,140,150,160.199997,170.699997,179.899994,190.300003,199.899994,209.800003,220.5,230.5,240.399994,250.599991,260.100006,270.800018,280.5,290.200012,300.800018,310.800018,320.100006,329.900024,340.300018,350.600006,360.200012,380.5,400.5,450.700012,500,550.700012,600.5,650.600037,700.100037,750.100037,800.299988,850.100037,900.700012,950.5,1000.100037,1050.299927,1100.199951,1150.199951,1200.5,1250.699951,1300.299927,1350.599976,1400.399902,1450,1500.5,1550.199951,1600.5,1650.5,1700,1750.099976,1799.899902,1850,1899.899902,1950.299927,1999.799927],[9.107,9.108,9.109,9.11,9.112,9.113,9.113,9.115,9.115,9.109,9.112,9.106,9.106,9.108,9.107,9.108,9.109,9.11,9.111,9.112,9.113,9.115,9.116,9.117,9.118,9.12,9.121,9.122,9.124,9.126,9.13,9.143,9.144,9.158,9.176,9.187,9.192,9.266,9.278,9.212,9.165,9.035,8.891,8.671,8.28,7.832,7.47,6.941,6.429,6.033,5.585,5.042,4.606,4.277,4.107,3.904,3.674,3.547,3.435,3.308,3.178,3.05,2.968,2.886,2.812,2.753,2.706,2.663,2.613,2.58,2.547],[34.586056,34.586052,34.586056,34.586056,34.586067,34.586052,34.586052,34.586048,34.586052,34.587051,34.586063,34.587051,34.587044,34.587063,34.587059,34.587063,34.587051,34.587051,34.587059,34.587059,34.587055,34.587048,34.587059,34.587067,34.587048,34.587055,34.58707,34.587067,34.588062,34.588047,34.589058,34.592056,34.592049,34.595043,34.599041,34.603039,34.610035,34.62904,34.635021,34.632027,34.637024,34.621044,34.603054,34.572067,34.524113,34.478146,34.46117,34.422199,34.395245,34.37624,34.352264,34.325294,34.316303,34.317303,34.343304,34.358303,34.364296,34.384289,34.416271,34.438251,34.461239,34.483238,34.506226,34.526207,34.549191,34.568176,34.586174,34.603168,34.622154,34.634132,34.647148]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_340","geolocation":{"type":"Point","coordinates":[133.056,-47.761]},"basin":3,"timestamp":"2019-06-05T14:01:15.001Z","date_updated_argovis":"2023-01-26T10:49:04.289Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_340.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":340,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.299999,19,30.6,40.5,49.800003,60.100002,70,80.300003,90.200005,100.300003,109.800003,120.200005,129.799988,140.099991,150.299988,160,169.599991,180.199997,190.199997,200.099991,210,220.199997,229.899994,239.5,248.5,260.5,270.100006,280.399994,290.199982,300.299988,310.299988,320.100006,330.199982,340.299988,349.899994,360,379.5,400.199982,447.600006,500.100006,550.100037,600.300049,649.5,699.400024,750.200012,799.700012,849.800049,897.200012,950.200012,999.900024,1049.700073,1100.5,1149.700073,1199.700073,1248.099976,1300.400024,1350.099976,1400,1450.400024,1500.200073,1549.700073,1600,1650,1699.900024,1749.5,1800.099976,1850.200073,1899.599976,1950,1999.599976],[9.207,9.208,9.207,9.209,9.207,9.192,9.193,9.187,9.185,9.184,9.174,9.169,9.125,9.117,9.092,9.094,9.084,9.073,9.084,9.106,9.15,9.174,9.179,9.214,9.355,9.349,9.436,9.306,9.286,9.249,9.239,9.205,9.18,9.162,9.145,9.114,9.108,9.11,9.124,9.13,9.094,8.925,8.845,8.451,8.164,7.849,7.409,6.915,6.499,6.017,5.415,4.949,4.585,4.221,4.011,3.835,3.705,3.516,3.422,3.287,3.175,3.064,2.96,2.874,2.814,2.747,2.698,2.647,2.6,2.563,2.528],[34.579464,34.578457,34.579456,34.579468,34.578461,34.578457,34.577454,34.576462,34.576454,34.576473,34.574474,34.573471,34.566463,34.564465,34.561474,34.561493,34.562466,34.560478,34.564465,34.570473,34.582455,34.588455,34.592453,34.600456,34.634434,34.637424,null,34.636417,34.635418,34.63142,34.630428,34.625423,34.62244,34.620441,34.618427,34.614437,34.615429,34.617439,34.623444,34.633438,34.635429,34.608448,34.598469,34.540504,34.510513,34.478558,34.461563,34.435589,34.413605,34.385639,34.347675,34.326706,34.320717,34.318718,34.330711,34.347698,34.382687,34.393681,34.423664,34.441666,34.461639,34.482632,34.507633,34.529606,34.548599,34.571602,34.589584,34.608574,34.625549,34.639545,34.654549]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_339","geolocation":{"type":"Point","coordinates":[133.187,-47.775]},"basin":3,"timestamp":"2019-05-26T10:54:22.001Z","date_updated_argovis":"2023-01-26T10:49:02.485Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_339.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":339,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.2,20.200001,30.5,40.200001,50.400002,59.900002,70.699997,80.5,90.799995,100.699997,110.599998,120.199997,130.599991,140.399994,150.699997,160.099991,170,179.899994,190.099991,200.599991,210.099991,220.5,230.800003,240.800003,250.800003,260.5,270.600006,280.100006,290.400024,300.100006,310.100006,320.100006,330.200012,340.700012,350.100006,360.5,380.200012,400.300018,450.5,500.400024,550.400024,600.200012,650,700.5,750.299988,800.5,850.400024,900.5,950.299988,1000.299988,1047.099976,1100.5,1150.599976,1200.199951,1250.199951,1300.299927,1350.599976,1400.599976,1450.5,1500.099976,1548.799927,1600.599976,1650.599976,1700.699951,1750.599976,1800.299927,1850.5,1900.099976,1950],[9.365,9.367,9.37,9.37,9.37,9.37,9.366,9.365,9.364,9.338,9.262,9.162,9.14,9.125,9.104,9.097,9.101,9.104,9.106,9.109,9.111,9.114,9.119,9.121,9.124,9.126,9.148,9.246,9.286,9.263,9.238,9.198,9.206,9.148,9.146,9.121,9.122,9.175,9.111,9.169,9.051,8.879,8.723,8.326,8.01,7.75,7.318,6.892,6.336,5.901,5.394,4.997,4.554,4.215,4.013,3.813,3.662,3.605,3.426,3.264,3.156,3.047,2.955,2.868,2.791,2.725,2.681,2.646,2.605,2.572],[34.579597,34.579582,34.579575,34.579582,34.580574,34.579582,34.579582,34.579578,34.578575,34.576572,34.570583,34.565582,34.565598,34.56358,34.562595,34.561588,34.562592,34.56358,34.564594,34.56461,34.564594,34.565594,34.565594,34.566601,34.566601,34.567593,34.572594,34.610558,34.629562,34.629543,34.626556,34.621552,34.623558,34.616562,34.616562,34.61356,34.614563,34.627548,34.617577,34.640549,34.627571,34.603565,34.580601,34.518639,34.49165,34.479664,34.459686,34.436707,34.403732,34.382755,34.347786,34.325806,34.313816,34.31583,34.337814,34.358807,34.377796,34.405788,34.426762,34.442768,34.464752,34.489731,34.509735,34.53471,34.556709,34.579697,34.594681,34.608681,34.626671,34.640667]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_338","geolocation":{"type":"Point","coordinates":[133.433,-47.775]},"basin":3,"timestamp":"2019-05-16T06:22:32.000Z","date_updated_argovis":"2023-01-26T10:49:00.605Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_338.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":338,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,20.1,30,40.5,50.100002,60.799999,70.699997,80.5,90.399994,100.299995,110.399994,120.699997,130.099991,139.699997,150.599991,160.599991,169.800003,180.5,190.199997,200,210.399994,219.599991,230.599991,240.300003,250.399994,260.100006,270.200012,280.200012,290.800018,300.600006,310.600006,320.300018,330.100006,340.300018,350.5,360.200012,379.900024,400.5,450.400024,500.5,549.900024,600.299988,650,698.799988,750.299988,799.700012,850.400024,900.700012,950.100037,1000.400024,1050.599976,1100.299927,1150.399902,1200.099976,1250.099976,1299.899902,1350.399902,1400.099976,1450.5,1500.599976,1550.099976,1600.599976,1649.799927,1697.199951,1750.399902,1800.199951,1849.899902,1899.899902,1949.699951,2000.399902],[9.438,9.442,9.445,9.434,9.424,9.429,9.396,9.376,9.341,9.326,9.321,9.32,9.312,9.312,9.306,9.294,9.293,9.295,9.323,9.328,9.352,9.393,9.365,9.272,9.245,9.223,9.209,9.182,9.163,9.16,9.151,9.141,9.124,9.143,9.12,9.104,9.112,9.1,9.084,9.136,9.029,8.843,8.587,8.289,8.035,7.713,7.326,6.972,6.399,5.814,5.444,4.885,4.569,4.206,4.094,3.863,3.696,3.575,3.437,3.249,3.142,3.062,2.96,2.858,2.797,2.741,2.69,2.639,2.593,2.563,2.538],[34.575848,34.574837,34.574848,34.574821,34.576843,34.574841,34.571838,34.573833,34.573845,34.573837,34.572838,34.573849,34.572849,34.573841,34.575859,34.577843,34.577839,34.581841,34.592834,34.598827,34.61282,34.636799,34.637817,34.627811,34.627811,34.625816,34.623821,34.620811,34.617828,34.617825,34.616821,34.615829,34.613823,34.619816,34.614819,34.61282,34.614819,34.615818,34.613823,34.633793,34.619801,34.592827,34.552864,34.513874,34.489902,34.476921,34.450947,34.43396,34.399994,34.363022,34.347054,34.315071,34.317074,34.317074,34.346062,34.366047,34.387051,34.412041,34.428028,34.440029,34.464024,34.483982,34.508999,34.531986,34.549965,34.571972,34.592945,34.610939,34.628929,34.643925,34.655899]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_337","geolocation":{"type":"Point","coordinates":[133.66,-47.703]},"basin":3,"timestamp":"2019-05-06T02:52:19.000Z","date_updated_argovis":"2023-01-26T10:48:58.885Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_337.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":337,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.7,20,30.400002,40.299999,50.700001,58.200001,70.5,80.5,90.5,100.5,110.399994,120,130.099991,140.399994,150.5,160.199997,170,180.599991,190.5,200.5,209.899994,220.300003,229.5,240.5,250.399994,260.5,270.300018,280.300018,290.100006,300,310.200012,320,330,340,350.600006,360.200012,380.100006,399.700012,450.400024,500.600006,550.700012,600.600037,650.700012,700.100037,750.600037,800.299988,850.400024,900.400024,950.100037,999.799988,1050.399902,1100.099976,1150.399902,1199.799927,1250.699951,1300.199951,1350.299927,1400.199951,1450.299927,1500.299927,1548.599976,1600.399902,1649.899902,1699.899902,1749.899902,1800.699951,1850,1899.899902,1949.5],[9.922,9.921,9.93,9.912,9.912,9.896,9.894,9.894,9.838,9.808,9.773,9.723,9.716,9.707,9.692,9.492,9.445,9.386,9.346,9.347,9.333,9.328,9.339,9.357,9.315,9.256,9.203,9.178,9.147,9.132,9.147,9.159,9.156,9.135,9.119,9.106,9.092,9.069,9.093,9.092,9.017,8.816,8.497,8.202,7.861,7.546,7.025,6.569,6.112,5.615,5.146,4.711,4.384,4.112,3.847,3.653,3.549,3.379,3.273,3.163,3.07,2.987,2.915,2.846,2.784,2.722,2.668,2.633,2.592,2.559],[34.580078,34.580086,34.579082,34.580082,34.57909,34.580093,34.580093,34.580105,34.581097,34.580093,34.581085,34.579098,34.578091,34.578083,34.582085,34.619076,34.637062,34.631062,34.627064,34.62907,34.628075,34.628078,34.632061,34.638058,34.632065,34.624084,34.615086,34.613075,34.610088,34.610085,34.615078,34.619083,34.620068,34.617081,34.615086,34.615078,34.612076,34.611099,34.620087,34.629086,34.622082,34.592098,34.548145,34.516171,34.481182,34.471199,34.434219,34.408249,34.381275,34.352299,34.335304,34.324326,34.32135,34.322334,34.33033,34.343327,34.36932,34.398304,34.424294,34.44928,34.477261,34.502243,34.522247,34.539238,34.559223,34.579208,34.600189,34.614174,34.630196,34.645168]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_336","geolocation":{"type":"Point","coordinates":[133.92,-47.68]},"basin":3,"timestamp":"2019-04-25T22:55:02.002Z","date_updated_argovis":"2023-01-26T10:48:57.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_336.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":336,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,8.2,19.9,30,40.5,49.5,59.800003,70.099998,79.700005,90.099998,99.900002,110.200005,120.099998,129.899994,139.899994,150.299988,160.299988,169.5,180,190,200.199997,209.599991,220.199997,230.399994,240.399994,250.399994,260.399994,270,280.199982,290.100006,299.899994,309.899994,320.199982,330,339.799988,350,359.799988,379.600006,400.199982,450.100006,500.299988,549.700012,600.300049,648,700.300049,750,799.800049,846.800049,900.5,950,1000,1050,1100.400024,1149.900024,1199.400024,1249.900024,1299.700073,1350.099976,1400,1449.900024,1500.099976,1549.900024,1600.400024,1650,1699.800049,1750.5,1799.800049,1850.099976,1899.700073,1949.599976],[9.627,9.639,9.646,9.629,9.627,9.642,9.637,9.636,9.637,9.64,9.634,9.631,9.625,9.604,9.556,9.5,9.518,9.509,9.429,9.373,9.312,9.276,9.235,9.193,9.164,9.161,9.118,9.118,9.131,9.102,9.096,9.084,9.082,9.07,9.063,9.057,9.046,9.028,9.046,9.017,8.895,8.769,8.392,8.143,7.66,7.419,7.063,6.686,6.106,5.609,5.2,4.635,4.426,4.095,3.869,3.575,3.499,3.395,3.281,3.146,3.065,3,2.905,2.865,2.784,2.717,2.677,2.642,2.601,2.562],[34.575493,34.575497,34.576488,34.575493,34.575493,34.575489,34.574505,34.574497,34.574505,34.574505,34.574497,34.577496,34.577496,34.5765,34.582481,34.61348,34.65744,34.660458,34.64946,34.640472,34.633472,34.628471,34.624489,34.618488,34.615479,34.616467,34.610477,34.610477,34.614475,34.611473,34.609482,34.609486,34.609493,34.608479,34.607491,34.606476,34.60648,34.605495,34.616482,34.618477,34.600483,34.582516,34.526539,34.500549,34.451599,34.446613,34.436615,34.415638,34.376667,34.351685,34.333706,34.303753,34.324741,34.322739,34.337734,34.336754,34.363724,34.396717,34.424698,34.441673,34.462688,34.485661,34.51265,34.533634,34.557613,34.577621,34.597607,34.611603,34.628578,34.645592]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_335","geolocation":{"type":"Point","coordinates":[133.946,-47.794]},"basin":3,"timestamp":"2019-04-15T18:50:16.002Z","date_updated_argovis":"2023-01-26T10:48:55.201Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_335.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":335,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.3,20.199999,30.4,40.599998,50.299999,59.700001,70.200005,79.300003,90.200005,101,110.600006,120.800003,130.400009,140.300003,150.600006,160.600006,170,180,190,200,210.400009,220.600006,230.800003,240.900009,250.600006,260.699982,270.5,280.5,290.299988,300.099976,310.5,320.299988,330.099976,340.199982,350.699982,360.299988,380.099976,400.599976,450.5,500.5,550.599976,600.399963,650.299988,700.799988,750.700012,800.599976,850.200012,900.399963,950.799988,1000.200012,1050.400024,1100.200073,1150.200073,1200.600098,1250.200073,1299.900024,1350.100098,1400.400024,1450.600098,1500,1550.600098,1600.400024,1650.400024,1696.600098,1750.400024,1800.100098,1850.600098,1900.700073,1947.800049],[9.405,9.407,9.407,9.409,9.407,9.401,9.399,9.389,9.385,9.372,9.371,9.372,9.365,9.357,9.325,9.324,9.337,9.493,9.551,9.563,9.456,9.448,9.415,9.413,9.375,9.371,9.355,9.319,9.29,9.235,9.218,9.188,9.163,9.151,9.13,9.131,9.099,9.047,9.04,8.862,8.672,8.609,8.307,8.052,7.94,7.443,7.138,6.769,6.219,5.661,5.164,4.685,4.481,4.164,3.915,3.671,3.555,3.408,3.281,3.185,3.041,2.907,2.882,2.829,2.761,2.706,2.668,2.634,2.609,2.574],[34.551586,34.547577,34.551582,34.551582,34.550583,34.549583,34.549576,34.548595,34.547592,34.546585,34.547588,34.549583,34.550591,34.548599,34.543594,34.544575,34.550606,34.605572,34.660522,34.669521,34.654518,34.65453,34.653526,34.654526,34.649525,34.651543,34.649521,34.644531,34.643528,34.63155,34.628555,34.624546,34.62056,34.619556,34.616562,34.618553,34.612564,34.606564,34.60957,34.582565,34.556595,34.559586,34.514626,34.482647,34.489655,34.447674,34.440701,34.425701,34.387737,34.353745,34.318783,34.2948,34.32679,34.325798,34.338806,34.35479,34.366787,34.385769,34.410763,34.431751,34.456745,34.484718,34.507713,34.5317,34.55769,34.581673,34.597675,34.612671,34.625668,34.642651]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_334","geolocation":{"type":"Point","coordinates":[133.756,-48.018]},"basin":3,"timestamp":"2019-04-05T14:52:59.001Z","date_updated_argovis":"2023-01-26T10:48:53.396Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_334.nc","date_updated":"2020-11-12T10:21:15.000Z"}],"cycle_number":334,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,20.300001,30.400002,38,50.299999,59.5,70.5,80.399994,90.5,100.099998,110.599998,120.699997,130,140,149.800003,159.899994,169.899994,180.5,190.099991,198.699997,210.199997,220.599991,230.399994,240.800003,250.399994,260.600006,270.5,280.5,290.200012,299.900024,309.900024,320.300018,329.900024,340.600006,349.900024,360.100006,380.5,399.400024,450.5,500.200012,550.100037,600.600037,650.5,700.400024,750.600037,800.200012,850.5,900.299988,950.600037,999.600037,1050.799927,1100.299927,1150.399902,1198.199951,1250.599976,1300.199951,1350.299927,1400.599976,1450,1500.199951,1550.5,1600.599976,1650.599976,1700.599976,1750.5,1800.299927,1850.5,1900.399902,1950],[9.556,9.557,9.559,9.56,9.563,9.565,9.565,9.551,9.552,9.551,9.55,9.547,9.545,9.577,9.572,9.57,9.544,9.506,9.475,9.435,9.41,9.419,9.44,9.413,9.372,9.344,9.331,9.3,9.265,9.24,9.207,9.193,9.183,9.175,9.17,9.164,9.165,9.122,9.143,9.137,9.016,8.93,8.705,8.405,8.079,7.637,7.371,6.909,6.308,5.826,5.152,4.822,4.567,4.29,3.991,3.749,3.577,3.464,3.312,3.231,3.095,3.008,2.879,2.843,2.786,2.738,2.696,2.654,2.618,2.579],[34.554878,34.554878,34.555893,34.554874,34.55389,34.55489,34.55489,34.555882,34.555897,34.554893,34.554893,34.553898,34.555893,34.581875,34.642845,34.656822,34.664814,34.659843,34.657829,34.651844,34.650845,34.65583,34.662823,34.657837,34.651833,34.648842,34.646851,34.641846,34.636852,34.631866,34.628849,34.626854,34.625854,34.624859,34.624866,34.624859,34.628853,34.623863,34.630859,34.641861,34.623875,34.613869,34.576893,34.528931,34.50293,34.461975,34.464966,34.433002,34.390018,34.36306,34.311096,34.310085,34.322102,34.331104,34.326099,34.338093,34.359093,34.384087,34.403072,34.422066,34.449047,34.473034,34.491028,34.518013,34.54401,34.563999,34.58498,34.602982,34.621967,34.637959]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_333","geolocation":{"type":"Point","coordinates":[133.658,-47.927]},"basin":3,"timestamp":"2019-03-26T10:50:06.001Z","date_updated_argovis":"2023-01-26T10:48:51.584Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_333.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":333,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.5,20.5,30.4,40.099998,50.099998,60.400002,69.900002,79.699997,90.5,100.300003,109.900002,119.900002,129.899994,140,150.100006,159.399994,170.199997,180.100006,188.199997,200.100006,209.899994,220.300003,230.100006,240.100006,249.899994,259.899994,270.299988,279.700012,290.399994,300.5,309.700012,319.899994,330.299988,340.200012,349.899994,359.700012,379.899994,400.600006,450.299988,500.5,550.5,600.099976,650.400024,700,749.799988,799.599976,850.400024,900.200012,949.799988,999.599976,1050.099976,1100.199951,1150.099976,1199.699951,1249.800049,1300.199951,1350.400024,1399.800049,1450.199951,1500.099976,1550.5,1600,1650,1700.199951,1750.099976,1799.800049,1849.5,1900.199951,1948.900024],[9.856,9.856,9.858,9.859,9.859,9.861,9.858,9.855,9.855,9.856,9.857,9.859,9.857,9.858,9.857,9.825,9.735,9.578,9.541,9.564,9.657,9.656,9.641,9.625,9.588,9.548,9.488,9.455,9.42,9.387,9.369,9.316,9.256,9.235,9.219,9.207,9.176,9.164,9.142,9.091,9.031,8.953,8.827,8.369,8.049,7.795,7.287,6.701,6.125,5.578,5.098,5.042,4.487,4.113,3.879,3.738,3.57,3.435,3.281,3.184,3.094,2.986,2.895,2.829,2.76,2.706,2.665,2.63,2.595,2.569],[34.591225,34.591221,34.591213,34.591225,34.591217,34.591221,34.590221,34.591217,34.590218,34.591217,34.591213,34.591213,34.591225,34.591221,34.591213,34.593216,34.600216,34.626217,34.6362,34.652191,34.684166,34.692165,34.689171,34.689175,34.684166,34.677181,34.669186,34.664188,34.659191,34.656197,34.652191,34.644199,34.635204,34.63221,34.630207,34.628208,34.624226,34.623207,34.620213,34.619225,34.616211,34.610218,34.594234,34.520279,34.488297,34.478294,34.450333,34.414364,34.378395,34.333424,34.304459,34.34444,34.314461,34.315472,34.325462,34.356445,34.377453,34.397434,34.416439,34.441402,34.462406,34.486401,34.504387,34.528366,34.555355,34.578346,34.599339,34.615322,34.631325,34.644302]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_332","geolocation":{"type":"Point","coordinates":[133.662,-47.512]},"basin":3,"timestamp":"2019-03-16T06:49:05.000Z","date_updated_argovis":"2023-01-26T10:48:49.798Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_332.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":332,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.7,20.299999,30.5,40.099998,50.200001,60.299999,70.400002,80.599998,90.099998,99.900002,110,120,130.300003,140.100006,150.300003,159.699997,170.399994,180.399994,190.100006,200.399994,210.199997,220.199997,230.199997,239.899994,250.300003,260.299988,269.799988,280.100006,289.899994,300.200012,309.700012,320.200012,330.100006,340.100006,348.200012,360.299988,380.299988,400.5,449.799988,499.700012,550.099976,599.700012,650.400024,700,750.400024,799.900024,850.299988,900.200012,949.700012,1000,1050.199951,1100.199951,1150.199951,1200.099976,1249.800049,1299.800049,1350.300049,1400,1449.699951,1500.099976,1550.5,1600.5,1649.699951,1700.400024,1750.300049,1799.900024,1849.800049,1900.199951,1948.199951],[9.95,9.951,9.947,9.935,9.927,9.925,9.922,9.914,9.907,9.903,9.886,9.882,9.87,9.851,9.804,9.702,9.622,9.576,9.645,9.625,9.613,9.599,9.606,9.6,9.532,9.517,9.483,9.442,9.396,9.362,9.322,9.298,9.276,9.254,9.235,9.217,9.2,9.198,9.197,9.118,9.115,8.919,8.593,8.185,7.954,7.741,7.137,6.638,6.037,5.299,5.235,4.846,4.458,4.105,3.872,3.581,3.525,3.362,3.224,3.069,3.001,2.929,2.855,2.817,2.762,2.708,2.669,2.621,2.579,2.543],[34.596478,34.596451,34.59547,34.597469,34.597469,34.596489,34.596481,34.59647,34.597469,34.596474,34.596493,34.59647,34.59647,34.596485,34.600479,34.609467,34.617474,34.626461,34.668438,34.676437,34.680424,34.68243,34.686428,34.68642,34.679432,34.679451,34.672432,34.667439,34.659454,34.653454,34.645454,34.643459,34.639458,34.63546,34.632469,34.630466,34.628468,34.630459,34.629463,34.623482,34.633465,34.607487,34.559521,34.502544,34.491566,34.486572,34.437603,34.411633,34.37067,34.31171,34.352676,34.331688,34.319698,34.317722,34.330734,34.33572,34.366711,34.398701,34.427673,34.435673,34.465656,34.489658,34.512634,34.543633,34.561615,34.576614,34.600582,34.621582,34.635574,34.649578]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_331","geolocation":{"type":"Point","coordinates":[132.309,-47.268]},"basin":3,"timestamp":"2019-03-06T02:42:27.000Z","date_updated_argovis":"2023-01-26T10:48:47.911Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_331.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":331,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.4,19.800001,30.400002,40.799999,50.100002,60.200001,70.699997,80.599998,90.599998,100.099998,110.5,120.399994,130.5,140.5,150.599991,160.199997,170.199997,180,190.699997,200.300003,210.699997,220.300003,230.399994,240.099991,250.099991,260.300018,270.5,280.5,290,300.300018,309.900024,320.200012,330.700012,340.5,350.5,358.5,380.5,400.400024,450.300018,500,550.299988,599.700012,650.299988,700.700012,749.799988,800.100037,850.299988,900.100037,950.100037,999.400024,1050.5,1100.099976,1150.5,1200.399902,1250.199951,1300.099976,1350.399902,1400.5,1450.299927,1499.799927,1550.699951,1600.099976,1649.799927,1700.5,1750.299927,1800.299927,1849.899902,1899.399902,1949.899902],[9.844,9.844,9.84,9.829,9.828,9.827,9.828,9.831,9.832,9.831,9.783,9.678,9.637,9.602,9.541,9.536,9.567,9.609,9.595,9.593,9.572,9.568,9.556,9.528,9.496,9.456,9.418,9.408,9.383,9.343,9.315,9.3,9.253,9.234,9.213,9.204,9.188,9.159,9.136,9.076,9.009,8.792,8.387,8.108,7.903,7.455,7.02,6.515,5.775,5.221,4.753,4.646,4.311,4.027,3.833,3.68,3.427,3.35,3.219,3.13,3.053,2.948,2.871,2.818,2.741,2.713,2.667,2.632,2.594,2.564],[34.593647,34.593647,34.592644,34.59264,34.59264,34.594643,34.593651,34.593651,34.593639,34.59264,34.594635,34.601639,34.611622,34.622635,34.623642,34.634617,34.650612,34.666607,34.674603,34.677597,34.678608,34.680599,34.681602,34.680611,34.67561,34.670605,34.664608,34.664608,34.660622,34.652626,34.648621,34.64563,34.638634,34.634613,34.630638,34.629627,34.627644,34.623642,34.620636,34.616646,34.613659,34.581673,34.519711,34.484718,34.474731,34.455757,34.431782,34.403801,34.343838,34.306877,34.279896,34.314869,34.315872,34.316868,34.33987,34.345863,34.356857,34.394852,34.42284,34.448837,34.465816,34.48682,34.512798,34.5378,34.553772,34.577763,34.597752,34.615738,34.634739,34.650723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_330","geolocation":{"type":"Point","coordinates":[132.774,-48.276]},"basin":3,"timestamp":"2019-02-23T22:42:21.002Z","date_updated_argovis":"2023-01-26T10:48:46.098Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_330.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":330,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.1,19.200001,29.700001,37.700001,50.299999,60.299999,70.5,79.800003,90.400002,100.5,110,119.900002,130.300003,140,149.899994,159.600006,169.800003,180.399994,190,200.300003,210.300003,220.5,230.199997,240.300003,250.5,260.299988,270.100006,280.299988,289.899994,300.5,310.299988,319.600006,330,339.600006,350.399994,360.399994,380,400.399994,450.200012,500.100006,550.099976,599.799988,650,700,749.5,800.200012,850.400024,900.299988,949.599976,999.5,1050.400024,1099.599976,1150.099976,1200.300049,1250.400024,1300.199951,1350.300049,1400.300049,1449.599976,1500.300049,1550.400024,1600.199951,1649.599976,1700.5,1750.300049,1800.400024,1850.199951,1900,1949.800049],[9.63,9.632,9.627,9.635,9.637,9.614,9.605,9.579,9.575,9.575,9.565,9.556,9.493,9.485,9.535,9.547,9.693,9.658,9.64,9.604,9.536,9.526,9.511,9.47,9.441,9.378,9.353,9.248,9.199,9.153,9.127,9.137,9.161,9.193,9.194,9.137,9.176,9.149,9.125,9.052,8.84,8.406,7.709,7.723,7.427,7.018,6.419,6.109,5.337,4.878,4.623,4.506,4.132,3.861,3.667,3.431,3.3,3.212,3.178,3.077,2.995,2.882,2.824,2.749,2.713,2.683,2.64,2.608,2.579,2.545],[34.541016,34.542027,34.540039,34.541019,34.54203,34.53904,34.538044,34.539024,34.540024,34.541019,34.539009,34.538036,34.533024,34.569012,34.600002,34.651955,34.693951,34.693939,34.692951,34.686954,34.674969,34.675953,34.673962,34.670956,34.664959,34.652969,34.644978,34.627983,34.619991,34.611988,34.60899,34.613003,34.620003,34.626995,34.628975,34.620995,34.628986,34.627998,34.625988,34.622002,34.593006,34.524059,34.412117,34.453102,34.457104,34.428127,34.377159,34.375164,34.307224,34.282246,34.308231,34.322231,34.317223,34.324238,34.346222,34.358231,34.385216,34.413204,34.447193,34.471165,34.492161,34.507153,34.538143,34.553127,34.575142,34.591114,34.6101,34.625114,34.639088,34.654076]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_329","geolocation":{"type":"Point","coordinates":[131.885,-49.366]},"basin":3,"timestamp":"2019-02-13T18:37:36.001Z","date_updated_argovis":"2023-01-26T10:48:44.280Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_329.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":329,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.3,20.5,30.300001,39.700001,50.700001,59.400002,70.5,80.5,90.099998,99.899994,110.599998,119.699997,130,140.699997,149.800003,160.5,170.199997,179.099991,190.300003,200.699997,210.300003,220.199997,230.199997,240.699997,250.399994,260.5,269.900024,280.5,289.600006,300.100006,310.600006,320.300018,330.5,340.400024,350.400024,359.800018,380.300018,400.200012,450.100006,500.400024,550.100037,600,650.600037,699.700012,750.5,800.5,850.700012,899.799988,949.900024,1000.5,1050.699951,1100.599976,1149.799927,1200.399902,1250.699951,1300.599976,1350,1400.099976,1450,1500.199951,1550.099976,1600.199951,1648.599976,1700.099976,1750.099976,1800.399902,1849.799927,1900,1950.199951],[9.618,9.62,9.622,9.622,9.624,9.625,9.626,9.627,9.628,9.628,9.648,9.657,9.677,9.743,9.752,9.631,9.643,9.572,9.543,9.556,9.644,9.656,9.634,9.525,9.595,9.545,9.514,9.49,9.43,9.424,9.367,9.334,9.323,9.308,9.29,9.291,9.276,9.23,9.16,8.981,8.806,8.494,8.113,7.794,7.379,6.899,6.472,6.046,5.489,4.954,4.607,4.324,4.07,3.862,3.678,3.447,3.368,3.28,3.143,3.063,2.975,2.862,2.766,2.75,2.705,2.672,2.635,2.594,2.561,2.526],[34.558186,34.558186,34.558189,34.557194,34.55719,34.55619,34.557186,34.55719,34.55719,34.557175,34.566174,34.581177,34.634144,34.67112,34.68911,34.676125,34.68713,34.676128,34.673122,34.677135,34.702122,34.708107,34.701103,34.683113,34.698109,34.690113,34.685123,34.680126,34.671143,34.670132,34.660133,34.656136,34.65414,34.651142,34.642147,34.651134,34.649147,34.644135,34.635155,34.611176,34.588188,34.545216,34.504234,34.483257,34.455265,34.431293,34.403316,34.382332,34.351357,34.323364,34.319382,34.320393,34.319386,34.338379,34.36137,34.373379,34.401367,34.420357,34.439335,34.465343,34.488327,34.513302,34.534283,34.554295,34.580265,34.600273,34.614258,34.628258,34.645241,34.662235]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_328","geolocation":{"type":"Point","coordinates":[129.781,-49.526]},"basin":3,"timestamp":"2019-02-03T14:35:38.001Z","date_updated_argovis":"2023-01-26T10:48:42.485Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_328.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":328,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.799999,19.799999,30.199999,40,49.400002,60,70.300003,80.5,89.900002,99.599998,109.599998,120.200005,129.399994,139.799988,150.099991,160,169.799988,180,190.5,199.699997,209.799988,220.099991,230.099991,240.099991,250.199997,259.799988,269.600006,279.600006,289.899994,300.299988,309.899994,319.799988,329.699982,339.899994,350.100006,359.5,378.399994,400.5,450.199982,500,549.5,599.5,650.5,699.600037,750.200012,799.600037,850,900.100037,949.700012,997.300049,1050.099976,1099.700073,1150.200073,1199.900024,1249.700073,1300.400024,1350.200073,1399.800049,1450,1499.900024,1549.800049,1600.200073,1649.900024,1699.400024,1750,1800,1849.5,1900],[9.39,9.389,9.391,9.395,9.401,9.4,9.403,9.406,9.418,9.457,9.572,9.696,9.705,9.702,9.691,9.672,9.661,9.664,9.675,9.653,9.641,9.632,9.635,9.624,9.627,9.625,9.65,9.629,9.628,9.603,9.586,9.551,9.506,9.487,9.431,9.404,9.379,9.316,9.212,8.57,8.279,8.084,7.675,7.474,7.029,6.327,5.835,5.398,4.782,4.53,4.301,3.997,3.801,3.535,3.471,3.396,3.253,3.144,3.022,2.912,2.879,2.823,2.762,2.702,2.66,2.617,2.564,2.548,2.509],[34.518459,34.518444,34.516453,34.517437,34.517452,34.51844,34.515453,34.521442,34.528446,34.554432,34.614403,34.681355,34.692352,34.69635,34.694355,34.693348,34.692356,34.693356,34.696358,34.693359,34.694359,34.69236,34.693356,34.692364,34.695354,34.69437,34.702351,34.699356,34.701347,34.697353,34.695351,34.689358,34.683361,34.679367,34.670372,34.665382,34.661369,34.651379,34.632378,34.519466,34.49448,34.479485,34.452515,34.469498,34.446522,34.390575,34.36359,34.337616,34.290657,34.305641,34.332626,34.32864,34.339634,34.343636,34.378616,34.405605,34.424603,34.446587,34.469589,34.490574,34.50956,34.535549,34.554531,34.578537,34.596508,34.615509,34.62851,34.64851,34.660492]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_327","geolocation":{"type":"Point","coordinates":[128.282,-47.942]},"basin":3,"timestamp":"2019-01-24T10:40:13.001Z","date_updated_argovis":"2023-01-26T10:48:40.671Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_327.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":327,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.8,19.9,30,40.599998,50.599998,60.400002,70.5,80.199997,89.900002,100.400002,109.900002,119.800003,130.100006,139.899994,149.800003,159.699997,170.399994,180.100006,190.100006,200.399994,210.199997,219.800003,230.199997,240.199997,250.399994,259.899994,269.799988,279.700012,289.899994,300.200012,309.899994,320.299988,329.700012,340.5,350.100006,359.700012,379.799988,400.600006,449.899994,499.799988,549.599976,599.5,649.900024,699.900024,749.900024,799.5,850.299988,900.400024,949.599976,1000.400024,1050.5,1099.5,1150,1200.400024,1250,1300.300049,1350.199951,1400,1450.5,1500.199951,1550.199951,1600.199951,1649.699951,1699.699951,1750.099976,1800,1849.5,1899.300049],[9.258,9.242,9.241,9.235,9.24,9.238,9.238,9.246,9.249,9.28,9.358,9.615,9.703,9.738,9.728,9.702,9.687,9.714,9.726,9.749,9.775,9.787,9.754,9.729,9.724,9.723,9.723,9.72,9.735,9.731,9.721,9.735,9.706,9.692,9.641,9.637,9.599,9.514,9.461,9.246,8.84,8.583,8.315,8.029,7.695,7.318,6.303,5.959,5.354,4.785,4.615,4.322,4.113,3.846,3.688,3.493,3.353,3.292,3.08,2.995,2.953,2.879,2.834,2.774,2.737,2.674,2.638,2.593,2.563],[null,34.456421,34.457413,34.457417,34.457417,34.458416,34.458416,34.460415,34.466415,34.491398,34.551369,34.645313,34.682289,34.69529,34.695286,34.690292,34.690296,34.696281,34.700283,34.707283,34.713272,34.716263,34.711277,34.707272,34.707272,34.707279,34.712276,34.713268,34.717274,34.718273,34.718258,34.72327,34.718262,34.715275,34.707275,34.706276,34.701298,34.686279,34.675293,34.640327,34.577358,34.552357,34.52338,34.503414,34.504429,34.473442,34.377506,34.375511,34.336552,34.278584,34.315552,34.315563,34.329559,34.334572,34.348549,34.37056,34.38953,34.422527,34.432537,34.461521,34.490494,34.509514,34.531479,34.551464,34.572449,34.59745,34.617435,34.63443,34.649422]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_326","geolocation":{"type":"Point","coordinates":[125.72,-49.435]},"basin":3,"timestamp":"2019-01-14T06:43:52.000Z","date_updated_argovis":"2023-01-26T10:48:38.894Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_326.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":326,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.8,20.700001,30.6,40.400002,50.200001,60.299999,70.599998,80.399994,90.099998,99.799995,110.599998,119.699997,129.899994,140,149.699997,160.599991,170.5,180.300003,190.399994,200.800003,210.199997,220.399994,230.199997,240.599991,250.099991,260,270.100006,280.200012,290.5,300.300018,310,319.900024,330.100006,340.300018,349.5,360.600006,380.700012,400.100006,450.700012,500.700012,550.299988,600.200012,650.600037,700.299988,750.100037,799.700012,850.200012,900.700012,950.400024,1000.5,1050.599976,1100.5,1149,1200.299927,1250,1299.799927,1350.699951,1400.399902,1450.399902,1499.099976,1550.199951,1600.299927,1650.599976,1700.399902,1750,1800.399902,1850.599976,1900.099976],[9.293,9.293,9.295,9.299,9.3,9.302,9.313,9.327,9.375,9.835,9.984,10.009,10.011,10.011,9.983,9.978,9.939,9.901,9.843,9.826,9.753,9.738,9.721,9.688,9.671,9.682,9.705,9.672,9.662,9.651,9.62,9.511,9.474,9.437,9.331,9.246,9.164,9.214,9.061,8.754,8.42,8.217,7.741,7.337,6.826,6.271,5.696,5.298,4.477,4.452,4.187,3.954,3.726,3.703,3.449,3.318,3.196,3.092,2.964,2.891,2.831,2.784,2.747,2.713,2.66,2.626,2.591,2.549,2.511],[34.521263,34.522255,34.524265,34.525261,34.52626,34.525269,34.528259,34.536259,34.555244,34.699165,34.74115,34.755123,34.757141,34.756126,34.754124,34.75214,34.744152,34.737144,34.726151,34.722157,34.710159,34.707169,34.704163,34.698154,34.696182,34.699173,34.705173,34.701183,34.70118,34.700161,34.693172,34.677193,34.670189,34.663185,34.645203,34.631207,34.618217,34.639206,34.613216,34.566254,34.528282,34.530277,34.496296,34.469315,34.438358,34.394375,34.361404,34.343414,null,34.318459,34.329437,34.340435,34.342442,34.379429,34.383423,34.407417,34.4324,34.449394,34.468391,34.492386,34.519371,34.537361,34.563343,34.580334,34.601315,34.616322,34.634304,34.648315,34.662289]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_325","geolocation":{"type":"Point","coordinates":[124.551,-47.756]},"basin":3,"timestamp":"2019-01-04T02:40:59.000Z","date_updated_argovis":"2023-01-26T10:48:37.011Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_325.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":325,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.7,20.6,30.700001,40.299999,50.600002,60.400002,70.399994,80,90.399994,100.399994,110.199997,119.899994,129.899994,140.5,150.399994,160.199997,170.300003,180,189.199997,200.599991,210.599991,220.5,230.699997,240.300003,250.699997,260.5,270.400024,280.100006,290.600006,300.700012,310.300018,320,329.800018,340,350.100006,360.600006,380.200012,398.300018,450.400024,500,550.200012,600.5,650.5,700.5,749.799988,800.200012,850.299988,900.600037,950.600037,1000.299988,1050.599976,1100.099976,1147.799927,1200.599976,1250.299927,1299.699951,1350.699951,1400.199951,1450.199951,1500.599976,1550.399902,1600.399902,1650.399902,1700.799927,1750.299927,1800.199951,1850.599976,1900.299927],[9.508,9.508,9.504,9.49,9.498,9.501,9.492,9.489,9.487,9.475,9.473,9.466,9.444,9.296,9.11,9.251,9.204,9.2,9.081,8.924,8.841,8.856,8.834,8.853,8.897,8.941,8.874,8.784,8.652,8.564,8.543,8.475,8.437,8.391,8.451,8.754,8.704,8.73,8.474,8.034,7.808,7.74,6.41,6.583,6.289,5.683,5.439,4.889,4.61,4.411,4.266,4.045,3.777,3.555,3.48,3.297,3.126,3.1,2.995,2.93,2.886,2.828,2.713,2.709,2.678,2.636,2.592,2.562,2.526],[34.561218,34.561222,34.561218,34.561218,34.56023,34.561222,34.56023,34.560219,34.560223,34.560223,34.560223,34.559235,34.56023,34.560226,34.588203,34.625202,34.618191,34.621189,34.593208,34.565212,34.551228,34.554218,34.552227,34.559227,34.573223,34.584225,34.57222,34.558228,34.538242,34.521255,34.51825,34.508266,34.50227,34.496277,34.516262,34.579227,34.57423,34.580227,34.533245,34.474281,34.453304,34.482285,34.288403,34.373348,34.360386,34.30542,34.321411,34.283424,34.293438,34.302433,34.337406,34.346416,34.341423,34.347412,34.387409,34.38842,34.405392,34.443371,34.465359,34.493351,34.511333,34.535324,34.544353,34.577309,34.596306,34.6143,34.632286,34.648273,34.662277]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_324","geolocation":{"type":"Point","coordinates":[121.953,-47.421]},"basin":3,"timestamp":"2018-12-24T22:38:05.002Z","date_updated_argovis":"2023-01-26T10:48:35.190Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_324.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":324,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.6,20.6,30,40.299999,50.200001,60.5,69.800003,80.400002,89.800003,100,110.400002,120.199997,130.300003,140.5,148.100006,160.5,170.5,180.100006,190,200.300003,210.199997,220.199997,229.899994,239.800003,249.800003,260,270.299988,279.899994,289.799988,300.5,310.399994,319.799988,330.100006,339.899994,349.5,359.600006,380.299988,400.299988,450.600006,500.299988,550.099976,600.400024,649.5,700.099976,749.799988,799.099976,850.5,899.900024,950.400024,1000.200012,1050.400024,1100.099976,1147.699951,1200.300049,1250.400024,1299.900024,1350.099976,1400,1450,1500.300049,1550.5,1599.900024,1649.5,1700.300049,1749.900024,1800,1849.900024,1899.199951],[9.641,9.639,9.64,9.644,9.643,9.632,9.615,9.561,9.553,9.525,9.478,9.354,9.342,9.332,9.406,9.378,9.365,9.366,9.365,9.389,9.304,9.398,9.3,9.214,9.21,9.192,9.174,9.134,9.105,9.068,9.018,8.988,8.922,8.963,8.94,8.92,8.908,8.715,8.671,8.232,7.752,7.786,7.325,6.553,5.836,5.3,4.881,4.749,4.479,4.317,4.05,3.893,3.59,3.445,3.297,3.2,3.131,3.033,2.921,2.862,2.797,2.751,2.712,2.669,2.626,2.59,2.557,2.528,2.477],[34.582272,34.583286,34.583282,34.582268,34.582283,34.586258,34.592281,34.612267,34.677227,34.67123,34.659241,34.639248,34.640251,34.640251,34.658245,34.652245,34.651253,34.650253,34.651234,34.657253,34.64225,34.661243,34.645248,34.630253,34.633251,34.630257,34.62727,34.621262,34.615269,34.609272,34.60128,34.595276,34.58728,34.598286,34.595257,34.592289,34.59528,34.563313,34.562305,34.498333,34.435387,34.491352,34.475368,34.38744,34.317467,34.270504,34.255516,34.295502,34.298512,34.315506,34.328499,34.353493,34.343506,34.366489,34.387482,34.420479,34.449432,34.467434,34.48843,34.508415,34.534401,34.560398,34.579384,34.597385,34.616379,34.635368,34.649361,34.664352,34.677322]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_323","geolocation":{"type":"Point","coordinates":[119.639,-46.643]},"basin":3,"timestamp":"2018-12-14T18:45:28.001Z","date_updated_argovis":"2023-01-26T10:48:33.411Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_323.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":323,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10,20.299999,30.4,40.5,49.900002,59.600002,70.300003,80.400002,89.800003,100.200005,109.700005,119.700005,129.599991,139.199997,150.199997,160.299988,170.099991,180,190.299988,200.299988,210.299988,219.799988,229.799988,239.799988,250.099991,260.299988,269.899994,279.899994,289.899994,300.100006,309.5,320.299988,330,339.699982,349.899994,360,380.100006,400.299988,450.199982,499.899994,550.400024,599.5,650.200012,700.200012,750,800.400024,850.300049,900.300049,949.900024,1000,1050.200073,1099.5,1149.400024,1200,1250.300049,1299.700073,1349.800049,1400,1449.700073,1498.599976,1550.099976,1600.099976,1649.900024,1699.900024,1749.700073,1800.099976,1849.599976,1900.200073],[10.034,10.039,9.935,9.866,9.856,9.85,9.847,9.81,9.748,9.726,9.689,9.679,9.691,9.661,9.581,9.678,9.677,9.704,9.725,9.721,9.722,9.719,9.7,9.7,9.697,9.694,9.686,9.679,9.68,9.679,9.677,9.673,9.666,9.656,9.647,9.652,9.663,9.626,9.499,9.209,8.959,8.507,8.33,7.695,7.249,6.453,5.976,5.53,5.151,4.815,4.401,3.946,3.896,3.538,3.515,3.409,3.311,3.133,3.057,2.923,2.812,2.808,2.721,2.694,2.675,2.644,2.583,2.567,2.535],[34.713238,34.714214,34.710232,34.709232,34.708241,34.707226,34.708229,34.704235,34.696239,34.694244,34.689262,34.693241,34.698238,34.69125,34.678253,34.701244,34.700237,34.706234,34.711224,34.711231,34.711231,34.710236,34.707222,34.706223,34.706226,34.706238,34.704235,34.702244,34.703243,34.703236,34.703236,34.701244,34.699245,34.69725,34.695236,34.69725,34.703239,34.701256,34.680256,34.633278,34.605301,34.541344,34.548347,34.475395,34.461403,34.380466,34.364471,34.341496,34.335503,34.327511,34.319538,34.295559,34.331535,34.331535,34.370518,34.402512,34.422482,34.437492,34.465462,34.480465,34.496464,34.528446,34.543427,34.571419,34.594425,34.618397,34.628407,34.649391,34.663368]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_322","geolocation":{"type":"Point","coordinates":[116.945,-46.24]},"basin":3,"timestamp":"2018-12-04T14:40:42.001Z","date_updated_argovis":"2023-01-26T10:48:31.584Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_322.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":322,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.7,20.5,30.400002,40.600002,50.200001,60.299999,70.399994,80.599998,90.299995,100.099998,109.799995,120.399994,130.699997,140.5,150.300003,160.599991,170.699997,180,190.300003,200.300003,210.300003,220.399994,230.199997,240.099991,250.300003,259.800018,270.100006,280.5,290.400024,300.200012,310.100006,320.300018,330.300018,340.300018,350.300018,360.600006,379.5,400.300018,450.300018,500.400024,550.100037,600.299988,650.700012,700.5,750.5,800.200012,850.400024,900.600037,949.700012,1000.600037,1050.5,1100.099976,1147.899902,1200.099976,1250.5,1299.899902,1349.299927,1400.199951,1450.399902,1500.099976,1550.199951,1600.699951,1650.399902,1699.899902,1750.399902,1800.099976,1850.5,1900.399902],[9.928,9.926,9.931,9.931,9.931,9.916,9.86,9.815,9.815,9.798,9.78,9.796,9.774,9.758,9.763,9.778,9.778,9.793,9.801,9.804,9.805,9.809,9.809,9.806,9.804,9.799,9.801,9.794,9.784,9.785,9.788,9.781,9.719,9.686,9.658,9.632,9.586,9.518,9.424,9.113,8.988,8.565,8.161,7.629,7.084,6.468,5.871,5.363,4.919,4.513,4.231,3.874,3.739,3.557,3.441,3.323,3.205,3.1,3.021,2.908,2.875,2.791,2.742,2.694,2.634,2.581,2.575,2.534,2.484],[34.713066,34.713066,34.712059,34.713066,34.71207,34.710072,34.70607,34.705074,34.71106,34.709076,34.707069,34.711086,34.709068,34.706074,34.707073,34.71207,34.714069,34.718079,34.72007,34.723068,34.722069,34.724072,34.724068,34.724056,34.723068,34.723068,34.723076,34.722073,34.719063,34.720074,34.722073,34.719063,34.70908,34.704075,34.700081,34.697071,34.691093,34.683086,34.670109,34.629116,34.623131,34.579166,34.543186,34.496208,34.463253,34.413288,34.374302,34.347328,34.324345,34.317348,34.321365,34.318359,34.346344,34.360344,34.389347,34.413322,34.434307,34.454323,34.482296,34.497295,34.525276,34.54427,34.57225,34.591236,34.606232,34.620224,34.640232,34.660194,34.680214]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_321","geolocation":{"type":"Point","coordinates":[114.171,-46.449]},"basin":3,"timestamp":"2018-11-24T10:35:57.001Z","date_updated_argovis":"2023-01-26T10:48:29.800Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_321.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":321,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.599999,20.5,30.300001,40.100002,50.400002,60.299999,70.199997,80.399994,90,100.599998,110.399994,120.5,129.800003,139.699997,150.5,159.800003,170.099991,180.5,188.300003,200.699997,210.5,220.199997,230.199997,240.300003,250.199997,260,270.200012,280,289.800018,299.800018,310,320.200012,329.800018,339.800018,349.800018,360.100006,380.5,398.200012,450.100006,500.200012,550.700012,598.700012,650.700012,700.700012,749.799988,800.600037,850.100037,899.900024,949.700012,1000.700012,1049.899902,1100.399902,1150.099976,1200.399902,1249.899902,1300.399902,1350.699951,1400,1450,1500.399902,1550.099976,1599.899902,1650.299927,1700.099976,1750.599976,1800.399902,1850.599976,1899.299927],[9.949,9.95,9.95,9.934,9.857,9.803,9.812,9.825,9.827,9.828,9.821,9.822,9.798,9.818,9.808,9.783,9.74,9.742,9.663,9.651,9.656,9.656,9.648,9.748,9.757,9.749,9.747,9.754,9.746,9.753,9.756,9.749,9.729,9.688,9.573,9.494,9.451,9.34,9.245,9.011,8.489,7.656,7.766,7.382,6.775,6.433,5.321,5.41,4.947,4.593,4.454,4.197,3.898,3.674,3.548,3.422,3.289,3.181,3.064,3,2.922,2.881,2.813,2.728,2.646,2.629,2.618,2.581,2.548],[34.720039,34.721046,34.71904,34.72105,34.722046,34.719044,34.721046,34.726044,34.726044,34.726044,34.726044,34.727047,34.721043,34.727058,34.72604,34.722061,34.71505,34.716049,34.703068,34.701069,34.704056,34.707066,34.70805,34.730053,34.734043,34.732048,34.73204,34.73304,34.732037,34.733051,34.734051,34.731041,34.727047,34.718052,34.70005,34.68306,34.674084,34.658089,34.644089,34.608124,34.525173,34.384251,34.448215,34.422256,34.368275,34.36729,34.243366,34.317337,34.302334,34.294353,34.319336,34.331356,34.335339,34.350338,34.368324,34.39431,34.417309,34.432304,34.462284,34.491283,34.516254,34.530243,34.549232,34.562241,34.583221,34.613213,34.636204,34.647194,34.659187]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_320","geolocation":{"type":"Point","coordinates":[112.149,-47.45]},"basin":3,"timestamp":"2018-11-14T06:37:43.000Z","date_updated_argovis":"2023-01-26T10:48:27.991Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_320.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":320,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.8,20.5,30.1,39.600002,50.299999,60.200001,70.5,80.299995,90.099998,100.799995,110.099998,119.899994,130.5,140.5,149.300003,160.399994,170.899994,180.599991,190.599991,200.699997,210.699997,220.399994,230.699997,240.599991,250.5,260.700012,270.100006,280.400024,290,300.600006,310.5,320.600006,330.100006,340,350.300018,360,380,400,450.5,500.400024,550.299988,599.900024,650.5,700.5,749.700012,800.600037,850.100037,900.600037,949.799988,1000.600037,1050.099976,1100.399902,1150.299927,1200.399902,1249.899902,1299.799927,1350.699951,1400.199951,1450.799927,1500.299927,1549.899902,1599.799927,1650.299927,1700.5,1749.899902,1800.299927,1850,1900.199951],[9.035,9.034,9.035,9.041,9.035,9.035,9.04,9.037,9.042,9.042,9.043,9.072,9.07,9.071,9.04,9.046,9.036,8.649,8.592,8.485,8.477,8.452,8.398,8.375,8.351,8.344,8.264,8.203,8.189,8.082,8.267,7.99,7.668,7.382,7.208,7.359,7.949,7.279,6.889,6.359,5.574,5.635,5.272,5.487,5.418,5.008,4.579,4.5,4.337,3.999,3.835,3.559,3.425,3.297,3.188,3.11,3.073,2.958,2.804,2.818,2.729,2.705,2.693,2.655,2.6,2.569,2.538,2.511,2.478],[34.611092,34.611092,34.612091,34.614082,34.6101,34.6101,34.611092,34.6101,34.611092,34.611084,34.611084,34.62009,34.619102,34.619091,34.614086,34.61409,34.609081,34.547142,34.534153,34.517147,34.515152,34.510159,34.501163,34.497158,34.492157,34.491158,34.47818,34.467175,34.467197,34.453197,null,34.437202,34.38723,34.339256,34.31028,34.345253,34.469189,34.345261,34.301273,34.242332,34.15239,34.204372,34.186382,34.276318,34.32029,34.303307,34.278343,34.315311,34.331306,34.326324,34.348312,34.344318,34.385277,34.400291,34.425285,34.448277,34.477261,34.500237,34.511246,34.545238,34.559227,34.587204,34.605202,34.623177,34.63718,34.654175,34.66716,34.679157,34.691143]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_319","geolocation":{"type":"Point","coordinates":[110.591,-46.588]},"basin":3,"timestamp":"2018-11-04T02:39:30.000Z","date_updated_argovis":"2023-01-26T10:48:26.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_319.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":319,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10,20.700001,30.1,40.100002,50.299999,60.400002,70.399994,79.899994,90.599998,100.299995,110.5,120,129.800003,140.399994,150.699997,160.300003,170.300003,180.399994,190.099991,200.300003,210.5,220.399994,228.300003,240.5,250.699997,260.200012,270.200012,280.200012,289.900024,300.600006,310.700012,320.700012,330,340,350.200012,360.5,380,397.800018,450.5,500,550,600.5,650,700.100037,750.5,800.400024,850.700012,900,950.100037,1000.5,1050.399902,1100.099976,1150.299927,1200.699951,1249.899902,1300.399902,1350.199951,1400.299927,1450.699951,1500.399902,1550.199951,1600,1650.299927,1700,1750.599976,1800.5,1849.899902,1898.199951],[8.49,8.488,8.487,8.487,8.488,8.487,8.489,8.489,8.49,8.491,8.494,8.501,8.507,8.505,8.504,8.307,7.686,7.299,7.217,7.16,7.145,7.114,7.1,7.02,6.97,6.951,7.343,7.397,7.487,7.373,7.355,7.549,7.662,7.716,7.925,7.882,7.797,7.43,7.661,6.731,5.821,5.446,5.37,5.206,4.698,4.512,4.071,3.962,3.929,3.798,3.594,3.392,3.232,3.128,3.102,3.004,2.946,2.889,2.808,2.753,2.71,2.675,2.626,2.587,2.561,2.531,2.489,2.443,2.42],[34.509136,34.51012,34.509132,34.509136,34.509136,34.509151,34.509136,34.508141,34.509136,34.509148,34.509136,34.511124,34.511127,34.510132,34.50713,34.476158,34.361221,34.299274,34.285275,34.277275,34.279266,34.280277,34.278267,34.267288,34.263287,34.266296,34.343243,34.35323,34.370216,34.351227,34.354237,34.393208,34.41721,34.430199,34.477146,34.472168,34.463169,34.412201,34.473164,34.356236,34.250309,34.236313,34.282291,34.318279,34.28331,34.291306,34.27832,34.301323,34.34029,34.354294,34.370277,34.384274,34.399277,34.428268,34.459248,34.485218,34.511227,34.5312,34.544186,34.564186,34.580185,34.603165,34.623177,34.638149,34.655144,34.671139,34.685139,34.692127,34.703121]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_318","geolocation":{"type":"Point","coordinates":[108.341,-46.181]},"basin":3,"timestamp":"2018-10-24T22:31:00.002Z","date_updated_argovis":"2023-01-26T10:48:24.281Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_318.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":318,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.8,20.300001,30.1,40.400002,49.799999,59.900002,70.299995,80.399994,89.899994,99.799995,110,120.099998,130.399994,140.800003,150.699997,160.599991,170.399994,180.699997,190.300003,200.5,210.699997,220.5,230.199997,240.199997,250.399994,260.700012,270.100006,280.300018,289.800018,300.5,310.400024,320.600006,330.100006,339.900024,349.800018,360.100006,379.800018,400.400024,450.100006,500,550.200012,600.5,650.600037,700.700012,750.5,800.400024,849.900024,900.100037,950.799988,1000.5,1050.199951,1099.899902,1150.199951,1200.599976,1250.299927,1300.5,1350.5,1400,1446.899902,1500.199951,1549.899902,1600,1650.599976,1700.399902,1750.5,1800.5,1850.099976,1899.699951],[10.105,10.108,10.098,10.086,10.08,10.069,10.031,10.005,9.959,9.943,9.919,9.911,9.869,9.806,9.647,9.524,9.48,9.481,9.482,9.474,9.455,9.44,9.435,9.413,9.419,9.405,9.316,9.195,9.177,9.033,8.979,8.955,8.913,8.55,8.408,8.35,8.386,7.942,7.588,8.126,7.526,6.809,6.939,6.242,6.09,5.486,4.953,4.286,4.27,4.058,3.879,3.674,3.362,3.282,3.1,3,3.049,2.896,2.881,2.834,2.791,2.748,2.708,2.65,2.602,2.571,2.535,2.509,2.471],[34.783936,34.782925,34.781956,34.780949,34.779945,34.777946,34.77095,34.768951,34.760948,34.758965,34.754955,34.75296,34.746967,34.735977,34.702995,34.682003,34.67701,34.67701,34.67701,34.676003,34.673035,34.668018,34.668015,34.66502,34.665031,34.663029,34.651016,34.626049,34.622036,34.598076,34.584064,34.58007,34.569084,34.509125,34.493126,34.492115,34.498123,34.420162,34.358215,34.498119,34.413193,34.311237,34.393192,34.361225,34.398209,34.36224,34.332264,34.275303,34.320259,34.332264,34.350269,34.363274,34.369259,34.401237,34.405243,34.429237,34.473217,34.490219,34.518192,34.548183,34.571156,34.590164,34.610149,34.630135,34.650131,34.666115,34.680115,34.690098,34.700092]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_317","geolocation":{"type":"Point","coordinates":[105.03,-46.485]},"basin":3,"timestamp":"2018-10-14T18:31:50.001Z","date_updated_argovis":"2023-01-26T10:48:22.389Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_317.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":317,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.900001,20.299999,30.799999,39.799999,50.700001,60.399998,70.400002,80.100006,90,100.200005,110.600006,120.300003,130.5,140.699997,149.900009,160.300003,170.300003,180.400009,190.699997,199.900009,210.5,219.699997,228.5,240.699997,250.400009,260.799988,270.5,280.599976,290.299988,300.799988,310.799988,320.399994,329.899994,340.5,350.799988,359.899994,380.899994,400.5,450.5,500.199982,550.799988,598.899963,650.200012,700.200012,749.700012,800.399963,850.599976,900.700012,948.700012,1000.700012,1050.300049,1100.600098,1150.800049,1200.700073,1250.400024,1300.400024,1350.700073,1400.5,1448.200073,1500.400024,1550.400024,1599.900024,1650.400024,1700.300049,1750.700073,1799.900024,1849.800049],[9.068,9.074,9.07,9.085,9.088,9.09,9.093,9.076,9.088,9.067,9.052,9.071,9.067,9.004,8.584,8.509,8.229,8.198,8.093,7.836,7.695,7.369,7.017,7,6.997,7.053,7.603,7.597,7.443,7.223,7.285,7.033,7.044,7.054,6.854,6.857,6.961,6.982,7.185,6.818,6.558,5.435,4.923,4.694,4.324,4.199,3.968,3.75,3.705,3.61,3.347,3.2,3.177,3.024,2.992,2.894,2.816,2.695,2.68,2.669,2.638,2.581,2.523,2.472,2.468,2.455,2.465,2.431],[34.585979,34.587997,34.587006,34.589996,34.589985,34.590992,34.591,34.587994,34.588993,34.584995,34.581997,34.587994,34.585987,34.577,34.51104,34.496052,34.45208,34.447071,34.431087,34.388107,34.362129,34.303173,34.250195,34.251202,34.252201,34.270195,34.377117,34.376129,34.360142,34.32716,34.341152,34.301178,34.304169,34.303173,34.276199,34.277187,34.298176,34.316174,34.376125,34.389137,34.386124,34.268215,34.251236,34.26823,34.260227,34.277222,34.281223,34.30122,34.349209,34.377186,34.382179,34.401176,34.431179,34.445156,34.478146,34.503128,34.520103,34.534111,34.568096,34.587082,34.612091,34.621071,34.636078,34.660057,34.67205,34.684036,34.700031,34.714027]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_316","geolocation":{"type":"Point","coordinates":[101.496,-46.091]},"basin":3,"timestamp":"2018-10-04T14:31:45.001Z","date_updated_argovis":"2023-01-26T10:48:20.622Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_316.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":316,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.5,20.5,30.1,40.299999,50.299999,60.099998,70,80.400002,90.300003,100.5,110.099998,119.800003,129.800003,140.399994,150,160,170.199997,179.600006,189.600006,199.600006,210,220.300003,229.600006,239.100006,250.5,260.299988,270.399994,280,290.299988,300.399994,310,319.899994,330.100006,339.899994,350.200012,359.700012,379.799988,400.200012,450.600006,500.100006,549.799988,600.099976,650.400024,700.200012,750.599976,800.5,849.5,900.400024,950.200012,1000.400024,1049.599976,1100.099976,1150.5,1199.900024,1250.699951,1299.699951,1350,1399.800049,1447.5,1500.099976,1550.300049,1600,1649.900024,1699.699951,1749.900024,1799.699951,1849.5],[7.142,7.142,7.146,7.148,7.146,7.143,7.145,7.142,7.12,7.087,7.082,7.079,7.078,7.078,7.08,7.071,7.056,7.05,7.038,6.894,6.839,6.824,6.809,6.748,6.772,6.79,6.733,6.734,6.659,6.617,6.568,6.464,6.354,6.494,6.661,6.562,6.512,6.465,6.073,5.753,5.409,4.88,4.47,4.246,4.007,3.748,3.695,3.408,3.233,3.263,3.183,3.084,2.995,2.899,2.706,2.743,2.761,2.686,2.635,2.597,2.588,2.557,2.534,2.486,2.458,2.436,2.404,2.36],[34.26532,34.265316,34.266312,34.266308,34.266312,34.266323,34.266312,34.266319,34.268307,34.268303,34.266304,34.266315,34.267311,34.266323,34.267323,34.273308,34.274311,34.277309,34.276306,34.253319,34.247334,34.245346,34.244331,34.235329,34.240337,34.245346,34.236336,34.235329,34.224354,34.218349,34.211361,34.195358,34.18137,34.211357,34.268314,34.270313,34.284309,34.316299,34.283321,34.287319,34.295322,34.273346,34.260368,34.275356,34.283352,34.305351,34.340336,34.337337,34.355328,34.406307,34.429287,34.455269,34.479263,34.499249,34.500275,34.54324,34.573215,34.58522,34.604218,34.622189,34.649185,34.662182,34.67617,34.68417,34.699154,34.709164,34.719151,34.728142]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_315","geolocation":{"type":"Point","coordinates":[99.267,-45.453]},"basin":3,"timestamp":"2018-09-24T10:35:23.001Z","date_updated_argovis":"2023-01-26T10:48:18.704Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_315.nc","date_updated":"2020-11-12T10:21:14.000Z"}],"cycle_number":315,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.599999,20.400002,30.6,40.799999,50.700001,60.600002,70.799995,80.599998,90.699997,100,110.599998,120.399994,130.399994,140.300003,150.599991,160,170.599991,180.599991,190.599991,199.199997,210.800003,220.300003,230.599991,240.300003,250.399994,260.400024,270.400024,280.600006,290.5,300.300018,309.900024,320.400024,330,340.100006,350.200012,360.400024,379.800018,400.400024,450.300018,500.400024,550.700012,600.600037,650,700.600037,750,800.299988,850.299988,900.400024,950.299988,1000.700012,1050.699951,1100.699951,1150.5,1200,1247.799927,1300,1350.299927,1399.699951,1450.699951,1499.799927,1550.099976,1600.199951,1650.299927,1700.5,1750.599976,1799.799927,1849.899902],[7.367,7.333,7.345,7.327,7.318,7.24,7.046,7.094,7.103,7.043,6.991,7.06,6.972,7.052,7.047,7.038,7.043,7.048,7.043,7.034,7.027,7.015,7.008,6.991,6.982,6.975,6.97,6.968,6.985,6.974,6.966,6.966,6.969,6.966,6.958,6.959,6.958,6.855,6.784,6.481,5.97,5.362,4.838,4.504,4.333,3.866,3.77,3.476,3.426,3.201,3.129,3.035,2.953,2.897,2.806,2.747,2.734,2.678,2.655,2.636,2.6,2.573,2.554,2.528,2.509,2.477,2.457,2.411],[34.27718,34.290173,34.314178,34.314163,34.313164,34.302162,34.279186,34.291168,34.294178,34.284184,34.279205,34.291176,34.277176,34.292187,34.291176,34.290176,34.290184,34.291187,34.290173,34.289181,34.288185,34.286171,34.284184,34.282181,34.28019,34.279175,34.27718,34.278194,34.281185,34.28019,34.278194,34.279198,34.27919,34.279194,34.278191,34.279194,34.279194,34.266197,34.282188,34.334167,34.325169,34.294205,34.26923,34.262222,34.276237,34.259251,34.29723,34.302242,34.328224,34.341232,34.36919,34.392181,34.417187,34.445175,34.470139,34.499138,34.534115,34.554119,34.583107,34.605068,34.620071,34.634075,34.654064,34.669056,34.68504,34.697021,34.705029,34.718029]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_314","geolocation":{"type":"Point","coordinates":[97.367,-45.097]},"basin":3,"timestamp":"2018-09-14T06:27:50.000Z","date_updated_argovis":"2023-01-26T10:48:16.865Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_314.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":314,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,19.800001,30,39.700001,50,60.200001,70.399994,79.5,90.199997,100.299995,110.799995,120.799995,130.5,139.899994,150.300003,160.199997,169.099991,180.5,190.800003,200.599991,210.5,220.800003,230.5,240.699997,250,260.600006,270.400024,280.300018,290.700012,300.300018,310,320.400024,329.900024,340.400024,350.600006,359.700012,380.800018,400.600006,450.100006,500.600006,550.600037,600.299988,650.700012,700.200012,750.200012,800.5,849.900024,900.100037,950.100037,1000.299988,1050,1099.799927,1150.099976,1199.799927,1249.799927,1300.099976,1350.299927,1400.199951,1450.399902,1500,1550.099976,1599.699951,1650.299927,1700.299927,1750,1799.399902,1849.799927],[8.019,8.013,8.016,8.016,8.014,8.014,8.008,8.01,8.01,8.005,8.001,8.004,8.004,8.007,8.006,8.004,7.992,7.999,8.001,7.994,7.888,7.869,7.667,7.614,7.544,7.367,7.376,7.369,7.516,7.549,7.474,7.47,7.451,7.34,7.191,7.081,7.003,6.754,6.544,6.194,5.546,5.154,4.815,4.402,4.129,3.863,3.697,3.575,3.407,3.336,3.236,3.153,3.001,2.939,2.842,2.819,2.77,2.734,2.692,2.649,2.614,2.576,2.536,2.51,2.479,2.435,2.417,2.383],[34.436069,34.435085,34.43507,34.435081,34.435081,34.435081,34.43507,34.435081,34.435074,34.436069,34.436066,34.436073,34.436096,34.436066,34.435062,34.43507,34.432083,34.433067,34.434082,34.431076,34.415096,34.410088,34.378105,34.371105,34.359108,34.337135,34.343132,34.351131,34.382103,34.395096,34.3951,34.405098,34.411098,34.406105,34.39011,34.385124,34.381123,34.367126,34.359123,34.349148,34.295174,34.297176,34.289204,34.27021,34.283199,34.295216,34.321186,34.349171,34.369164,34.398151,34.41814,34.441154,34.451138,34.477135,34.504116,34.535107,34.557083,34.585079,34.605061,34.621063,34.639061,34.656044,34.672043,34.686024,34.694035,34.705013,34.715023,34.723019]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_313","geolocation":{"type":"Point","coordinates":[95.959,-45.146]},"basin":3,"timestamp":"2018-09-04T02:31:28.000Z","date_updated_argovis":"2023-01-26T10:48:15.068Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_313.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":313,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.5,19.799999,30.299999,40.299999,50.599998,60.400002,70.099998,80.300003,90.400002,100.099998,110.400002,120.5,130.100006,140.100006,150.100006,159.899994,169.5,180.199997,190,199.899994,209.899994,220.5,230,240.199997,249.899994,259.799988,269.600006,278.299988,290.600006,300.299988,310.100006,319.700012,330,340.100006,350,360.5,380.100006,400.399994,450.600006,500.399994,550.099976,598.299988,649.900024,700.099976,750.099976,799.900024,850.400024,900.299988,950.099976,1000.299988,1049.599976,1100.199951,1150.5,1200.400024,1250,1300.099976,1349.699951,1399.599976,1450.199951,1500.400024,1549.800049,1600,1650.400024,1699.900024,1749.900024,1799.699951,1850,1900.5],[7.651,7.654,7.653,7.652,7.654,7.654,7.655,7.659,7.661,7.662,7.662,7.664,7.664,7.664,7.665,7.663,7.66,7.657,7.653,7.645,7.603,7.566,7.514,7.433,7.276,7.083,6.953,6.801,6.747,6.647,6.66,6.446,6.325,6.305,6.317,6.091,5.917,5.66,5.63,5.604,5.118,4.678,4.242,4.141,3.89,3.793,3.59,3.484,3.422,3.336,3.107,2.999,2.945,2.916,2.857,2.82,2.758,2.717,2.684,2.645,2.603,2.57,2.531,2.507,2.487,2.457,2.423,2.391,2.356],[34.3372,34.337212,34.337215,34.337208,34.338207,34.3372,34.3372,34.337196,34.337196,34.337208,34.338203,34.336208,34.337208,34.337212,34.337208,34.337212,34.337204,34.337208,34.339199,34.336197,34.336201,34.334209,34.332203,34.335209,34.327221,34.316219,34.311222,34.304241,34.308228,34.311237,34.32523,34.306236,34.297249,34.297249,34.313244,34.289253,34.268269,34.251286,34.273273,34.321247,34.289257,34.270294,34.248314,34.279293,34.293293,34.321285,34.335274,34.364243,34.385231,34.410236,34.429226,34.449215,34.476204,34.501198,34.52018,34.542168,34.567165,34.589149,34.608143,34.628132,34.64613,34.656109,34.669109,34.681103,34.692097,34.704113,34.713085,34.721081,34.728065]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_312","geolocation":{"type":"Point","coordinates":[94.784,-44.886]},"basin":3,"timestamp":"2018-08-24T22:30:27.002Z","date_updated_argovis":"2023-01-26T10:48:13.290Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_312.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":312,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.7,19.799999,30.099998,40,49.899998,59.700001,69.900002,79.400002,89.900002,99.5,110,120,130,140.199997,150,158.400009,169.900009,180.300003,190.199997,200.100006,210.199997,220,229.900009,239.699997,250.199997,260.099976,269.599976,279.699982,289.699982,299.599976,310.199982,320.299988,330,340,349.399994,360.099976,379.399994,400.099976,450.299988,499.799988,550.200012,599.899963,649.799988,699.299988,749.700012,799.899963,849.700012,899.899963,950.099976,1000.200012,1050.200073,1097.700073,1150.300049,1200.100098,1249.700073,1300.200073,1350.100098,1399.400024,1449.800049,1499.900024,1549.5,1599.400024,1650.300049,1699.700073,1749.900024,1799.700073,1849.900024,1900.600098],[9.301,9.311,9.312,9.312,9.312,9.314,9.313,9.315,9.311,9.308,9.311,9.308,9.299,9.293,9.219,8.777,8.673,8.631,8.602,8.582,8.54,8.516,8.495,8.504,8.501,8.356,8.291,8.295,8.187,8.246,8.152,8.079,8.134,8.183,8.236,8.175,8.223,7.919,7.657,6.803,5.894,5.516,4.923,4.35,4.369,3.956,3.837,3.677,3.475,3.354,3.309,3.151,3.097,3.015,2.94,2.86,2.81,2.761,2.706,2.669,2.632,2.597,2.568,2.528,2.494,2.479,2.433,2.406,2.364],[34.623085,34.622105,34.621105,34.621094,34.621105,34.621105,34.621113,34.621094,34.621105,34.621109,34.620106,34.619106,34.6161,34.6161,34.605125,34.531158,34.50716,34.501175,34.496174,34.493187,34.488174,34.484184,34.486187,34.490181,34.49017,34.464195,34.456203,34.456207,34.439209,34.451206,34.441216,34.436218,34.454201,34.484196,34.503185,34.51318,34.540161,34.526165,34.519176,34.416245,34.332325,34.325321,34.294353,34.254372,34.298363,34.286385,34.314346,34.340355,34.353336,34.387333,34.423317,34.442295,34.467289,34.496277,34.519276,34.543255,34.562248,34.584225,34.605225,34.62022,34.636215,34.651203,34.666187,34.677193,34.686192,34.697182,34.709187,34.720161,34.73016]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_311","geolocation":{"type":"Point","coordinates":[93.864,-44.518]},"basin":3,"timestamp":"2018-08-14T18:31:17.001Z","date_updated_argovis":"2023-01-26T10:48:11.409Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_311.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":311,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.3,20.299999,29.799999,39.799999,50.400002,60.400002,69.699997,79.800003,89.800003,100,109.800003,120.5,130.300003,139.600006,149.899994,159.899994,169.699997,180.100006,189.699997,199.300003,210.399994,220.100006,230.300003,240,250.5,259.899994,270.200012,280.299988,289.799988,300.299988,309.700012,320.200012,330.100006,340.100006,350.600006,360,380.200012,400.299988,450.399994,499.799988,550.099976,600.5,650.5,700.5,749.799988,800.099976,849.799988,899.599976,950.599976,1000,1049.800049,1099.699951,1150.5,1199.599976,1250.599976,1300.5,1350,1399.5,1450.199951,1500.099976,1550.199951,1599.900024,1650.400024,1700.099976,1749.900024,1800.400024,1849.800049],[9.037,9.04,9.039,9.041,9.046,9.05,9.05,9.045,9.035,9.04,9.04,9.042,9.042,9.044,8.978,8.923,8.911,8.607,8.525,8.413,8.163,8.139,8.131,8.112,8.096,7.986,7.99,8.004,8.062,8.128,8.547,8.363,8.157,8.206,8.142,8.152,8.154,7.931,7.847,6.885,5.968,5.421,4.913,4.546,4.195,3.89,3.71,3.553,3.39,3.263,3.177,3.122,3.035,2.915,2.926,2.879,2.83,2.776,2.715,2.667,2.626,2.589,2.562,2.528,2.489,2.454,2.423,2.396],[34.553024,34.554012,34.553017,34.552029,34.554024,34.554028,34.554028,34.55302,34.551022,34.55302,34.552021,34.55302,34.552029,34.552017,34.546024,34.536041,34.526039,34.482067,34.470066,34.447086,34.407104,34.402111,34.402134,34.39912,34.39513,34.378136,34.379143,34.383133,34.395123,34.414124,34.519054,34.499054,34.470097,34.486065,34.480076,34.493065,34.506065,34.521049,34.520065,34.419128,34.337193,34.315216,34.292233,34.286263,34.283241,34.286251,34.304249,34.329239,34.352226,34.381203,34.41119,34.44318,34.461163,34.484177,34.514149,34.53614,34.556126,34.57811,34.6031,34.622101,34.639088,34.652084,34.660076,34.674076,34.690052,34.700047,34.711044,34.718044]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_310","geolocation":{"type":"Point","coordinates":[92.804,-44.292]},"basin":3,"timestamp":"2018-08-04T14:32:07.001Z","date_updated_argovis":"2023-01-26T10:48:09.582Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_310.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":310,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,10.5,20.299999,30.5,40.100002,50.300003,60.400002,70.200005,80.300003,89.900002,100.300003,110.300003,119.800003,130.199997,140,149.799988,160.399994,169.599991,179.899994,189.699997,199.599991,208.5,220.5,230.299988,240.299988,250.5,259.5,270,280.5,290.199982,300.100006,310.100006,320.399994,329.899994,340.100006,350.399994,360,380.299988,397.199982,450,500.199982,549.800049,599.5,650.300049,699.700012,750,800,849.800049,899.900024,950.100037,1000.200012,1050.200073,1100.099976,1149.700073,1200.200073,1250.300049,1299.900024,1350.099976,1399.900024,1450.400024,1499.700073,1550,1600.200073,1650.5,1699.599976,1749.599976,1800,1849.800049,1900.300049],[8.484,8.487,8.488,8.489,8.491,8.489,8.491,8.492,8.49,8.505,8.495,8.498,8.481,8.477,8.473,8.428,8.401,8.399,8.402,8.415,8.406,8.417,8.416,8.417,8.41,8.396,8.4,8.413,8.42,8.427,8.429,8.43,8.437,8.434,8.4,8.193,8.115,7.631,7.398,6.875,6.384,6.018,5.304,4.867,4.511,4.216,3.817,3.668,3.507,3.335,3.23,3.151,3.068,2.988,2.893,2.875,2.825,2.778,2.733,2.695,2.652,2.607,2.577,2.547,2.526,2.495,2.442,2.402,2.373],[34.464096,34.464104,34.465107,34.46611,34.465118,34.465118,34.4641,34.465107,34.465111,34.467106,34.466106,34.46611,34.463104,34.462128,34.459114,34.455109,34.448109,34.449112,34.450115,34.45311,34.451134,34.452114,34.451118,34.451126,34.451122,34.446133,34.447109,34.450108,34.450108,34.453117,34.453117,34.454113,34.455105,34.454121,34.454124,34.463116,34.473103,34.423149,34.411148,34.401173,34.366192,34.356205,34.29826,34.290268,34.28027,34.291271,34.287285,34.313271,34.339256,34.360241,34.390244,34.408218,34.43222,34.462204,34.488197,34.522171,34.54216,34.568138,34.595127,34.613113,34.632122,34.650108,34.664101,34.674099,34.68409,34.695087,34.706085,34.71608,34.724072]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_309","geolocation":{"type":"Point","coordinates":[91.574,-44.527]},"basin":3,"timestamp":"2018-07-25T10:33:54.001Z","date_updated_argovis":"2023-01-26T10:48:07.688Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_309.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":309,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.8,20,30,39.700001,50.200001,60.299999,70,80.300003,90.5,100.300003,110.300003,120.700005,130.300003,140.699997,150.400009,160.300003,170.600006,180.900009,190.900009,200.300003,210.800003,220.800003,230.699997,240.800003,250.5,260.799988,270.899994,280.599976,290.299988,300.599976,310.099976,320.099976,330.599976,340.699982,350.099976,359.899994,380.299988,399.899994,450.199982,500,550.399963,600.299988,650.799988,700.599976,750.299988,797.799988,850.799988,900.599976,950.5,1000.399963,1050.700073,1100.700073,1150.100098,1200.100098,1250.5,1300.800049,1350,1400.600098,1450.800049,1500.400024,1550.200073,1599.900024,1650.600098,1700.600098,1750.600098,1799.5,1849.5,1897.100098],[8.94,8.946,8.949,8.958,8.954,8.951,8.948,8.931,8.929,8.931,8.931,8.931,8.906,8.912,8.913,8.923,8.91,8.926,8.923,8.925,8.922,8.925,8.921,8.923,8.923,8.91,8.898,8.899,8.878,8.86,8.867,8.851,8.845,8.756,8.778,8.742,8.73,8.564,8.473,7.821,7.094,6.422,6.091,5.462,4.852,4.521,4.204,3.886,3.701,3.556,3.432,3.281,3.175,3.087,3.007,2.933,2.869,2.848,2.797,2.739,2.683,2.64,2.633,2.592,2.56,2.521,2.489,2.462,2.445],[34.505856,34.507854,34.50787,34.509869,34.507877,34.508865,34.50687,34.503845,34.502865,34.502872,34.503845,34.502872,34.49987,34.49987,34.499863,34.500881,34.499863,34.500877,34.501865,34.501881,34.501869,34.499878,34.500881,34.500862,34.499874,34.497875,34.494881,34.493874,34.489876,34.486881,34.487881,34.484886,34.484882,34.481888,34.528862,34.539856,34.538849,34.535851,34.538872,34.483902,34.419945,34.35498,34.372971,34.318027,34.291035,34.281052,34.283043,34.286045,34.304039,34.321056,34.344025,34.37701,34.403,34.439983,34.460972,34.485973,34.51395,34.54393,34.563923,34.581913,34.597897,34.613895,34.6339,34.658886,34.672867,34.686867,34.695858,34.702885,34.710861]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_308","geolocation":{"type":"Point","coordinates":[91.252,-44.995]},"basin":3,"timestamp":"2018-07-15T06:27:16.000Z","date_updated_argovis":"2023-01-26T10:48:05.885Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_308.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":308,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,9.6,20.4,29.9,40.5,50.5,60.5,70.400002,80.5,89.900002,99.599998,109.699997,120.099998,129.600006,139.399994,149.800003,159.600006,170.300003,180.300003,189.800003,200,210.399994,220,230.399994,239.300003,250.600006,260.399994,270.100006,280.299988,289.899994,300,310.299988,320.100006,329.600006,340.299988,350.100006,360.100006,380.399994,400.200012,450.5,500.399994,549.799988,600.099976,650.5,700.200012,750.400024,800.5,850.200012,900,950.099976,1000.299988,1049.699951,1099.800049,1150.099976,1200.400024,1249.699951,1299.699951,1350.199951,1396.900024,1450.199951,1499.900024,1550.199951,1599.699951,1650.199951,1700.300049,1750.400024,1799.400024,1849.699951,1898.699951],[9.246,9.247,9.248,9.244,9.251,9.25,9.251,9.243,9.243,9.242,9.243,9.245,9.246,9.247,9.251,9.251,9.252,9.253,9.255,9.256,9.268,9.274,9.275,9.277,9.28,9.275,9.276,9.276,9.597,9.617,9.497,9.335,9.047,8.936,9.007,9.102,8.837,8.676,8.544,7.347,6.987,6.464,5.695,5.23,4.703,4.392,4.153,3.869,3.63,3.498,3.389,3.297,3.154,3.06,2.959,2.903,2.824,2.771,2.712,2.671,2.653,2.636,2.604,2.579,2.547,2.529,2.506,2.474,2.435],[34.500988,34.499981,34.499989,34.498981,34.500984,34.499985,34.500988,34.497982,34.497982,34.496986,34.495998,34.49699,34.496986,34.49699,34.496994,34.496994,34.496986,34.495987,34.496986,34.496986,34.499981,34.499977,34.50098,34.499977,34.500992,34.498974,34.498985,34.499992,34.594929,34.647911,34.633915,34.60693,34.568958,34.554962,34.575951,34.60593,34.572952,34.562965,34.566963,34.427059,34.424061,34.388073,34.316143,34.298157,34.2672,34.282181,34.289181,34.288185,34.310184,34.334171,34.353172,34.378155,34.407131,34.443115,34.4631,34.484097,34.510086,34.534084,34.559067,34.581043,34.600048,34.617031,34.635017,34.65403,34.67099,34.681,34.692993,34.70499,34.713993]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_307","geolocation":{"type":"Point","coordinates":[91.345,-45.125]},"basin":3,"timestamp":"2018-07-05T02:39:19.000Z","date_updated_argovis":"2023-01-26T10:48:04.109Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_307.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":307,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.7,20,29.799999,39.5,50.099998,58.099998,70.5,80.199997,90.400002,100.300003,110.400002,120.400002,130.399994,140.300003,150.300003,160.399994,169.899994,180.300003,189.5,199.300003,210.600006,220.399994,230.199997,239.899994,250,260.399994,270,279.899994,290,299.899994,310.5,320.399994,329.899994,339.899994,349.799988,358.5,380,399.799988,450.299988,500,550.099976,600,649.799988,700.400024,749.099976,800.400024,850.099976,899.799988,950.5,1000.200012,1049.900024,1100.199951,1150.400024,1200,1250.199951,1300,1350.199951,1399.5,1450,1500.400024,1550.300049,1600.199951,1650.300049,1699.5,1749.699951,1799.599976,1850.300049,1899.699951],[8.859,8.862,8.864,8.865,8.858,8.864,8.863,8.862,8.86,8.748,8.725,8.725,8.674,8.625,8.586,8.549,8.474,8.479,8.478,8.449,8.42,8.421,8.492,8.615,8.933,9.082,8.982,8.859,8.661,8.6,8.577,8.394,8.188,8.115,8.031,7.891,7.793,7.535,7.431,7.116,6.458,5.929,5.399,5.065,4.59,4.226,3.945,3.784,3.618,3.413,3.347,3.197,3.099,3.014,2.907,2.831,2.797,2.793,2.718,2.675,2.658,2.62,2.585,2.552,2.532,2.504,2.476,2.441,2.411],[34.419022,34.420017,34.42001,34.42001,34.419025,34.420021,34.420006,34.419018,34.418007,34.40004,34.39904,34.395031,34.395027,34.378033,34.372036,34.367039,34.351059,34.353062,34.352062,34.347057,34.343056,34.344063,34.363056,34.395039,34.483986,34.530941,34.535957,34.541954,34.521957,34.514965,34.509968,34.494972,34.479004,34.473003,34.464989,34.459019,34.459003,34.443016,34.44302,34.442024,34.395065,34.360092,34.317127,34.315128,34.285156,34.272163,34.273178,34.302143,34.325146,34.342148,34.36515,34.391121,34.42712,34.444099,34.476082,34.503075,34.533054,34.564026,34.578037,34.596016,34.614998,34.637005,34.65699,34.666977,34.676971,34.690971,34.700977,34.711971,34.719955]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_306","geolocation":{"type":"Point","coordinates":[91.763,-45.477]},"basin":3,"timestamp":"2018-06-24T22:29:53.002Z","date_updated_argovis":"2023-01-26T10:48:02.205Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_306.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":306,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.9,20.400002,29.800001,39.900002,50.700001,60.200001,70.299995,79.5,89.699997,100.699997,110.199997,120,128.800003,140.199997,150.800003,160.199997,169.899994,178.099991,190.300003,200.199997,210.300003,220.699997,230.5,240,250,260.200012,270.100006,280.700012,290.400024,300.700012,310,320.400024,330.200012,340.100006,350.200012,360.200012,380.300018,400.400024,450.600006,500.200012,549.900024,600,650.700012,700.400024,750.600037,800.400024,850.700012,900.5,950.299988,1000.600037,1050.099976,1099.899902,1150.399902,1200,1250.399902,1300,1349.899902,1400.5,1450.399902,1499.799927,1550.399902,1600,1648.399902,1699.899902,1750,1799.599976,1850.199951],[8.955,8.998,8.984,8.984,8.989,8.99,8.987,8.987,8.993,8.995,8.992,8.977,8.985,8.987,8.993,9.011,9.005,9.26,9.465,10.321,10.203,10.034,9.839,9.658,9.504,9.3,9.03,9.093,8.942,8.828,8.716,8.673,8.622,8.485,8.341,8.242,8.211,7.97,7.746,7.275,6.671,5.955,5.339,4.986,4.434,4.194,3.809,3.733,3.521,3.394,3.277,3.153,3.076,2.986,2.943,2.894,2.796,2.706,2.707,2.684,2.654,2.63,2.583,2.549,2.522,2.486,2.455,2.43],[34.355942,34.363918,34.359917,34.359932,34.359928,34.359928,34.358929,34.359928,34.360928,34.359928,34.358944,34.356941,34.357925,34.357929,34.359924,34.361938,34.360931,34.455872,34.496834,34.728714,34.723717,34.694736,34.674755,34.648769,34.62677,34.597794,34.559822,34.5868,34.568817,34.56081,34.557831,34.558826,34.553833,34.546844,34.529839,34.517857,34.518852,34.50486,34.48888,34.463886,34.415932,34.360989,34.311012,34.308002,34.277035,34.280052,34.275043,34.31802,34.32502,34.350025,34.380005,34.404995,34.427982,34.455967,34.481956,34.508938,34.533913,34.551922,34.578903,34.595898,34.612896,34.630882,34.649872,34.662868,34.680862,34.695854,34.704842,34.71384]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_305","geolocation":{"type":"Point","coordinates":[91.692,-45.431]},"basin":3,"timestamp":"2018-06-14T18:27:00.001Z","date_updated_argovis":"2023-01-26T10:48:00.398Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_305.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":305,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.2,19,30.599998,40.700001,50.799999,60.200001,70.600006,80.200005,90.200005,100.900002,110.300003,120,130.199997,140.400009,150.100006,160.400009,170.100006,179.900009,189.800003,199.800003,210.199997,220.100006,228.199997,240.699997,250.699997,260.5,270.599976,280.799988,290.399994,300.399994,310.099976,320.399994,329.899994,340,350.5,360.699982,380.399994,400.799988,450.299988,500.5,550,600.599976,650.399963,700.799988,749.399963,800.700012,850.5,900.599976,950.799988,1000.299988,1050.600098,1100.5,1150.400024,1200.100098,1249.5,1300.5,1350.700073,1400.400024,1450.700073,1500.600098,1550.700073,1600.5,1649.400024,1700.600098,1750.100098,1800.100098,1849.900024],[9.283,9.29,9.29,9.299,9.286,9.293,9.299,9.316,9.31,9.315,9.331,9.31,9.315,9.542,10.081,10.842,11.115,11.162,11.15,10.933,10.92,10.743,10.647,10.328,9.716,9.644,9.586,9.407,8.797,8.802,8.952,8.897,8.533,8.412,8.331,8.355,8.009,7.697,7.452,7.343,6.725,6.05,5.698,5.019,4.489,4.208,3.897,3.685,3.605,3.419,3.288,3.244,3.123,3.003,2.914,2.856,2.792,2.798,2.763,2.692,2.655,2.625,2.593,2.559,2.51,2.48,2.451,2.419],[34.392834,34.392841,34.392826,34.393841,34.389839,34.391834,34.393841,34.397835,34.397839,34.39584,34.399841,34.393845,34.39484,34.455795,34.588726,34.792603,34.865566,34.877552,34.878548,34.837566,34.846581,34.817593,34.796608,34.743645,34.628712,34.634701,34.644703,34.61573,34.523769,34.533768,34.574741,34.564751,34.512787,34.505798,34.505795,34.519787,34.46981,34.428844,34.417854,34.46183,34.415863,34.359898,34.341911,34.302937,34.278961,34.289948,34.282955,34.302967,34.332966,34.347946,34.369938,34.391914,34.42292,34.442902,34.47588,34.499874,34.523861,34.553837,34.576836,34.592827,34.608826,34.625809,34.647797,34.665783,34.680809,34.69278,34.703773,34.712772]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_304","geolocation":{"type":"Point","coordinates":[90.875,-45.608]},"basin":3,"timestamp":"2018-06-04T14:32:30.001Z","date_updated_argovis":"2023-01-26T10:47:58.503Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_304.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":304,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.8,20.200001,30.299999,40.299999,50.299999,60.400002,70.300003,80.099998,90,100.199997,109.699997,120,130.100006,140.600006,149.899994,160.5,169.800003,179.899994,189.5,200.399994,210.300003,219.800003,230.5,240.399994,250.5,260.100006,269.899994,280.299988,290.100006,300.299988,309.899994,319.700012,329.700012,339.799988,349.799988,359.700012,379.899994,399.899994,450.200012,499.700012,550,598.599976,650.400024,699.599976,750.200012,800.299988,850.200012,900.299988,950,999.900024,1050.099976,1098.900024,1150.300049,1199.699951,1249.900024,1300.400024,1349.800049,1400.300049,1449.900024,1500.5,1550,1599.800049,1650.199951,1699.699951,1749.900024,1800.400024,1849.699951],[8.537,8.545,8.551,8.555,8.558,8.555,8.556,8.557,8.558,8.56,8.553,8.549,8.547,8.543,8.542,8.543,8.547,8.568,9.418,9.281,9.193,9.068,9.038,8.951,8.894,8.815,8.594,8.135,7.926,7.867,7.449,7.588,7.567,7.498,7.367,7.308,7.411,7.032,7.17,6.701,6.083,5.576,5.08,4.681,4.199,4.069,3.736,3.691,3.517,3.365,3.245,3.11,2.997,2.994,2.912,2.866,2.794,2.707,2.684,2.658,2.614,2.577,2.551,2.51,2.525,2.49,2.461,2.433],[34.21806,34.22007,34.218071,34.220062,34.22007,34.219063,34.219078,34.219067,34.21907,34.219059,34.218071,34.217064,34.216072,34.216068,34.216061,34.21706,34.21907,34.233055,34.53788,34.525883,34.518875,34.500893,34.500904,34.503914,34.501904,34.498913,34.463932,34.384975,34.360992,34.361996,34.30204,34.333023,34.340015,34.347023,34.334023,34.335026,34.363003,34.329037,34.376999,34.374008,34.32605,34.303062,34.277081,34.275097,34.257103,34.278107,34.270115,34.310081,34.334084,34.350071,34.387051,34.405045,34.428036,34.462009,34.483013,34.510994,34.533993,34.552975,34.576962,34.595947,34.618946,34.637943,34.65493,34.666924,34.67992,34.695911,34.70491,34.713905]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_303","geolocation":{"type":"Point","coordinates":[89.968,-46.18]},"basin":3,"timestamp":"2018-05-25T10:26:49.001Z","date_updated_argovis":"2023-01-26T10:47:56.769Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_303.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":303,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.2,20.300001,30.300001,40.700001,50.5,59.799999,69.199997,80.5,90.699997,100.799995,110.599998,120.699997,130,140.099991,149.899994,160.300003,170.199997,180.399994,189.800003,200.5,209.899994,219.199997,230.300003,240.099991,250.099991,260.5,270.700012,280.700012,290.400024,300.200012,310,320.600006,330.700012,340.600006,349.800018,360.300018,380.700012,399.900024,450.5,500.200012,550,599.5,650.299988,700.5,748.600037,800.299988,850.700012,900.600037,950.600037,1000.700012,1050.299927,1100.699951,1150.5,1199.899902,1250.599976,1300.199951,1350.699951,1400.399902,1450.799927,1500.399902,1549.899902,1600.099976,1650.699951,1700.5,1750.099976,1799.599976,1850.5],[8.786,8.787,8.789,8.791,8.79,8.792,8.793,8.796,8.797,8.799,8.803,8.814,8.967,9.221,9.934,10.304,10.174,9.873,9.755,9.649,9.45,9.262,8.783,8.761,8.837,8.685,8.666,8.628,8.189,8.129,7.971,7.897,7.656,7.394,7.187,7.396,7.337,7.31,7.08,6.411,5.987,5.444,4.993,4.419,4.259,3.963,3.779,3.698,3.445,3.287,3.22,3.103,3.066,2.987,2.875,2.807,2.803,2.715,2.671,2.626,2.597,2.573,2.555,2.517,2.482,2.457,2.425,2.392],[34.168968,34.168972,34.168961,34.168964,34.169975,34.168964,34.169968,34.170979,34.171974,34.17297,34.176971,34.183975,34.255939,34.356865,34.583725,34.699661,34.683681,34.64571,34.630699,34.611725,34.580738,34.549759,34.475796,34.476807,34.501801,34.487793,34.499813,34.490795,34.426842,34.418858,34.402863,34.401863,34.378864,34.341908,34.320911,34.373882,34.371876,34.403858,34.386879,34.353912,34.335922,34.296947,34.271973,34.257973,34.270981,34.277988,34.299988,34.326969,34.338951,34.368942,34.389935,34.41692,34.45491,34.474884,34.490875,34.513878,34.540871,34.555855,34.576851,34.594837,34.61882,34.641808,34.655785,34.671799,34.683781,34.69379,34.70578,34.716789]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_302","geolocation":{"type":"Point","coordinates":[90.669,-46.667]},"basin":3,"timestamp":"2018-05-15T06:28:35.000Z","date_updated_argovis":"2023-01-26T10:47:54.884Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_302.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":302,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.9,10.599999,20.1,30.400002,39.900002,49.700001,59.600002,70.299995,79.799995,90.599998,99.799995,110.099998,119.799995,130.300003,140.699997,150.099991,158.199997,170.399994,180.199997,190.599991,200.800003,210.300003,220.699997,230,240.199997,250.599991,260.5,270.400024,280.600006,290.400024,300.5,310.5,320.600006,330.100006,339.900024,349.900024,360.300018,380.700012,399.900024,450.200012,500,550.100037,600.400024,650.299988,700.100037,749.700012,800.299988,850.100037,900.100037,950.799988,1000.5,1050.399902,1100.699951,1150.399902,1200.5,1249.699951,1300.799927,1350.5,1400,1450.299927,1500.299927,1550,1598,1650.399902,1700.199951,1749.899902,1800.5,1849.399902],[9.282,9.28,9.281,9.281,9.281,9.282,9.283,9.284,9.285,9.286,9.289,9.29,9.29,9.112,8.74,8.869,9.215,10.302,10.221,9.939,9.848,9.577,9.313,9.118,8.619,8.717,8.704,8.472,8.346,8.282,8.466,8.179,8.09,7.795,7.905,7.775,7.6,7.326,7.251,6.711,6.182,6.022,5.135,4.908,4.421,4.146,3.96,3.359,3.317,3.385,3.138,3.061,3.092,3.041,2.91,2.847,2.798,2.747,2.723,2.686,2.625,2.586,2.494,2.526,2.492,2.457,2.42,2.403],[34.245899,34.242912,34.244907,34.245895,34.244904,34.245903,34.245918,34.2449,34.245911,34.245899,34.245907,34.246906,34.245903,34.237919,null,34.255898,34.377838,34.690651,34.678654,34.634686,34.624695,34.57272,34.535759,34.500755,34.418819,34.465794,34.476788,34.44281,34.43782,34.440804,34.48278,34.436817,34.431828,34.395836,34.426826,34.418835,34.39183,34.374878,34.371864,34.359879,34.32291,34.354897,34.275944,34.296932,34.274944,34.272972,34.293941,34.250992,34.297939,34.344933,34.355938,34.385914,34.442883,34.465878,34.475868,34.495872,34.527855,34.551834,34.573822,34.591827,34.610802,34.6278,34.630806,34.665794,34.678776,34.693768,34.706741,34.712757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_301","geolocation":{"type":"Point","coordinates":[91.44,-47.33]},"basin":3,"timestamp":"2018-05-05T02:35:57.000Z","date_updated_argovis":"2023-01-26T10:47:53.171Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_301.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":301,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,11,20.5,30.1,40.200001,50,60.600002,69.699997,80.599998,90.5,100.799995,109.399994,120.899994,130.5,140.5,150.5,159.899994,170,179.800003,189.899994,200.899994,210.5,220.300003,230.399994,240.300003,250.800003,260.400024,270.400024,280.600006,290,299.900024,310.100006,320.400024,330.100006,340.100006,350.100006,360.400024,378.5,400.800018,450.200012,500,549.900024,600.200012,650,700.200012,750.400024,800.200012,850.600037,900.5,950.5,1000.5,1050.599976,1099,1150.199951,1199.799927,1250.099976,1300.099976,1350,1400.299927,1450.699951,1500.099976,1549.799927,1600.699951,1650.199951,1700.5,1750.199951,1800,1850.099976],[8.573,8.575,8.577,8.59,8.592,8.601,8.601,8.603,8.605,8.595,8.591,8.589,8.602,8.58,7.846,8.814,8.484,8.39,7.673,7.647,7.577,7.607,7.731,7.645,7.8,7.748,7.402,7.231,7.119,6.989,6.796,7.011,6.967,6.646,6.864,6.719,6.738,6.481,6.203,5.59,5.078,4.758,4.268,4.252,3.769,3.816,3.386,3.275,3.181,3.125,3.083,3.072,3.002,2.784,2.797,2.694,2.63,2.594,2.541,2.495,2.432,2.401,2.403,2.398,2.406,2.391,2.375,2.366],[34.063984,34.064983,34.064999,34.066994,34.06699,34.067982,34.068001,34.067989,34.066982,34.065983,34.064999,34.064999,34.067989,34.074986,34.161953,null,34.384819,34.369827,34.259895,34.267887,34.268883,34.287891,34.326866,34.321865,34.380829,34.36784,34.325867,34.302872,34.30088,34.288902,34.266911,34.324867,34.326874,34.293888,34.343857,34.329865,34.342873,34.336864,34.327877,34.290897,34.255928,34.256935,34.235947,34.281921,34.262947,34.319923,34.295944,34.320934,34.34692,34.379887,34.408882,34.450863,34.47485,34.476841,34.507839,34.523823,34.541824,34.555809,34.577785,34.590797,34.610786,34.622795,34.643768,34.663765,34.68375,34.695747,34.708736,34.72073]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_300","geolocation":{"type":"Point","coordinates":[91.393,-47.959]},"basin":3,"timestamp":"2018-04-24T22:36:48.002Z","date_updated_argovis":"2023-01-26T10:47:51.312Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_300.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":300,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.9,10.099999,20.799999,30.699999,40.800003,50.300003,60.300003,70.900002,81,91.099998,100.300003,110.300003,120.400002,130.599991,140.799988,150,160.199997,170.299988,180.899994,190.5,200.199997,210.199997,220.199997,230.199997,238.899994,251.099991,260.799988,270.799988,280.299988,290.299988,300.699982,310.5,320.199982,330.799988,340.899994,350.799988,360.899994,380.299988,400.5,450.600006,500.299988,550,600.5,650.200012,700.300049,750.700012,800.400024,850.600037,900.300049,950.5,1000.100037,1050.599976,1100.700073,1150.800049,1200.099976,1250.099976,1300.400024,1350.300049,1399.900024,1450.800049,1500.800049,1550.800049,1600.200073,1650.5,1700.400024,1750.599976,1800.700073,1850.099976,1900.099976],[8.675,8.662,8.683,8.657,8.595,8.552,8.54,8.438,8.36,8.321,8.721,9.753,9.87,10.06,9.9,9.782,9.638,9.327,9.051,8.664,8.362,8.252,8.246,8.177,8.161,8.141,8.301,8.2,8.016,7.955,7.854,7.79,7.696,7.602,7.394,7.168,7.13,6.874,6.649,6.526,5.608,4.888,4.583,4.348,4.115,3.931,3.813,3.684,3.491,3.4,3.275,3.152,3.033,2.943,2.881,2.813,2.769,2.721,2.681,2.65,2.617,2.584,2.542,2.508,2.481,2.443,2.38,2.352,2.312],[33.969913,33.96394,33.969925,33.964939,33.96093,33.956917,33.95293,33.946941,33.944958,34.034908,34.301739,34.556595,34.601559,34.651524,34.634548,34.614552,34.589577,34.537605,34.48864,34.432671,34.379696,34.364723,34.383713,34.368717,34.396702,34.405685,34.454655,34.444687,34.426678,34.422691,34.417686,34.416683,34.411697,34.413704,34.397709,34.376724,34.378738,34.363728,34.351738,34.373718,34.294792,34.254818,34.265816,34.281818,34.300789,34.3218,34.334793,34.353786,34.367771,34.393749,34.418747,34.441738,34.466736,34.492714,34.514702,34.536686,34.555683,34.577667,34.596657,34.616646,34.638657,34.65464,34.673645,34.686634,34.696629,34.701626,34.705612,34.714626,34.71862]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_299","geolocation":{"type":"Point","coordinates":[90.836,-48.011]},"basin":3,"timestamp":"2018-04-14T18:40:26.001Z","date_updated_argovis":"2023-01-26T10:47:49.566Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_299.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":299,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.4,20.700001,30.5,40.900002,50.700001,60.299999,70.099998,80.199997,90.399994,100.299995,110.099998,120,130.300003,140.300003,150.300003,160.399994,170.5,180.800003,190.199997,200.599991,210,220.199997,230.599991,240.399994,250.399994,259.900024,270.700012,280.300018,290,300,309.900024,319.800018,330,340.300018,348,360.700012,380.5,400.5,450.5,500.400024,550,600.700012,650.299988,700.700012,750.600037,800.299988,850,899.900024,950.400024,1000.5,1050.199951,1100.399902,1150.199951,1200.099976,1250.299927,1299.699951,1350.399902,1400.099976,1449.599976,1500.5,1549.899902,1600.5,1649.899902,1700.699951,1750.399902,1800,1849.899902,1900.299927],[10.462,10.46,10.454,10.458,10.459,10.466,10.467,10.471,10.501,10.518,10.537,10.561,10.573,10.601,10.843,11.349,11.537,11.482,11.394,11.337,11.275,11.174,11.112,11.071,11.047,11.016,11.01,11.003,10.968,10.912,10.88,10.843,10.79,10.732,10.665,10.641,10.579,10.397,10.015,9.362,8.738,8.02,7.184,6.546,5.692,5.196,4.819,4.469,4.065,3.874,3.67,3.541,3.38,3.252,3.169,3.047,2.951,2.87,2.81,2.756,2.722,2.669,2.651,2.637,2.602,2.579,2.537,2.503,2.475],[34.467712,34.466713,34.467697,34.467705,34.467697,34.467705,34.467728,34.467728,34.481701,34.489685,34.497696,34.507687,34.512676,34.52668,34.618626,34.814499,34.909454,34.912453,34.901447,34.895458,34.88747,34.874481,34.868458,34.865479,34.868484,34.864468,34.863472,34.865467,34.861465,34.853481,34.849483,34.844494,34.838482,34.8335,34.830494,34.828491,34.826508,34.79953,34.74456,34.671623,34.612644,34.540707,34.464748,34.404797,34.337837,34.305874,34.297874,34.283886,34.290894,34.303898,34.314888,34.349865,34.381855,34.417828,34.429829,34.455818,34.480808,34.517784,34.534771,34.561768,34.580772,34.598743,34.617741,34.631733,34.649712,34.661705,34.680717,34.696693,34.70369]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_298","geolocation":{"type":"Point","coordinates":[91.099,-48.69]},"basin":3,"timestamp":"2018-04-04T14:28:12.001Z","date_updated_argovis":"2023-01-26T10:47:47.800Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_298.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":298,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.4,20,30.299999,40.599998,50.599998,60.099998,70.400002,80.400002,90.400002,99.699997,110.5,120.099998,130.300003,138.699997,150.5,160,170.5,179.899994,189.699997,200,210.100006,220.199997,230.100006,240.300003,250.100006,260,270.200012,279.799988,290.5,300.399994,310.399994,319.600006,329.700012,340,349.5,360,380.100006,400.399994,450.299988,499.899994,550,600.400024,649.799988,700.099976,750.099976,800.200012,849.700012,900.299988,950,999.099976,1050.599976,1100.199951,1149.900024,1200,1250.300049,1296.099976,1350,1400.400024,1450,1500.099976,1550.400024,1599.800049,1650,1700.400024,1749.699951,1800.199951,1849.199951,1896.900024],[10.545,10.551,10.555,10.564,10.566,10.566,10.571,10.799,10.881,10.937,10.946,10.93,11.01,11.167,11.448,11.679,11.632,11.474,11.419,11.275,11.275,11.217,11.186,11.13,11.03,10.978,11.007,11.031,11.015,10.989,10.939,10.919,10.866,10.819,10.764,10.743,10.688,10.554,10.132,9.364,8.972,8.204,7.307,6.386,5.766,5.118,4.766,4.3,4.071,3.96,3.781,3.472,3.424,3.333,3.23,3.149,3.104,2.935,2.794,2.818,2.754,2.712,2.694,2.653,2.609,2.578,2.534,2.514,2.492],[34.441792,34.44178,34.442791,34.441795,34.443783,34.442787,34.44479,34.537735,34.5797,34.600697,34.603683,34.602684,34.632671,34.699631,34.811577,34.928501,34.9305,34.90752,34.900517,34.88052,34.885517,34.880524,34.876541,34.870548,34.852562,34.845558,34.858555,34.865532,34.866531,34.862541,34.855556,34.851555,34.843555,34.838554,34.830563,34.830563,34.828568,34.808575,34.745632,34.653683,34.633705,34.559753,34.457832,34.378883,34.337914,34.29195,34.28196,34.267982,34.292969,34.312946,34.332947,34.342949,34.385941,34.405922,34.422935,34.448898,34.477898,34.495872,34.516872,34.540855,34.560841,34.585835,34.605827,34.62582,34.647793,34.660782,34.677784,34.687798,34.696781]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_297","geolocation":{"type":"Point","coordinates":[91.122,-48.669]},"basin":3,"timestamp":"2018-03-25T10:36:31.001Z","date_updated_argovis":"2023-01-26T10:47:45.930Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_297.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":297,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.900001,20.299999,29.699999,40.299999,50.5,60.299999,70.400002,79.600006,89.700005,99.900002,110.100006,119.700005,130.300003,138.300003,150,160.100006,169.900009,180,190.300003,200.199997,210.199997,219.800003,229.800003,239.900009,250.100006,259.799988,269.399994,280,289.699982,300.099976,310.199982,320.199982,329.799988,340.199982,349.699982,360.099976,380.199982,398.399994,449.699982,499.899994,549.5,600.200012,650,699.599976,750.099976,800.399963,849.599976,899.899963,949.200012,1000.299988,1050.200073,1099.700073,1150.200073,1200.100098,1249.800049,1299,1350.200073,1400,1449.300049,1500.300049,1550.200073,1600,1650.100098,1700.100098,1749.700073,1800,1849.700073,1899],[10.598,10.597,10.598,10.6,10.604,10.633,11.176,11.186,11.24,11.217,11.21,11.381,11.297,11.195,11.153,11.02,10.937,10.888,10.851,10.86,10.891,10.925,10.945,10.927,10.875,10.805,10.706,10.651,10.626,10.494,10.389,10.261,10.119,9.994,9.929,9.794,9.748,9.487,9.232,8.077,7.932,7.069,6.229,5.477,5.182,4.735,4.415,3.987,3.848,3.639,3.544,3.382,3.299,3.189,3.103,2.983,2.887,2.848,2.791,2.743,2.677,2.628,2.623,2.599,2.577,2.563,2.533,2.496,2.469],[34.252953,34.251961,34.252964,34.253952,34.25396,34.270947,34.551777,34.560787,34.584766,34.581753,34.62875,34.856621,34.866592,34.858612,34.857624,34.835632,34.824638,34.817642,34.816639,34.820648,34.831631,34.844631,34.852612,34.852615,34.84362,34.830631,34.813656,34.803669,34.802647,34.781662,34.764671,34.743683,34.720711,34.703716,34.707729,34.689732,34.697723,34.671745,34.649769,34.488857,34.525845,34.426918,34.36097,34.319023,34.315022,34.287048,34.289055,34.287048,34.305054,34.319035,34.34803,34.37302,34.39801,34.427986,34.451988,34.474968,34.509945,34.535946,34.555931,34.570923,34.593906,34.613895,34.632889,34.649868,34.65987,34.670868,34.685867,34.696854,34.705841]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_296","geolocation":{"type":"Point","coordinates":[88.248,-48.688]},"basin":3,"timestamp":"2018-03-15T06:40:09.000Z","date_updated_argovis":"2023-01-26T10:47:44.191Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_296.nc","date_updated":"2020-11-12T10:21:13.000Z"}],"cycle_number":296,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.1,20.1,29.6,40.5,50.099998,60.099998,70.199997,80.300003,90.400002,100,109.900002,119.900002,130.300003,139.600006,150.5,160.300003,169.899994,180.600006,189.899994,200.5,209.899994,220,230.300003,240.5,250.600006,259.899994,270,280,290.200012,300.600006,310.200012,319.799988,330.5,340.5,349.799988,359.200012,380.5,400.5,450.200012,500.200012,550.400024,599.5,650.200012,700.5,749.700012,800.400024,850.5,900.5,950.5,999.900024,1050.099976,1100.400024,1148.099976,1200.300049,1250,1300,1350,1399.800049,1450.300049,1500.099976,1549.800049,1600.300049,1646.800049,1700,1749.900024,1800,1849.699951,1897.800049],[10.691,10.699,10.721,10.734,10.768,10.881,11.077,11.148,11.165,11.878,11.813,11.643,11.559,11.329,11.125,10.982,10.926,10.853,10.827,10.873,10.867,10.934,11.022,11.025,10.947,10.839,10.673,10.444,10.389,10.307,10.383,10.017,9.759,9.639,9.489,9.431,9.164,9.074,8.894,8.381,7.476,6.56,6.171,5.424,4.632,4.245,4.393,4.082,3.896,3.68,3.619,3.503,3.399,3.267,3.075,2.998,2.924,2.824,2.754,2.743,2.704,2.676,2.641,2.614,2.585,2.544,2.527,2.492,2.46],[34.217857,34.220856,34.232853,34.238857,34.256836,34.317802,34.410763,34.44273,34.466713,34.959438,34.959427,34.939442,34.917469,34.884483,34.8535,34.829544,34.821537,34.812538,34.809536,34.827526,34.828503,34.848507,34.875488,34.875488,34.862507,34.843513,34.806534,34.764565,34.754566,34.746571,34.770565,34.706596,34.668617,34.659618,34.639645,34.635658,34.590687,34.595684,34.593693,34.557701,34.451782,34.371841,34.367847,34.311897,34.244946,34.232956,34.307919,34.302917,34.316906,34.323925,34.358894,34.38089,34.408867,34.429878,34.456856,34.48185,34.50782,34.519821,34.553806,34.578804,34.59679,34.612778,34.634769,34.647766,34.660763,34.67374,34.686745,34.701725,34.711723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_295","geolocation":{"type":"Point","coordinates":[87.006,-47.545]},"basin":3,"timestamp":"2018-03-05T02:28:51.000Z","date_updated_argovis":"2023-01-26T10:47:42.379Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_295.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":295,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.5,20.200001,30.6,40.700001,50.700001,60.299999,71.099998,80.699997,90.099998,100.399994,109.899994,120.599998,130,140.5,150,160.300003,170.599991,178,190.599991,200.300003,210.800003,220.099991,230.699997,240,250.300003,260.100006,270.200012,280.300018,290.5,300.200012,309.800018,320.400024,330.300018,340.300018,350.200012,360.600006,380.300018,400.5,450.700012,500.700012,550.600037,598.700012,650.299988,700,750.299988,800.5,850,899.799988,949.299988,1000.299988,1049.899902,1100,1150.5,1200.199951,1250.199951,1300.599976,1350.399902,1400.199951,1449.699951,1500.299927,1550.099976,1600.299927,1650.699951,1700.299927,1750.199951,1800.599976,1850.599976,1898.699951],[11.257,11.252,11.25,11.245,11.276,11.346,11.426,11.482,10.851,11.029,11.218,11.051,11.409,11.193,11.04,10.854,10.772,10.562,10.573,10.51,10.594,10.563,10.791,10.715,10.698,10.724,10.603,10.549,10.45,10.388,10.296,10.248,10.083,9.99,9.938,9.872,9.784,9.391,9.169,8.525,7.48,6.863,6.03,5.501,4.918,4.576,4.262,4.087,3.902,3.736,3.493,3.486,3.372,3.232,3.147,3.099,2.975,2.891,2.832,2.76,2.745,2.664,2.642,2.638,2.591,2.559,2.542,2.513,2.49],[34.336693,34.336685,34.335674,34.335674,34.346676,34.36367,34.391663,34.413647,34.422649,34.598537,34.694504,34.714481,34.871376,34.837406,34.81142,34.780437,34.770443,34.739475,34.746468,34.737446,34.75946,34.757473,34.81741,34.804428,34.800442,34.813419,34.793438,34.788448,34.775459,34.766457,34.755463,34.747467,34.726486,34.721481,34.725475,34.721489,34.708492,34.654533,34.635536,34.569592,34.452656,34.414684,34.339741,34.319767,34.276798,34.272808,34.271812,34.288818,34.304787,34.328804,34.324787,34.377754,34.402763,34.427742,34.451736,34.478703,34.489719,34.505692,34.532677,34.558681,34.58968,34.59967,34.623653,34.642635,34.65963,34.67263,34.682625,34.692619,34.701626]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_294","geolocation":{"type":"Point","coordinates":[87.561,-47.879]},"basin":3,"timestamp":"2018-02-22T22:46:30.002Z","date_updated_argovis":"2023-01-26T10:47:40.483Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_294.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":294,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.5,20.1,30.6,38.100002,50.5,60.700001,70.599998,80.299995,90.599998,100.599998,110.599998,120,130.599991,140.300003,148.800003,160.599991,170.599991,180.599991,190.599991,200.099991,210,220.800003,230.399994,240.099991,250.300003,260,270.700012,280.400024,290.400024,300.300018,310.5,320.200012,330.5,340.600006,349.900024,359.600006,379.800018,400.700012,450.600006,500,550.5,600.600037,650.5,700.299988,749.900024,800.400024,850.100037,900.299988,950,1000.5,1050.5,1099.799927,1150.399902,1200.5,1250.599976,1300.199951,1350.699951,1400,1449.699951,1500.099976,1550.399902,1600.099976,1649.799927,1700.399902,1750.199951,1799.899902,1850.5,1900.299927],[10.698,10.698,10.699,10.701,10.705,11.007,11.05,11.278,11.332,11.337,11.369,11.405,11.48,11.463,11.484,11.466,11.44,11.333,11.187,11.122,10.906,10.893,10.834,10.82,10.834,10.947,10.896,10.849,10.776,10.694,10.624,10.516,10.558,10.645,10.497,10.585,10.427,10.242,9.79,9.221,8.498,7.975,7.366,6.407,5.624,4.954,4.544,4.423,4.287,3.783,3.764,3.474,3.306,3.28,3.238,3.118,3.02,3.015,2.932,2.857,2.792,2.711,2.689,2.656,2.63,2.591,2.536,2.54,2.486],[34.269695,34.269695,34.269695,34.269711,34.281689,34.535553,34.570538,34.670471,34.696453,34.704453,34.714455,34.730446,34.756439,34.793407,34.822392,34.853363,34.864361,34.870358,34.853374,34.847385,34.809402,34.810398,34.808399,34.807404,34.818409,34.851387,34.841377,34.835396,34.822403,34.808407,34.796406,34.779423,34.797432,34.821396,34.80043,34.826389,34.804409,34.777428,34.712471,34.649517,34.573566,34.535583,34.488625,34.388695,34.327732,34.271801,34.265785,34.302776,34.321777,34.304775,34.336765,34.351765,34.360767,34.384731,34.418716,34.448715,34.468708,34.499699,34.533669,34.557674,34.577644,34.586647,34.600632,34.617634,34.643608,34.655605,34.66761,34.687592,34.694595]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_293","geolocation":{"type":"Point","coordinates":[86.632,-47.717]},"basin":3,"timestamp":"2018-02-12T18:38:00.001Z","date_updated_argovis":"2023-01-26T10:47:38.690Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_293.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":293,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.099999,20.1,30.800001,40.799999,50.700001,60.400002,70.399994,80,90.799995,100.099998,110.299995,120.599998,130.300003,138.099991,150.800003,160.5,170.800003,180.300003,190.099991,200.399994,210.599991,220.099991,230.699997,240.699997,250.399994,260.300018,270.700012,280.600006,289.800018,300.200012,310.400024,320.5,329.800018,340.600006,350.300018,360.100006,380.300018,400.5,450.400024,500.600006,550.299988,600.5,650.600037,700.400024,750.5,800.799988,850.799988,900.5,950.299988,1000.200012,1050.199951,1100,1150.5,1200,1250.299927,1299.699951,1350.5,1399.699951,1450.5,1500.299927,1550.699951,1600.299927,1650.099976,1700,1749.899902,1800.199951,1850.299927,1900.099976],[11.713,11.714,11.707,11.529,11.524,11.522,11.52,11.495,11.469,11.475,11.484,11.491,11.5,11.508,11.512,11.519,11.597,11.81,11.76,11.698,11.524,11.345,11.269,11.174,11.098,11.143,11.15,11.125,11.119,11.093,11.19,11.229,11.214,11.05,10.961,10.861,10.844,10.789,10.543,9.96,9.315,8.702,8.073,7.146,6.528,5.896,5.384,5.006,4.559,4.221,3.92,3.605,3.551,3.426,3.344,3.208,3.008,2.92,2.852,2.752,2.731,2.676,2.633,2.681,2.649,2.626,2.581,2.553,2.518],[34.790379,34.789379,34.788383,34.773392,34.774391,34.774391,34.77438,34.770401,34.767387,34.769386,34.773392,34.775394,34.77639,34.778389,34.780384,34.782391,34.811363,34.919304,34.951294,34.945293,34.915321,34.883331,34.87233,34.860352,34.850353,34.871365,34.87534,34.876335,34.876339,34.876339,34.909332,34.918316,34.91333,34.883335,34.866344,34.852352,34.850368,34.853367,34.825378,34.757435,34.669487,34.617519,34.546562,34.466625,34.418644,34.365707,34.350723,34.330738,34.317741,34.327744,34.320751,34.319763,34.366707,34.392712,34.42371,34.442699,34.456696,34.48967,34.52066,34.532654,34.547657,34.565647,34.59063,34.631611,34.645607,34.657597,34.672588,34.683578,34.694557]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_292","geolocation":{"type":"Point","coordinates":[85.827,-48.023]},"basin":3,"timestamp":"2018-02-02T14:34:11.001Z","date_updated_argovis":"2023-01-26T10:47:36.913Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_292.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":292,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10,20.700001,30.300001,40.100002,50.5,60.299999,70.699997,80.699997,90.699997,100.099998,110.5,120.199997,130.5,140,150,159.599991,170.300003,179.800003,190.599991,200.199997,210.300003,220.5,230.5,240.199997,250.199997,259.700012,270.600006,280.600006,289.800018,300.5,310.100006,319.900024,329.900024,340.700012,349.700012,360.300018,380,399.800018,450.700012,500.600006,550.299988,600.700012,650.600037,700.700012,750,800.700012,850.299988,900.400024,949.799988,1000.400024,1050.5,1100.399902,1150.199951,1200.199951,1250.399902,1299.799927,1350.5,1400.299927,1450.599976,1500.099976,1550,1600.299927,1650.399902,1700.599976,1750.5,1799.699951,1850.199951,1900],[11.104,11.11,11.112,11.114,11.185,11.355,11.576,11.526,11.522,11.536,11.526,11.559,11.696,11.616,11.497,11.391,11.347,11.329,11.197,11.161,11.161,11.174,11.061,11.1,11.123,11.175,11.218,11.204,11.155,11.067,11.014,10.88,10.765,10.69,10.602,10.601,10.593,10.514,10.371,9.352,9.023,8.454,7.326,6.963,5.741,5.71,5.219,4.808,4.389,4.231,3.969,3.742,3.416,3.455,3.284,3.138,2.965,2.988,2.876,2.878,2.845,2.697,2.639,2.594,2.6,2.587,2.578,2.546,2.526],[34.561497,34.565491,34.566486,34.56749,34.602467,34.680424,34.752377,34.743382,34.746391,34.761375,34.785362,34.828335,34.929291,34.930286,34.911301,34.8993,34.894314,34.894306,34.870312,34.869324,34.878315,34.883312,34.865326,34.883305,34.891312,34.907314,34.918297,34.914288,34.903297,34.886311,34.877316,34.852333,34.832355,34.81736,34.809361,34.810349,34.824348,34.818359,34.805363,34.647469,34.640476,34.581516,34.443615,34.45261,34.302711,34.369678,34.345684,34.325714,34.311726,34.320736,34.334717,34.357712,34.353714,34.402706,34.424679,34.437679,34.462662,34.496655,34.518646,34.546627,34.568611,34.573612,34.593601,34.612591,34.632587,34.654568,34.669567,34.681557,34.692547]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_291","geolocation":{"type":"Point","coordinates":[86.034,-47.528]},"basin":3,"timestamp":"2018-01-23T10:38:45.001Z","date_updated_argovis":"2023-01-26T10:47:35.086Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_291.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":291,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.5,20.200001,30.700001,40.200001,50.5,60.299999,70.699997,80.5,90.699997,100.699997,109.899994,120.299995,130,139.699997,149.899994,159.899994,170,180.099991,190.099991,200.300003,209.599991,220.399994,230.899994,240.300003,250.800003,260,270.700012,280,290.400024,300.600006,310.700012,320.100006,329.800018,340.5,350.300018,360.200012,379.400024,400.5,450.300018,500,550.700012,600,650.700012,700.299988,750.200012,800.400024,850.100037,900.299988,949.700012,1000.100037,1050.699951,1099.899902,1149.699951,1200.399902,1250.599976,1299.799927,1350.799927,1399.799927,1450,1500.199951,1550.299927,1600.199951,1646.5,1700.199951,1750.299927,1800.199951,1850.599976,1900],[11.815,11.816,11.82,11.832,11.83,11.832,11.943,11.948,11.952,11.955,11.957,11.99,11.991,11.873,12.006,11.955,11.867,11.722,11.637,11.523,11.387,11.157,11.054,11.123,11.119,11.085,11.066,11.035,11.106,11.113,11.125,11.055,10.988,10.947,10.931,10.903,10.857,10.842,10.727,10.274,9.674,8.958,8.041,7.232,6.443,6.061,5.57,4.978,4.645,4.326,4.099,3.794,3.62,3.436,3.289,3.055,2.949,2.853,2.789,2.754,2.688,2.727,2.735,2.706,2.659,2.613,2.596,2.566,2.531],[34.82132,34.822323,34.822323,34.826317,34.827312,34.827305,34.859303,34.861294,34.862297,34.862309,34.862309,34.872288,34.859291,34.908268,35.003212,34.994217,34.979218,34.953259,34.937263,34.913269,34.885284,34.847321,34.830322,34.8493,34.85532,34.858299,34.855316,34.853313,34.878288,34.883293,34.886295,34.873299,34.861305,34.852314,34.853317,34.85133,34.848316,34.857311,34.842312,34.796356,34.722416,34.647453,34.550518,34.462585,34.394615,34.389641,34.363663,34.336681,34.32769,34.325695,34.330708,34.342705,34.368683,34.393681,34.410675,34.419659,34.441666,34.467644,34.489628,34.515617,34.537601,34.5686,34.598587,34.618557,34.633564,34.648552,34.660557,34.678539,34.691528]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_290","geolocation":{"type":"Point","coordinates":[85.284,-47.53]},"basin":3,"timestamp":"2018-01-13T06:34:55.000Z","date_updated_argovis":"2023-01-26T10:47:33.197Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_290.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":290,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.7,20.6,30.300001,39.700001,50.100002,60.100002,70.699997,80.899994,90.099998,100.099998,110.599998,120.399994,130,140.699997,150.599991,160.5,170.399994,177.699997,190.399994,200.399994,210.199997,220.199997,230.699997,240.199997,250.599991,259.800018,270.5,280.300018,290.400024,300,310.400024,319.800018,330.400024,340.100006,349.700012,359.800018,380,400.800018,450.600006,499.900024,550.200012,600.600037,650.799988,700.600037,750.200012,799.600037,850.100037,900.700012,950,1000.299988,1050.099976,1100.699951,1150.299927,1200,1250.099976,1300.699951,1350.199951,1400.099976,1450.199951,1497.099976,1549.899902,1599.599976,1649.799927,1700.699951,1749.899902,1800.099976,1850.399902,1899.599976],[12.099,12.101,12.101,12.103,12.101,12.101,12.101,12.102,12.106,12.113,12.088,12.063,11.988,11.936,11.872,11.815,11.785,11.769,11.736,11.656,11.537,11.272,11.102,11.141,10.971,10.771,10.854,11,11.053,11.028,10.989,10.957,10.927,10.841,10.775,10.719,10.727,10.783,10.646,9.906,9.238,8.49,7.821,7.036,6.177,5.855,5.318,4.814,4.326,4.05,3.886,3.598,3.452,3.394,3.249,3.041,2.935,2.786,2.782,2.799,2.748,2.694,2.669,2.629,2.59,2.577,2.544,2.511,2.474],[34.870262,34.871269,34.870258,34.870258,34.87027,34.870262,34.87027,34.86927,34.872257,34.876255,34.924229,35.01318,35.001202,34.99321,34.982224,34.973217,34.971214,34.968224,34.962223,34.948235,34.921242,34.87027,34.840302,34.853287,34.832302,34.78233,34.807316,34.849281,34.868286,34.866276,34.861282,34.853279,34.847298,34.830307,34.82032,34.810322,34.816315,34.85429,34.840298,34.75436,34.675423,34.604462,34.536518,34.457561,34.386635,34.377628,34.350647,34.332657,34.32069,34.328678,34.350666,34.365681,34.388657,34.416649,34.431641,34.446629,34.468624,34.485615,34.525597,34.563564,34.583557,34.604549,34.620544,34.637531,34.658535,34.675522,34.688515,34.697506,34.706493]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_289","geolocation":{"type":"Point","coordinates":[84.659,-46.854]},"basin":3,"timestamp":"2018-01-03T02:02:10.000Z","date_updated_argovis":"2023-01-26T10:47:31.392Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_289.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":289,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,9.599999,19.9,30.1,40.400002,49.900002,59.300003,70.300003,80.400002,90.200005,100.200005,110.099998,119.700005,129.699997,139.699997,149.299988,159.899994,170.299988,179.699997,190.099991,199.699997,209.899994,220.199997,230.099991,239.5,249.899994,259.600006,269.600006,279.899994,290.199982,299.399994,310.100006,319.699982,329.299988,340.100006,350,359.899994,379.199982,400.199982,449.799988,500.199982,549.900024,600.200012,650,698.400024,750,799.800049,848.900024,900.200012,949.800049,1000.100037,1050.099976,1099.5,1149.300049,1199.900024,1250.099976,1300.200073,1349.599976,1400.200073,1449.5,1499.5,1550.400024,1600.200073,1650.200073,1699.900024,1749.800049,1799.400024,1849.5,1899.599976],[12.787,12.787,12.79,12.793,12.793,12.778,12.762,12.617,12.153,12.125,12.073,12.05,12.005,12.013,12.004,12.018,11.954,11.888,11.813,11.789,11.677,11.408,11.317,11.303,11.271,11.273,11.212,11.205,11.094,11.066,11.089,10.92,10.897,10.929,10.891,10.852,10.778,10.607,10.348,9.711,8.996,7.647,6.872,6.247,5.907,5.188,4.793,4.464,4.286,3.973,3.688,3.459,3.391,3.276,3.208,3.091,3.005,2.906,2.766,2.786,2.736,2.653,2.652,2.584,2.56,2.53,2.485,2.469,2.453],[34.96032,34.960312,34.959324,34.958317,34.959324,34.961304,34.961319,34.976307,35.023289,35.022301,35.014294,35.009296,35.003288,35.008312,35.010303,35.019299,35.013298,35.009296,34.998302,34.99131,34.967342,34.917362,34.897362,34.898376,34.896374,34.903378,34.899376,34.901371,34.882381,34.878368,34.887379,34.859402,34.858406,34.872406,34.868404,34.868393,34.857384,34.836418,34.805443,34.726486,34.648548,34.505638,34.428699,34.390739,34.386742,34.346783,34.333817,34.333805,34.33279,34.337803,34.355804,34.392784,34.415768,34.434761,34.460758,34.492725,34.512726,34.527725,34.526718,34.559719,34.586697,34.609669,34.633659,34.646671,34.663658,34.674641,34.69463,34.708645,34.714642]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_288","geolocation":{"type":"Point","coordinates":[83.544,-44.365]},"basin":3,"timestamp":"2017-12-23T22:41:16.002Z","date_updated_argovis":"2023-01-26T10:47:29.597Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_288.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":288,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,20.4,29.799999,40.400002,49.900002,58.100002,70.099998,80.200005,90,100.400002,109.599998,119.900002,130.299988,139.699997,149.699997,160.399994,170.099991,180.199997,189.399994,199.599991,208.299988,220.5,230,240.199997,249.899994,260.299988,270.299988,279.899994,289.799988,299.899994,309.899994,320.299988,330,339.600006,350.299988,360,379.699982,399.5,450.299988,500.100006,549.5,600.200012,649.900024,699.900024,750.400024,799.900024,850.400024,900.200012,949.700012,997.700012,1049.700073,1100.200073,1150.5,1200.099976,1250.300049,1299.900024,1349.800049,1400.099976,1449.900024,1500.400024,1549.800049,1600,1649.5,1700.099976,1750,1799.800049,1850.300049,1899.200073],[12.797,12.792,12.802,12.804,12.738,11.914,11.767,11.728,11.692,11.678,11.549,11.528,11.419,11.329,11.006,10.96,11.132,10.672,10.671,10.858,10.787,10.677,10.53,10.707,10.656,10.712,10.808,10.896,10.933,10.923,10.886,10.731,10.67,10.684,10.747,10.669,10.492,10.167,10.052,9.547,9.116,8.417,7.795,7.02,6.291,5.563,5.049,4.653,4.304,4.142,3.829,3.696,3.516,3.461,3.274,3.17,3.119,3.033,2.895,2.84,2.793,2.77,2.742,2.706,2.668,2.631,2.586,2.555,2.522],[34.679466,34.680454,34.680447,34.679447,34.675465,34.674465,34.741425,34.855373,34.92934,34.934326,34.914333,34.911346,34.889362,34.869377,34.807419,34.799419,34.842381,34.749451,34.750446,34.79641,34.787422,34.765423,34.734463,34.776409,34.766441,34.786411,34.8144,34.838387,34.847382,34.846382,34.835403,34.807411,34.802414,34.805405,34.825401,34.814404,34.778427,34.728462,34.726463,34.68848,34.664513,34.59557,34.538616,34.47065,34.409706,34.350746,34.325768,34.313782,34.309792,34.336784,34.336781,34.359787,34.380772,34.416748,34.43375,34.455723,34.482716,34.50771,34.521713,34.539696,34.564674,34.594673,34.61565,34.630642,34.645641,34.661629,34.679619,34.690617,34.701607]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_287","geolocation":{"type":"Point","coordinates":[83.777,-43.525]},"basin":3,"timestamp":"2017-12-13T18:43:58.001Z","date_updated_argovis":"2023-01-26T10:47:27.783Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_287.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":287,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.5,10.099999,19.9,30.6,40.5,50.400002,60.400002,69.900002,80.099998,90.099998,100.099998,109.599998,120,129.5,140.299988,150.299988,159.599991,170.5,180.399994,190.199997,200.299988,210.5,220.5,229.899994,239.699997,249.799988,260,269.600006,280.299988,290.100006,300.100006,309.600006,320,330.299988,340,350.399994,359.899994,379.5,400.5,450.199982,500,549.900024,600.100037,650.400024,699.900024,750.300049,799.700012,849.800049,900.300049,950.300049,1000,1050.200073,1100.300049,1149.900024,1200.099976,1250.300049,1300,1349.800049,1400.200073,1449.5,1499.900024,1549.700073,1599.599976,1649.099976,1700.099976,1750,1799.599976,1849.599976,1900.200073],[12.867,12.863,12.866,12.872,12.873,12.873,12.875,12.305,12.203,12.187,12.16,12.141,12.122,12.098,12.025,12.025,11.97,11.941,11.922,11.906,11.874,11.839,11.807,11.791,11.7,11.619,11.451,11.268,11.151,11.163,11.153,11.131,11.058,10.997,10.965,10.848,10.821,10.814,10.684,10.088,9.479,8.64,7.989,7.458,6.742,6.022,5.489,4.962,4.509,4.3,4.081,3.903,3.679,3.517,3.383,3.291,3.163,3.093,3.036,2.935,2.889,2.83,2.793,2.753,2.714,2.676,2.634,2.594,2.554],[34.969261,34.969265,34.969265,34.969265,34.968266,34.968269,34.966263,35.021248,35.030239,35.028244,35.02425,35.023251,35.023243,35.019253,35.01725,35.024235,35.021252,35.018246,35.018246,35.015247,35.011253,35.010258,35.007248,35.006256,34.997265,34.98328,34.946312,34.911327,34.89233,34.899338,34.895332,34.891327,34.878353,34.867363,34.858356,34.836372,34.838364,34.850361,34.840363,34.757431,34.690483,34.58654,34.521591,34.499622,34.435665,34.366714,34.343727,34.31776,34.303772,34.310768,34.327759,34.345749,34.358757,34.369762,34.394726,34.427723,34.450714,34.480705,34.497704,34.520676,34.550663,34.575645,34.590645,34.60564,34.622608,34.638634,34.65461,34.671612,34.686584]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_286","geolocation":{"type":"Point","coordinates":[84.708,-43.485]},"basin":3,"timestamp":"2017-12-03T14:32:41.001Z","date_updated_argovis":"2023-01-26T10:47:26.000Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_286.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":286,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.799999,19.9,30.4,39.900002,50.300003,60.300003,69.900002,79.900002,90.400002,99.800003,110.300003,120.200005,130,140.299988,150.399994,160.099991,170.399994,180.399994,190.199997,199.799988,209.699997,220,229.799988,239.599991,249.599991,260,269.5,280.100006,290,299.600006,310.299988,320,329.799988,340.299988,349.899994,359.799988,378.199982,400.199982,450.399994,500,549.700012,599.400024,650.100037,699.700012,750,798.900024,850.5,899.5,950.200012,1000,1049.800049,1099.900024,1150.099976,1199.599976,1250.300049,1300.200073,1350.5,1399.700073,1449.900024,1499.400024,1550.200073,1599.599976,1648.400024,1700.099976,1750.300049,1800,1849.599976,1899.800049],[12.109,12.11,12.11,12.118,12.049,11.737,11.412,11.866,11.846,11.846,11.731,11.585,11.323,11.273,11.25,11.211,11.172,11.173,11.183,11.159,11.136,11.16,11.146,11.102,11.072,11.055,10.998,11.006,10.969,10.969,10.976,10.993,10.895,10.805,10.774,10.863,10.858,10.612,10.498,10.08,9.222,8.878,8.185,7.474,6.523,6.028,5.531,5.215,4.754,4.456,4.124,4.093,3.765,3.52,3.301,3.23,3.173,3.129,3.02,2.929,2.878,2.86,2.78,2.754,2.695,2.661,2.602,2.58,2.561],[34.871304,34.871311,34.870304,34.871307,34.868313,34.864319,34.879311,34.992241,34.990253,34.99324,34.970261,34.942276,34.886307,34.876316,34.870312,34.861336,34.86034,34.861328,34.864338,34.864326,34.870323,34.875324,34.875328,34.869331,34.865326,34.863335,34.855335,34.858341,34.851337,34.855339,34.858337,34.865326,34.84433,34.833347,34.831356,34.856327,34.86533,34.824352,34.819359,34.782391,34.65448,34.63549,34.566536,34.50058,34.398663,34.365692,34.344711,34.332718,34.312748,34.316746,34.310749,34.341747,34.345734,34.355747,34.37674,34.400723,34.426704,34.473686,34.501678,34.517666,34.539646,34.565632,34.583626,34.606621,34.625618,34.640614,34.652596,34.665581,34.68158]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_285","geolocation":{"type":"Point","coordinates":[84.903,-44.158]},"basin":3,"timestamp":"2017-11-23T10:35:23.001Z","date_updated_argovis":"2023-01-26T10:47:24.266Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_285.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":285,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.7,20.5,30.1,40.300003,50,60.400002,69.900002,80.200005,89.800003,100,110,119.5,130.299988,139.5,149.599991,157.099991,170.5,180.5,190.5,200.399994,209.799988,220,230.199997,239.699997,250.5,259.799988,270.199982,279.899994,289.799988,300.199982,309.899994,320,329.699982,340.299988,350.199982,359.399994,379.799988,400.399994,449.899994,499.600006,550.200012,599.300049,650.400024,699.800049,750.100037,799.800049,850,899.700012,949.5,1000.100037,1049.800049,1100.300049,1150.099976,1199.800049,1250.099976,1300,1350.400024,1399.599976,1449.700073,1500,1549.5,1600.300049,1648.800049,1700.5,1749.900024,1800.099976,1850,1899.800049],[10.661,10.658,10.662,10.63,10.543,10.506,10.497,10.497,10.543,10.578,10.608,10.582,10.568,10.542,10.543,10.544,10.547,10.585,10.629,10.635,10.673,10.704,10.704,10.675,10.677,10.612,10.605,10.583,10.525,10.509,10.442,10.49,10.565,10.488,10.267,10.073,9.979,9.877,9.602,9.055,8.4,7.84,6.783,6.484,5.914,5.492,5.023,4.675,4.423,4.084,3.945,3.807,3.613,3.516,3.38,3.289,3.147,3.045,2.988,2.859,2.705,2.705,2.713,2.608,2.563,2.557,2.55,2.52,2.476],[34.66143,34.662422,34.66143,34.666424,34.688416,34.69841,34.700405,34.700413,34.714405,34.723392,34.731396,34.726398,34.724392,34.717407,34.718403,34.717403,34.719402,34.730381,34.747364,34.757378,34.775349,34.788361,34.798351,34.795349,34.793343,34.781353,34.780365,34.776356,34.766361,34.763371,34.755375,34.772366,34.804344,34.792358,34.755371,34.729397,34.725403,34.731411,34.695412,34.63546,34.559521,34.525551,34.394642,34.410641,34.368675,34.341705,34.319717,34.307735,34.324726,34.327724,34.347725,34.357704,34.370712,34.409687,34.43367,34.456657,34.479656,34.503647,34.520626,34.535625,34.536629,34.568611,34.598606,34.6096,34.629578,34.651577,34.666569,34.688545,34.69754]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_284","geolocation":{"type":"Point","coordinates":[83.977,-45.032]},"basin":3,"timestamp":"2017-11-13T06:29:41.000Z","date_updated_argovis":"2023-01-26T10:47:22.300Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_284.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":284,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.5,20.5,30.1,40.299999,49.799999,60.599998,70,80.400002,90,99.699997,110.199997,119.800003,130,140.399994,150.100006,160.100006,170,179.899994,187.800003,200.100006,210.100006,220.199997,230.199997,240.199997,250.600006,259.700012,269.600006,279.700012,290,300.299988,309.600006,320.200012,329.799988,340.399994,349.600006,359.600006,380.5,399.700012,450.299988,500.399994,550.099976,600.400024,650.5,700.299988,749.5,799.400024,850.400024,900.299988,949.799988,1000.5,1050,1099.699951,1149.5,1200.099976,1250,1299.900024,1350.5,1400.199951,1449.900024,1500,1550.199951,1600.199951,1650.199951,1700.5,1750.400024,1799.599976,1850.199951,1900.099976],[10.255,10.258,10.202,10.219,10.224,10.217,10.257,10.304,10.333,10.343,10.387,10.407,10.424,10.452,10.444,10.453,10.447,10.441,10.445,10.458,10.482,10.496,10.434,10.384,10.345,10.384,10.383,10.477,10.55,10.589,10.554,10.514,10.492,10.463,10.371,10.338,10.182,9.697,9.32,8.814,7.905,7.093,6.426,5.738,5.325,4.913,4.666,4.367,4.089,3.89,3.654,3.565,3.48,3.3,3.242,3.129,3.026,2.956,2.92,2.853,2.804,2.749,2.695,2.651,2.62,2.591,2.555,2.521,2.483],[34.61639,34.61639,34.614384,34.628387,34.629375,34.628395,34.642372,34.659363,34.668354,34.672375,34.686348,34.692352,34.699348,34.70834,34.708336,34.709339,34.709339,34.708344,34.710342,34.713322,34.72134,34.72533,34.715332,34.710342,34.716331,34.730316,34.733341,34.765305,34.785286,34.806278,34.804287,34.800282,34.798294,34.795296,34.783295,34.780285,34.759304,34.69136,34.630398,34.609421,34.507481,34.446537,34.394569,34.347603,34.327629,34.312653,34.303658,34.306656,34.318665,34.331654,34.337666,34.368641,34.399628,34.417633,34.454597,34.47559,34.501579,34.524559,34.541569,34.562553,34.581524,34.603531,34.624519,34.642521,34.654503,34.66748,34.679493,34.691471,34.703472]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_283","geolocation":{"type":"Point","coordinates":[82.977,-45.618]},"basin":3,"timestamp":"2017-11-03T02:38:55.000Z","date_updated_argovis":"2023-01-26T10:47:20.497Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_283.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":283,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.8,19.4,29.700001,39.099998,50.200001,60.5,70.599998,80.599998,90.099998,100.099998,109.699997,120.400002,130,139.800003,150.199997,160,169.899994,180.199997,189.300003,200.199997,210.600006,220.100006,230.199997,240.100006,250.399994,260,270.100006,280.5,290.100006,299.899994,309.799988,319.799988,330,340.399994,349.700012,359.799988,380.100006,400.200012,449.899994,499.700012,550.5,599.599976,650.299988,700.099976,749.700012,800.299988,850.5,900.099976,949.900024,1000.5,1050.300049,1100.400024,1150.099976,1200.099976,1249.699951,1300.099976,1350,1399.699951,1449.5,1500.300049,1550.199951,1599.800049,1650.5,1700.199951,1749.900024,1799.699951,1849.800049,1900.300049],[10.852,10.852,10.862,10.846,10.867,10.869,10.884,10.885,10.991,10.992,10.999,10.999,10.997,10.996,10.987,10.987,10.95,10.806,10.699,10.673,10.656,10.612,10.616,10.661,10.677,10.684,10.646,10.518,10.532,10.508,10.4,10.406,10.244,10.242,9.931,9.843,9.752,9.518,8.744,8.812,8.261,7.232,6.625,5.995,5.392,4.83,4.504,4.131,4.085,3.821,3.445,3.432,3.338,3.245,3.141,3.095,3.034,2.949,2.874,2.819,2.788,2.741,2.704,2.667,2.63,2.593,2.547,2.513,2.479],[34.762283,34.763283,34.764278,34.760273,34.76527,34.765278,34.770283,34.764275,34.795258,34.796265,34.79726,34.79726,34.796246,34.796253,34.795273,34.796265,34.791256,34.78027,34.770287,34.77029,34.767277,34.765282,34.768265,34.779278,34.786266,34.788265,34.779282,34.755299,34.762287,34.761295,34.7603,34.770298,34.760296,34.765293,34.724319,34.714329,34.709332,34.689346,34.554432,34.619392,34.572426,34.467491,34.418537,34.361576,34.339615,34.304638,34.302643,34.30164,34.328629,34.330635,34.330643,34.382614,34.412586,34.429588,34.454567,34.480553,34.50655,34.52853,34.553539,34.574509,34.594505,34.614502,34.624493,34.641487,34.65448,34.668476,34.684467,34.698452,34.709446]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_282","geolocation":{"type":"Point","coordinates":[81.816,-45.029]},"basin":3,"timestamp":"2017-10-23T22:22:02.002Z","date_updated_argovis":"2023-01-26T10:47:18.695Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_282.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":282,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,20.200001,29.800001,40.299999,50.5,60.600002,70.5,79.699997,90.299995,100.599998,110.599998,119.899994,130.599991,140.099991,150.399994,160.699997,170.399994,180.399994,190.399994,200.800003,210.899994,220.099991,230.300003,240.199997,250.300003,260.700012,270.600006,280.5,290.100006,300.300018,309.600006,320.400024,330.200012,340.300018,350,360.700012,380.600006,400.200012,450.600006,500.400024,550.400024,599.700012,650.5,700.200012,750.299988,800.100037,850.299988,899.900024,949,1000.200012,1050.399902,1099.899902,1150.399902,1200.099976,1250.399902,1299.5,1350.599976,1399.799927,1450.5,1500.199951,1550.099976,1600.099976,1650.5,1700.399902,1749.699951,1800.099976,1850,1900.099976],[10.684,10.686,10.674,10.667,10.683,10.685,10.91,11.017,11.031,11.045,11.122,11.143,11.15,11.049,10.934,10.279,10.462,10.429,10.329,10.316,10.499,10.631,10.708,10.741,10.752,10.715,10.638,10.497,10.504,10.591,10.592,10.417,10.377,10.306,10.228,10.103,10.013,9.659,9.282,8.541,7.917,7.265,6.863,6.021,5.483,5.034,4.556,4.343,4.075,3.741,3.591,3.511,3.369,3.221,3.175,3.104,3.037,2.943,2.853,2.858,2.772,2.745,2.71,2.666,2.615,2.577,2.567,2.536,2.494],[34.718189,34.716198,34.716206,34.714211,34.71719,34.720188,34.77317,34.797146,34.806137,34.808132,34.834129,34.842121,34.853115,34.831127,34.795135,null,34.711201,34.709209,34.689228,34.689224,34.737206,34.769157,34.789162,34.799141,34.80315,34.795151,34.779163,34.756176,34.76717,34.80415,34.820129,34.795166,34.79015,34.791172,34.78017,34.762173,34.748184,34.702221,34.65926,34.593285,34.536339,34.490372,34.457386,34.380447,34.342472,34.318501,34.292522,34.311508,34.334499,34.324509,34.350494,34.371487,34.397488,34.419479,34.448448,34.475452,34.49942,34.523418,34.533424,34.560394,34.578388,34.605385,34.625362,34.642365,34.658356,34.674343,34.682343,34.692329,34.702332]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_281","geolocation":{"type":"Point","coordinates":[81.096,-44.215]},"basin":3,"timestamp":"2017-10-13T18:30:20.001Z","date_updated_argovis":"2023-01-26T10:47:16.816Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_281.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":281,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,20,29.599998,40,49.399998,60.299999,69.900002,80.400002,90.100006,99.600006,110.100006,120.200005,129.800003,139.5,150.199997,159.600006,169.5,179.600006,189.100006,200.199997,210.199997,218.699997,230.199997,240,249.699997,259.699982,269.599976,280,290.299988,299.699982,309.5,319.699982,329.799988,339.5,349.899994,359.5,379.799988,399.699982,450.099976,500.299988,549.899963,600.099976,650.200012,700.099976,750.299988,800.299988,850.200012,899.599976,949.399963,1000.299988,1050,1099.700073,1150.400024,1199.800049,1249.200073,1299.700073,1350.300049,1399.600098,1449.400024,1500.300049,1549.700073,1600.200073,1650,1699.600098,1749.300049,1799.700073,1850,1900.200073],[7.877,7.877,7.874,7.874,7.882,7.881,7.974,8.613,8.742,8.81,8.905,8.99,8.973,9.016,9.097,9.369,9.433,9.174,9.351,9.727,9.334,8.188,8.37,8.401,8.321,8.149,8.135,8.318,8.505,8.371,8.414,8.459,8.282,8.002,7.945,7.89,7.493,7.121,6.766,6.434,5.976,5.835,5.438,4.934,4.446,4.167,3.998,3.779,3.74,3.493,3.381,3.246,3.18,3.112,2.989,2.971,2.937,2.896,2.774,2.693,2.682,2.65,2.627,2.589,2.562,2.538,2.504,2.466,2.435],[34.044781,34.044773,34.043785,34.042782,34.044781,34.045773,34.077759,34.27964,34.318615,34.334599,34.355595,34.374584,34.377575,34.387569,34.413559,34.477516,34.529491,34.462521,34.520489,34.614422,34.553467,null,34.396576,34.412552,34.406578,34.396576,34.404583,34.461544,34.499508,34.486526,34.502514,34.512512,34.502518,34.479542,34.483532,34.48254,34.432564,34.383602,34.365623,34.355637,34.333649,34.354656,34.348652,34.314674,34.292709,34.304699,34.323696,34.325703,34.356689,34.370682,34.394661,34.419655,34.443645,34.47863,34.499611,34.527596,34.549587,34.565575,34.577576,34.596584,34.62455,34.649536,34.658531,34.673531,34.683525,34.69051,34.702515,34.713493,34.72049]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_280","geolocation":{"type":"Point","coordinates":[79.814,-43.365]},"basin":3,"timestamp":"2017-10-03T14:28:23.001Z","date_updated_argovis":"2023-01-26T10:47:14.994Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_280.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":280,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.599999,20.5,30.700001,40.400002,50.400002,60.299999,70.299995,80.299995,90.399994,100.099998,109.699997,119.899994,129.699997,140.399994,150.599991,160.399994,170.199997,180.199997,190.300003,200.699997,210.599991,220.099991,230.300003,240.099991,250.300003,260.400024,270.600006,280.700012,290.400024,299.900024,310.400024,320.300018,330.300018,340.200012,350.300018,360.600006,380,400.600006,450.200012,500.600006,549.900024,600.799988,650,700,748.200012,800.400024,850.100037,900.600037,950.299988,999.900024,1050.199951,1099.899902,1150.799927,1200.199951,1250.5,1300.5,1349.899902,1399.699951,1449.799927,1500.199951,1550.599976,1599.799927,1650.5,1699.799927,1749.899902,1800,1849.799927],[7.338,7.338,7.337,7.335,7.34,7.314,7.301,7.3,7.281,7.173,7.269,7.412,7.435,7.263,7.231,7.129,6.688,6.854,7.045,7.184,7.326,7.421,7.445,7.263,7.466,7.614,7.831,7.346,7.309,7.309,7.324,7.374,7.447,7.21,7.248,7.255,7.304,6.82,6.563,5.942,5.233,5.352,4.898,4.455,4.273,3.973,3.793,3.79,3.57,3.425,3.304,3.216,3.134,3.09,3.005,2.946,2.894,2.846,2.8,2.74,2.711,2.662,2.607,2.565,2.539,2.504,2.483,2.444],[33.930645,33.931641,33.931641,33.93264,33.930645,33.935619,33.936626,33.935635,33.935642,33.950623,33.983604,34.024578,34.038586,34.015575,34.015579,34.010586,null,34.037575,34.097553,34.158516,34.194492,34.227455,34.241447,34.226471,34.276459,34.320415,34.364403,34.297443,34.300434,34.313416,34.328423,34.343399,34.366383,34.341408,34.366398,34.375393,34.400379,34.358418,34.338413,34.306446,34.238506,34.314445,34.297497,34.267498,34.281483,34.300472,34.315491,34.350449,34.36047,34.38245,34.402439,34.428421,34.456402,34.4874,34.512379,34.537373,34.562363,34.579353,34.595333,34.615311,34.626331,34.646305,34.666313,34.680305,34.691292,34.701286,34.709282,34.718281]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_279","geolocation":{"type":"Point","coordinates":[78.522,-43.355]},"basin":3,"timestamp":"2017-09-23T10:28:17.001Z","date_updated_argovis":"2023-01-26T10:47:13.082Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_279.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":279,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.400001,19.799999,30.299999,39.599998,50.200001,60.200001,69.5,80.100006,89.900002,100.100006,110,119.900002,128.100006,140.400009,150.100006,159.800003,169.600006,180.600006,190.300003,200.300003,209.699997,220.199997,229.800003,240,249.900009,259.899994,269.799988,279.799988,289.699982,300.299988,310.299988,319.5,329.5,339.699982,349.5,359.5,380.199982,400.399994,449.699982,500.099976,549.799988,599.599976,650.200012,700,750,800,850.299988,899.299988,950.299988,1000.099976,1049.400024,1100,1149.400024,1199.5,1250.200073,1300,1349.800049,1399.900024,1450.300049,1499.600098,1549.400024,1599.5,1650.200073,1700.200073,1749.900024,1799.900024,1850],[7.475,7.464,7.419,7.323,7.32,7.318,7.306,7.277,7.266,7.264,7.291,7.323,7.257,6.751,6.428,6.503,6.746,6.983,7.304,7.572,7.894,7.932,8.064,8.169,8.712,8.735,8.539,8.274,8.035,7.894,7.58,7.588,7.291,7.125,7.035,6.941,7.062,6.722,6.262,6.171,5.705,5.07,4.653,4.312,4.046,3.907,3.746,3.624,3.406,3.217,3.172,3.137,3.031,2.968,2.906,2.858,2.809,2.754,2.711,2.681,2.66,2.632,2.575,2.531,2.484,2.457,2.427,2.395],[34.003773,34.000771,33.997772,33.992794,33.992783,33.993793,33.992767,33.988781,33.988773,33.988785,33.995789,34.002785,34.012764,33.985794,33.969799,34.004776,34.081726,34.131699,34.207649,34.277611,34.352573,34.375561,34.41153,34.450516,34.571423,34.576424,34.545452,34.509476,34.483498,34.463505,34.43652,34.450504,34.413548,34.408554,34.399559,34.398552,34.436539,34.409557,34.356594,34.395569,34.365589,34.316654,34.311649,34.306656,34.304657,34.342651,34.362629,34.378624,34.390625,34.406616,34.443596,34.479588,34.505554,34.529552,34.545547,34.565533,34.589527,34.602528,34.618515,34.630501,34.642502,34.654488,34.673485,34.688477,34.702457,34.71146,34.720451,34.727451]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_278","geolocation":{"type":"Point","coordinates":[78.95,-43.614]},"basin":3,"timestamp":"2017-09-13T06:32:51.000Z","date_updated_argovis":"2023-01-26T10:47:11.368Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_278.nc","date_updated":"2020-11-12T10:21:12.000Z"}],"cycle_number":278,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,10.3,20.5,30.5,40.5,50.099998,60.5,70.5,77.900002,90.400002,100.599998,110.5,120.199997,130.5,140,150.600006,160.100006,170.199997,180.5,190.300003,200.100006,209.800003,220,230.100006,239.5,247.199997,260.200012,270.299988,279.899994,289.899994,299.799988,310.299988,319.799988,330.299988,340,349.600006,360.100006,379.700012,397.899994,450.5,500,549.5,600.400024,650.099976,700.5,750.099976,799.900024,850,897.799988,950,1000.5,1049.800049,1100.599976,1150.199951,1200.199951,1250.5,1300,1349.800049,1399.599976,1449.199951,1500.300049,1549.800049,1600.300049,1650.199951,1699.699951,1750.300049,1799.900024,1850.099976],[7.013,6.993,6.972,6.968,6.967,6.965,6.968,6.964,6.947,6.806,7.269,7.242,7.14,7.091,6.832,6.401,6.356,7.208,7.48,7.352,7.395,8.059,8.215,7.931,7.52,7.446,6.706,6.081,6.105,6.215,6.554,6.844,6.413,5.903,5.87,5.696,5.646,5.44,5.108,5.134,4.679,4.602,4.546,4.146,3.966,3.832,3.747,3.552,3.37,3.225,3.178,3.062,3.036,2.946,2.892,2.84,2.785,2.758,2.73,2.694,2.623,2.583,2.538,2.508,2.475,2.454,2.427,2.395],[33.895721,33.897724,33.896713,33.89772,33.89772,33.899712,33.900711,33.901714,33.900723,33.938702,34.039623,34.05962,34.057625,34.073624,34.047653,33.999676,34.050632,34.21452,34.276493,34.260509,34.293488,34.444386,34.479374,34.435413,34.378429,34.363464,34.248516,34.173573,34.187572,34.216553,34.284519,34.355453,34.288513,34.230541,34.243538,34.233555,34.237545,34.243553,34.210575,34.271538,34.255543,34.285542,34.318516,34.307533,34.325531,34.343529,34.371498,34.395496,34.410484,34.421482,34.454472,34.473465,34.50544,34.534424,34.553421,34.571419,34.594383,34.606388,34.617393,34.62838,34.639378,34.659378,34.679356,34.693356,34.706345,34.712334,34.721329,34.728336]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_277","geolocation":{"type":"Point","coordinates":[78.609,-43.027]},"basin":3,"timestamp":"2017-09-03T02:30:54.000Z","date_updated_argovis":"2023-01-26T10:47:09.489Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_277.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":277,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10,20.4,30.4,40.099998,50.200001,60.5,69.900002,80.099998,90.400002,99.699997,110.099998,120.599998,130.5,139.899994,150.199997,160.199997,170,180.100006,189.800003,198.100006,210.5,220.399994,230.199997,240.100006,249.899994,260.399994,270.100006,279.899994,290.200012,300.100006,310.5,320.100006,330.100006,340.5,350.200012,360.600006,380.200012,399.899994,450.5,499.799988,549.700012,600.5,649.900024,700.299988,749.599976,800.099976,850.299988,899.799988,950.5,1000.099976,1049.699951,1099.599976,1150,1200,1250.599976,1300.5,1349.800049,1399.699951,1450.099976,1499.900024,1549.699951,1599.800049,1650.599976,1699.900024,1749.800049,1799.800049,1850.099976,1896.800049],[6.951,6.952,6.943,6.945,6.933,6.911,7.028,7.053,7.047,6.704,6.69,6.257,6.264,7.758,8.191,7.512,6.854,7.184,6.851,6.826,6.914,7.168,7.462,7.565,7.563,7.439,7.547,7.711,7.698,7.619,7.571,7.381,6.84,6.707,7.086,6.926,7.108,7.319,7.098,6.579,5.854,5.353,4.856,4.419,4.194,4.132,3.872,3.733,3.515,3.531,3.288,3.127,3.142,2.95,2.921,2.92,2.876,2.826,2.78,2.744,2.695,2.647,2.609,2.572,2.554,2.524,2.494,2.461,2.445],[33.912689,33.912689,33.91169,33.912685,33.912685,33.930676,33.975647,33.979649,33.979656,33.935688,33.941666,33.894714,33.909687,34.234489,null,34.214512,34.122562,34.187534,34.138565,34.141571,34.165543,34.225506,34.285465,34.306438,34.309464,34.302464,34.336441,34.370422,34.394402,34.406387,34.416409,34.393414,34.317467,34.312466,34.392422,34.387421,34.44339,34.503349,34.485371,34.439407,34.372456,34.33749,34.303509,34.280521,34.299507,34.324501,34.3255,34.352501,34.365494,34.397484,34.412479,34.441463,34.473434,34.482456,34.50742,34.541416,34.558399,34.578388,34.594383,34.610386,34.631355,34.649357,34.666336,34.678333,34.686344,34.69733,34.70332,34.713322,34.720318]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_276","geolocation":{"type":"Point","coordinates":[76.917,-43.629]},"basin":3,"timestamp":"2017-08-23T22:30:48.002Z","date_updated_argovis":"2023-01-26T10:47:07.675Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_276.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":276,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.799999,20,30.299999,40,50.200001,60,70,80.300003,87.800003,99.900002,110.5,120.300003,130.399994,140,150.099991,160.199997,170,180,189.899994,200.399994,210.599991,220.5,230.299988,240.099991,250.199997,260.299988,269.799988,279.899994,290.100006,299.699982,309.799988,320.199982,329.899994,340,350.100006,359.5,379.899994,399.199982,449.799988,499.5,550.200012,600.200012,650,699.600037,750,800.200012,849.700012,899.700012,950.200012,1000.400024,1049.700073,1100.300049,1149.700073,1200.300049,1249.5,1300.099976,1350,1400.200073,1449.700073,1497.200073,1549.900024,1600.099976,1649.800049,1700,1750.099976,1800.200073,1850,1900.099976],[7.581,7.599,7.741,7.676,7.502,7.543,7.463,7.479,7.578,7.556,7.533,7.737,7.687,7.769,7.776,7.774,7.906,8.085,8.53,9.182,9.281,9.194,9.412,9.404,9.5,9.579,9.262,9.088,8.902,8.628,8.47,8.597,8.755,8.722,8.448,8.263,8.156,8.22,8.29,7.919,7.241,6.676,5.887,5.279,4.747,4.376,4.32,4.074,3.957,3.622,3.594,3.485,3.287,3.173,3.141,3.075,3.031,2.94,2.819,2.675,2.62,2.698,2.682,2.645,2.616,2.584,2.544,2.512,2.487],[34.078609,34.087605,34.116596,34.11459,34.087605,34.096607,34.085609,34.091621,34.111591,34.107601,34.108601,34.14257,34.14957,34.165562,34.168549,34.172554,34.201538,34.246502,34.370434,34.532341,34.559319,34.550304,34.609295,34.611282,34.646259,34.665253,34.61729,34.591286,34.557316,34.513348,34.498363,34.526337,34.585312,34.579308,34.538342,34.511353,34.498371,34.532341,34.564323,34.55135,34.490379,34.449425,34.374474,34.332512,34.292545,34.287552,34.325523,34.324539,34.34753,34.362541,34.395512,34.415501,34.421497,34.450489,34.477463,34.496449,34.515446,34.536449,34.554432,34.564434,34.587429,34.627388,34.640385,34.653374,34.665363,34.678371,34.691349,34.702347,34.710339]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_275","geolocation":{"type":"Point","coordinates":[77.714,-45.062]},"basin":3,"timestamp":"2017-08-13T18:26:59.001Z","date_updated_argovis":"2023-01-26T10:47:05.710Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_275.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":275,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,19.699999,29.4,40.200001,50.200001,59.299999,69.400002,79.800003,89.700005,99.5,109.800003,119.600006,129.600006,140.300003,149.800003,159.800003,169.699997,180.100006,190.100006,200.300003,210.100006,220.5,229.800003,239.800003,249.699997,260.299988,270.299988,280.099976,290.199982,300.099976,309.899994,318.199982,330.199982,340.299988,349.799988,360.299988,380.299988,400.299988,450.199982,499.299988,549.899963,600,649.799988,699.700012,750.099976,800.200012,850.099976,899.799988,949.899963,999.599976,1049.900024,1100.400024,1149.900024,1200.200073,1250.200073,1299.5,1349.800049,1400.200073,1450.200073,1499.900024,1550,1600.300049,1649.600098,1699.900024,1749.800049,1799.800049,1849.600098,1900.400024],[8.614,8.615,8.616,8.617,8.62,8.631,8.622,7.921,7.498,7.326,6.853,6.518,6.407,6.436,6.339,6.18,6.145,6.123,6.086,6.042,6.179,6.59,8.067,8.564,8.657,8.74,9.004,9.032,8.987,8.754,8.533,8.489,8.42,8.596,8.45,8.365,8.3,7.963,7.827,6.955,6.145,5.599,5.228,4.41,4.494,4.323,4.028,3.733,3.616,3.594,3.485,3.271,3.122,3.005,2.95,2.908,2.862,2.834,2.804,2.746,2.672,2.612,2.591,2.576,2.551,2.543,2.523,2.482,2.427],[34.309483,34.308483,34.307507,34.307491,34.309498,34.311497,34.309486,34.199558,34.120617,34.087635,34.034683,33.991692,33.974731,33.977711,33.971741,33.954735,33.951733,33.949741,33.948742,33.947746,33.98671,34.065662,34.328499,34.44442,34.469395,34.492386,34.567337,34.598312,34.589333,34.557354,34.540363,34.53236,34.533356,34.587334,34.581348,34.575336,34.566345,34.529373,34.527378,34.457432,34.373489,34.320534,34.310555,34.2416,34.303574,34.325569,34.347549,34.339584,34.37154,34.395542,34.411518,34.442516,34.47551,34.493492,34.513485,34.538464,34.551453,34.575447,34.587448,34.607422,34.636414,34.6604,34.670395,34.676388,34.68539,34.690384,34.696404,34.709373,34.725372]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_274","geolocation":{"type":"Point","coordinates":[75.838,-46.693]},"basin":3,"timestamp":"2017-08-03T14:45:33.001Z","date_updated_argovis":"2023-01-26T10:47:03.909Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_274.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":274,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.4,19.1,30.6,40.900002,50.600002,60.200001,70.299995,80.699997,90.599998,100.099998,110.099998,120.399994,130.599991,140.5,149.899994,160.099991,170.300003,180.599991,190,199.899994,210.599991,220.800003,230.300003,240.699997,250.300003,260.800018,270.400024,280.200012,290.300018,300.300018,310.200012,320.200012,330.300018,340.5,349.800018,359.800018,380.600006,399.900024,450.400024,500.300018,550.200012,599.900024,650.299988,700.200012,750.299988,800.700012,850.299988,900.700012,950.700012,1000.600037,1050.199951,1099.699951,1150.299927,1200,1250.399902,1300.799927,1350.599976,1400.299927,1450.5,1500.199951,1550.099976,1599.599976,1650.5,1700,1750.5,1799.799927,1850.599976,1900.399902],[9.252,9.259,9.225,9.222,9.149,9.098,9.101,9.108,9.102,9.096,9.103,9.103,9.115,9.091,9.087,9.1,9.104,9.131,9.151,9.149,9.18,9.641,9.755,9.608,9.663,9.596,9.287,9.258,9.249,9.024,9.035,9.048,8.886,8.815,8.674,8.417,8.239,7.947,7.722,6.952,6.422,5.447,5.209,4.64,4.405,4.194,3.937,3.646,3.655,3.613,3.457,3.388,3.295,3.163,3.093,2.988,2.891,2.806,2.779,2.728,2.682,2.655,2.639,2.612,2.577,2.56,2.515,2.474,2.447],[34.404224,34.406216,34.39822,34.397224,34.382248,34.373241,34.37225,34.374241,34.372253,34.371239,34.373253,34.372246,34.374252,34.372242,34.37125,34.374245,34.375237,34.379238,34.381229,34.386223,34.39624,34.513149,34.59911,34.59211,34.634075,34.630089,34.591103,34.590111,34.59713,34.569134,34.574112,34.588116,34.569145,34.565132,34.552151,34.520168,34.505177,34.474205,34.464222,34.407246,34.375275,34.293346,34.29734,34.262367,34.285351,34.298355,34.302349,34.301346,34.353336,34.390312,34.416306,34.433292,34.450283,34.469269,34.501255,34.522263,34.548229,34.564232,34.593216,34.61319,34.628201,34.639187,34.650177,34.664185,34.681171,34.688179,34.700169,34.713158,34.721142]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_273","geolocation":{"type":"Point","coordinates":[72.976,-45.547]},"basin":3,"timestamp":"2017-07-24T10:29:35.001Z","date_updated_argovis":"2023-01-26T10:47:02.173Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_273.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":273,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.099999,19.800001,30.1,40.299999,50.299999,60.200001,70.799995,80.599998,90.299995,100.599998,110.699997,120.199997,128.899994,140.5,150.199997,160.599991,170.599991,180.199997,190.800003,200.599991,210.599991,220.300003,230.5,240,250.199997,260.400024,270.5,280,290,300,310,320.600006,330.600006,340.100006,350.5,360.400024,380.400024,400.100006,450.5,500.100006,550.400024,600.700012,650.600037,700.600037,750.5,800.700012,850.600037,899.900024,949.900024,1000.600037,1050,1099.599976,1150.799927,1200.399902,1249.899902,1300.599976,1350.299927,1399.699951,1450.199951,1500.299927,1550.099976,1600.299927,1650.699951,1700.699951,1750.5,1800.399902,1849.599976,1898.699951],[11.018,11.023,11.023,11.014,11.013,11.038,11.036,11.027,11.029,11.029,11.029,11.031,11.037,11.11,11.111,11.163,11.238,11.324,11.421,11.627,11.612,11.502,11.424,11.313,11.082,10.947,10.764,10.589,10.473,10.346,10.2,10.194,10.325,10.135,9.925,9.73,9.652,9.402,9.067,8.305,7.622,6.815,5.983,5.418,5.034,4.676,4.019,3.917,3.75,3.739,3.647,3.564,3.432,3.311,3.194,3.017,2.948,2.947,2.887,2.842,2.793,2.731,2.708,2.672,2.644,2.605,2.566,2.529,2.511],[34.629055,34.630051,34.628052,34.627041,34.625057,34.630047,34.629059,34.626049,34.627045,34.627045,34.626053,34.62706,34.626049,34.649044,34.650036,34.663036,34.690018,34.721989,34.758965,34.884892,34.923874,34.917892,34.911884,34.895893,34.859917,34.835934,34.807961,34.777969,34.759975,34.739986,34.721008,34.748001,34.793957,34.761986,34.730999,34.719025,34.719009,34.700035,34.656055,34.577118,34.521152,34.456207,34.374271,34.345287,34.328293,34.317314,34.269344,34.286343,34.300346,34.347324,34.380299,34.40028,34.427265,34.446266,34.45425,34.473248,34.500244,34.538223,34.5602,34.578197,34.593189,34.612198,34.623192,34.640179,34.658169,34.673164,34.68615,34.69915,34.705135]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_272","geolocation":{"type":"Point","coordinates":[72.417,-44.509]},"basin":3,"timestamp":"2017-07-14T06:31:21.000Z","date_updated_argovis":"2023-01-26T10:47:00.376Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_272.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":272,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[7,10.3,20.099998,30.199999,40.299999,50.700001,60.700001,70.900002,80.600006,90.400002,100.600006,110.5,120.400002,130.400009,140.699997,150.699997,160,170.400009,180.100006,189.900009,200.400009,209.900009,219.699997,230.100006,240.400009,248.199997,260.599976,270.5,280.5,290.399994,300.699982,310.099976,320.699982,330.5,340.599976,350.699982,360.299988,380.799988,400.699982,450.599976,500.5,550.700012,599.899963,650.5,700.200012,750.700012,800.599976,850.399963,900.399963,950.700012,1000.5,1050.5,1100,1150.400024,1200.700073,1250.700073,1300.700073,1350.400024,1400.300049,1450,1500.5,1549.900024,1600.300049,1650.100098,1700.400024,1750.100098,1800.5,1849.900024,1899.900024],[10.485,10.488,10.468,10.467,10.468,10.474,10.481,10.476,10.48,10.73,11.669,11.575,11.543,11.81,10.73,11.197,11.158,11.278,11.173,10.871,10.546,10.605,10.461,10.582,10.379,10.061,9.769,9.352,9.31,9.141,9.05,8.89,8.776,8.379,8.08,7.635,7.849,8.371,8.525,7.816,6.142,5.811,5.564,5.045,4.326,4.224,4.052,3.705,3.834,3.539,3.52,3.439,3.36,3.231,3.134,3.045,2.965,2.924,2.85,2.805,2.733,2.695,2.649,2.629,2.598,2.578,2.559,2.516,2.479],[34.428104,34.426109,34.422096,34.422104,34.422096,34.423111,34.424095,34.423111,34.427105,34.497059,34.734924,34.72192,34.730927,34.825871,null,34.795891,34.791882,34.829868,34.829872,34.779896,34.729923,34.748909,34.734921,34.775898,34.740929,34.683956,34.625992,34.569031,34.575031,34.55505,34.545036,34.538067,34.523067,34.465107,34.408142,34.345188,34.410152,34.537071,34.600021,34.527077,34.310226,34.329216,34.340221,34.300255,34.235287,34.283264,34.291279,34.288261,34.356236,34.35223,34.390224,34.416199,34.433205,34.459194,34.484177,34.506153,34.52816,34.541145,34.563141,34.582134,34.610126,34.629112,34.650085,34.661083,34.669083,34.68108,34.690079,34.703072,34.713055]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_271","geolocation":{"type":"Point","coordinates":[74.082,-43.046]},"basin":3,"timestamp":"2017-07-04T02:23:48.000Z","date_updated_argovis":"2023-01-26T10:46:58.594Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_271.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":271,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.1,19.699999,29.4,39.5,49.399998,58.299999,70.100006,80,90.400002,100.300003,110.400002,119.700005,130.199997,139.900009,149.699997,160,169.300003,180.199997,189.800003,200.199997,207.699997,220.300003,229.900009,240.300003,249.800003,260.299988,269.799988,279.599976,290,299.699982,309.899994,319.399994,330.099976,339.799988,350,359.799988,380.199982,399.199982,449.399994,499.599976,549.599976,599.299988,650.299988,699.799988,750.200012,799.899963,849.599976,900,949.5,1000.099976,1050.200073,1099.5,1150,1200.100098,1250,1299.300049,1349.100098,1399.600098,1450.100098,1499.800049,1549.800049,1599.900024,1650,1700,1749.600098,1799.300049,1849.400024,1897.700073],[10.548,10.549,10.551,10.55,10.543,10.549,10.548,10.545,10.545,10.543,10.536,10.552,10.542,10.55,10.551,11.024,11.29,11.303,11.778,11.681,11.476,11.396,11.157,11.037,10.794,10.591,10.436,10.36,10.306,10.147,10.076,9.963,9.817,9.724,9.632,9.6,9.532,9.296,8.917,8.683,7.035,6.995,6.553,5.913,5.327,4.848,4.388,4.099,3.736,3.544,3.849,3.61,3.201,3.181,3.109,3.123,3.113,3.005,2.919,2.858,2.804,2.776,2.72,2.676,2.646,2.617,2.559,2.544,2.496],[34.423317,34.423317,34.423321,34.424309,34.421307,34.422314,34.421303,34.421314,34.42231,34.420303,34.420296,34.4263,34.423309,34.430309,34.446289,34.590199,34.675167,34.770107,34.920006,34.925011,34.902016,34.890026,34.855049,34.840057,34.803082,34.784115,34.76413,34.759117,34.751122,34.733128,34.729137,34.708164,34.686172,34.671181,34.665192,34.66119,34.651188,34.619221,34.560253,34.604233,34.379395,34.445358,34.418377,34.355431,34.32547,34.298492,34.274494,34.267513,34.271515,34.284508,34.379452,34.379459,34.368473,34.394455,34.423458,34.467411,34.497402,34.52438,34.54538,34.564381,34.584362,34.596352,34.619343,34.638317,34.653339,34.664322,34.682301,34.687302,34.698296]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_270","geolocation":{"type":"Point","coordinates":[71.946,-42.567]},"basin":3,"timestamp":"2017-06-23T22:29:18.002Z","date_updated_argovis":"2023-01-26T10:46:56.798Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_270.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":270,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,20.200001,30.1,39.299999,49.600002,60.200001,70.099998,79.5,89.599998,100,109.599998,120,130.099991,139.399994,150.099991,159.899994,170.099991,180.199997,190.199997,199.800003,209.599991,219.800003,230.099991,239.899994,249.300003,259.400024,269.5,279.600006,289.400024,299.900024,310.200012,319.700012,329.400024,340.200012,350.300018,359.900024,380.200012,399.600006,449.800018,499.700012,549.799988,600.299988,650.200012,699.600037,749.799988,799.799988,849.400024,899.400024,950.100037,1000.100037,1049.399902,1100.099976,1149.599976,1200.099976,1250.199951,1299.5,1349.399902,1400,1449.599976,1500.199951,1549.599976,1600,1649.899902,1699.699951,1750,1799.5,1849.699951,1899.099976],[12.193,12.193,12.201,12.231,12.229,12.217,12.229,12.22,12.227,12.21,12.231,12.156,12.131,11.799,11.447,11.32,11.316,11.336,11.738,11.674,11.582,11.457,11.416,11.342,11.195,11.12,10.987,10.873,10.713,10.643,10.501,10.369,10.267,10.186,10.173,10.136,10.071,9.84,9.578,9.287,9.117,8.229,7.577,6.826,6.533,5.572,5.049,4.767,4.615,4.356,4.23,3.465,3.282,3.247,3.169,3.12,3.074,3.052,2.987,2.866,2.801,2.74,2.725,2.701,2.668,2.615,2.59,2.567,2.543],[34.865055,34.865063,34.867065,34.873043,34.87104,34.868061,34.87006,34.869057,34.873028,34.865059,34.870049,34.849056,34.846058,34.764118,34.68716,34.661186,34.661171,34.674179,34.902031,34.922031,34.914024,34.901035,34.897049,34.886055,34.864075,34.857079,34.843075,34.827095,34.80611,34.795101,34.775127,34.758141,34.74815,34.738152,34.749157,34.748158,34.742161,34.707176,34.663204,34.651222,34.657207,34.552303,34.496342,34.432407,34.433388,34.350468,34.328495,34.334511,34.338486,34.327503,34.377487,34.31551,34.33453,34.372509,34.3815,34.416473,34.447468,34.482433,34.510422,34.529419,34.559402,34.578392,34.598381,34.621361,34.638359,34.659348,34.673347,34.687325,34.696339]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_269","geolocation":{"type":"Point","coordinates":[71.201,-44.715]},"basin":3,"timestamp":"2017-06-13T18:25:29.001Z","date_updated_argovis":"2023-01-26T10:46:54.989Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_269.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":269,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.099999,20.199999,30,39.900002,49.600002,60.400002,70.200005,79.5,90.5,100.400002,110.300003,120.200005,129.799988,139.899994,149.699997,160.299988,170.099991,180.299988,190.399994,199.5,210.199997,219.899994,227.799988,240.199997,250.099991,259.899994,269.899994,280.399994,289.600006,299.799988,310,319.899994,329.899994,340,350.299988,359.899994,379.899994,400.299988,450.399994,500.100006,550,600.100037,650.100037,700.200012,750.200012,800.400024,849.800049,900,949.300049,999.900024,1049.700073,1100.300049,1149.900024,1199.700073,1249.5,1299.700073,1349.800049,1399.800049,1450.5,1499.800049,1549.900024,1600.300049,1649.900024,1700.099976,1750.099976,1800,1849.5,1895.599976],[10.024,10.038,10.033,10.039,10.047,10.042,10.02,9.985,9.89,10.012,10.103,10.266,10.458,11.308,12.058,12.017,11.386,11.207,10.998,10.934,10.877,10.787,10.802,10.775,10.682,10.533,10.476,10.368,10.309,10.04,9.951,9.736,9.61,9.424,9.424,9.228,9.138,8.922,8.661,8.018,7.42,6.846,6.154,5.528,5.122,4.822,4.457,4.215,3.958,3.818,3.641,3.539,3.378,3.281,3.116,3.003,2.987,2.907,2.811,2.738,2.738,2.704,2.623,2.58,2.562,2.544,2.527,2.517,2.498],[34.323277,34.32629,34.324276,34.325283,34.327271,34.32729,34.3223,34.318287,34.303291,34.33329,34.355278,34.395237,34.447197,34.666065,34.893936,34.949905,34.836983,34.806999,34.784016,34.779018,34.779015,34.779011,34.794006,34.791012,34.784012,34.768017,34.767029,34.751026,34.74704,34.704067,34.694054,34.666084,34.653118,34.634125,34.636108,34.60714,34.602142,34.579163,34.551174,34.508209,34.475235,34.440277,34.401291,34.347347,34.342354,34.332363,34.335369,34.347363,34.353386,34.374359,34.391357,34.415344,34.43335,34.458317,34.478325,34.485325,34.517288,34.543301,34.561275,34.582264,34.610245,34.620255,34.634239,34.650234,34.665218,34.681213,34.700199,34.704197,34.711185]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_268","geolocation":{"type":"Point","coordinates":[68.126,-44.777]},"basin":3,"timestamp":"2017-06-03T14:23:31.001Z","date_updated_argovis":"2023-01-26T10:46:53.179Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_268.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":268,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.3,20.1,30,40.200001,48.400002,60.299999,70.399994,80.199997,90.099998,100.299995,110.5,120.399994,130.599991,140.199997,150.599991,160.099991,169.699997,180.699997,190.199997,199.699997,210.399994,219.800003,230.199997,240.5,249.899994,260.700012,269.5,280.600006,290.800018,300.700012,310.300018,320.200012,330.300018,339.900024,349.300018,360.200012,380.300018,400.400024,450.100006,500,550.5,599.700012,650.100037,700.600037,750.5,800.299988,850,900.299988,950,1000.600037,1050.199951,1100.199951,1150.699951,1200.599976,1250.5,1300.199951,1350.399902,1400.399902,1450.199951,1500.399902,1549.899902,1599.799927,1650.199951,1700.099976,1750.299927,1800.299927,1849.799927,1898.099976],[10.418,10.419,10.562,10.622,10.68,10.851,12.376,13.233,13.336,13.368,12.842,12.468,12.263,12.118,11.974,11.711,11.548,11.494,11.346,11.112,10.969,11.102,10.945,10.898,10.803,10.667,10.478,10.38,10.274,10.164,9.896,9.769,9.492,9.371,9.136,8.996,9.101,9.122,8.685,8.045,7.368,6.916,6.063,5.49,5.067,4.761,4.487,4.18,3.978,3.752,3.58,3.401,3.266,3.182,3.083,3.026,2.926,2.852,2.801,2.738,2.674,2.64,2.591,2.569,2.53,2.5,2.453,2.428,2.392],[34.231178,34.232159,34.264141,34.283138,34.303131,34.355106,34.770844,35.020687,35.056652,35.06266,35.052685,35.020702,35.002712,34.984726,34.977726,34.929764,34.909779,34.905773,34.890793,34.850803,34.830818,34.871799,34.849815,34.84481,34.841816,34.824841,34.79985,34.784866,34.781868,34.769871,34.726898,34.704918,34.661926,34.643936,34.608971,34.600983,34.63496,34.662941,34.603992,34.558025,34.497066,34.469101,34.406139,34.369171,34.363174,34.359184,34.372189,34.395172,34.409161,34.414154,34.419174,34.436161,34.458157,34.491131,34.513123,34.534107,34.558102,34.577095,34.598083,34.613075,34.633064,34.64806,34.664047,34.677044,34.695026,34.704029,34.713036,34.720013,34.729031]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_267","geolocation":{"type":"Point","coordinates":[67.231,-43.195]},"basin":3,"timestamp":"2017-05-24T10:34:37.001Z","date_updated_argovis":"2023-01-26T10:46:51.284Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_267.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":267,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.099999,20.5,30.5,40.799999,50.600002,60.600002,70.5,79.699997,90.699997,100.5,110.5,120,130.599991,140.599991,149.800003,159.800003,170.399994,180.599991,189.899994,199.699997,210.599991,220.099991,230.5,240.800003,250.300003,260.200012,270.300018,279.900024,290.5,300.600006,310.300018,320,330.200012,340.300018,349.700012,360,380.100006,400.300018,450.700012,500.300018,550.600037,599.799988,650.600037,700.400024,750,800.299988,849.799988,900.700012,950.799988,1000.700012,1050.299927,1100.099976,1148.899902,1200.699951,1249.899902,1299.799927,1350.599976,1400.599976,1449.699951,1500.399902,1550.299927,1600.599976,1650.599976,1700.299927,1750.399902,1800.399902,1850,1900.299927],[13.959,13.957,13.964,13.973,13.98,13.981,13.977,14.019,14.001,14.004,14.008,14.022,14.004,14.01,14.018,14.023,14,13.897,13.459,13.182,13.075,12.861,12.724,12.65,12.562,12.521,12.498,12.165,11.795,11.585,11.443,11.359,11.281,11.354,11.263,11.161,10.961,10.718,10.399,10.247,9.225,9.634,9.002,8.041,7.675,7.186,6.525,5.952,5.07,4.841,4.598,4.507,4.285,4.091,3.883,3.703,3.493,3.332,3.266,3.17,3.084,3.014,2.907,2.863,2.797,2.75,2.718,2.672,2.634],[35.128597,35.127605,35.12759,35.130608,35.131607,35.130589,35.129597,35.140583,35.135601,35.135586,35.138596,35.139595,35.134598,35.136593,35.137596,35.138588,35.131592,35.131599,35.126617,35.111622,35.110615,35.084648,35.077637,35.072651,35.067654,35.077652,35.077629,35.002693,34.939732,34.897755,34.872772,34.864773,34.859779,34.88176,34.873779,34.85479,34.81781,34.777851,34.733868,34.742859,null,34.731865,34.660942,34.52702,34.532017,34.49604,34.437103,34.384136,34.309174,34.319195,34.335197,34.368172,34.377163,34.391155,34.399147,34.414165,34.434147,34.459133,34.479107,34.500107,34.523094,34.540077,34.567085,34.591076,34.605072,34.615036,34.627052,34.645046,34.663033]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_266","geolocation":{"type":"Point","coordinates":[70.438,-42.947]},"basin":3,"timestamp":"2017-05-14T06:41:04.000Z","date_updated_argovis":"2023-01-26T10:46:49.476Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_266.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":266,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.5,19.9,27.599998,39.700001,50.200001,59.799999,69.800003,80.200005,89.700005,99.700005,110.200005,120.200005,130.300003,140.300003,149.800003,160.400009,170,180.100006,189.699997,200.199997,209.900009,219.800003,229.900009,239.900009,250,259.899994,269.699982,279.699982,290,300.199982,309.599976,320.199982,329.799988,339.699982,348,360.299988,380.399994,399.799988,449.699982,499.699982,550.099976,599.5,649.700012,700,749.799988,799.799988,849.700012,899.5,949.700012,999.599976,1049.900024,1099.800049,1149.600098,1199.700073,1249.900024,1299.600098,1348.700073,1399.700073,1449.600098,1500.200073,1549.900024,1600.200073,1649.5,1700.100098,1750,1799.800049,1849.900024,1899.5],[13.495,13.506,13.497,13.511,13.618,13.691,13.809,13.863,13.907,13.919,13.949,13.998,14.443,14.214,13.938,13.817,13.63,13.617,13.495,13.413,13.447,13.392,13.331,13.337,13.266,13.185,13.219,13.178,13.127,13.069,12.976,12.862,12.777,12.724,12.51,12.394,12.299,12.138,11.948,11.431,10.754,10.02,9.821,9.253,8.579,7.822,7.144,6.463,5.825,5.248,5.06,4.638,4.259,4.092,3.917,3.789,3.636,3.44,3.29,3.206,3.103,3.017,2.972,2.903,2.831,2.762,2.726,2.691,2.659],[34.862896,34.866905,34.862896,34.865902,34.900875,34.92387,34.960835,34.975826,34.988827,34.991825,35.002815,35.01981,35.255653,35.271664,35.247677,35.234688,35.217701,35.229698,35.230709,35.236679,35.24968,35.249683,35.248672,35.2607,35.247688,35.236687,35.251678,35.245678,35.235676,35.226681,35.209709,35.187717,35.173744,35.162735,35.127766,35.110783,35.09679,35.080799,35.050827,34.97187,34.856953,34.731026,34.748032,34.691071,34.627129,34.547184,34.496216,34.439266,34.381306,34.330345,34.360332,34.349346,34.33836,34.369358,34.379353,34.391338,34.41333,34.437321,34.468292,34.494297,34.509281,34.522282,34.549282,34.56926,34.594246,34.618244,34.630222,34.643211,34.656208]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_265","geolocation":{"type":"Point","coordinates":[70.817,-43.828]},"basin":3,"timestamp":"2017-05-04T02:34:27.000Z","date_updated_argovis":"2023-01-26T10:46:47.618Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_265.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":265,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,19.800001,30.400002,40.700001,50.400002,59.799999,70,80.299995,89.899994,100.699997,109.899994,120.5,130.800003,140.699997,150,160.199997,169.899994,180.800003,190.800003,200.599991,210.199997,220.199997,230.5,240.300003,250.199997,260.5,270.100006,279.800018,290.100006,300.300018,309.800018,320.600006,330.200012,340.100006,350.400024,360.5,379.800018,400.5,450.600006,499.900024,550.100037,600.799988,650.200012,700.200012,749.799988,800.600037,850.700012,900.200012,950.799988,1000.5,1049.899902,1100.299927,1150.599976,1200.599976,1249.899902,1300.199951,1348.199951,1400.399902,1450.199951,1500.5,1550.199951,1600.399902,1649.899902,1700.599976,1750.399902,1799.699951,1850.199951,1899.299927],[14.868,14.87,14.878,14.877,14.876,14.878,14.885,14.886,14.892,14.896,14.896,14.902,14.901,14.902,14.874,13.772,13.196,12.915,12.775,12.796,12.676,12.594,12.479,12.479,12.436,12.326,12.204,12.136,12.13,12.045,11.965,11.784,11.748,11.715,11.558,11.435,11.444,11.092,10.932,10.129,9.838,9.658,9.049,7.781,7.067,6.703,6.006,5.525,5.078,4.529,4.359,4.26,3.979,3.709,3.643,3.54,3.412,3.258,3.126,3.046,2.978,2.94,2.896,2.813,2.767,2.733,2.682,2.648,2.611],[35.193508,35.193508,35.194508,35.193508,35.19352,35.193508,35.194508,35.193493,35.194519,35.19651,35.195499,35.195511,35.19651,35.195499,35.185513,35.130562,35.055603,35.024628,35.009621,35.034618,35.021637,35.016636,35.001637,35.00864,35.008633,34.995644,34.978657,34.972664,34.984676,34.982662,34.969673,34.947693,34.946686,34.945683,34.923698,34.907703,34.91671,34.848747,34.834759,34.724815,34.711845,34.736835,34.669876,34.505985,34.448021,34.440048,34.395069,34.363106,34.332127,34.314144,34.333141,34.352146,34.377132,34.379128,34.409111,34.422104,34.438095,34.45409,34.487087,34.508068,34.521072,34.540047,34.558056,34.587032,34.606018,34.62101,34.636993,34.652,34.664001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_264","geolocation":{"type":"Point","coordinates":[71.315,-43.952]},"basin":3,"timestamp":"2017-04-23T22:30:37.002Z","date_updated_argovis":"2023-01-26T10:46:45.694Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_264.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":264,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.9,20.200001,30.6,40.299999,50.100002,60.100002,70.299995,79.599998,89.899994,100.5,110.699997,120.599998,129.5,140.800003,150.300003,160.5,170.699997,180.599991,190.399994,200.699997,210,220.199997,230.5,240.300003,250,260,270.300018,280.5,290.600006,300.100006,310.5,320.5,330.400024,340.700012,349.900024,358.200012,380.700012,400.5,450.300018,500.400024,550,600.299988,650.400024,699.900024,750.5,797.600037,850.200012,900.600037,949.799988,1000.200012,1050.399902,1100.599976,1150.399902,1200.799927,1250.099976,1299.699951,1350.699951,1400.199951,1450.299927,1500.299927,1550.299927,1600.799927,1649.899902,1700.399902,1750.399902,1800,1849.699951,1899.599976],[14.264,14.265,14.267,14.271,14.272,14.38,14.416,14.429,14.431,14.434,14.448,14.491,14.584,14.26,13.992,13.79,13.727,13.618,13.494,13.36,13.267,13.21,13.295,13.268,13.232,13.242,13.241,13.211,13.114,12.974,12.799,12.683,12.66,12.591,12.491,12.368,12.305,12.098,11.86,11.277,10.685,9.869,9.333,8.416,7.459,6.729,5.839,5.206,5.265,4.812,4.61,4.058,4.031,3.845,3.619,3.534,3.429,3.33,3.195,3.099,2.993,2.887,2.832,2.795,2.76,2.715,2.685,2.656,2.62],[34.880676,34.880669,34.879684,34.880676,34.881668,34.931652,34.953625,34.958633,34.958622,34.959625,34.965626,34.983616,35.076561,35.176491,35.234489,35.219486,35.22448,35.218487,35.206486,35.201519,35.185509,35.188511,35.231472,35.231476,35.22847,35.241474,35.243488,35.244469,35.226471,35.199501,35.16853,35.148529,35.143551,35.132557,35.116566,35.099552,35.091587,35.064598,35.029613,34.93668,34.86174,34.751797,34.696846,34.58392,34.472,34.415016,34.317108,34.271141,34.340118,34.31813,34.341106,34.306137,34.342121,34.361118,34.374123,34.404087,34.426083,34.451084,34.475063,34.497044,34.511047,34.530029,34.554024,34.582012,34.605,34.623993,34.632999,34.64698,34.660969]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_263","geolocation":{"type":"Point","coordinates":[72.392,-44.114]},"basin":3,"timestamp":"2017-04-13T18:28:40.001Z","date_updated_argovis":"2023-01-26T10:46:43.888Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_263.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":263,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.7,19.5,29.5,40.099998,49.799999,59.899998,70.100006,79.600006,90,100.100006,107.300003,120.100006,130.300003,139.900009,149.699997,159.699997,169.699997,179.699997,190.400009,200.100006,209.900009,219.800003,229.900009,239.600006,250.300003,259.699982,269.599976,280.099976,289.699982,299.299988,310.099976,319.899994,329.599976,339.199982,350.099976,360.399994,380.299988,400.299988,449.599976,500.299988,550.299988,599.599976,649.799988,699.799988,749.700012,800.299988,849.599976,900.299988,949.599976,1000.200012,1049.900024,1099.200073,1149.900024,1200.200073,1250,1300.200073,1350.100098,1399.700073,1449.5,1499.900024,1550.200073,1599.700073,1649.200073,1700.300049,1749.5,1800.100098,1849.400024,1899.700073],[14.58,14.582,14.582,14.589,14.592,14.63,14.793,14.938,14.947,14.647,14.349,14.242,14.036,13.979,13.865,13.831,13.698,13.689,13.612,13.555,13.472,13.428,13.386,13.359,13.329,13.315,13.279,13.201,13.109,13.016,12.941,12.877,12.819,12.702,12.597,12.539,12.383,12.156,11.917,11.325,10.841,10.122,9.368,8.761,8.019,7.066,6.108,5.547,5.072,4.501,4.192,4.033,4.087,4.024,3.596,3.474,3.396,3.277,3.102,3.019,2.936,2.886,2.831,2.804,2.771,2.723,2.693,2.622,2.572],[34.905804,34.905785,34.905785,34.907799,34.907799,34.927784,34.988743,35.074696,35.243599,35.297554,35.296585,35.292587,35.28558,35.282593,35.282612,35.280594,35.258617,35.259602,35.272602,35.279602,35.270615,35.264595,35.263618,35.263607,35.266632,35.2686,35.265606,35.249626,35.232632,35.214653,35.198654,35.187672,35.175667,35.154678,35.136696,35.128689,35.104717,35.071728,35.036762,34.944828,34.88287,34.790932,34.704987,34.644043,34.570099,34.484161,34.399223,34.366264,34.345268,34.304306,34.279339,34.301319,34.353283,34.373287,34.411255,34.434258,34.453259,34.478241,34.505211,34.518227,34.544189,34.567192,34.59417,34.602177,34.612171,34.62915,34.646168,34.667133,34.682137]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_262","geolocation":{"type":"Point","coordinates":[68.67,-44.732]},"basin":3,"timestamp":"2017-04-03T14:31:22.001Z","date_updated_argovis":"2023-01-26T10:46:42.171Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_262.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":262,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.8,19.4,30,39.899998,49.899998,59.799999,70.100006,80.300003,89.800003,99.5,109.800003,120.100006,130.100006,140.300003,150.300003,159.900009,169.900009,179.900009,190.100006,199.699997,210.199997,219.600006,230,240.300003,250.199997,260,270.099976,280.199982,289.399994,299.599976,309.799988,320.299988,329.699982,340.299988,350.199982,360.099976,380,400.099976,450,500,550.200012,600,649.799988,700.299988,750,800,849.799988,900,950.399963,999.700012,1050,1100.200073,1150.100098,1200.200073,1249.700073,1299.900024,1350,1400.100098,1450,1500.400024,1549.700073,1599.700073,1650.400024,1700.200073,1749.200073,1799.400024,1850.100098,1899],[14.068,14.072,14.072,14.096,14.063,13.33,13.188,14.069,14.063,13.26,12.981,12.677,12.753,12.683,12.595,12.472,12.366,12.232,12.434,12.551,12.375,12.391,12.378,12.353,12.112,11.961,11.807,11.667,11.361,11.317,11.123,11.006,10.863,10.787,10.547,10.502,10.351,10.202,10.062,9.306,8.537,7.89,7.106,6.445,5.907,5.274,4.895,4.077,4.088,3.835,3.854,3.708,3.591,3.485,3.398,3.254,3.191,3.08,2.99,2.926,2.859,2.815,2.77,2.72,2.686,2.646,2.633,2.604,2.572],[34.515003,34.516006,34.515015,34.530998,34.534996,null,34.470043,34.883789,null,35.010727,34.990749,34.954773,35.007748,35.018726,35.020733,35.006748,34.996754,34.979774,35.052719,35.081703,35.044724,35.071701,35.0797,35.077705,35.033737,35.003754,34.979771,34.959789,34.896824,34.909824,34.874836,34.860867,34.846863,34.832874,34.788902,34.790901,34.770924,34.75893,34.752941,34.679993,34.603058,34.540092,34.464149,34.419189,34.376221,34.319271,34.327278,34.247326,34.314293,34.322292,34.360275,34.376259,34.410271,34.440239,34.459213,34.477215,34.506199,34.524185,34.54417,34.568172,34.585152,34.605156,34.62114,34.635136,34.648121,34.664127,34.674122,34.685108,34.690117]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_261","geolocation":{"type":"Point","coordinates":[69.435,-43.05]},"basin":3,"timestamp":"2017-03-24T10:50:53.001Z","date_updated_argovis":"2023-01-26T10:46:40.379Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_261.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":261,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,19.9,29.699999,39.700001,49.700001,60.200001,70.100006,80.400002,90.100006,99.700005,109.900002,120.200005,130.100006,140,149.5,160.300003,169.800003,180,190.400009,200.300003,210,219.900009,229.900009,239.5,249.5,259.799988,269.799988,279.599976,290.299988,299.699982,309.899994,320.5,330.199982,340.299988,349.899994,359.599976,380.299988,400.199982,450.099976,499.199982,550.200012,599.799988,650.200012,699.5,749.899963,799.899963,850.200012,899.399963,949.700012,1000.099976,1050.300049,1100,1149.800049,1199.800049,1249.600098,1299.900024,1350,1399.800049,1450.100098,1500.400024,1548.900024,1599.900024,1649.700073,1700.300049,1750.200073,1800,1849.600098,1897.200073],[15.105,15.104,15.101,15.1,15.099,15.106,15.11,15.06,14.817,14.347,14.698,14.432,14.142,14.079,13.981,14.042,13.487,13.332,13.259,13.469,13.044,12.872,12.746,12.793,12.73,12.856,12.797,12.669,12.356,12.252,11.954,11.725,11.626,11.483,11.762,11.9,11.933,11.854,11.596,10.724,9.577,8.683,9.18,8.573,7.401,6.815,6.226,5.541,5.31,4.993,4.705,4.03,3.938,3.732,3.436,3.52,3.428,3.302,3.225,3.073,2.901,2.87,2.86,2.841,2.779,2.733,2.68,2.638,2.607],[34.910755,34.910748,34.913738,34.919743,34.921749,34.925724,34.932724,35.255554,35.241554,35.217575,35.366489,35.317524,35.275543,35.291553,35.289536,35.315533,35.1926,35.168625,35.16663,35.224586,35.131641,35.095676,35.086674,35.10965,35.106674,35.145638,35.143639,35.119652,35.060699,35.031719,34.977745,34.933777,34.924789,34.902809,34.981758,35.024727,35.044724,35.029724,34.983761,34.835861,34.62999,34.50708,34.688957,34.630009,34.469116,34.430161,34.395187,34.348228,34.354229,34.344231,34.353249,34.301281,34.33326,34.34026,34.339275,34.402233,34.444214,34.4632,34.491173,34.516163,34.528179,34.553158,34.568142,34.587139,34.608135,34.62711,34.647121,34.662113,34.671097]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_260","geolocation":{"type":"Point","coordinates":[70.635,-44.05]},"basin":3,"timestamp":"2017-03-14T06:36:47.000Z","date_updated_argovis":"2023-01-26T10:46:38.607Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_260.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":260,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10,20.199999,30.199999,40.300003,50.400002,60.300003,70.099998,80.5,90.200005,100,109.5,120.300003,130.399994,139.599991,149.599991,159.799988,169.899994,180.199997,189.699997,200.199997,210.199997,220,229.799988,240.099991,250.199997,260.100006,270,280.199982,289.699982,300.199982,309.899994,319.899994,329.399994,340.299988,350,360.100006,379.600006,400,449.799988,500,549.900024,599.900024,650,700.300049,750.200012,800.300049,849.600037,900.100037,949.400024,1000,1049.5,1100.099976,1150.099976,1200.400024,1250.099976,1299.700073,1349.900024,1399.700073,1450.099976,1500.5,1549.599976,1600.400024,1649.900024,1700.300049,1749.5,1800,1850.200073,1899.800049],[13.412,13.39,13.371,13.414,13.764,14.183,13.451,13.378,11.979,12.961,12.596,13.408,12.946,12.868,12.876,12.506,12.377,12.246,12.202,12.104,11.861,11.743,11.583,10.838,10.824,10.168,9.905,10.281,10.797,10.709,10.584,10.458,10.374,10.289,10.155,9.968,10.031,9.518,8.219,8.337,8.055,7.667,6.792,6.254,5.723,5.427,5.029,4.759,4.507,4.254,4.002,3.75,3.716,3.521,3.342,3.155,3.138,3.144,3.012,2.921,2.825,2.776,2.779,2.751,2.694,2.618,2.567,2.502,2.484],[33.991226,33.991226,33.992233,34.094166,34.27306,34.842735,34.870724,34.96867,null,34.981667,34.923691,35.158569,35.074623,35.073601,35.083618,35.016651,35.001667,34.98568,34.998684,34.991673,34.949711,34.93272,34.896744,34.735847,34.733849,34.616917,34.576958,34.672901,34.806797,34.795811,34.782818,34.770828,34.757843,34.747829,34.73386,34.712868,34.740852,34.707886,34.404083,34.511017,34.526009,34.510021,34.43108,34.391136,34.35516,34.361141,34.348171,34.350174,34.352173,34.372166,34.379162,34.37418,34.398163,34.42416,34.446133,34.459137,34.489117,34.51511,34.524097,34.545097,34.568081,34.588066,34.608051,34.619049,34.626053,34.637047,34.652046,34.659035,34.679024]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_259","geolocation":{"type":"Point","coordinates":[68.766,-44.652]},"basin":3,"timestamp":"2017-03-04T02:14:18.000Z","date_updated_argovis":"2023-01-26T10:46:36.791Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_259.nc","date_updated":"2020-11-12T10:21:11.000Z"}],"cycle_number":259,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10.099999,19.6,30.4,40.5,50.5,60.400002,70,80.200005,90.200005,100.200005,110.099998,119.700005,130.199997,140,150,159.799988,169.399994,180,189.799988,200.099991,209.099991,219.699997,230.199997,239.5,249,259.899994,269.600006,280,289,300.199982,309.699982,319.399994,329.600006,338.799988,350.399994,358.5,380.399994,399.600006,450.100006,500,548,600.100037,650,699.900024,749.5,800,849.700012,900,949.800049,999.600037,1050.200073,1100,1149.900024,1199.5,1249.900024,1299.900024,1349.599976,1399.599976,1449.900024,1499.599976,1550.400024,1600,1650.200073,1700.300049,1749.599976,1799.599976,1849.599976,1900],[13.367,13.355,13.368,13.416,13.493,12.865,12.141,11.832,11.107,10.954,11.084,11.308,12.162,12.044,11.767,11.563,11.458,11.237,11.017,11.066,11.146,11.08,10.856,10.445,10.228,9.937,10.469,10.308,10.131,9.937,9.862,9.65,9.428,9.438,9.48,9.298,9.021,8.322,7.962,7.637,7.453,6.437,6.157,5.593,5.151,4.872,4.484,4.185,3.847,3.559,3.454,3.64,3.463,3.337,3.255,3.1,2.998,2.897,2.857,2.837,2.777,2.683,2.641,2.617,2.613,2.583,2.559,2.531,2.497],[34.344013,34.343002,34.344013,34.361012,34.37999,34.362007,34.489941,34.506947,34.422001,34.463966,34.557934,34.647869,34.91869,34.918705,34.885704,34.867737,34.851742,34.82177,34.78479,34.808781,34.837761,34.834766,34.79377,34.713848,34.675877,34.627899,34.767803,34.742832,34.722832,34.703846,34.701859,34.660892,34.6479,34.648899,34.669872,34.663891,34.619923,34.516991,34.463039,34.458035,34.510006,34.386105,34.409077,34.373131,34.347145,34.347141,34.351158,34.365158,34.370148,34.365158,34.387138,34.445114,34.455101,34.460125,34.493099,34.515079,34.54007,34.560062,34.57505,34.59404,34.611042,34.635029,34.645027,34.657013,34.671005,34.681004,34.688,34.697998,34.709969]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_258","geolocation":{"type":"Point","coordinates":[66.18,-44.607]},"basin":3,"timestamp":"2017-02-21T22:34:44.002Z","date_updated_argovis":"2023-01-26T10:46:34.881Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_258.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":258,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,19.9,28.799999,40.200001,50.200001,60.400002,70.099998,80.5,90,100.599998,110.599998,120.400002,130.100006,140.5,150.300003,160,169.699997,179.699997,190.600006,200.399994,210.5,220.399994,230.399994,239.800003,250.100006,260,270.399994,279.899994,290.399994,300.399994,310.5,319.899994,329.700012,339.899994,349.799988,360.5,380.399994,400.200012,449.700012,500.200012,549.700012,600.299988,650.599976,699.900024,749.900024,800.099976,850.5,900.200012,950,1000.5,1049.900024,1100.5,1150,1199.900024,1250.300049,1300.099976,1350.199951,1400.300049,1448.5,1499.800049,1549.800049,1599.699951,1649.400024,1700.300049,1750.099976,1800.400024,1849.400024,1900.199951],[14.688,14.689,14.769,14.845,15.243,15.293,12.415,11.929,11.487,11.25,9.811,9.213,10.246,9.537,9.417,9.286,9.234,9.157,8.988,8.983,8.978,8.945,8.922,8.88,8.832,8.766,8.597,8.579,8.466,8.374,8.126,8.227,7.955,7.723,7.847,7.708,7.777,7.498,7.331,7.149,6.274,5.664,5.194,5.016,4.559,4.256,3.964,3.944,3.84,3.838,3.682,3.568,3.336,3.261,3.181,3.193,3.183,3.016,2.962,2.868,2.8,2.798,2.75,2.687,2.648,2.605,2.566,2.525,2.507],[34.347931,34.34893,34.398903,34.473854,34.673725,34.686722,34.363956,34.33197,34.365959,34.377964,34.199081,34.173115,null,34.422951,34.426952,34.423958,34.427944,34.421967,34.40398,34.421955,34.430958,34.429966,34.428974,34.427959,34.427956,34.424961,34.410988,34.414978,34.405975,34.398983,34.365009,34.400978,34.374008,34.343029,34.389008,34.382999,34.406982,34.389984,34.394001,34.446987,34.35104,34.319073,34.285099,34.308094,34.289116,34.290112,34.293118,34.327103,34.351097,34.394058,34.416061,34.424061,34.435043,34.457047,34.482021,34.510021,34.535,34.555981,34.571991,34.586975,34.600971,34.621956,34.632957,34.644947,34.661938,34.679935,34.690922,34.699921,34.706921]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_257","geolocation":{"type":"Point","coordinates":[65.739,-42.773]},"basin":3,"timestamp":"2017-02-11T18:40:14.001Z","date_updated_argovis":"2023-01-26T10:46:32.985Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_257.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":257,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.099999,19.6,28.1,40.400002,49.799999,60,68.399994,80.299995,90.199997,100,109.699997,119.099998,129.300003,139.899994,149.699997,159.800003,169.599991,179.399994,189.099991,200,209.399994,219.5,230,239.199997,249.5,259.900024,270.300018,280.100006,289.600006,300,309.800018,320.100006,329.800018,339.5,349.600006,360.100006,380.200012,400.400024,449.600006,499.800018,550.100037,600.100037,650.100037,699.900024,749.5,799.400024,849.600037,899.400024,949.299988,999.900024,1049.599976,1099.799927,1150.099976,1200.099976,1250,1300,1350.199951,1399.699951,1449.199951,1500,1550.099976,1600,1649.199951,1700.099976,1750.099976,1799.799927,1849.699951,1899.699951],[15.236,15.237,15.249,15.213,15.273,12.586,11.196,10.828,11.23,11.577,11.765,12.356,12.057,12.237,12.168,12.072,11.844,11.929,11.872,11.707,11.593,11.609,11.317,11.201,11.113,10.89,10.179,9.916,9.831,9.241,9.2,9.299,9.417,9.551,9.568,9.417,10.039,9.111,9.136,9.335,7.575,6.595,6.061,6.418,5.92,5.44,4.822,4.676,4.211,3.836,3.665,3.795,3.535,3.208,3.482,3.468,3.323,3.183,3.118,3.063,2.974,2.871,2.938,2.844,2.738,2.704,2.673,2.649,2.605],[34.490944,34.489933,34.495934,34.493942,null,34.326077,34.141205,34.142212,34.360073,34.52198,34.678883,34.892754,34.854771,34.909748,34.933723,34.917747,34.88776,34.921753,34.913734,34.887775,34.877773,34.888763,34.83881,34.819817,34.80381,34.767853,34.623955,34.585979,34.583984,34.479042,34.481045,34.50803,34.547001,34.584976,34.598965,34.585976,34.743889,34.563988,34.582981,34.670929,34.401112,34.302181,34.276207,34.406128,34.373173,34.360199,34.295231,34.31422,34.287251,34.274273,34.285259,34.349224,34.346218,34.345249,34.442173,34.479145,34.492153,34.506134,34.52314,34.549118,34.56012,34.571106,34.60709,34.619083,34.626083,34.64407,34.652077,34.665058,34.678055]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_256","geolocation":{"type":"Point","coordinates":[62.922,-44.498]},"basin":3,"timestamp":"2017-02-01T14:16:48.001Z","date_updated_argovis":"2023-01-26T10:46:31.191Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_256.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":256,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.2,20.299999,29.799999,40.100002,49.600002,60.400002,69.800003,78.599998,90,100,109.800003,120.099998,130.099991,139.799988,149.399994,160.199997,169.799988,180,190.199997,199.899994,210.199997,220.399994,230.399994,239.899994,249.699997,260,270.399994,279.600006,289.5,299.5,309.600006,319.799988,329.899994,340,350.100006,360.199982,380.299988,400.299988,449.899994,499.899994,549.800049,600.400024,650.100037,699.900024,749.700012,800.300049,850,900.300049,949.5,999.700012,1049.599976,1100.200073,1149.900024,1199.900024,1249.900024,1300.400024,1350.300049,1400.200073,1449.900024,1500.5,1550.200073,1600.300049,1650.200073,1700.099976,1750,1800.300049,1849],[16.796,16.795,16.774,16.77,16.767,16.764,16.747999,16.733999,16.702999,11.796,12.27,11.75,11.726,12.56,12.181,12.33,12.13,12.056,11.696,11.865,11.877,11.783,11.844,11.623,11.514,11.468,11.35,11.121,10.68,10.684,10.872,10.336,10.143,9.591,9.853,10.009,9.519,9.709,9.487,9.553,9.047,8.374,7.266,6.197,6.054,4.771,4.457,4.514,4.404,4.138,3.985,3.938,3.641,3.511,3.089,3.018,3.057,3.055,2.973,2.946,2.859,2.834,2.761,2.691,2.694,2.694,2.675,2.618],[35.365318,35.365299,35.362305,35.361313,35.361305,35.361305,35.35532,35.345329,35.301357,null,34.69976,34.660786,34.687771,34.937614,34.869663,34.917629,34.893627,34.879658,34.817688,34.873661,34.900646,34.896641,34.918648,34.881649,34.867672,34.868679,34.844685,34.795704,34.708763,34.736767,34.774719,34.662811,34.625828,34.53389,34.593857,34.639828,34.545883,34.634827,34.627846,34.701786,34.670834,34.609879,34.475967,34.350044,34.381035,34.220158,34.207165,34.256145,34.294125,34.314125,34.34409,34.385078,34.40107,34.40707,34.382111,34.405087,34.441063,34.47604,34.512024,34.545994,34.561005,34.590981,34.60997,34.626961,34.647938,34.669941,34.682926,34.685936]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_255","geolocation":{"type":"Point","coordinates":[60.382,-44.774]},"basin":3,"timestamp":"2017-01-22T10:26:03.001Z","date_updated_argovis":"2023-01-26T10:46:29.313Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_255.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":255,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,20.5,29.799999,40.700001,49.900002,60.400002,69.900002,79.900002,90.400002,100.199997,110.699997,120.099998,130.399994,140.5,150.300003,160.300003,169.699997,180.100006,189.899994,199.699997,207.699997,220.100006,230,240.5,250,259.899994,270.100006,280.399994,290.299988,300.399994,309.600006,319.799988,330.399994,339.899994,350.200012,359.399994,380.200012,400.399994,449.899994,500.200012,550.099976,600.400024,649.900024,700.099976,749.700012,800.099976,850.200012,899.700012,950.200012,999.599976,1050.300049,1099.800049,1150.400024,1199.900024,1249.800049,1299.900024,1349.5,1399.699951,1450.199951,1500.099976,1550.199951,1600.400024,1650.099976,1700.300049,1749.699951,1800.199951,1850.099976],[11.53,11.527,11.522,11.435,11.088,10.195,10.069,10.072,9.999,9.985,9.802,9.374,9.22,9.482,9.913,9.585,9.414,9.595,9.508,9.686,9.509,9.46,9.209,9.472,9.458,9.462,9.44,9.129,9.11,8.992,9.082,9.059,8.896,8.775,8.682,8.602,8.493,8.382,6.721,6.435,5.759,5.004,4.95,4.44,4.137,3.639,3.593,3.517,4.019,3.439,3.497,3.472,3.186,3.265,3.233,3.103,2.801,2.905,2.873,2.801,2.821,2.829,2.793,2.736,2.721,2.643,2.6,2.562],[33.732265,33.734272,33.733261,33.747257,33.805229,33.89817,33.895199,33.917168,33.991138,34.17403,34.219002,34.195034,34.243004,34.357941,34.496841,34.488846,34.429886,34.49086,34.488853,34.549824,34.527832,34.522839,34.504856,34.572803,34.583805,34.594791,34.602798,34.55682,34.567806,34.568832,34.601791,34.609802,34.59581,34.58181,34.571812,34.561821,34.550838,34.532837,34.28801,34.321003,34.293026,34.233086,34.277039,34.234081,34.224091,34.201122,34.239105,34.269073,34.389008,34.350037,34.405994,34.437988,34.426991,34.466976,34.503967,34.513939,34.48996,34.541935,34.567928,34.586918,34.616905,34.638878,34.651863,34.660877,34.672871,34.680866,34.690861,34.698853]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_254","geolocation":{"type":"Point","coordinates":[59.249,-43.001]},"basin":3,"timestamp":"2017-01-12T06:26:54.000Z","date_updated_argovis":"2023-01-26T10:46:27.487Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_254.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":254,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.5,20.4,30.699999,39.900002,50.200001,60.400002,70.099998,80,89.700005,99.800003,110,120.099998,130.199997,140.299988,149.699997,160.099991,169.5,179,190,200.399994,210.399994,220.199997,230,239.899994,250.199997,259.299988,269.799988,279.399994,289.399994,299.799988,310.100006,319.5,330.100006,340.299988,350.299988,359.799988,379.5,400.100006,450.399994,500.299988,550.300049,600.200012,650.300049,699.900024,750.300049,799.700012,850.400024,899.900024,949.800049,999.700012,1049.400024,1100.200073,1150.200073,1200.099976,1250.300049,1299.599976,1349.5,1400.200073,1450.5,1500.200073,1549.599976,1599.800049,1649.5,1700.200073,1750.099976,1799.599976,1849.599976,1898.700073],[11.556,11.558,11.562,11.655,12.813,13.595,13.855,13.602,13.158,13.061,12.933,12.66,12.66,12.651,12.339,12.054,12.001,11.968,11.913,11.892,11.668,11.546,11.263,11.256,11.164,11.1,11.077,11.014,10.88,10.85,10.848,10.733,10.568,10.489,10.316,10.149,9.899,8.83,9.341,8.97,8.07,7.692,6.325,5.018,5.262,4.804,5.048,3.907,3.442,3.306,3.217,3.893,3.726,3.557,3.361,3.47,3.359,3.152,3.053,3.014,2.942,2.93,2.912,2.858,2.711,2.688,2.583,2.612,2.598],[33.936169,33.937164,33.940155,33.991138,34.732674,35.02351,35.14642,35.130444,35.039505,35.055496,35.038498,34.999531,35.013508,35.01252,34.965557,34.926582,34.926571,34.938576,34.931583,34.947578,34.9006,34.891609,34.838654,34.840641,34.833637,34.827652,34.826656,34.820671,34.800682,34.809681,34.813667,34.798672,34.774685,34.763714,34.734718,34.706745,34.65778,34.468906,34.606804,34.594818,34.494896,34.487911,34.327026,34.190136,34.277096,34.244114,34.335045,34.198147,34.17915,34.206169,34.248131,34.37804,34.387043,34.399036,34.402042,34.456997,34.478985,34.489994,34.520981,34.547974,34.561951,34.578941,34.606937,34.621914,34.628929,34.639904,34.644909,34.662899,34.676907]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_253","geolocation":{"type":"Point","coordinates":[55.521,-42.735]},"basin":3,"timestamp":"2017-01-02T02:23:04.000Z","date_updated_argovis":"2023-01-26T10:46:25.697Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_253.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":253,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.3,20.200001,30.5,40.200001,48.099998,60.099998,70.099998,80.5,90.599998,100.300003,110.400002,119.900002,129.600006,139.699997,149.600006,159.699997,170.100006,179.699997,189.699997,199.5,210.399994,220.100006,230.100006,240,249.699997,259.799988,269.600006,277.200012,290.299988,300.200012,310.299988,320,330.200012,340,350.200012,360,379.700012,400.299988,450.399994,499.899994,546.799988,600,650,700,750.200012,800.200012,850.400024,900.599976,950.5,999.900024,1050.300049,1100.199951,1150.5,1200.099976,1250,1299.699951,1349.699951,1400.099976,1449.900024,1499.800049,1549.699951,1599.900024,1650,1700.099976,1750.400024,1800.400024,1850],[10.681,10.681,10.626,9.988,9.722,9.593,8.551,7.972,7.315,7.31,7.683,7.882,7.897,8.661,8.745,9.079,9.244,8.741,8.792,8.809,8.981,8.983,8.976,7.459,7.137,6.714,6.116,5.639,5.672,5.592,5.954,5.988,6.639,6.23,5.502,5.43,5.465,5.374,5.713,5.369,4.975,4.834,4.597,4.447,3.953,3.978,3.782,3.471,3.146,3.169,3.217,3.201,3.1,2.967,2.891,2.807,2.78,2.699,2.683,2.703,2.682,2.675,2.653,2.569,2.551,2.488,2.502,2.445],[33.799191,33.798206,33.801193,33.784206,33.805214,33.807201,33.8442,33.853195,33.873199,33.917171,34.046093,34.128029,34.158031,34.307934,34.367889,34.455841,34.495808,34.431858,34.461838,34.473812,34.530788,34.535782,34.536804,34.282959,34.234997,34.156048,34.102097,34.052128,34.068119,34.104111,34.177044,34.201046,34.317959,34.28997,34.198051,34.202045,34.230019,34.241016,34.303982,34.291992,34.290997,34.306992,34.324989,34.342983,34.318008,34.372971,34.391953,34.385967,34.381989,34.429958,34.465919,34.516907,34.533901,34.55088,34.567871,34.59087,34.607857,34.635853,34.655834,34.675835,34.678825,34.694813,34.704803,34.705811,34.716797,34.722801,34.740795,34.737789]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_252","geolocation":{"type":"Point","coordinates":[56.137,-40.511]},"basin":3,"timestamp":"2016-12-22T22:39:47.002Z","date_updated_argovis":"2023-01-26T10:46:23.969Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_252.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":252,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.3,20.200001,30.1,40.900002,50.900002,60.299999,70.399994,80.5,90.099998,99,110.299995,120.699997,130.699997,140.5,150.300003,159.599991,170.5,180.300003,189.5,200.5,210.300003,220.5,230.099991,240.599991,250.5,260.5,270.600006,280.700012,290.300018,300.100006,310.600006,320.400024,330.700012,340.300018,348.100006,360.600006,380.700012,400.300018,450.400024,500,550.299988,600.100037,650.299988,700,748.5,800.600037,849.900024,900.799988,950.700012,1000.5,1050.699951,1100,1150.199951,1200.5,1249.699951,1300.099976,1350.299927,1400.599976,1450.699951,1500.199951,1550.399902,1600.399902,1650.399902,1700.199951,1749.899902,1800.099976,1850],[10.945,10.692,10.429,10.517,10.345,9.327,9.065,8.804,8.04,8.346,7.556,7.125,7.342,7.444,7.487,8.113,8.482,8.491,8.497,8.393,8.679,9.049,8.98,8.903,8.73,8.147,8.406,8.041,7.712,7.74,7.9,7.98,8.097,8.343,8.239,8.154,7.918,7.969,8.012,7.386,6.305,5.712,5.676,5.282,4.939,4.678,4.23,4.134,4.255,3.968,3.933,3.309,3.096,2.845,2.778,2.933,2.983,2.925,2.84,2.634,2.615,2.649,2.61,2.57,2.547,2.534,2.53,2.525],[33.821072,33.826073,33.842052,33.89502,33.866047,33.824081,33.966,34.060974,33.965015,34.033974,33.928062,33.879093,33.925053,33.963032,34.001011,34.145916,34.239853,34.254848,34.27182,34.272846,34.35479,34.440727,34.44474,34.441734,34.414753,34.318817,34.38377,34.332802,34.296837,34.322815,34.380783,34.417763,34.464733,34.5117,34.517696,34.508709,34.475723,34.511711,34.535702,34.495712,34.369804,34.303864,34.349823,34.337841,34.330845,34.339859,34.320854,34.352863,34.408833,34.401829,34.437801,34.390854,34.39386,34.393864,34.42284,34.476795,34.515774,34.545776,34.563774,34.559753,34.581753,34.613731,34.624725,34.639721,34.652733,34.670696,34.687698,34.700687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_251","geolocation":{"type":"Point","coordinates":[52.918,-41.203]},"basin":3,"timestamp":"2016-12-12T18:25:41.001Z","date_updated_argovis":"2023-01-26T10:46:22.010Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_251.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":251,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.2,20.1,29.9,39.700001,49.900002,60.200001,69.900002,80,90.099998,99.800003,110.200005,119.900002,129.899994,139.399994,150.099991,160.5,169.799988,180,190.399994,199.899994,210,220.5,230,239.699997,249.899994,259.899994,269.699982,279.899994,290.100006,300.199982,310,320.199982,329.600006,339.5,349.399994,359.5,379.5,397.399994,450.299988,500.100006,549.700012,600,650.200012,699.700012,750.5,799.800049,850,899.800049,950.300049,1000.100037,1049.900024,1099.800049,1149.900024,1199.700073,1249.900024,1299.599976,1350.099976,1400.200073,1450.400024,1500,1549.5,1600.300049,1649.900024,1700.099976,1749.599976,1800.099976,1849.900024],[11.577,11.577,11.572,11.021,10.069,10.094,10.183,10.18,10.645,10.842,11.054,10.955,11.053,10.961,10.942,10.897,10.69,10.609,10.543,10.451,10.398,10.209,10.179,10.114,10.061,10.185,10.169,10.073,9.788,8.902,8.877,8.967,9.001,9.1,9.177,9.066,8.921,8.447,8.102,7.279,6.237,5.333,5.124,4.771,4.63,4.509,4.364,4.185,4.011,3.809,3.327,3.199,3.279,3.173,3.104,2.998,2.907,2.88,2.784,2.707,2.695,2.68,2.615,2.587,2.58,2.567,2.509,2.458],[34.07703,34.078018,34.075016,34.115021,34.248951,34.297913,34.338898,34.357876,34.51379,34.650707,34.715664,34.725636,34.756641,34.749626,34.757629,34.756634,34.72966,34.720657,34.720661,34.724663,34.719666,34.690697,34.688679,34.70068,34.694698,34.752663,34.753654,34.738659,34.685696,34.532787,34.554783,34.587761,34.616745,34.649727,34.669727,34.658718,34.63673,34.591774,34.554802,34.494835,34.391918,34.292999,34.320999,34.316002,34.332996,34.35498,34.397945,34.413944,34.424938,34.448944,34.424953,34.458939,34.511898,34.537907,34.551891,34.576893,34.594868,34.618862,34.633846,34.646843,34.658848,34.670826,34.67783,34.690811,34.70681,34.715797,34.722797,34.725803]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_250","geolocation":{"type":"Point","coordinates":[50.812,-41.524]},"basin":3,"timestamp":"2016-12-02T14:25:35.001Z","date_updated_argovis":"2023-01-26T10:46:20.234Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_250.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":250,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.1,20.299999,30.299999,39.799999,50.400002,59.799999,70.5,80.099998,90.599998,100.099998,110.300003,120.599998,130.5,140.300003,150,159.899994,169,180.199997,190.399994,200.600006,210.199997,219.899994,230.199997,240.5,250.199997,260.399994,270.100006,280.100006,290.100006,299.899994,310.200012,319.899994,330,340.299988,349.600006,357.200012,380,400.299988,449.899994,499.899994,550.099976,597.5,649.799988,700.400024,749.900024,800.099976,850.299988,900.5,950.200012,1000.5,1050.300049,1100.300049,1149.800049,1199.599976,1250,1300,1350.400024,1399.5,1450.199951,1500.099976,1549.900024,1599.599976,1650.400024,1700.300049,1750.199951,1800.199951,1849.800049,1899.599976],[10.609,10.577,10.495,10.407,10.337,10.466,10.152,9.507,9.597,11.001,11.247,11.237,10.83,10.523,10.372,10.47,10.7,10.495,10.128,10.206,10.119,10.087,9.903,9.644,9.75,9.662,9.549,9.507,9.492,9.476,9.48,9.49,9.43,9.312,9.322,9.205,9.133,8.899,8.603,8.013,7.358,6.536,5.584,5.107,4.786,4.475,4.295,4.109,4.089,3.731,3.332,3.259,3.081,2.981,3.209,3.122,2.964,2.985,2.912,2.844,2.783,2.729,2.705,2.664,2.634,2.593,2.553,2.505,2.484],[34.140934,34.141933,34.140934,34.262863,34.273853,34.382809,34.330826,34.231892,34.26289,34.656631,34.729568,34.732563,34.661629,34.617649,34.607666,34.642639,34.718597,34.675629,34.612671,34.647652,34.65464,34.653648,34.618664,34.590675,34.627651,34.61467,34.608673,34.624672,34.640667,34.648651,34.664642,34.689625,34.688633,34.688629,34.693638,34.689625,34.683636,34.656662,34.630684,34.57671,34.506763,34.439831,34.331898,34.317917,34.315929,34.324928,34.344921,34.363911,34.402885,34.409897,34.398903,34.429886,34.442871,34.465874,34.524834,34.554813,34.564812,34.600792,34.61578,34.626774,34.63578,34.655758,34.675755,34.687748,34.695747,34.70274,34.709747,34.714741,34.718742]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_249","geolocation":{"type":"Point","coordinates":[48.284,-40.293]},"basin":3,"timestamp":"2016-11-22T10:20:50.001Z","date_updated_argovis":"2023-01-26T10:46:18.403Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_249.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":249,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.1,20.299999,30.1,40.099998,50.099998,60.599998,69.900002,80.300003,90.300003,99.900002,109.599998,119.599998,130.300003,140,148.800003,160.199997,170.399994,180,190,200,210,220.5,230.100006,240.600006,250,260.100006,270.5,280.100006,290.5,300.200012,309.899994,320.600006,330.5,339.200012,350.399994,360.299988,380,400.299988,450.299988,500.299988,550.099976,600.400024,649.799988,700.200012,750,799.299988,850.599976,898,949.599976,999.799988,1049.699951,1100.5,1150.199951,1200.099976,1249.5,1300.199951,1350.099976,1399.099976,1450.5,1499.800049,1550.5,1600.300049,1649.900024,1699.400024,1750,1800.300049,1850],[10.832,10.834,10.837,10.861,11.005,11.216,11.411,11.648,12.293,12.428,12.481,12.299,12.197,12.02,12.004,12.013,11.794,11.742,11.691,11.53,11.441,11.378,11.371,11.358,11.213,11.071,11.082,10.949,10.726,10.615,10.502,10.427,10.323,10.215,10.189,9.988,9.854,9.639,9.256,8.459,7.93,7.293,6.531,5.713,5.232,4.796,4.643,4.302,4.096,4.067,3.995,3.883,3.74,3.605,3.507,3.39,3.011,2.954,2.89,2.844,2.844,2.832,2.802,2.816,2.712,2.649,2.622,2.53],[34.335793,34.334793,34.3368,34.354786,34.420738,34.500687,34.569653,34.685585,34.904438,34.947414,34.995377,34.977394,34.960403,34.936432,34.943432,34.948425,34.908443,34.90345,34.892467,34.878468,34.869469,34.864483,34.86549,34.864475,34.849506,34.835484,34.854488,34.855499,34.82251,34.802532,34.790543,34.780548,34.762562,34.757557,34.760555,34.739567,34.729572,34.714588,34.67762,34.579685,34.550705,34.483768,34.429806,34.345875,34.321903,34.297916,34.322906,34.343903,34.356892,34.404858,34.422848,34.453842,34.477825,34.507805,34.518803,34.521805,34.525803,34.5448,34.567791,34.573769,34.604774,34.62476,34.648746,34.674732,34.673744,34.69574,34.70472,34.708717]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_248","geolocation":{"type":"Point","coordinates":[46.47,-40.509]},"basin":3,"timestamp":"2016-11-12T06:28:12.000Z","date_updated_argovis":"2023-01-26T10:46:16.508Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_248.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":248,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.9,20,29,40.400002,50.5,60,70.300003,79.900002,90,99.599998,110.400002,120.099998,129.800003,140.300003,149,160.300003,170.300003,180.300003,190.300003,199.899994,210,220.300003,229.899994,240.600006,250.300003,260.299988,270.100006,279.899994,290.600006,299.899994,309.899994,320.399994,330.299988,339.899994,349.700012,360,380.600006,399.799988,449.899994,500.299988,549.700012,600.099976,650.400024,699.799988,749.900024,799.5,850.200012,899.5,950.200012,999.900024,1049.800049,1100.400024,1150.199951,1199.900024,1250.099976,1300,1350.300049,1399.599976,1450.099976,1500.5,1549.900024,1598.5,1650,1699.599976,1750.5,1799.800049,1850.099976,1900.199951],[10.243,10.192,10.182,10.213,10.22,11.356,12.142,12.562,12.603,12.535,12.531,12.549,12.556,12.465,12.358,12.277,12.289,12.291,11.785,11.849,11.685,11.661,11.547,11.335,11.313,11.37,11.384,11.411,11.393,11.415,11.298,11.211,11.119,11.035,10.942,10.764,10.624,10.471,10.39,10.034,9.308,8.466,7.692,7.11,6.245,5.546,5.024,4.771,4.572,4.643,4.333,4.124,3.886,3.642,3.563,3.536,3.446,3.395,3.288,3.161,3.073,2.976,2.916,2.861,2.816,2.742,2.708,2.688,2.679],[34.26582,34.270824,34.275806,34.287807,34.294811,34.598618,34.835472,34.972374,34.999355,34.987366,34.988369,34.996353,35.001358,34.982376,34.960388,34.944378,34.95639,34.959377,34.843475,34.861458,34.828461,34.837479,34.822487,34.789501,34.790497,34.810497,34.820496,34.847469,34.847458,34.866447,34.853462,34.851479,34.841476,34.83847,34.837479,34.812492,34.797497,34.793499,34.788513,34.774525,34.703575,34.613647,34.519718,34.469746,34.398808,34.33186,34.314884,34.319878,34.335861,34.370853,34.360855,34.37286,34.385864,34.394863,34.42984,34.471825,34.506805,34.527767,34.559765,34.576759,34.597744,34.624748,34.642715,34.651726,34.668728,34.678719,34.692715,34.706692,34.719681]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_247","geolocation":{"type":"Point","coordinates":[44.237,-42.031]},"basin":3,"timestamp":"2016-11-02T02:25:19.000Z","date_updated_argovis":"2023-01-26T10:46:14.601Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_247.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":247,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.099999,19.400002,28.400002,38,49.5,59.299999,70,79.899994,90.099998,100.199997,109.899994,119.5,130.199997,140.399994,150.099991,160,170.099991,179.899994,189.899994,199.599991,210,219.800003,230,240.199997,250.300003,259.800018,270.100006,279.700012,289.800018,299.400024,310,319.400024,330,339.400024,349.300018,359.5,379,400,450.100006,500.200012,549.600037,600,649.799988,699.600037,749.799988,800.400024,850,900.299988,949.700012,999.299988,1050.099976,1097.299927,1149.599976,1199.599976,1249.5,1299.799927,1350.199951,1400,1450,1500,1549.5,1599.5,1649.399902,1700.199951,1749.699951,1799.899902,1849.5],[10.307,10.305,10.304,10.307,10.31,10.308,10.31,10.311,10.312,10.325,10.329,10.366,10.45,10.552,10.546,10.497,10.389,10.35,10.26,10.19,10.149,10.069,10.028,9.995,9.929,9.694,9.595,9.506,9.233,9.1,8.96,8.946,8.881,8.856,8.659,8.626,8.405,8.281,7.916,7.613,7.156,6.271,5.295,4.809,4.502,4.39,4.143,3.951,3.747,3.567,3.592,3.456,3.394,3.36,3.294,3.217,3.159,3.06,3.008,2.928,2.878,2.853,2.774,2.765,2.732,2.702,2.673,2.635],[34.421852,34.419849,34.420841,34.420853,34.421852,34.421844,34.420849,34.421852,34.421852,34.425858,34.427837,34.442841,34.498806,34.580746,34.603729,34.608738,34.600735,34.653709,34.650711,34.64872,34.643719,34.633739,34.633743,34.635723,34.629726,34.623737,34.617756,34.615738,34.602753,34.595779,34.587769,34.586769,34.581772,34.579781,34.56879,null,34.55479,34.537804,34.504837,34.52383,34.477879,34.389954,34.320999,34.31601,34.325008,34.338005,34.355995,34.377003,34.392982,34.394985,34.433971,34.447952,34.487942,34.514927,34.524914,34.554897,34.571899,34.590889,34.603882,34.609886,34.626873,34.638844,34.656857,34.671848,34.673855,34.681839,34.69883,34.71682]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_246","geolocation":{"type":"Point","coordinates":[43.074,-42.354]},"basin":3,"timestamp":"2016-10-22T22:22:25.002Z","date_updated_argovis":"2023-01-26T10:46:12.698Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_246.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":246,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.5,20.700001,30.5,40.400002,50.099998,60,70.300003,80.5,90.099998,100.300003,109.900002,120.199997,130.5,140,150.399994,160.5,170.399994,179.899994,190.5,197.5,210.5,220.300003,230.5,240,250.399994,260.200012,270,280,290.399994,300.399994,309.899994,319.600006,329.899994,340.299988,349.700012,360.100006,380.299988,400.299988,450.299988,499.799988,549.900024,600.200012,650.5,700.400024,750.200012,800.400024,850.200012,899.400024,950.299988,999.799988,1050,1100.300049,1150.5,1200,1249.900024,1299.699951,1349.199951,1400.199951,1450.5,1500.099976,1550,1599.400024,1649.5,1700.5,1750,1800,1849.199951],[10.391,10.087,9.585,9.885,10.075,10.177,10.215,10.28,10.291,10.308,10.329,10.39,10.555,10.741,10.752,10.729,10.466,10.329,10.056,9.999,10.011,9.918,9.885,9.861,9.846,9.812,9.799,9.634,9.481,9.359,9.269,9.176,9.075,9.046,8.796,8.705,8.447,8.074,7.659,6.943,6.424,5.392,4.791,4.451,4.188,4.062,4.249,3.824,3.685,3.728,3.571,3.386,3.346,3.263,3.13,3.031,2.986,2.957,2.915,2.89,2.856,2.812,2.777,2.722,2.663,2.616,2.587,2.542],[34.22681,34.247787,34.216808,34.314758,34.368736,34.398705,34.407703,34.429695,34.433674,34.440674,34.449684,34.470661,34.534622,34.617565,34.634563,34.649551,34.650528,34.639565,34.602589,34.606586,34.608585,34.617592,34.61758,34.617599,34.616581,34.617592,34.615582,34.610588,34.598591,34.589607,34.584599,34.579624,34.576611,34.574627,34.563618,34.557625,34.551643,34.522671,34.490692,34.43174,34.404766,34.290844,34.252876,34.227898,34.221905,34.269878,34.338844,34.301857,34.326859,34.400806,34.423798,34.444782,34.47279,34.504761,34.532749,34.559731,34.576725,34.593716,34.605705,34.612705,34.629688,34.640686,34.659683,34.673672,34.691654,34.705643,34.717659,34.730637]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_245","geolocation":{"type":"Point","coordinates":[43.094,-42.867]},"basin":3,"timestamp":"2016-10-12T18:20:27.001Z","date_updated_argovis":"2023-01-26T10:46:10.791Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_245.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":245,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.299999,19.5,30.299999,39.700001,49.400002,60.200001,69.599998,80.200005,89.800003,100.400002,110.099998,120.300003,130.399994,140.399994,150.399994,159.599991,169.899994,178.699997,190,200.399994,210.399994,220.099991,230.099991,239.699997,250.399994,259.899994,270.199982,279.799988,289.699982,299.899994,310.199982,319.899994,330,340,347.100006,359.899994,380.299988,400.199982,450.100006,500.299988,549.5,600.400024,650,699.700012,750.200012,800.200012,849.400024,897.600037,949.700012,999.800049,1049.599976,1100,1150,1200,1249.900024,1300,1349.700073,1400,1450.099976,1500,1549.599976,1598.599976,1649.800049,1699.900024,1749.400024,1799.200073,1849],[9.434,9.433,9.425,9.413,9.41,9.396,9.334,9.305,8.98,8.945,10.308,9.986,10.169,10.17,10.02,9.758,9.548,9.29,9.232,9.091,8.884,8.819,8.679,8.666,8.623,8.599,8.543,8.497,8.286,7.972,7.805,7.605,7.504,7.224,7.115,7.091,7.044,6.769,6.471,5.689,5.09,4.515,4.024,3.941,3.839,3.686,3.618,3.579,3.423,3.408,3.341,3.265,3.174,3.117,3.052,2.9,2.838,2.798,2.785,2.763,2.746,2.728,2.697,2.663,2.656,2.642,2.606,2.582],[34.154873,34.154877,34.15588,34.156879,34.153881,34.151871,34.142899,34.146889,null,34.147884,34.496674,34.479691,34.535648,34.550648,34.554642,34.551651,34.550644,34.54266,34.543659,34.532665,34.51968,34.518665,34.517689,34.53767,34.541676,34.553665,34.553658,34.557659,34.543678,34.520687,34.506714,34.497723,34.490726,34.457737,34.445747,34.459743,34.45974,34.441742,34.403797,34.319855,34.275887,34.242935,34.245918,34.27491,34.309898,34.352882,34.381855,34.413826,34.431835,34.484802,34.505795,34.534767,34.552757,34.567764,34.582752,34.609737,34.630722,34.646721,34.655704,34.665703,34.678703,34.687698,34.691704,34.705673,34.713673,34.718674,34.728668,34.734673]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_244","geolocation":{"type":"Point","coordinates":[42.028,-42.716]},"basin":3,"timestamp":"2016-10-02T14:25:02.001Z","date_updated_argovis":"2023-01-26T10:46:09.018Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_244.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":244,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.8,19.800001,30.1,39.299999,49.100002,59.900002,69.299995,79.199997,89.699997,99.5,109.899994,120.299995,129.899994,140.199997,149.899994,159.800003,170.099991,179.899994,189.399994,200.099991,210.300003,220.300003,230,240.199997,249.599991,259.700012,269.800018,279.900024,289.700012,300,310.100006,319.900024,330,339.800018,349.700012,359.700012,379.700012,400.100006,449.900024,499.600006,549.900024,599.900024,649.900024,699.400024,749.900024,799.400024,849.400024,900,949.600037,999.100037,1049.699951,1099.599976,1149.699951,1200.199951,1249.399902,1299.599976,1349.299927,1400,1450.099976,1499.699951,1549.599976,1599.399902,1650,1700,1749.799927,1799.399902,1849],[8.643,8.641,8.639,8.638,8.646,8.649,8.631,8.66,8.663,8.663,8.627,8.361,7.992,8.089,8.397,8.339,9.38,8.947,7.975,8.006,8.111,8.118,8.152,8.595,7.596,7.59,7.729,7.748,7.509,7.504,7.506,7.398,7.671,7.376,7.297,7.157,7.014,7.194,6.706,6.26,5.746,5.306,5.079,4.856,4.456,4.137,4.06,3.878,3.795,3.559,3.454,3.315,3.217,3.157,3.093,3.015,2.896,2.853,2.835,2.793,2.739,2.723,2.684,2.657,2.624,2.61,2.602,2.584],[34.026047,34.026039,34.026039,34.02504,34.026047,34.027058,34.023045,34.027046,34.028042,34.028038,34.024052,34.047047,34.06002,34.122993,34.208939,34.224934,34.48175,34.417812,34.289906,34.301895,34.331875,34.337875,34.380844,34.470783,34.306896,34.300911,34.329891,34.362873,34.331882,34.34787,34.359871,34.351871,34.412838,34.370853,34.367863,34.359879,34.365879,34.441826,34.380875,34.372875,34.339928,34.321938,34.333939,34.349926,34.357937,34.364937,34.37693,34.388916,34.400913,34.412926,34.425922,34.441914,34.466881,34.504868,34.524853,34.565845,34.57983,34.599827,34.607803,34.624817,34.644802,34.67178,34.681782,34.697762,34.709759,34.713745,34.715759,34.72374]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_243","geolocation":{"type":"Point","coordinates":[41.537,-42.466]},"basin":3,"timestamp":"2016-09-22T10:09:05.001Z","date_updated_argovis":"2023-01-26T10:46:07.078Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_243.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":243,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.5,20.200001,30.6,40.200001,50.5,60.400002,70.399994,80.599998,90.699997,100.199997,110.699997,120.199997,130.599991,140.099991,150.099991,160,170,180.5,190.199997,199.599991,209.599991,220.399994,230.099991,240.599991,250.399994,260.400024,270.200012,280.300018,290.5,300.200012,310.400024,320.400024,330,340.300018,350.600006,360.5,380.700012,400.200012,450.300018,500.200012,550.5,597.5,650,700.600037,750.5,800.400024,850.400024,900.100037,950.600037,1000,1050.599976,1100.599976,1150.399902,1199.799927,1250.699951,1300.199951,1350.399902,1400.5,1450.599976,1500.699951,1550.199951,1600.399902,1650,1700.299927,1750.399902,1800.399902,1849.799927],[9.667,9.636,9.677,9.755,9.756,9.643,9.669,9.68,9.752,9.8,10.11,10.367,10.499,10.518,10.312,10.352,10.288,10.324,10.3,10.222,10.152,10.107,9.972,9.792,9.695,9.469,9.381,9.319,9.205,9.137,9.083,9.01,9.059,9.071,8.954,8.761,8.58,8.279,8.144,7.167,6.467,5.741,5.225,4.824,4.842,4.446,4.146,4.049,3.897,3.731,3.555,3.323,3.265,3.166,3.044,2.96,2.887,2.845,2.822,2.761,2.741,2.713,2.713,2.708,2.708,2.684,2.598,2.541],[34.170681,34.198681,34.215672,34.242641,34.246647,34.231644,34.238651,34.24065,34.259628,34.278637,34.375572,34.505489,34.547459,34.565441,34.539459,34.588436,34.601425,34.616428,34.624424,34.629398,34.631416,34.621407,34.621418,34.613419,34.605442,34.585449,34.581448,34.577446,34.57645,34.57246,34.568447,34.579464,34.599445,34.626434,34.626438,34.617435,34.606441,34.577465,34.568481,34.473541,34.406586,34.352646,34.310669,34.295689,34.350662,34.318691,34.313683,34.337677,34.375656,34.395653,34.418648,34.441639,34.466606,34.504593,34.531586,34.574551,34.589554,34.602535,34.611553,34.636532,34.647518,34.659515,34.678505,34.685501,34.699501,34.711491,34.719486,34.725491]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_242","geolocation":{"type":"Point","coordinates":[41.166,-42.292]},"basin":3,"timestamp":"2016-09-12T06:21:07.000Z","date_updated_argovis":"2023-01-26T10:46:05.317Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_242.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":242,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.799999,20.199999,30.4,39.700001,49.800003,60.100002,70,80,90.300003,99.700005,110.400002,120,129.599991,140.099991,149.899994,160.099991,170.199997,179.5,190.099991,200.199997,210,220.199997,229.799988,240.199997,250,260,270.399994,280,289.699982,299.799988,310,319.699982,330,340.100006,349.600006,360.399994,380.399994,400.199982,449.799988,499.600006,550.400024,600.300049,650.300049,699.600037,750,800.5,850.200012,899.700012,950.300049,999.700012,1050.200073,1099.800049,1150,1200.300049,1250,1299.900024,1350,1400.300049,1449.200073,1500,1549.599976,1599.900024,1650.200073,1699.800049,1749.800049,1799.200073,1850],[9.489,9.491,9.474,9.476,9.48,9.499,9.515,9.647,9.814,9.864,10.223,10.384,10.366,10.562,10.618,10.651,10.576,10.442,10.382,10.34,9.988,9.66,9.607,9.463,9.399,9.32,9.332,9.304,9.197,9.173,9.103,9.083,9.07,9.071,9.019,8.901,8.729,8.564,8.316,7.102,6.625,5.562,5.041,4.775,4.268,4.176,3.94,3.888,3.737,3.605,3.486,3.304,3.291,3.154,3.099,3.04,2.981,2.915,2.845,2.789,2.743,2.694,2.662,2.644,2.62,2.601,2.583,2.559],[34.253773,34.252766,34.253754,34.254753,34.253757,34.256763,34.263756,34.299725,34.342701,34.359695,34.466629,34.511612,34.5126,34.566555,34.595539,34.613541,34.63253,34.659515,34.678501,34.691494,34.648518,34.605553,34.600555,34.587555,34.589569,34.582577,34.59956,34.603542,34.611561,34.611549,34.611565,34.641529,34.656525,34.657532,34.654537,34.641529,34.631538,34.624561,34.594566,34.462677,34.441704,34.32478,34.289818,34.304821,34.284832,34.322803,34.335827,34.3568,34.379791,34.400776,34.41877,34.433762,34.47773,34.49773,34.52272,34.549698,34.570683,34.592686,34.60569,34.627666,34.643661,34.667641,34.68264,34.691631,34.701611,34.708622,34.716602,34.722603]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_241","geolocation":{"type":"Point","coordinates":[40.625,-42.376]},"basin":3,"timestamp":"2016-09-02T02:29:26.000Z","date_updated_argovis":"2023-01-26T10:46:03.395Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_241.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":241,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,20,30.1,39.5,50.200001,58.600002,69.799995,79.799995,89.599998,99.599998,109.599998,119.599998,129.5,139.899994,149.699997,159.300003,170.199997,180.099991,189.800003,199.599991,209.699997,219.399994,229.800003,239.699997,249.899994,259.600006,270.100006,279.800018,289.600006,300.200012,310.200012,319.800018,329.400024,339.900024,349.400024,360.200012,379.700012,400.200012,450.300018,500,550.200012,599.900024,650,699.299988,750.100037,800,850,899.400024,950.200012,999.900024,1050.199951,1099.5,1149.5,1200.099976,1249.899902,1299.599976,1349.399902,1400,1449.899902,1499.699951,1549.5,1599.599976,1650.099976,1699.199951,1749.599976,1799.199951,1849.299927],[8.988,9.003,9.018,9.035,9.039,9.023,8.983,8.968,8.971,8.99,9.053,9.139,9.262,9.535,9.81,9.795,9.744,9.542,9.432,9.444,9.277,9.186,8.93,9.061,9.086,8.907,8.818,8.799,8.814,8.635,8.583,8.489,8.345,8.204,7.759,7.531,7.184,7.171,6.659,5.608,5.501,5.022,5.025,4.743,4.622,4.535,4.159,3.832,3.704,3.573,3.389,3.24,3.192,3.144,3.065,3.046,2.922,2.872,2.873,2.804,2.777,2.694,2.661,2.648,2.631,2.592,2.56,2.538],[34.130917,34.133911,34.134914,34.141888,34.14291,34.145901,34.149899,34.155891,34.158901,34.163891,34.179882,34.202866,34.242844,34.349766,34.454708,34.508671,34.506676,34.522667,34.522675,34.550644,34.532673,34.521687,34.504688,34.539669,34.549652,34.536674,34.529675,34.544682,34.559677,34.552662,34.563675,34.561653,34.549683,34.534698,34.482727,34.457748,34.419781,34.415779,34.349842,34.241909,34.299873,34.261902,34.313892,34.312881,34.347858,34.373848,34.370865,34.35989,34.383873,34.406872,34.429859,34.447842,34.47683,34.507801,34.528786,34.563766,34.576778,34.590763,34.611755,34.622742,34.63475,34.66172,34.681709,34.6917,34.697697,34.702694,34.712688,34.724686]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_240","geolocation":{"type":"Point","coordinates":[40.123,-42.48]},"basin":3,"timestamp":"2016-08-22T22:22:48.002Z","date_updated_argovis":"2023-01-26T10:46:01.613Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_240.nc","date_updated":"2020-11-12T10:21:10.000Z"}],"cycle_number":240,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.6,20.4,30,40.200001,50.299999,60.5,69.800003,80.199997,90.5,100.400002,109.5,120,129.899994,140.600006,150.100006,159.800003,169.800003,179.899994,189.600006,199.899994,209.899994,219.800003,230.399994,239.800003,249.600006,259.5,270.299988,280,290.299988,300.5,309.899994,320.5,330.299988,338.899994,350.399994,360.600006,379.899994,400.399994,450,500.5,550.299988,600.299988,650.200012,700,750,800.599976,849.900024,898.599976,949.799988,1000.400024,1050.199951,1100,1149.800049,1200,1250.199951,1300.300049,1350.199951,1400.300049,1449.800049,1500.199951,1550,1599.699951,1650.199951,1700.099976,1749.5,1799.800049,1849.300049],[8.271,8.228,8.21,8.218,8.207,8.13,8.142,8.148,8.185,8.324,8.417,8.541,9.228,9.182,9.186,9.388,9.549,8.857,8.804,9.124,8.56,8.102,7.52,7.162,7.087,7.01,6.982,6.954,6.893,6.889,6.738,6.627,6.425,7.01,6.665,6.569,6.576,6.464,6.373,5.776,5.023,4.782,4.718,4.7,4.552,4.24,3.845,3.827,3.561,3.43,3.357,3.194,3.135,3.08,3.018,2.953,2.911,2.903,2.865,2.832,2.765,2.723,2.706,2.679,2.63,2.607,2.571,2.544],[33.921894,33.917889,33.916893,33.916893,33.916897,33.909897,33.913891,33.915882,33.926895,33.957851,33.985836,34.034821,34.194691,34.234684,34.245674,34.296646,34.379601,34.324642,34.357624,34.448559,34.373611,34.30666,34.229717,34.193737,34.198746,34.20974,34.215733,34.215736,34.238735,34.269703,34.276699,34.269703,34.261711,34.378635,34.336681,34.355671,34.360664,34.352657,34.356659,34.307693,34.25774,34.26572,34.294735,34.348701,34.378681,34.383694,34.359722,34.397678,34.394684,34.421673,34.447655,34.467644,34.503639,34.543613,34.570595,34.572594,34.592579,34.608574,34.625568,34.633564,34.652546,34.664555,34.681541,34.699535,34.709522,34.711517,34.721519,34.728523]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_239","geolocation":{"type":"Point","coordinates":[39.543,-42.485]},"basin":3,"timestamp":"2016-08-12T18:18:59.001Z","date_updated_argovis":"2023-01-26T10:45:59.701Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_239.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":239,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.3,20.6,29.700001,39.799999,50.099998,60,70.199997,80.5,90,100.5,110.300003,120.199997,130.199997,139.800003,150.199997,159.600006,168.5,180.300003,190.5,200.199997,210,220.399994,230.199997,239.899994,250.100006,259.899994,269.899994,280.299988,290.299988,300,309.700012,319.600006,330,340,349.899994,360,380.100006,399.899994,450.299988,499.899994,550.299988,600.299988,650.099976,700,749.799988,800.200012,849.799988,897.599976,950.299988,1000.5,1049.800049,1100.199951,1150.300049,1199.599976,1250.5,1300.199951,1350.099976,1400.300049,1450.400024,1499.800049,1549.900024,1599.599976,1650.199951,1699.800049,1749.800049,1800.199951,1850.199951],[9.283,9.285,9.284,9.219,9.217,9.222,9.239,9.243,9.24,9.252,9.268,9.295,9.311,9.363,9.709,10.098,10.311,10.131,9.946,9.713,9.647,9.535,9.455,9.367,9.245,9.169,9.079,9.116,9.045,8.929,8.782,8.57,8.314,8.05,7.677,7.428,7.328,6.956,6.673,5.678,5.022,4.753,4.503,4.321,4.157,3.92,4.039,3.995,3.798,3.499,3.328,3.258,3.126,3.051,2.961,2.919,2.943,2.94,2.891,2.823,2.783,2.744,2.688,2.7,2.673,2.595,2.56,2.548],[34.187691,34.188709,34.187695,34.178703,34.179695,34.18071,34.184685,34.184689,34.183701,34.186699,34.189686,34.19669,34.20269,34.220676,34.355595,34.574459,34.689381,34.665401,34.644424,34.616432,34.605438,34.593445,34.579449,34.570473,34.554474,34.558483,34.558472,34.587463,34.58746,34.577461,34.563488,34.538513,34.509518,34.473522,34.422585,34.417576,34.415577,34.392597,34.37463,34.298679,34.256725,34.249733,34.251732,34.253746,34.263744,34.277725,34.349678,34.391659,34.409649,34.410652,34.425655,34.445648,34.462646,34.493626,34.513611,34.538612,34.571571,34.60355,34.629555,34.644543,34.659527,34.67754,34.68552,34.711498,34.725483,34.7285,34.739471,34.750481]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_238","geolocation":{"type":"Point","coordinates":[38.97,-42.507]},"basin":3,"timestamp":"2016-08-02T14:29:09.001Z","date_updated_argovis":"2023-01-26T10:45:57.791Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_238.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":238,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.9,20.1,29.9,40.099998,49.799999,59.700001,70,80.099998,90.300003,99.900002,110.300003,119.900002,129.600006,140.199997,150,160.5,170.399994,179.899994,190,200.100006,210.199997,220.399994,229.899994,239.899994,250,259.799988,269.899994,279.5,289.600006,300,307.899994,320.100006,330.100006,340.399994,349.899994,360.399994,380,400.5,449.899994,500.100006,550.5,599.900024,649.900024,700.5,750.299988,799.799988,849.900024,900.200012,949.900024,1000.099976,1050.400024,1100.400024,1150.5,1200,1249.699951,1300.300049,1349.599976,1399.699951,1450.5,1499.900024,1550.199951,1600.5,1650.5,1700,1750.400024,1800.199951,1850],[8.916,8.911,8.855,8.816,8.8,8.796,8.783,8.783,8.769,8.758,8.763,9.071,9.509,9.663,9.644,9.672,9.662,9.605,9.554,9.52,9.476,9.422,9.379,9.334,9.213,9.157,9.055,8.903,8.72,8.581,8.437,8.351,8.293,8.264,8.174,8.125,7.98,7.754,7.222,6.52,6.026,5.744,5.306,4.866,4.574,4.541,4.269,4.109,3.759,3.602,3.319,3.222,3.085,3.027,2.975,2.894,2.858,2.907,2.889,2.859,2.814,2.794,2.725,2.715,2.695,2.672,2.649,2.61],[34.081741,34.079746,34.075729,34.074749,34.07375,34.072735,34.071728,34.070751,34.068748,34.068745,34.07074,34.210648,34.406536,34.487492,34.49247,34.516476,34.569439,34.580437,34.576431,34.572437,34.567444,34.564449,34.564449,34.568436,34.570454,34.577438,34.587437,34.582436,34.571461,34.56546,34.56546,34.562469,34.55946,34.558475,34.560482,34.564468,34.549469,34.523499,34.467548,34.407578,34.381603,34.389599,34.355644,34.328655,34.341656,34.386627,34.383648,34.41362,34.410645,34.431637,34.431629,34.457619,34.475613,34.50359,34.530575,34.540585,34.561562,34.606537,34.634529,34.658504,34.676491,34.691502,34.704487,34.714478,34.725475,34.736473,34.747467,34.758461]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_237","geolocation":{"type":"Point","coordinates":[38.621,-42.51]},"basin":3,"timestamp":"2016-07-23T10:23:28.001Z","date_updated_argovis":"2023-01-26T10:45:55.981Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_237.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":237,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.7,20.6,30.1,39.700001,49.799999,60.200001,70.099998,80.199997,90,99.699997,110.400002,120.199997,129.699997,140,150.399994,160.5,170.699997,180.5,190.600006,200.5,210.300003,219.899994,230.5,240.100006,250.100006,260.299988,270.100006,280.600006,289.799988,300.5,309.799988,320.200012,329.600006,340.100006,350,359.5,380.299988,399.700012,449.700012,499.899994,550.200012,600,650.400024,700.200012,750.299988,799.799988,850.400024,900.5,950.400024,999.700012,1050.400024,1100.400024,1150.5,1200,1250.099976,1300.5,1349.5,1400.300049,1449.800049,1500.300049,1549.199951,1599.800049,1649.599976,1699.400024,1749.599976,1799.900024,1850.199951],[8.629,8.631,8.631,8.625,8.623,8.619,8.608,8.604,8.599,8.594,8.591,8.593,8.594,8.589,8.644,9.268,9.47,9.17,8.658,8.91,9.216,9.168,9.002,8.579,8.143,7.832,7.805,7.852,7.629,7.597,7.541,7.621,7.816,7.871,7.922,7.735,7.667,7.192,6.522,5.639,4.878,4.724,4.515,4.191,4.012,4.081,3.803,3.96,3.581,3.437,3.303,3.175,3.042,2.994,2.93,2.851,2.806,2.828,2.838,2.829,2.785,2.748,2.724,2.701,2.701,2.688,2.674,2.642],[33.895828,33.897835,33.902824,33.903824,33.903828,33.905834,33.912823,33.914822,33.918823,33.920815,33.923817,33.924828,33.928822,33.934807,33.99577,34.220634,34.297588,34.296589,34.272614,34.40752,34.522438,34.518456,34.488476,34.414536,34.342579,34.298599,34.306583,34.333591,34.333572,34.342598,34.365574,34.404552,34.451519,34.473499,34.504475,34.49049,34.482494,34.443527,34.362598,34.290646,34.237679,34.241695,34.252689,34.250706,34.275688,34.351631,34.345646,34.4216,34.397633,34.425617,34.4426,34.474586,34.480583,34.512577,34.541561,34.555546,34.584522,34.612499,34.637501,34.657478,34.674488,34.690464,34.704464,34.718449,34.731449,34.742443,34.754429,34.766426]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_236","geolocation":{"type":"Point","coordinates":[38.18,-42.304]},"basin":3,"timestamp":"2016-07-13T06:15:54.000Z","date_updated_argovis":"2023-01-26T10:45:54.093Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_236.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":236,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.3,9.900001,18.1,29.4,39.599998,50.099998,59.599998,69.599998,80,89.900002,97.299995,109.799995,119.699997,129.900009,139.5,150.100006,159.600006,169.400009,179.600006,189.400009,200.100006,209.600006,220.100006,229.900009,240,249.700012,259.399994,269.600006,279.899994,289.200012,299.600006,310,319.800018,329.800018,339.800018,349.800018,359.899994,380,399.899994,450,499.800018,549.299988,599.099976,649.5,699.699951,750,799.5,849.599976,900,949.699951,999.599976,1049.900024,1100.099976,1149.5,1199,1250.199951,1300,1349.799927,1399.900024,1449.799927,1499.799927,1549.400024,1599.699951,1649.699951,1699.099976,1748.900024,1799.699951,1848.900024],[8.562,8.563,8.564,8.564,8.566,8.558,8.538,8.505,8.479,8.483,8.514,8.495,8.466,8.423,8.286,8.287,7.958,7.798,7.462,7.376,7.667,7.525,7.35,7.188,7.811,7.906,7.89,7.962,7.931,7.671,7.466,7.046,6.823,6.691,6.584,6.513,6.346,6.103,5.89,5.378,4.838,4.509,4.255,4.113,3.857,3.778,3.816,4.005,3.742,3.396,3.222,3.196,3.006,2.961,2.935,2.856,2.79,2.753,2.735,2.704,2.702,2.691,2.678,2.663,2.655,2.651,2.659,2.651],[33.902,33.902992,33.901997,33.901981,33.901989,33.903,33.902992,33.903999,33.910988,33.919991,33.936985,33.96096,33.962975,33.973942,34.004929,34.122868,34.117863,34.176857,34.164864,34.173859,34.261791,34.266796,34.248829,34.241817,34.387726,34.442684,34.456696,34.495644,34.509655,34.472687,34.442715,34.395748,34.375759,34.370758,34.360771,34.353775,34.343781,34.322803,34.319801,34.280838,34.241882,34.245876,34.252884,34.25988,34.281864,34.309872,34.355816,34.423779,34.431789,34.430794,34.444794,34.47477,34.489754,34.512753,34.535751,34.563728,34.578716,34.602703,34.622688,34.643677,34.657658,34.671673,34.694645,34.709641,34.720638,34.731617,34.746609,34.755608]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_235","geolocation":{"type":"Point","coordinates":[37.775,-42.09]},"basin":3,"timestamp":"2016-07-03T02:17:40.000Z","date_updated_argovis":"2023-01-26T10:45:52.296Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_235.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":235,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.8,19.9,29.699999,39.099998,49.599998,60.200001,69.5,79.900002,90.300003,98.400002,110.200005,120.300003,129.800003,139.5,150,160,170.100006,179.5,190.100006,199.699997,209.900009,220.300003,230.100006,240.400009,250.100006,260,270.199982,279.699982,290.199982,300,309.899994,320.299988,330.199982,339.5,349.699982,359.5,378.699982,400.199982,449.799988,499.899994,549.5,600.200012,650.099976,699.599976,750.099976,799.700012,849.799988,899.599976,950.099976,999.799988,1050.200073,1099.600098,1149.5,1199.600098,1246.700073,1299.800049,1349.600098,1400.300049,1449.800049,1499.700073,1549.200073,1600.200073,1650.300049,1700.100098,1749.900024,1799.300049,1848.300049],[8.631,8.632,8.633,8.634,8.634,8.635,8.635,8.629,8.63,8.575,8.151,7.972,7.809,7.739,7.748,7.776,7.658,7.814,7.882,7.828,7.726,7.762,7.744,7.663,7.837,7.658,7.197,7.199,7.096,7.044,6.871,6.792,6.63,6.56,6.075,5.947,5.706,5.438,5.488,5.255,4.864,4.584,4.328,4.146,3.823,3.775,3.719,3.847,3.779,3.347,3.218,3.215,3.078,3.022,2.873,2.842,2.801,2.777,2.758,2.729,2.71,2.693,2.669,2.663,2.642,2.629,2.612,2.591],[33.894886,33.894886,33.894878,33.894894,33.89489,33.894894,33.895889,33.898891,33.898891,33.899891,33.910889,33.975845,34.0588,34.103783,34.164742,34.209713,34.205715,34.267681,34.314629,34.329647,34.34264,34.35463,34.396606,34.393604,34.446571,34.425591,34.372623,34.386608,34.383614,34.389614,34.387623,34.379623,34.369637,34.36665,34.316681,34.309685,34.282711,34.257732,34.280716,34.277706,34.261738,34.246758,34.259762,34.276752,34.28075,34.320728,34.362698,34.415672,34.439651,34.417675,34.43766,34.492622,34.506641,34.526627,34.53661,34.556599,34.576584,34.604584,34.623589,34.647552,34.668545,34.679543,34.695526,34.705498,34.723499,34.733513,34.745506,34.754486]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_234","geolocation":{"type":"Point","coordinates":[37.218,-41.997]},"basin":3,"timestamp":"2016-06-22T22:18:31.002Z","date_updated_argovis":"2023-01-26T10:45:50.367Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_234.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":234,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.3,20.099998,30.099998,40.200001,49.700001,60.099998,70,79.800003,90.200005,99.900002,110.300003,119.800003,130.100006,140.199997,150.199997,159.800003,170.199997,179.699997,190.400009,199.900009,210.400009,220.100006,229.900009,240.300003,249.900009,259.799988,270.199982,279.699982,289.699982,299.599976,309.799988,319.899994,330.099976,340,349.799988,360.099976,380,400.399994,450.299988,500,549.799988,599.799988,650.200012,699.899963,749.899963,799.899963,849.399963,899.899963,949.899963,1000.099976,1049.400024,1100,1149.700073,1200,1250.300049,1299.800049,1349.300049,1399.5,1449.600098,1500.200073,1549.5,1600.300049,1650.200073,1700,1749.400024,1800,1849.5],[8.937,8.938,8.941,8.923,8.922,8.942,8.66,8.361,8.242,8.189,7.94,8.535,8.916,9.185,9.234,9.405,9.36,9.388,9.446,9.38,9.423,9.331,9.095,9.042,8.973,8.851,8.76,8.596,8.32,8.167,8.294,8.368,8.199,7.951,7.818,7.656,7.481,7.156,6.794,6.103,5.693,5.315,4.795,4.39,4.208,4.057,4.169,3.886,3.873,3.743,3.501,3.129,3.115,3.082,2.98,2.958,2.898,2.828,2.847,2.732,2.725,2.711,2.68,2.663,2.66,2.648,2.64,2.632],[34.010788,34.010788,34.011787,34.008797,34.007786,34.017788,33.970825,33.932854,33.918846,33.917862,33.928864,34.106743,34.281631,34.388565,34.424545,34.505493,34.516479,34.536469,34.565453,34.562454,34.576443,34.570457,34.532475,34.523487,34.514481,34.502499,34.509502,34.483524,34.444538,34.454536,34.507507,34.544487,34.536484,34.510506,34.495514,34.479534,34.464554,34.44556,34.402603,34.367622,34.320675,34.307671,34.291691,34.290714,34.307709,34.330685,34.387653,34.391655,34.441635,34.464607,34.476601,34.454639,34.49062,34.516594,34.532585,34.557579,34.562569,34.57856,34.609547,34.628536,34.656506,34.671509,34.696522,34.709499,34.718483,34.730484,34.740482,34.746464]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_233","geolocation":{"type":"Point","coordinates":[36.188,-42.26]},"basin":3,"timestamp":"2016-06-12T18:27:45.001Z","date_updated_argovis":"2023-01-26T10:45:48.583Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_233.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":233,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.4,19.799999,30.1,40.100002,50.400002,60.600002,70.099998,79.800003,90.400002,99.700005,110.200005,120.300003,129.899994,140.5,149.899994,160.399994,170.299988,180.5,190.099991,200.399994,210.299988,220.199997,229.599991,240.399994,250.299988,259.5,269.899994,279.699982,290.299988,299.899994,309.899994,320.299988,330,340.100006,350,360,379.399994,396.699982,449.899994,499.699982,550.400024,599.900024,650.300049,700.100037,749.100037,799.900024,849.5,900.300049,949.900024,1000.300049,1050,1099.800049,1150.300049,1200,1249.700073,1300,1349.5,1400.200073,1450.200073,1499.800049,1549.800049,1600.5,1650,1699.700073,1750.099976,1799.400024,1849.599976],[10.438,10.438,10.434,10.436,10.436,10.439,10.489,11.364,11.473,12.166,12.07,12.039,11.705,11.586,11.179,10.971,10.957,10.978,10.794,10.7,10.574,10.409,10.247,10.227,9.987,9.989,9.933,9.809,9.591,9.441,9.407,9.367,9.169,9.043,8.936,8.802,8.696,8.356,8.037,7.132,5.643,5.617,5.097,5.191,4.651,4.372,4.152,4,3.903,3.757,3.447,3.628,3.531,3.409,3.203,3.141,2.954,2.862,2.817,2.78,2.755,2.739,2.71,2.689,2.666,2.645,2.619,2.611],[34.25256,34.253551,34.252556,34.25256,34.252556,34.252556,34.266548,34.579342,34.645309,34.89114,34.918133,34.94212,34.902149,34.901154,34.829197,34.798214,34.810207,34.829193,34.79723,34.782227,34.768246,34.746246,34.721279,34.734261,34.697296,34.707287,34.710293,34.705288,34.673313,34.664318,34.661324,34.671329,34.655334,34.649342,34.636341,34.628353,34.615356,34.574394,34.547421,34.483475,34.311604,34.367573,34.32061,34.380573,34.344616,34.350597,34.34161,34.368607,34.389587,34.421585,34.415577,34.485531,34.509529,34.531513,34.54652,34.569496,34.582497,34.597469,34.612476,34.628475,34.650467,34.668457,34.679436,34.693439,34.708431,34.722416,34.7314,34.740402]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_232","geolocation":{"type":"Point","coordinates":[35.278,-42.574]},"basin":3,"timestamp":"2016-06-02T14:17:24.001Z","date_updated_argovis":"2023-01-26T10:45:46.691Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_232.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":232,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.8,20.299999,29.9,40.099998,49.899998,60.399998,70.100006,79.400002,90.400002,100.400002,109.800003,120,129.900009,140,149.5,160.300003,170.199997,180,189.900009,200.300003,210.300003,220.199997,230,240.300003,250.300003,260.199982,270.099976,279.799988,289.5,300,309.899994,319.699982,329.599976,339.399994,350.099976,359.799988,380.199982,399.699982,450.199982,500.199982,550,600.099976,649.899963,699.899963,749.700012,800.200012,849.5,900,949.700012,999.399963,1050,1100,1149.900024,1199.600098,1246.900024,1299.900024,1350.300049,1399.400024,1449.300049,1499.700073,1550,1600.200073,1649.600098,1699.600098,1749.700073,1800,1849.300049],[9.512,9.519,9.529,9.518,9.494,9.458,9.44,9.221,9.21,9.155,9.222,9.434,9.923,10.08,9.761,9.571,9.622,9.605,9.546,9.304,9.244,9.064,8.611,8.265,8.508,8.385,8.353,8.171,8.002,8.208,8.29,8.229,8.267,7.943,7.857,7.667,7.49,7.054,6.879,5.979,5.206,4.865,4.639,4.33,4.214,3.769,3.713,3.545,3.508,3.399,3.347,3.284,3.178,3.192,3.034,2.967,2.897,2.85,2.81,2.775,2.747,2.715,2.705,2.695,2.693,2.675,2.662,2.636],[34.02673,34.025723,34.027725,34.029724,34.034725,34.04871,34.052708,34.015739,34.012749,34.004734,34.025738,34.112675,34.387508,34.556416,34.553421,34.559402,34.578403,34.588394,34.582394,34.551407,34.543427,34.506451,34.4445,34.385544,34.451488,34.4515,34.452499,34.432518,34.428528,34.482479,34.508469,34.524456,34.54744,34.521461,34.517479,34.498493,34.482487,34.435524,34.421528,34.332615,34.265678,34.254669,34.256683,34.258686,34.277668,34.258701,34.31366,34.331665,34.373653,34.405609,34.427612,34.446606,34.460579,34.495571,34.513565,34.544544,34.569534,34.602512,34.62151,34.648495,34.670486,34.688454,34.704449,34.716446,34.734451,34.743435,34.757431,34.768417]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_231","geolocation":{"type":"Point","coordinates":[34.895,-42.64]},"basin":3,"timestamp":"2016-05-23T10:12:38.001Z","date_updated_argovis":"2023-01-26T10:45:44.802Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_231.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":231,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.1,20,30.4,40.200001,50.400002,59.799999,69.800003,80.599998,90.400002,100.5,110.300003,120.300003,130.100006,140.5,149.699997,160,169.300003,180.5,190.300003,200.399994,210.300003,220.300003,229.800003,239.800003,250.399994,260.200012,270.5,280.299988,290,300,310.200012,319.600006,329.899994,340.200012,349.799988,360,380.100006,399.799988,450,500.200012,549.5,599.599976,650.099976,700,750.400024,800.099976,849.700012,899.900024,950,999.799988,1050.099976,1100,1150.400024,1200,1250.199951,1300.300049,1350.199951,1399.800049,1449.800049,1500.5,1550.5,1600.099976,1650.300049,1700.300049,1750,1799.599976,1849.199951],[9.622,9.624,9.616,9.615,9.612,9.618,9.618,9.626,9.655,9.743,9.719,9.869,9.923,10.135,10.204,10.177,10.103,9.874,9.777,9.745,9.422,9.664,9.643,9.393,9.37,9.284,9.128,8.803,8.692,8.842,8.415,8.397,8.365,8.352,8.295,8.174,7.953,7.56,7.07,5.827,5.074,4.777,4.447,4.354,4.2,3.827,3.858,4.145,3.738,3.799,3.707,3.468,3.301,3.217,3.044,2.988,2.939,3.026,2.915,2.876,2.778,2.757,2.726,2.711,2.683,2.67,2.665,2.656],[33.997639,33.996639,33.997623,33.998631,33.998634,33.999634,33.999634,34.002617,34.012619,34.122559,34.297451,34.433369,34.501324,34.613262,34.644245,34.644234,34.636253,34.615253,34.612251,34.613266,34.577293,34.643246,34.650234,34.610275,34.625252,34.619263,34.594273,34.544312,34.540329,34.5853,34.521339,34.521339,34.540325,34.546329,34.553322,34.54232,34.519341,34.476368,34.427395,34.317497,34.252552,34.25555,34.243565,34.263565,34.270561,34.256565,34.31654,34.413471,34.402481,34.462444,34.493427,34.49044,34.492447,34.515419,34.531418,34.553417,34.574406,34.613384,34.633373,34.651363,34.662369,34.677345,34.693336,34.710312,34.719326,34.729317,34.741322,34.758308]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_230","geolocation":{"type":"Point","coordinates":[34.988,-42.65]},"basin":3,"timestamp":"2016-05-13T06:25:37.000Z","date_updated_argovis":"2023-01-26T10:45:42.910Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_230.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":230,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,20.5,30.299999,40.400002,49.700001,60.200001,70.199997,80.5,90.400002,100.199997,110,120.5,130.199997,139.800003,150.600006,160.100006,170.600006,180.600006,190.199997,200.100006,210.5,220.199997,229.899994,240.5,249.800003,260.100006,269.899994,280.299988,289.600006,300.299988,310.600006,320.100006,330.299988,340.299988,350.5,360.399994,380.200012,400.299988,450,499.899994,549.700012,600,650.5,699.799988,749.299988,799.900024,850,899.299988,950.599976,1000.5,1050.300049,1100.099976,1150.199951,1199.800049,1250.5,1300.199951,1350.199951,1400.300049,1450.400024,1499.800049,1550.300049,1599.800049,1650.5,1700.199951,1750.199951,1799.699951,1847.300049],[9.713,9.708,9.667,9.614,9.556,9.429,9.427,9.418,9.425,9.559,9.662,9.901,9.857,9.979,10.079,9.739,9.64,9.479,9.408,9.359,9.226,9.125,9.083,8.985,8.913,8.82,8.696,8.794,8.728,8.658,8.447,8.392,8.252,8.154,7.946,7.822,7.749,7.291,6.904,6.104,5.143,4.792,4.541,4.23,4.156,3.771,3.667,3.763,3.432,3.263,3.283,3.195,3.225,3.179,3.102,2.908,2.898,2.835,2.816,2.796,2.769,2.746,2.724,2.7,2.7,2.685,2.668,2.643],[33.971611,33.972633,33.980621,33.979618,33.990612,33.986626,33.986622,33.985634,33.991611,34.088551,34.215469,34.429356,34.522297,34.596241,34.63623,34.59425,34.584274,34.556282,34.559277,34.55328,34.540295,34.528297,34.524296,34.514324,34.535301,34.529312,34.521313,34.558281,34.576271,34.572285,34.560287,34.556293,34.547302,34.538311,34.52132,34.509323,34.502338,34.446377,34.408409,34.344463,34.250538,34.235554,34.240555,34.235558,34.271526,34.250557,34.282536,34.338505,34.343517,34.374496,34.412468,34.446442,34.478428,34.505417,34.53241,34.552387,34.580376,34.602379,34.62635,34.645332,34.666325,34.685314,34.705311,34.720295,34.737289,34.745296,34.757278,34.764275]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_229","geolocation":{"type":"Point","coordinates":[34.927,-42.878]},"basin":3,"timestamp":"2016-05-03T02:20:51.000Z","date_updated_argovis":"2023-01-26T10:45:41.000Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_229.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":229,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.2,20.800001,29.900002,40,50.200001,60.799999,70.399994,79.899994,90.199997,99.899994,110.399994,120.299995,130.399994,140.300003,150.199997,160.699997,169.699997,179.699997,187.599991,200.300003,210.199997,220.5,230.300003,240.399994,250.5,260.5,270.400024,280,290.5,300.600006,310.400024,320,330.600006,340.800018,350.100006,360.800018,380,400.600006,450.300018,500.400024,550.5,600.5,650.400024,700.100037,750.400024,799.900024,850.100037,900.200012,950.400024,1000,1050.399902,1100.399902,1150.099976,1200.5,1250.099976,1300.5,1350.5,1400.599976,1450.099976,1500.599976,1550.199951,1600.5,1650.199951,1700.399902,1750.099976,1800.099976,1847.599976],[9.731,9.728,9.73,9.731,9.732,9.733,9.733,9.736,9.738,9.74,9.944,8.903,8.902,9.181,9.256,9.303,9.236,9.241,9.17,9.181,8.976,8.974,9.04,8.961,8.983,8.657,8.744,8.735,8.599,8.423,8.395,8.169,7.936,7.811,7.358,7.212,6.967,6.738,6.424,5.622,5.059,4.775,4.411,4.158,3.79,3.74,3.585,3.498,3.685,3.438,3.29,3.105,3.054,3.068,2.964,2.88,2.84,2.802,2.745,2.729,2.711,2.717,2.773,2.763,2.717,2.72,2.68,2.591],[33.945515,33.946522,33.945526,33.945538,33.945534,33.945522,33.94553,33.946522,33.946526,33.947533,34.148407,34.242359,34.306313,34.414246,34.454227,34.499203,34.502197,34.521198,34.515194,34.525181,34.500198,34.50919,34.536171,34.542191,34.566162,34.527199,34.565174,34.575157,34.565178,34.552185,34.568161,34.547188,34.531204,34.5252,34.476231,34.458248,34.432278,34.408291,34.37632,34.289383,34.261398,34.267399,34.27441,34.269424,34.254425,34.276428,34.294415,34.321404,34.391357,34.413357,34.426323,34.446339,34.476315,34.501297,34.519306,34.54327,34.570271,34.592243,34.611244,34.625225,34.64323,34.663216,34.697197,34.712181,34.72118,34.738171,34.747166,34.743179]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_228","geolocation":{"type":"Point","coordinates":[34.853,-43.085]},"basin":3,"timestamp":"2016-04-22T22:24:29.002Z","date_updated_argovis":"2023-01-26T10:45:39.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_228.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":228,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,20.4,30.1,40.599998,50.200001,60,69.599998,79.699997,89.800003,100.699997,110.199997,120.599998,130.100006,139.699997,149.699997,159.899994,170.600006,180.199997,190.199997,200.300003,209.899994,220.300003,230.399994,240,250.399994,260,270.200012,280,289.899994,300.399994,310.100006,320.100006,328.5,340.299988,350.600006,360.299988,380.200012,400.299988,450.299988,500.5,550.200012,600.299988,650,700.200012,750.299988,799.900024,850.099976,899.900024,949.700012,999.700012,1050.300049,1099,1149.900024,1199.599976,1250.199951,1299.699951,1350,1400.5,1450.400024,1499.699951,1550.099976,1599.699951,1647.800049,1700.099976,1750.199951,1800.300049,1847],[9.609,9.61,9.594,9.588,9.59,9.529,9.498,9.466,9.327,9.19,8.689,8.375,8.129,7.914,8.114,8.075,8.022,7.719,7.458,7.249,6.998,7.105,6.879,7.063,6.99,6.98,7.078,7.369,7.38,7.303,7.354,7.23,7.08,6.924,6.445,6.293,6.137,5.708,5.507,5.05,4.719,4.577,4.522,4.435,4.136,3.93,3.834,3.774,3.574,3.427,3.297,3.093,2.997,2.904,2.871,2.844,2.832,2.81,2.794,2.758,2.748,2.746,2.723,2.698,2.674,2.653,2.637,2.622],[33.914612,33.915607,33.914608,33.914619,33.913624,33.910625,33.907627,33.903637,33.909622,33.936615,33.969593,34.032558,34.108524,34.186478,34.281418,34.286411,34.295414,34.261436,34.240459,34.207485,34.183495,34.236481,34.231461,34.279446,34.282421,34.303432,34.341396,34.419342,34.440334,34.436356,34.462322,34.45034,34.440331,34.42136,34.358398,34.348404,34.334423,34.284462,34.266479,34.234501,34.219509,34.234512,34.268478,34.299469,34.287487,34.304497,34.34346,34.384441,34.392433,34.406437,34.434402,34.444427,34.470398,34.498375,34.523369,34.547356,34.568356,34.591339,34.606312,34.627304,34.634312,34.657291,34.684296,34.705276,34.724251,34.738251,34.749249,34.75724]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_227","geolocation":{"type":"Point","coordinates":[34.746,-43.526]},"basin":3,"timestamp":"2016-04-12T18:17:52.001Z","date_updated_argovis":"2023-01-26T10:45:37.195Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_227.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":227,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10,19.799999,29.6,39.800003,50.100002,59.400002,70.099998,80.5,90.400002,100.700005,110.5,120.5,130.299988,140.299988,150.299988,159.699997,170.199997,180.299988,189.899994,200.399994,210.299988,219.899994,229.199997,240.399994,249.899994,260.299988,269.899994,279.699982,289.600006,299.600006,310.100006,319.699982,330.199982,339.899994,349.899994,359.799988,379.699982,399.899994,448.399994,500.199982,549.900024,600.100037,649.700012,699.5,750.200012,799.900024,849.900024,900,950.300049,1000,1049.599976,1100.400024,1150.099976,1200.099976,1249.900024,1299.800049,1350,1399.900024,1450,1499.900024,1549.900024,1600,1649.5,1699.5,1750.200073,1799.900024,1849.5],[9.811,9.812,9.813,9.814,9.799,9.766,9.725,9.661,9.604,9.56,9.385,8.9,8.404,8.739,7.887,7.429,7.269,7.221,7.216,7.236,7.212,7.129,6.904,6.695,6.317,6.369,6.282,6.391,6.628,6.752,6.703,6.643,6.566,6.44,6.312,6.242,6.077,5.809,5.618,5.101,4.759,4.613,4.512,4.281,4.297,3.925,3.731,3.637,3.399,3.304,3.161,3.07,2.984,2.952,2.894,2.84,2.803,2.772,2.742,2.732,2.722,2.722,2.72,2.709,2.702,2.677,2.67,2.66],[33.955608,33.9566,33.955605,33.956623,33.955601,33.949619,33.94762,33.946625,33.970615,34.039562,34.067551,34.165512,34.193501,34.307411,34.167519,34.103565,34.088577,34.125549,34.133556,34.17952,34.185528,34.193516,34.181534,34.16555,34.117584,34.139568,34.154545,34.200527,34.274475,34.306458,34.318451,34.329441,34.334435,34.33144,34.324455,34.318474,34.307465,34.293476,34.276485,34.239532,34.238537,34.264511,34.279522,34.278519,34.318497,34.328503,34.342506,34.377468,34.388466,34.40847,34.420456,34.440456,34.466431,34.490425,34.518394,34.541389,34.564377,34.591354,34.615345,34.63134,34.648323,34.666325,34.684311,34.709297,34.718273,34.729282,34.739285,34.749271]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_226","geolocation":{"type":"Point","coordinates":[34.201,-43.95]},"basin":3,"timestamp":"2016-04-02T14:16:50.001Z","date_updated_argovis":"2023-01-26T10:45:35.371Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_226.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":226,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.7,20.1,30.1,40.700001,50.299999,61,70.399994,80.599998,90.099998,100.299995,109.899994,120.5,130.300003,140,150.099991,160.199997,170.5,180.699997,190.599991,200.699997,210.699997,220.699997,230.300003,240.699997,250.099991,260.5,270.700012,279.900024,290.200012,300.200012,310.100006,320.700012,330.5,340.200012,350.600006,360,380.700012,400.100006,449.900024,500.700012,550.600037,600.299988,650.400024,700.299988,750.5,800,850.400024,900.299988,949.799988,1000.200012,1050.399902,1100.699951,1150.5,1200.199951,1250.699951,1300.299927,1350.399902,1399.899902,1450.199951,1500.5,1549.399902,1600.599976,1650.399902,1700,1749.599976,1800.5,1849.899902],[9.802,9.794,9.636,9.566,9.515,9.49,9.096,8.497,9.623,10.098,10.075,10.337,10.353,10.178,9.87,9.751,9.529,9.4,9.332,9.161,8.952,8.705,8.57,8.773,8.71,8.563,8.532,8.3,8.257,8.25,8.176,7.96,7.765,7.583,7.501,7.386,7.207,6.68,6.394,5.838,5.333,4.935,4.652,4.476,4.027,3.915,3.798,3.702,3.566,3.306,3.345,3.135,3.019,2.94,2.896,2.979,2.919,2.874,2.822,2.785,2.758,2.743,2.726,2.719,2.705,2.699,2.67,2.645],[33.925461,33.92247,33.910484,33.906487,33.904491,33.903492,33.99144,34.015442,34.41819,34.58009,34.60006,34.677017,34.687008,34.665035,34.627052,34.610065,34.585075,34.567089,34.557106,34.534122,34.501129,34.466171,34.461163,34.512138,34.509136,34.492149,34.514133,34.515141,34.517143,34.51712,34.517143,34.508148,34.493168,34.480167,34.472179,34.462173,34.444199,34.385242,34.364262,34.311287,34.287312,34.275337,34.277348,34.299339,34.289349,34.310326,34.342319,34.366299,34.395287,34.388294,34.423271,34.427265,34.458263,34.486256,34.513222,34.555199,34.580193,34.598183,34.617176,34.63517,34.660149,34.675148,34.687138,34.704136,34.715111,34.727112,34.739117,34.747101]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_225","geolocation":{"type":"Point","coordinates":[33.694,-44.011]},"basin":3,"timestamp":"2016-03-23T10:13:57.001Z","date_updated_argovis":"2023-01-26T10:45:33.492Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_225.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":225,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10,19.699999,30,39.800003,50.200001,59.800003,69.599998,80.5,90.300003,100.200005,110.300003,119.599998,130.299988,139.899994,149.599991,159.5,169.699997,179.799988,189.799988,200.199997,210.199997,219.899994,230,240.099991,250,260.299988,270,279.899994,290.199982,299.399994,309.799988,319.5,330,339.600006,350.199982,359.899994,379.299988,400.5,450.299988,500,550.100037,600.100037,650.200012,699.900024,750.100037,800.400024,850.200012,900.100037,950.100037,999.800049,1049.400024,1099.900024,1149.800049,1200.200073,1249.5,1300.200073,1350.400024,1400.300049,1450.400024,1499.900024,1550.300049,1600.300049,1650.300049,1699.800049,1750.300049,1799.900024,1849],[10.356,10.337,10.315,10.336,10.405,10.403,10.412,10.421,10.412,10.601,10.615,10.175,10.169,10.197,9.922,9.878,9.876,9.539,9.388,9.232,9.204,9.195,9.138,9.111,9.187,9.316,8.992,8.999,8.767,8.649,8.802,8.793,8.616,8.532,8.351,8.254,8.061,7.853,7.503,6.469,5.332,5.096,4.672,4.302,3.925,3.84,3.881,3.88,3.34,3.313,3.326,3.121,2.995,3.154,3.053,2.965,2.934,2.885,2.819,2.792,2.756,2.721,2.698,2.681,2.684,2.674,2.675,2.652],[34.138451,34.136452,34.139454,34.147442,34.168434,34.16745,34.170441,34.172424,34.173435,34.3843,34.593163,34.614174,34.626175,34.651138,34.624157,34.621166,34.627167,34.576214,34.557224,34.537231,34.535229,34.546223,34.542229,34.548229,34.582211,34.62019,34.58321,34.595211,34.563221,34.553238,34.597206,34.617191,34.602203,34.598217,34.582233,34.572231,34.554245,34.535263,34.495289,34.390369,34.278473,34.289455,34.276478,34.263489,34.253487,34.274487,34.325455,34.368431,34.344444,34.38044,34.427399,34.441406,34.459404,34.512356,34.530346,34.551334,34.57233,34.596317,34.612305,34.634296,34.651279,34.673279,34.690254,34.710255,34.725239,34.73423,34.747208,34.760242]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_224","geolocation":{"type":"Point","coordinates":[33.307,-43.772]},"basin":3,"timestamp":"2016-03-13T06:29:43.000Z","date_updated_argovis":"2023-01-26T10:45:31.697Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_224.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":224,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,20,30.300001,40.200001,50.700001,60.799999,70.599998,80.599998,90.199997,100.5,110.099998,119.899994,130.300003,139.800003,150.300003,160,169.899994,180,188.599991,200.5,210.300003,220.5,230.599991,240.199997,250.599991,260.100006,270.100006,280.300018,290,300.400024,309.900024,319.900024,330.600006,340.5,348.600006,360.5,380.700012,400.5,450.100006,500.100006,550.799988,600.799988,650.5,699.799988,750.299988,800.600037,850,900.100037,950.799988,1000.100037,1050,1100.299927,1150.599976,1199.5,1250.699951,1300.199951,1350.099976,1400.099976,1450.5,1499.799927,1550,1599.799927,1650.199951,1700.199951,1750.099976,1799.799927,1850.399902],[11.525,11.521,11.52,11.521,11.523,11.655,11.592,10.766,10.299,10.047,9.853,9.941,10.042,10.207,10.257,10.148,9.951,9.741,9.639,9.61,9.6,9.319,9.161,9.123,9.077,9.007,9.209,9.187,9.018,8.981,9.01,9.073,9.057,8.788,8.525,8.339,8.173,7.631,7.309,6.583,5.624,5.099,5.167,4.619,4.145,3.934,4.032,3.983,3.85,3.585,3.204,3.174,3.072,3.262,3.214,3.064,2.989,2.851,2.844,2.815,2.794,2.768,2.717,2.691,2.656,2.636,2.63,2.578],[34.093315,34.094307,34.094307,34.095318,34.0993,34.552025,null,34.566032,34.540051,34.521065,34.516056,34.555046,34.588039,34.639,34.657997,34.648991,34.623005,34.593021,34.592041,34.587029,34.600033,34.552059,34.529072,34.524075,34.523083,34.514091,34.577045,34.591042,34.574062,34.587036,34.613029,34.640018,34.663998,34.630028,34.594044,34.578064,34.559074,34.497112,34.469143,34.402203,34.302265,34.260292,34.321262,34.28429,34.267311,34.276291,34.335274,34.369247,34.392242,34.38525,34.373264,34.400257,34.430237,34.508186,34.533176,34.554153,34.566154,34.580147,34.607132,34.628117,34.643127,34.659119,34.672104,34.688103,34.701092,34.712082,34.729073,34.734081]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_223","geolocation":{"type":"Point","coordinates":[33.201,-43.833]},"basin":3,"timestamp":"2016-03-03T02:22:09.000Z","date_updated_argovis":"2023-01-26T10:45:29.884Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_223.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":223,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.299999,20.199999,29.5,40.100002,50.5,60.700001,70.300003,80.300003,90.400002,99.700005,110.300003,120,129.899994,140.299988,150.099991,159.399994,169.599991,177.599991,190.5,199.799988,210.099991,220,230.399994,239.699997,250.399994,260.399994,269.799988,280.100006,289.600006,300.100006,310.399994,319.899994,330.299988,339.699982,350.100006,360,380.399994,400,450.199982,499.899994,550.200012,599.900024,650.100037,699.900024,749.800049,799.900024,849.700012,899.700012,950.300049,999.700012,1050,1100.400024,1149.900024,1199.800049,1249.5,1300.099976,1349.400024,1399.599976,1449.700073,1499.800049,1549.800049,1599,1650,1699.599976,1749.700073,1799.800049,1850],[12.022,12.023,12.026,12.021,12.015,12.01,11.969,11.344,11.112,10.898,10.349,10.507,10.755,10.411,10.062,9.974,9.799,9.543,9.471,9.403,9.337,9.247,9.206,9.203,9.069,9.047,8.928,8.846,8.966,8.863,8.823,8.681,8.652,8.487,8.525,8.189,7.968,7.258,6.959,6.144,5.417,4.976,4.698,4.254,4.034,4.194,4.164,3.783,3.478,3.345,3.19,3.117,3.044,3.092,3.119,2.951,2.958,2.836,2.785,2.743,2.72,2.712,2.683,2.656,2.647,2.638,2.62,2.611],[34.28928,34.289295,34.288284,34.289295,34.290306,34.291286,34.296299,34.581139,34.646099,34.6591,null,34.658108,34.741039,34.690083,34.643105,34.62912,34.606136,34.560173,34.551174,34.55019,34.545185,34.532196,34.528198,34.532188,34.513203,34.515198,34.504211,34.505211,34.546181,34.5462,34.559177,34.544193,34.575172,34.566189,34.596176,34.56918,34.550194,34.473274,34.435303,34.346363,34.281406,34.255436,34.255436,34.225487,34.232452,34.295414,34.346397,34.340405,34.331425,34.361401,34.383385,34.398376,34.429375,34.466351,34.51133,34.518311,34.550293,34.566296,34.584297,34.600269,34.621265,34.641251,34.663246,34.684231,34.697208,34.709213,34.722206,34.729202]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_222","geolocation":{"type":"Point","coordinates":[33.116,-43.933]},"basin":3,"timestamp":"2016-02-21T22:24:52.002Z","date_updated_argovis":"2023-01-26T10:45:28.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_222.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":222,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.5,20.300001,30.5,40.600002,50.799999,60.299999,69.899994,80.699997,90.199997,100.899994,110.199997,120.399994,130.099991,140.5,148.800003,160.699997,170.300003,180.699997,190.5,200.5,210.199997,220,230.300003,240.5,250.199997,260.200012,270.5,279.900024,290.100006,300.700012,310.5,320.600006,330.300018,338.600006,350.300018,360.700012,380.700012,400.700012,450.400024,500.300018,550.5,600.100037,650.700012,699.900024,750.700012,800.299988,850.299988,899.700012,950.299988,1000.100037,1050.5,1100.199951,1150.099976,1200,1247.799927,1300.099976,1349.799927,1400.599976,1450.599976,1500.299927,1549.799927,1598.799927,1650.099976,1699.899902,1750.199951,1800.599976,1850.199951],[11.428,11.431,11.433,11.437,11.437,11.373,11.151,9.512,8.963,9.1,9.199,9.221,9.391,9.164,9.228,9.277,9.08,8.949,8.902,8.871,8.864,8.89,8.926,8.964,8.948,8.934,8.99,8.986,8.922,9.023,8.691,8.368,8.216,7.948,7.873,7.651,7.488,7.214,7.004,6.006,5.204,4.834,4.428,4.262,4.402,4.112,3.908,3.919,3.619,3.664,3.259,3.144,3.014,2.976,2.911,2.882,2.848,2.822,2.798,2.75,2.729,2.706,2.704,2.695,2.678,2.661,2.65,2.637],[34.228195,34.229187,34.229187,34.232185,34.233192,34.239185,34.239182,34.253189,34.260197,34.332138,34.386105,34.43409,34.50005,34.476082,34.503048,34.52203,34.497059,34.480061,34.478069,34.476067,34.480064,34.498047,34.525024,34.551022,34.559029,34.569019,34.594002,34.596985,34.595001,34.626972,34.590992,34.559036,34.549042,34.523048,34.51606,34.492081,34.481087,34.463108,34.455101,34.355179,34.270245,34.24828,34.22728,34.249275,34.31324,34.319248,34.320248,34.354225,34.349232,34.404202,34.401211,34.424198,34.435188,34.454182,34.485157,34.51215,34.542118,34.566101,34.587097,34.603088,34.630074,34.64608,34.664066,34.676048,34.694042,34.713047,34.727028,34.737026]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_221","geolocation":{"type":"Point","coordinates":[32.952,-43.972]},"basin":3,"timestamp":"2016-02-11T18:14:30.001Z","date_updated_argovis":"2023-01-26T10:45:26.380Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_221.nc","date_updated":"2020-11-12T10:21:09.000Z"}],"cycle_number":221,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.599999,20.1,30.4,39.800003,50.200001,59.800003,70,80.400002,90.200005,100.200005,109.700005,119.700005,130.099991,139.599991,150.299988,160.299988,169.399994,179.5,189.899994,200.599991,210.299988,220.099991,229.899994,240.399994,250.099991,260.100006,269.699982,280.299988,290.399994,299.699982,310.299988,319.5,329.799988,340.299988,349.799988,359.5,380,400.299988,449.899994,499.699982,550.200012,600,650.400024,699.5,750,800.400024,849.600037,900.400024,949.700012,1000,1050.099976,1099.700073,1150.300049,1199.400024,1250.099976,1300,1350.099976,1400.300049,1449.800049,1499.900024,1549.700073,1598,1649.900024,1699.700073,1750,1799.700073,1849.900024],[12.483,12.043,11.879,11.314,11.194,10.435,9.579,9.273,8.939,9.097,9.328,9.419,9.389,9.574,9.44,9.378,9.213,9.211,9.045,9.008,9.08,9.056,8.85,8.881,8.9,8.911,8.99,9.025,8.954,8.746,8.695,8.527,8.312,8.029,7.821,7.724,7.623,7.57,7.12,6.33,5.552,5.168,4.855,4.56,4.397,4.317,4.168,4.042,3.984,3.537,3.273,3.127,3.06,2.958,2.926,2.844,2.815,2.806,2.765,2.743,2.725,2.673,2.679,2.688,2.673,2.624,2.605,2.597],[34.26825,34.226292,34.20731,34.196312,34.206314,34.194321,34.203339,34.283295,34.287308,34.336266,34.403217,34.429207,34.440201,34.511147,34.498161,34.513157,34.495159,34.502167,34.483181,34.485184,34.511169,34.518162,34.489185,34.504177,34.523151,34.539162,34.577137,34.61211,34.620098,34.603123,34.619102,34.596123,34.567142,34.533176,34.506184,34.500187,34.491192,34.491207,34.448238,34.375298,34.307346,34.293358,34.28838,34.289387,34.306366,34.339363,34.373341,34.398335,34.427315,34.400349,34.397339,34.410336,34.443321,34.465298,34.49229,34.514286,34.54026,34.566246,34.585239,34.60524,34.625225,34.641205,34.65918,34.677174,34.700169,34.709164,34.716167,34.72216]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_220","geolocation":{"type":"Point","coordinates":[32.572,-44.041]},"basin":3,"timestamp":"2016-02-01T14:26:33.001Z","date_updated_argovis":"2023-01-26T10:45:24.505Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_220.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":220,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.6,19.9,30.700001,40.400002,50.099998,60.400002,70.199997,80,90.300003,99.800003,110.300003,119.5,130.399994,140.300003,149.600006,160.300003,170.5,180.399994,190.5,200.600006,210,220.199997,230.5,240.399994,250.5,260.200012,270.200012,280.299988,290.399994,299.700012,310.299988,320.100006,329.899994,339.899994,349.700012,359.799988,380.5,400.100006,449.899994,499.700012,549.599976,597.599976,650.599976,700.099976,750.5,799.799988,849.900024,900.400024,950.299988,999.799988,1050.199951,1100.400024,1150.199951,1200.5,1249.699951,1300.5,1350.400024,1399.900024,1449.900024,1500,1550,1600.400024,1650.300049,1700.199951,1750.199951,1800.400024,1850.199951],[11.591,11.586,11.579,11.389,11.257,11.179,10.959,10.763,10.511,10.622,10.412,10.571,10.465,10.293,10.096,9.869,10.07,9.915,9.916,9.796,9.654,9.715,9.552,9.588,9.54,9.395,9.243,9.172,9.095,9.034,8.908,8.694,8.559,8.462,8.371,8.131,7.865,7.306,7.172,6.204,5.54,5.183,4.892,4.537,4.623,4.131,4.337,4.108,4.011,3.683,3.319,3.158,3.053,3.04,2.931,2.849,2.857,2.796,2.769,2.741,2.735,2.728,2.719,2.696,2.683,2.677,2.667,2.648],[34.304188,34.304188,34.30217,34.327179,34.355152,34.651978,34.643974,34.60601,34.571033,34.614006,34.594025,34.680977,34.68697,34.663979,34.638004,34.607021,34.663994,34.643997,34.655998,34.637009,34.626019,34.645,34.625027,34.649017,34.651028,34.641022,34.620033,34.626022,34.632027,34.631035,34.631027,34.611034,34.604053,34.596054,34.591072,34.560089,34.529102,34.464146,34.472149,34.360237,34.289288,34.276299,34.271317,34.267323,34.329296,34.302299,34.387249,34.400238,34.424252,34.424232,34.413258,34.432247,34.456234,34.477226,34.498211,34.514206,34.556194,34.576176,34.609154,34.628132,34.647133,34.668114,34.689098,34.704094,34.717091,34.7281,34.738071,34.748077]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_219","geolocation":{"type":"Point","coordinates":[32.02,-44.177]},"basin":3,"timestamp":"2016-01-22T10:15:15.001Z","date_updated_argovis":"2023-01-26T10:45:22.703Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_219.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":219,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.7,10.4,19.799999,29.9,39.900002,50.299999,59,70.599998,80.099998,90.400002,100.099998,110.400002,119.599998,129.800003,140.199997,149.5,160.100006,169.600006,177,190,200.600006,210,219.899994,230.100006,240.600006,250.300003,260.200012,270.200012,280.5,290.5,299.700012,310.299988,320.299988,330.399994,339.5,349.799988,360.200012,380.299988,399.799988,450.200012,500.299988,550.400024,600.599976,650.599976,700.400024,750.5,800.299988,849.299988,899.599976,949,999.799988,1049.5,1100.400024,1150.199951,1199.699951,1250.300049,1300.199951,1349.699951,1400,1450.199951,1499.800049,1549.599976,1599.900024,1650.400024,1700.400024,1750.5,1799.400024,1850.199951],[11.878,11.887,11.873,11.781,11.342,9.805,9.171,9.253,8.937,9.366,9.766,9.915,10.399,10.239,10.325,10.061,9.422,9.481,9.485,9.432,9.362,9.463,9.37,9.445,9.276,9.239,9.457,9.337,8.979,8.881,8.743,8.62,8.542,8.314,8.207,8.326,8.164,7.972,7.598,6.199,5.496,5.277,5.116,4.675,4.323,4.447,4.306,3.988,3.835,3.787,3.528,3.259,3.148,3.146,2.952,2.892,2.866,2.813,2.784,2.751,2.755,2.749,2.695,2.68,2.677,2.676,2.645,2.611],[34.492058,34.494038,34.492043,34.475056,34.403107,34.292198,34.259235,34.31319,34.284203,34.396141,34.509056,34.565041,34.691944,34.668945,34.700932,34.645973,34.540062,34.555046,34.558029,34.559032,34.559048,34.592014,34.585007,34.606007,34.587029,34.597023,34.66198,34.654999,34.610016,34.60503,34.594025,34.578037,34.58004,34.552063,34.546078,34.586048,34.569054,34.558079,34.513096,34.355213,34.291256,34.304268,34.321262,34.310257,34.30928,34.369244,34.402241,34.376255,34.415218,34.452209,34.446209,34.440239,34.464222,34.506172,34.506199,34.532166,34.554169,34.580154,34.603138,34.623123,34.644112,34.662094,34.673103,34.688076,34.704082,34.718071,34.734058,34.740044]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_218","geolocation":{"type":"Point","coordinates":[31.147,-44.24]},"basin":3,"timestamp":"2016-01-12T06:17:01.000Z","date_updated_argovis":"2023-01-26T10:45:20.819Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_218.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":218,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.2,20.199999,29.699999,40.099998,50.399998,60.099998,70.300003,80.300003,89.900002,100.100006,110,120.100006,129.400009,139.800003,149.400009,159.5,169.600006,179.800003,189.400009,199.800003,210.300003,220.100006,230.100006,240.199997,250.300003,259.799988,269.799988,280,289.699982,299.699982,310,319.699982,329.799988,339.299988,348.099976,359.799988,379.899994,399.899994,449.899994,500.099976,549.899963,600,650.099976,700.099976,750.299988,800.099976,849.399963,899.700012,950.399963,999.5,1050.100098,1099.900024,1149.800049,1200,1250,1299.900024,1349.5,1399.600098,1450.100098,1499.600098,1550.200073,1599.5,1649.800049,1699.700073,1750.100098,1799.600098,1849.200073],[12.23,12.225,12.226,12.116,10.888,10.786,10.85,10.295,10.288,10.531,11.028,10.112,10.215,10.104,9.915,9.743,9.53,9.398,9.083,8.962,8.886,8.785,8.769,8.777,8.83,8.903,8.68,8.654,8.782,8.841,8.771,8.935,8.864,8.749,8.67,8.84,8.701,8.593,8.443,7.575,6.582,5.793,5.274,5.082,4.551,4.24,4.341,4.334,3.95,3.909,3.71,3.622,3.433,3.277,3.159,3.057,2.939,2.883,2.85,2.828,2.821,2.788,2.747,2.723,2.694,2.651,2.636,2.62],[34.570057,34.568054,34.569065,34.537075,34.605053,34.605045,34.627045,34.532112,34.531109,34.610054,null,34.587067,34.626068,34.609074,34.582085,34.555119,34.522133,34.502151,34.452175,34.431202,34.416214,34.40321,34.401211,34.405224,34.42321,34.452187,34.422211,34.420208,34.462173,34.495159,34.501152,34.564129,34.567108,34.567112,34.562122,34.622082,34.607094,34.60709,34.612091,34.515171,34.417259,34.342297,34.316326,34.322338,34.297367,34.303379,34.366329,34.411301,34.382309,34.435295,34.452278,34.47028,34.476261,34.495255,34.506279,34.530254,34.556252,34.577236,34.595203,34.6152,34.639198,34.65617,34.671165,34.685173,34.699169,34.712143,34.725155,34.735123]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_217","geolocation":{"type":"Point","coordinates":[30.369,-44.31]},"basin":3,"timestamp":"2016-01-02T02:19:43.000Z","date_updated_argovis":"2023-01-26T10:45:19.000Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_217.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":217,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,20.5,29.700001,40.099998,49.799999,59.900002,70,80.300003,90.300003,100.300003,110.099998,120.099998,130,140.300003,149.5,160.100006,170.399994,179.5,189.800003,200,210.199997,220.600006,230.5,240.199997,250.399994,260.399994,270.399994,279.799988,290.399994,300.100006,309.600006,320.299988,330,340,349.899994,360.200012,380.299988,400.5,450.399994,499.899994,549.900024,600.099976,650.5,699.700012,749.900024,800.400024,849.799988,899.400024,949.900024,1000.400024,1050.400024,1100.300049,1150,1200.400024,1247,1300.099976,1350.199951,1399.900024,1449.599976,1500.099976,1550.300049,1599.599976,1649.400024,1699.900024,1750.400024,1799.800049,1849.900024,1899.300049],[11.856,11.856,11.695,11.072,10.923,10.831,10.781,10.774,10.627,10.811,11.201,10.831,11.324,11.517,11.555,11.393,11.113,10.569,10.327,9.748,9.635,9.854,9.181,9.113,9.328,9.403,9.284,9.16,9.427,9.812,9.797,9.776,9.595,9.489,9.348,9.247,9.142,8.82,8.501,7.607,6.904,6.311,5.573,5.141,5.083,4.812,4.511,4.378,4.171,3.943,3.68,3.518,3.459,3.44,3.187,3.076,2.977,2.937,2.88,2.842,2.765,2.746,2.724,2.717,2.695,2.662,2.632,2.646,2.602],[34.505997,34.504997,34.495995,34.512016,34.511002,34.519001,34.533974,34.543991,34.531998,34.596951,34.710876,34.728867,34.849792,34.903767,34.921757,34.883762,34.822815,34.716885,34.663918,34.569984,34.561993,34.611961,34.495041,34.486042,34.542007,34.565002,34.557011,34.542019,34.610962,34.71088,34.731873,34.738884,34.717899,34.707912,34.691917,34.686932,34.678936,34.649956,34.609982,34.518051,34.461102,34.411133,34.345184,34.337208,34.371181,34.378181,34.377205,34.405182,34.415173,34.420166,34.431171,34.460159,34.493145,34.523136,34.526131,34.549126,34.568115,34.585098,34.602093,34.621075,34.632076,34.645077,34.671059,34.689037,34.706028,34.718018,34.726028,34.744022,34.749004]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_216","geolocation":{"type":"Point","coordinates":[29.71,-44.141]},"basin":3,"timestamp":"2015-12-22T22:23:21.002Z","date_updated_argovis":"2023-01-26T10:45:17.189Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_216.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":216,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.5,20.200001,29.9,40.200001,50,60.5,70.199997,79.699997,89.699997,100.099998,109.800003,120.300003,130.5,140,149.699997,160.399994,170.699997,180.600006,190.5,200.199997,210.300003,219.899994,229.899994,240.600006,250.300003,260.100006,270.200012,280,290.100006,300.5,309.799988,320.100006,329.899994,339.600006,350.299988,360.200012,380.399994,399.799988,450.200012,499.899994,550.099976,600,649.799988,700,750.099976,800.099976,849.799988,899.700012,950.400024,1000,1049.5,1099.800049,1150.300049,1199.699951,1250.300049,1300.099976,1349.900024,1400.199951,1450.5,1499.800049,1549.800049,1600.5,1650.099976,1700.400024,1750,1800,1849.5],[12.624,12.618,12.649,12.64,12.65,12.65,12.649,12.65,12.657,12.656,12.657,12.656,12.582,12.166,11.838,11.598,11.523,11.418,11.211,11.021,10.879,10.748,10.589,10.428,10.287,10.262,10.243,10.238,10.235,10.187,10.115,10.034,9.985,9.874,9.809,9.502,9.396,9.076,8.894,8.209,7.495,6.628,5.998,5.636,5.359,4.907,4.487,4.261,4.072,3.859,3.757,3.708,3.553,3.469,3.354,3.152,3.077,3.039,2.984,2.93,2.889,2.856,2.835,2.779,2.752,2.714,2.753,2.71],[35.003819,35.003807,35.00581,35.003807,35.004826,35.005817,35.004818,35.004818,35.006809,35.00581,35.005817,35.004807,34.995811,34.96286,34.928875,34.89888,34.889896,34.879906,34.855919,34.830952,34.811962,34.790966,34.767982,34.74501,34.73801,34.740017,34.746006,34.749008,34.756008,34.765999,34.763988,34.758007,34.75301,34.743015,34.736023,34.711044,34.699043,34.67207,34.669075,34.59914,34.54118,34.448231,34.408283,34.412289,34.410294,34.384327,34.373329,34.380333,34.394329,34.407318,34.436314,34.480278,34.508274,34.536247,34.557251,34.562244,34.591236,34.608212,34.627209,34.645203,34.663204,34.679188,34.696175,34.708176,34.722168,34.732151,34.754135,34.761135]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_215","geolocation":{"type":"Point","coordinates":[29.057,-44.084]},"basin":3,"timestamp":"2015-12-12T18:31:39.001Z","date_updated_argovis":"2023-01-26T10:45:15.398Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_215.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":215,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.099999,19.9,30,39.800003,50.200001,60,69.700005,80.300003,89.800003,100.099998,109.800003,119.599998,129.599991,139.799988,150.099991,159.399994,169.599991,180.399994,190.5,200.199997,209.799988,220.399994,230.399994,240.299988,249.799988,260.199982,269.799988,280.399994,290,300.399994,310,319.899994,330.199982,340.299988,350.399994,359.899994,380.5,400.399994,449.799988,500,549.5,599.800049,650.300049,700,750,800.300049,850.100037,900.100037,949.800049,1000.300049,1049.900024,1100.400024,1149.900024,1199.800049,1249.800049,1300.300049,1350.099976,1399.300049,1450.300049,1500.099976,1550.200073,1598.599976,1650.300049,1699.599976,1750.200073,1799.599976,1849.700073,1900.099976],[11.96,11.961,11.964,11.96,11.961,11.923,11.961,11.958,11.958,11.964,11.96,11.39,10.736,11.539,11.371,11.442,11.555,11.114,10.43,10.544,10.205,10.102,10.535,10.34,10.254,10.192,10.174,10.289,9.946,9.752,9.263,9.357,9.591,9.301,9.214,9.132,9.024,8.633,8.076,7.32,6.409,5.903,5.701,5.668,5.226,4.836,4.614,4.202,3.985,3.877,3.68,3.72,3.597,3.513,3.321,3.259,3.161,3.073,3.006,2.949,2.898,2.864,2.771,2.733,2.739,2.776,2.741,2.694,2.666],[34.818127,34.818127,34.81712,34.816116,34.818123,34.811131,34.828117,34.828117,34.828129,34.830124,34.829117,34.771172,null,34.886089,34.859116,34.886093,34.934055,34.838123,34.702229,34.746185,34.680252,34.667244,34.769169,34.745205,34.745205,34.741196,34.763191,34.799152,34.747196,34.710232,34.630276,34.665268,34.730213,34.681263,34.675251,34.671261,34.667255,34.627289,34.542366,34.463436,34.379486,34.339516,34.372482,34.424461,34.403492,34.387516,34.401505,34.390537,34.393513,34.4245,34.417507,34.482475,34.504459,34.526459,34.533459,34.55843,34.577431,34.595428,34.618412,34.636395,34.661377,34.681374,34.682373,34.697365,34.714359,34.737335,34.742332,34.754333,34.758324]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_214","geolocation":{"type":"Point","coordinates":[28.381,-43.936]},"basin":3,"timestamp":"2015-12-02T14:18:30.001Z","date_updated_argovis":"2023-01-26T10:45:13.599Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_214.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":214,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.4,20.1,29.5,39.5,50.400002,60.200001,70.300003,80.5,90.200005,100.300003,109.700005,120,130.299988,140.299988,150.299988,159.299988,169.5,179.5,189.5,199.5,210.299988,220.299988,230.299988,240.399994,250.399994,260.199982,270,280.299988,290.199982,299.899994,309.299988,320.100006,329.899994,339.600006,349.699982,359.600006,379.5,399.299988,450.100006,499.600006,550,600,650.200012,700,749.600037,800.200012,849.800049,899.600037,950.200012,1000.300049,1049.599976,1098.599976,1149.700073,1200.300049,1249.599976,1300.400024,1350.200073,1400.099976,1449.800049,1500.400024,1550.300049,1600.599976,1650.400024,1699.599976,1749.599976,1800.200073,1849.400024,1897.5],[11.694,11.693,11.675,11.536,11.182,10.893,10.844,10.459,10.415,10.348,10.228,10.101,9.903,9.736,9.684,9.697,9.614,9.34,9.188,9.032,8.816,8.865,8.861,9.079,8.993,8.98,9.014,8.863,8.881,8.838,8.851,8.707,8.841,8.507,8.363,8.208,8.087,7.922,7.701,6.887,6.136,5.55,5.413,5.51,5.192,4.921,4.449,4.297,3.879,3.688,3.618,3.719,3.544,3.466,3.315,3.137,3.086,3.024,2.937,2.902,2.883,2.857,2.833,2.794,2.727,2.692,2.722,2.652,2.62],[34.768307,34.767319,34.764301,34.735317,34.651398,34.591431,34.590435,34.539455,34.532467,34.520485,34.505489,34.512489,34.513489,34.517494,34.538479,34.543476,34.52647,34.490517,34.460529,34.436543,34.408573,34.415573,34.435562,34.48753,34.492535,34.510502,34.544487,34.538494,34.568474,34.57048,34.583454,34.567471,null,34.555489,34.539494,34.521519,34.514523,34.506523,34.496525,34.440582,34.360638,34.312679,34.34866,34.418617,34.40963,34.396641,34.387661,34.438637,34.403675,34.402657,34.428646,34.491619,34.498631,34.5406,34.549595,34.55558,34.586563,34.608562,34.627544,34.649544,34.663528,34.686504,34.705498,34.716503,34.722496,34.729477,34.747482,34.753471,34.758469]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_213","geolocation":{"type":"Point","coordinates":[27.832,-43.39]},"basin":3,"timestamp":"2015-11-22T10:27:44.001Z","date_updated_argovis":"2023-01-26T10:45:11.794Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_213.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":213,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.9,19.900002,30.200001,39.900002,50,60.100002,70,79.699997,90.199997,100.099998,109.899994,119.699997,129.899994,140.099991,149.899994,159.800003,169.300003,179.5,189.699997,200.199997,210.199997,220.399994,230.099991,240.199997,249.399994,259.600006,269.5,280.100006,290.200012,299.700012,310.100006,319.5,330.100006,339.600006,349.300018,359.300018,379.400024,399.800018,449.900024,499.900024,550.100037,600.299988,649.400024,700,750,800.200012,849.799988,899.5,950,999.900024,1050.099976,1100.299927,1149.5,1199.699951,1249.799927,1300,1350.199951,1399.699951,1449.199951,1499.799927,1549.799927,1600,1649.899902,1699.699951,1749.199951,1800,1849.799927,1899.699951],[12.478,12.476,12.483,12.48,12.486,12.487,12.465,12.412,12.415,12.448,12.426,12.274,12.372,12.169,12.004,11.827,11.738,11.704,11.345,10.902,10.693,10.523,10.352,10.247,10.235,10.208,10.133,10.45,10.245,10.052,10.106,9.909,9.778,9.682,9.495,9.231,9.164,8.919,8.6,7.865,7.333,6.325,5.963,5.711,5.322,4.869,4.606,4.314,4.009,3.741,3.841,3.414,3.474,3.357,3.316,3.248,3.131,3.044,3.001,2.926,2.86,2.795,2.769,2.739,2.714,2.683,2.672,2.663,2.632],[34.934437,34.932434,34.934433,34.93343,34.934429,34.935436,34.92944,34.926437,34.930416,34.946423,34.949421,34.953434,35.027367,35.015385,34.996395,34.973423,34.957424,34.951435,34.896473,34.812519,34.779556,34.752571,34.726589,34.710606,34.716599,34.719585,34.72958,34.811531,34.779556,34.749596,34.782566,34.761585,34.741604,34.731609,34.719608,34.684631,34.689632,34.65966,34.629669,34.560734,34.514774,34.411854,34.401867,34.417862,34.399868,34.3839,34.392899,34.399895,34.393917,34.4119,34.472878,34.447895,34.493862,34.522842,34.552834,34.575798,34.598797,34.611801,34.634796,34.651794,34.661781,34.67477,34.690754,34.702763,34.718758,34.727741,34.733723,34.74472,34.754723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_212","geolocation":{"type":"Point","coordinates":[27.823,-42.479]},"basin":3,"timestamp":"2015-11-12T06:25:46.000Z","date_updated_argovis":"2023-01-26T10:45:09.979Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_212.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":212,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.8,20.299999,30,40.099998,50.399998,60.299999,70.200005,79.600006,89.800003,100.200005,109.600006,120.100006,129.699997,139.400009,150.199997,159.900009,170.199997,180.400009,190.300003,200,209.900009,219.800003,229.699997,239.800003,250.100006,259.799988,269.599976,279.899994,289.699982,299.399994,309.899994,319.5,329.399994,340.099976,350,359.699982,380.199982,400.199982,450.299988,499.5,550.099976,599.200012,649.799988,700.200012,750.200012,799.700012,849.799988,899.899963,950.399963,999.700012,1050.200073,1099.5,1150.400024,1199.5,1249.300049,1299.5,1349.700073,1400,1449.800049,1500.100098,1549.600098,1600,1650,1700.100098,1749.600098,1799.600098,1848.900024,1897.900024],[14.791,14.79,14.782,14.784,14.782,14.772,14.763,14.023,13.791,13.634,13.28,12.991,12.614,12.476,12.34,12.194,12.086,11.929,11.747,11.766,11.483,11.514,11.35,10.978,10.851,10.829,10.795,10.814,10.864,10.73,10.621,10.421,10.328,10.263,10.088,9.865,9.703,9.501,9.292,8.383,7.806,7.154,6.627,5.833,5.34,4.947,4.727,4.536,4.01,3.816,3.649,3.442,3.4,3.311,3.208,3.098,3.048,2.944,2.892,2.861,2.815,2.815,2.811,2.795,2.779,2.763,2.734,2.726,2.716],[35.267307,35.266312,35.265305,35.265312,35.265312,35.262306,35.251305,35.190372,35.172382,35.154385,35.12141,35.105431,35.056458,35.048462,35.03149,35.022495,35.008511,34.985519,34.959538,34.969528,34.921566,34.93755,34.904591,34.838615,34.829609,34.834625,34.830624,34.847614,34.870598,34.852619,34.839615,34.810631,34.806648,34.807644,34.791653,34.762688,34.744698,34.728714,34.719723,34.606789,34.560841,34.523861,34.485901,34.410954,34.377991,34.37801,34.391991,34.415974,34.385002,34.398006,34.409004,34.425991,34.455967,34.492962,34.519943,34.531937,34.551926,34.572918,34.598896,34.623894,34.646885,34.668869,34.691853,34.712833,34.731819,34.74081,34.752815,34.760811,34.769814]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_211","geolocation":{"type":"Point","coordinates":[27.862,-41.836]},"basin":3,"timestamp":"2015-11-02T02:21:56.000Z","date_updated_argovis":"2023-01-26T10:45:08.110Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_211.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":211,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,10.099999,20.1,30.5,39.900002,50.5,59.700001,70.099998,79.800003,90.200005,99.5,110,119.700005,129.799988,139.599991,149.5,159.399994,169.5,180.399994,190.299988,199.699997,209.899994,218,230.299988,240.5,250.5,260.299988,270.299988,280.299988,290.299988,299.5,310,319.699982,329.600006,340,349.699982,359.5,379.799988,400.5,450.199982,499.699982,550,600.200012,650.400024,700.200012,749.5,800.100037,850,899.800049,949.800049,999.900024,1049.700073,1100.200073,1150,1200.400024,1249.700073,1299.900024,1350.200073,1400,1450,1499.800049,1550.200073,1599.5,1650.099976,1700.200073,1750.300049,1799.300049,1849.200073,1899],[14.311,14.313,14.289,13.923,13.659,13.598,13.606,13.378,13.229,13.056,12.877,12.77,12.447,12.141,11.958,11.988,11.545,11.574,11.299,11.191,11.155,11.07,10.971,10.658,10.28,9.95,9.997,10.035,10.257,10.225,10.19,10.135,9.984,9.845,9.754,9.837,9.62,9.154,8.852,8.272,7.567,6.837,6.186,5.632,5.197,4.989,4.734,4.582,4.39,3.746,3.777,3.711,3.5,3.384,3.373,3.136,3.118,2.979,2.915,2.845,2.807,2.799,2.821,2.778,2.758,2.732,2.729,2.728,2.696],[35.205456,35.203457,35.198467,35.154488,35.113522,35.105522,35.112499,35.079533,35.069542,35.087532,35.080547,35.06855,35.007599,34.962631,34.94965,34.97562,34.900673,34.915668,34.868698,34.860699,34.8587,34.847721,34.834717,34.776752,34.703804,34.650841,34.673828,34.696823,34.763767,34.763771,34.761772,34.773766,34.758785,34.744785,34.736797,34.768772,34.741791,34.67585,34.643864,34.598915,34.532955,34.479996,34.422047,34.393059,34.378078,34.392078,34.399075,34.42408,34.432064,34.376099,34.419094,34.454075,34.474064,34.49905,34.535015,34.529034,34.573006,34.58202,34.601997,34.620983,34.643974,34.668953,34.691944,34.709938,34.723915,34.74091,34.755901,34.770905,34.776905]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_210","geolocation":{"type":"Point","coordinates":[27.743,-41.373]},"basin":3,"timestamp":"2015-10-22T22:30:14.002Z","date_updated_argovis":"2023-01-26T10:45:06.175Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_210.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":210,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.5,20.4,30.199999,39.899998,50.200001,59.700001,70.300003,79.900002,89.600006,99.800003,109.800003,119.700005,129.400009,140,149.400009,159.699997,169.600006,180.199997,189.699997,199.600006,210.300003,217.699997,230.5,240.300003,249.600006,260,269.899994,279.5,289.899994,299.799988,309.399994,319.699982,330.099976,339.799988,349.799988,359.599976,379.799988,400.099976,450.299988,499.5,550,599.899963,650.200012,700.200012,749.399963,800.299988,850.200012,899.599976,949.299988,999.700012,1049.700073,1099.600098,1149.700073,1200.300049,1250.200073,1299.200073,1350.300049,1399.5,1449.800049,1499.800049,1550.300049,1599.600098,1650.400024,1700.300049,1750,1799.300049,1849.700073,1900.200073],[14.129,14.129,14.133,14.133,14.136,14.129,14.122,14.087,14.041,13.059,12.399,12.149,11.942,11.599,11.422,11.186,10.98,10.726,10.497,10.288,10.199,10.129,10.104,10.042,10.025,9.985,9.901,9.852,9.794,9.726,9.698,9.651,9.657,9.506,9.421,9.388,9.264,8.971,8.828,8.327,7.764,7.171,6.542,5.53,5.186,5.026,5.023,4.63,4.41,4.139,3.923,4.062,3.78,3.816,3.459,3.339,3.234,3.166,3.049,3.004,2.949,2.908,2.869,2.847,2.817,2.793,2.774,2.77,2.748],[35.173672,35.173672,35.174675,35.173672,35.173672,35.171669,35.171669,35.16568,35.152679,35.069748,35.010773,34.978802,34.95583,34.91787,34.892876,34.855896,34.824921,34.78894,34.752972,34.727989,34.720985,34.716,34.715012,34.717003,34.717991,34.718998,34.715004,34.712013,34.706009,34.701,34.706005,34.705009,34.707016,34.704014,34.692013,34.690025,34.676018,34.645061,34.634048,34.600079,34.564114,34.523151,34.471191,34.357277,34.366283,34.379269,34.42326,34.413269,34.410267,34.427261,34.444263,34.506218,34.498219,34.537205,34.535213,34.550213,34.570202,34.589188,34.613186,34.637157,34.656162,34.674149,34.694138,34.708141,34.725117,34.741112,34.753105,34.764084,34.776093]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_209","geolocation":{"type":"Point","coordinates":[27.223,-41.026]},"basin":3,"timestamp":"2015-10-12T18:18:56.001Z","date_updated_argovis":"2023-01-26T10:45:04.223Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_209.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":209,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.5,19.799999,30.299999,40.400002,50.700001,60.200001,69.800003,79.5,90.400002,100.300003,110,119.900002,129.800003,140.100006,150.100006,160.300003,170.199997,179.800003,189.600006,199.800003,209.600006,219.600006,230.399994,240.300003,250.300003,260.200012,270.399994,279.899994,289.799988,300.200012,310.200012,320.299988,330.399994,339.700012,350.299988,359.899994,379.600006,399.700012,450.5,500.5,549.400024,600.299988,650.099976,699.900024,749.599976,800.400024,850.5,899.599976,949.799988,1000.099976,1050.099976,1099.199951,1150.099976,1199.800049,1250.199951,1299.900024,1350.199951,1399.800049,1450.099976,1499.900024,1549.900024,1600.300049,1650.5,1699.800049,1750.199951,1800.300049,1849.5,1897],[15.942,15.943,15.926,15.713,15.569,15.221,14.708,14.317,14.177,14.04,13.905,13.69,13.284,12.775,12.688,12.614,12.516,12.15,12.067,11.639,11.431,11.051,10.872,10.516,10.246,9.902,9.943,10.368,10.315,10.447,10.517,10.323,10.263,9.905,9.854,9.79,9.709,9.587,9.523,8.865,7.996,7.364,6.521,6.041,5.533,5.205,4.793,4.625,4.302,3.873,3.847,3.781,3.601,3.544,3.353,3.166,3.103,3.001,2.916,2.888,2.849,2.824,2.808,2.78,2.762,2.734,2.707,2.69,2.663],[35.257648,35.257671,35.254646,35.243683,35.236683,35.229683,35.231686,35.218704,35.212711,35.205715,35.195717,35.192722,35.157726,35.089794,35.078804,35.081795,35.059818,35.003849,34.993855,34.920895,34.887917,34.825974,34.793999,34.734032,34.687069,34.628101,34.658081,34.765015,34.778008,34.817982,34.844967,34.814987,34.804985,34.747032,34.739044,34.740028,34.73505,34.742046,34.747036,34.666088,34.577168,34.538204,34.465244,34.443275,34.407299,34.401295,34.405319,34.42931,34.443298,34.434319,34.457306,34.482285,34.494286,34.521255,34.561256,34.585239,34.607243,34.627235,34.654217,34.673195,34.697174,34.709171,34.717159,34.734154,34.746151,34.759151,34.772141,34.785141,34.791138]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_208","geolocation":{"type":"Point","coordinates":[25.41,-40.648]},"basin":3,"timestamp":"2015-10-02T14:35:39.001Z","date_updated_argovis":"2023-01-26T10:45:02.113Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_208.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":208,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2,10.6,20.4,30.4,39.799999,49.899998,60.099998,70.100006,80.100006,90.300003,98.800003,110.100006,119.800003,130.5,140.199997,149.800003,160.300003,170.100006,179.800003,189.699997,199.699997,209.600006,219.300003,230.100006,239.800003,249.600006,258.399994,270.199982,280.199982,290.199982,299.799988,309.599976,320,329.699982,339.799988,349.899994,360.099976,380.299988,398.399994,449.5,499.799988,549.899963,600.099976,650,700.299988,750.099976,799.799988,850.200012,900.099976,949.399963,1000.200012,1050.200073,1100.100098,1148.800049,1200.200073,1250.200073,1299.900024,1346.800049,1399.900024,1450.100098,1499.700073,1549.800049,1600.100098,1650.100098,1700.100098,1749.800049,1799.400024,1849.5,1899.300049],[20.580999,20.584999,20.587999,20.598,20.598,20.601,20.603001,20.605,20.603001,20.556999,19.954,19.716,19.414,19.028,18.646,18.358,18.105,17.999001,17.671,17.462999,17.027,16.958,16.429001,16.455999,16.466,16.363001,16.122,15.637,15.461,15.425,15.268,15.141,14.957,14.867,14.79,14.473,14.049,13.351,12.755,11.339,10.816,9.816,8.934,8.43,7.919,6.967,6.219,5.636,5.299,5.003,4.486,4.276,4.055,3.929,3.775,3.655,3.474,3.353,3.279,3.144,3.125,3.06,2.969,2.926,2.893,2.857,2.844,2.819,2.79],[35.330799,35.329796,35.330769,35.329773,35.3298,35.3298,35.329781,35.330784,35.330795,35.341785,35.461727,35.474724,35.488705,35.493713,35.489708,35.526714,35.553699,35.550674,35.553692,35.561687,35.523712,35.548706,35.437782,35.471752,35.483749,35.494766,35.46579,35.389797,35.355827,35.360832,35.340851,35.328854,35.324856,35.342861,35.331879,35.2799,35.256927,35.206944,35.145008,34.987106,34.917171,34.754265,34.653339,34.608379,34.590382,34.482475,34.416519,34.381561,34.373562,34.383572,34.355591,34.377583,34.383575,34.418564,34.439545,34.463524,34.496521,34.514515,34.536503,34.564491,34.601471,34.617477,34.653454,34.668438,34.68742,34.712414,34.722416,34.742393,34.7514]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_207","geolocation":{"type":"Point","coordinates":[25.04,-39.777]},"basin":3,"timestamp":"2015-09-22T10:33:41.001Z","date_updated_argovis":"2023-01-26T10:45:00.393Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_207.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":207,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.4,18.699999,29.9,40.400002,50,60.300003,70,79.200005,89.700005,99.800003,110.400002,120,130.5,140.199997,150.199997,159.699997,169.699997,179.899994,190.299988,200.599991,210,220,230.099991,240.099991,250.099991,260.199982,269.899994,280.199982,290.199982,300,310.199982,319.799988,329.799988,340.299988,350.199982,359.799988,380.100006,400.399994,450.199982,499.799988,549.600037,599.700012,649.900024,700,750.200012,799.800049,850.5,899.900024,949.5,1000,1050.300049,1099.5,1150,1199.900024,1250.400024,1299.599976,1350,1399.800049,1450.300049,1497.800049,1549.900024,1599.599976,1650.200073,1700.300049,1749.599976,1799.5,1849.300049,1899.900024],[19.405001,19.407,19.4,19.365,19.232,18.643,18.384001,18.256001,18.219,18.167999,18.070999,17.754999,17.355,17.274,17.014,16.552,16.32,15.878,15.438,15.222,15.055,14.735,14.538,14.371,14.264,14.015,13.904,13.94,13.698,13.33,13.596,13.841,13.703,13.539,13.402,13.227,13.174,12.903,12.745,12.254,10.699,10.915,10.739,10.184,9.341,8.542,7.887,7.41,6.464,6.138,5.343,4.913,4.684,4.525,4.025,3.979,3.816,3.683,3.625,3.582,3.484,3.307,3.204,3.096,3.018,2.983,2.939,2.889,2.851],[35.403885,35.402874,35.402863,35.402874,35.420849,35.470844,35.521805,35.531799,35.533821,35.532799,35.543816,35.554813,35.542816,35.557816,35.504829,35.415897,35.41391,35.386909,35.346962,35.327953,35.313976,35.280994,35.259026,35.251015,35.231018,35.182056,35.16008,35.20306,35.165081,35.096127,35.176067,35.291,35.282005,35.253021,35.240047,35.230057,35.230049,35.190071,35.170097,35.100143,34.780346,34.860298,34.863312,34.806332,34.692406,34.62347,34.567486,34.563519,34.457596,34.453606,34.363659,34.343678,34.360676,34.38068,34.34568,34.385681,34.404671,34.44265,34.477619,34.515614,34.540588,34.565578,34.59058,34.614567,34.637543,34.650543,34.667538,34.689522,34.705509]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_206","geolocation":{"type":"Point","coordinates":[25.926,-38.757]},"basin":3,"timestamp":"2015-09-12T06:26:08.000Z","date_updated_argovis":"2023-01-26T10:44:58.493Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_206.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":206,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.099999,20.200001,29.800001,39.700001,50.299999,60.100002,69.699997,80.099998,89.099998,99.699997,109.399994,119.699997,129.599991,140.199997,150,160.099991,169.199997,179.300003,190.199997,200.099991,209.899994,220.199997,230,239.5,250.099991,259.800018,269.700012,279.800018,289.800018,300,309.5,320.100006,329.900024,339.600006,349.800018,359.5,379.900024,399.600006,449.900024,499.900024,549.299988,599.200012,650.200012,699.799988,750,798.900024,849.900024,900,949.600037,999.700012,1049.799927,1099.599976,1150.099976,1199.799927,1250.099976,1299.799927,1349.899902,1399.799927,1449.199951,1499.399902,1549.699951,1597.199951,1649.899902,1699.599976,1750,1800.299927,1849.5,1899.199951],[14.634,14.635,14.636,14.637,14.637,14.63,14.594,14.081,13.783,13.72,13.553,13.454,13.301,13.2,13.072,13.018,12.645,12.585,12.512,12.3,12.386,12.321,12.246,12.229,12.165,12.041,12.028,12,11.904,11.852,11.753,11.683,11.449,11.226,11.106,10.882,10.59,10.287,10.106,9.462,8.78,8.24,7.474,6.918,6.214,5.463,4.892,4.516,4.075,4.164,4.078,3.778,3.443,3.559,3.477,3.423,3.273,3.147,3.115,3.028,2.971,2.919,2.843,2.834,2.81,2.796,2.781,2.759,2.738],[35.305218,35.304234,35.305218,35.304234,35.305233,35.302216,35.291245,35.226288,35.187305,35.180309,35.159325,35.145344,35.126339,35.119343,35.117359,35.119354,35.072369,35.064384,35.0574,35.034412,35.088383,35.087368,35.082378,35.091377,35.084389,35.065395,35.065407,35.066402,35.054386,35.04541,35.030411,35.017433,34.975456,34.934483,34.925507,34.895504,34.859547,34.829552,34.802574,34.735622,34.665672,34.613716,34.539764,34.505787,34.454845,34.380898,34.352909,34.343918,34.32795,34.378918,34.407902,34.415901,34.419918,34.479885,34.511856,34.531841,34.54784,34.566841,34.599831,34.625813,34.644787,34.662785,34.678772,34.698761,34.717766,34.730743,34.740746,34.75573,34.766727]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_205","geolocation":{"type":"Point","coordinates":[27.226,-39.51]},"basin":3,"timestamp":"2015-09-02T02:26:58.000Z","date_updated_argovis":"2023-01-26T10:44:56.698Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_205.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":205,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.8,19.6,30,40.299999,50.200001,59.5,69.799995,79.5,90.099998,99.599998,109.899994,119.599998,129.300003,140.099991,149.5,160,170.199997,178.699997,190.399994,200.099991,210.199997,219.800003,229.599991,240.300003,249.699997,260,269.700012,280,289.700012,300.100006,309.700012,319.5,330.200012,339.800018,349.900024,360,380.100006,397.900024,449.900024,499.400024,549.799988,599.700012,650.200012,700,750.100037,800.100037,849.400024,899.400024,950.100037,999.900024,1049.799927,1099.599976,1149.899902,1200.099976,1249.799927,1299.5,1349.599976,1400.099976,1449.699951,1499.599976,1549.899902,1599.399902,1649.599976,1699.699951,1749.699951,1799.799927,1849.099976,1899.099976],[14.7,14.7,14.709,14.709,14.713,14.718,14.714,14.718,14.706,14.028,13.761,13.66,13.57,13.497,13.41,13.142,13.157,13.04,12.72,12.802,12.598,12.477,12.353,12.151,11.938,11.536,11.324,11.046,10.941,10.796,10.692,10.653,10.572,10.496,10.426,10.169,10.062,9.799,9.479,8.858,8.215,7.47,6.606,5.662,5.402,4.9,4.436,4.489,4.391,3.968,3.874,3.711,3.584,3.482,3.288,3.205,3.18,3.05,3.035,2.948,2.922,2.878,2.841,2.812,2.793,2.76,2.735,2.717,2.697],[35.320362,35.319366,35.319355,35.319366,35.319355,35.320347,35.320362,35.320347,35.316345,35.218422,35.181454,35.178463,35.170464,35.165462,35.157475,35.128517,35.141472,35.138485,35.109509,35.174473,35.145489,35.127502,35.102528,35.070545,35.032574,34.955616,34.929638,34.881653,34.870659,34.859669,34.849689,34.86367,34.858677,34.847683,34.834694,34.807716,34.798725,34.766743,34.715775,34.670811,34.602863,34.524921,34.441971,34.371052,34.376038,34.346066,34.326069,34.374054,34.404049,34.378071,34.417049,34.444035,34.472038,34.494011,34.511009,34.54599,34.582981,34.590977,34.620956,34.637932,34.658932,34.680927,34.698902,34.71191,34.724899,34.739887,34.75388,34.766865,34.774864]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_204","geolocation":{"type":"Point","coordinates":[27.299,-39.809]},"basin":3,"timestamp":"2015-08-22T22:28:44.002Z","date_updated_argovis":"2023-01-26T10:44:54.885Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_204.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":204,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.299999,20.5,29.9,40.100002,49.900002,60,70.400002,80,89.900002,100.300003,109.5,120.400002,129.799988,139.5,150.299988,160.299988,169.599991,179.899994,190.199997,198.5,210.299988,220.599991,230.5,240.299988,250.099991,260.100006,269.899994,280.199982,289.600006,300,309.899994,319.699982,329.699982,340.100006,349.600006,360,380.100006,400.5,450.100006,500.299988,550,599.900024,650,700.100037,749.700012,800.200012,850.400024,899.800049,949.5,999.800049,1050.200073,1100.400024,1150.099976,1200.300049,1249.900024,1299.599976,1350.400024,1399.5,1449.900024,1500.099976,1550.099976,1599.900024,1650.300049,1700.200073,1749.800049,1799.900024,1849.900024,1899.599976],[13.962,13.962,13.821,13.712,13.691,13.601,13.468,13.365,13.23,13.193,13.12,12.933,12.73,12.661,12.375,11.857,11.663,11.674,11.549,11.518,11.577,11.47,11.457,11.243,11.187,10.994,10.856,10.675,10.701,10.469,10.363,10.261,10.028,9.935,9.851,9.762,9.665,9.437,9.134,8.29,7.528,6.76,6.302,5.601,5.181,4.881,4.599,4.48,4.337,4.164,3.683,3.578,3.348,3.274,3.292,3.173,3.125,2.956,2.958,2.93,2.878,2.84,2.83,2.794,2.763,2.737,2.707,2.686,2.673],[35.192505,35.192505,35.189503,35.17852,35.177494,35.15654,35.136543,35.121559,35.101566,35.097565,35.082581,35.059605,35.031601,35.037613,34.979645,34.898685,34.871704,34.890713,34.882721,34.884708,34.914688,34.923683,34.931686,34.900707,34.895718,34.883717,34.863739,34.834759,34.851738,34.823761,34.817757,34.808765,34.7738,34.768799,34.7668,34.765793,34.756802,34.737823,34.704853,34.606915,34.535961,34.472004,34.452034,34.397064,34.380085,34.383095,34.402096,34.418076,34.439075,34.459057,34.439083,34.466076,34.47007,34.503059,34.537041,34.552021,34.589005,34.603008,34.634979,34.653976,34.674973,34.693947,34.707943,34.726933,34.742931,34.756939,34.767921,34.776913,34.784916]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_203","geolocation":{"type":"Point","coordinates":[27.307,-39.942]},"basin":3,"timestamp":"2015-08-12T18:24:54.001Z","date_updated_argovis":"2023-01-26T10:44:53.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_203.nc","date_updated":"2020-11-12T10:21:08.000Z"}],"cycle_number":203,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.4,20.200001,30.5,40.100002,50.200001,60.600002,70.399994,80.199997,89.799995,100.199997,110.799995,120.099998,130.599991,140,150,160.699997,169.899994,179.800003,189.800003,200.099991,209.599991,220.5,229.699997,240,247.199997,260.700012,270.400024,280.400024,290.200012,300.600006,310.600006,319.900024,329.600006,340.600006,349.800018,360.5,380.400024,400.700012,450.700012,500,549.799988,600.200012,650.100037,700.700012,750.400024,799.5,850.299988,900,950.5,1000.600037,1050.099976,1099.799927,1150.699951,1200.099976,1250.5,1300.299927,1347.5,1400.099976,1449.799927,1500.099976,1550.599976,1600.199951,1650.599976,1700.5,1750.5,1800.299927,1850.099976,1899.699951],[13.764,13.765,13.767,13.764,13.766,13.773,13.76,13.758,13.744,13.707,13.162,13.036,12.539,12.503,12.44,12.289,12.209,12.174,12.315,12.503,12.101,12.062,11.978,11.623,11.313,11.141,10.851,10.55,10.28,10.006,10.179,9.912,9.877,9.957,9.663,9.368,9.374,9.261,8.837,8.312,7.597,6.977,6.205,5.76,5.208,4.686,4.459,3.847,3.767,3.886,3.626,3.39,3.289,3.194,3.103,3.06,3.063,3.039,2.971,2.9,2.875,2.833,2.81,2.779,2.767,2.757,2.721,2.692,2.673],[35.157551,35.164543,35.165539,35.164543,35.164558,35.165543,35.163555,35.162544,35.159557,35.152557,35.0956,35.076599,34.975658,34.971668,34.966671,34.941673,34.943687,34.952679,35.011627,35.078617,35.006657,35.024651,35.018654,34.961681,34.923695,34.899723,34.855743,34.811771,34.781803,34.73481,34.787785,34.747822,34.744812,34.769802,34.715836,34.672878,34.691849,34.687855,34.633892,34.616913,34.55196,34.499996,34.444031,34.420044,34.387058,34.351109,34.365097,34.315144,34.352131,34.416084,34.436089,34.443077,34.454067,34.490059,34.508049,34.54002,34.568016,34.603992,34.629978,34.654987,34.677956,34.696945,34.71394,34.734936,34.743927,34.754913,34.766922,34.775913,34.784916]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_202","geolocation":{"type":"Point","coordinates":[27.365,-40.158]},"basin":3,"timestamp":"2015-08-02T14:22:57.001Z","date_updated_argovis":"2023-01-26T10:44:51.198Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_202.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":202,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,17.699999,30.1,40.400002,49.800003,59.900002,70.200005,79.800003,90.099998,100.300003,109.900002,120,129.799988,139.699997,150.199997,159.799988,170,179.799988,190.399994,200.399994,210.099991,220.199997,230.399994,240.199997,250.099991,260.299988,269.799988,280.199982,290.199982,300.199982,310.399994,319.699982,329.799988,340.299988,350.199982,359.899994,379.600006,400,450.399994,499.699982,550.400024,600.300049,650,700.200012,749.400024,799.400024,850.100037,899.800049,950.5,999.700012,1049.5,1099.800049,1150.200073,1200.300049,1249.800049,1299.900024,1350.400024,1400.099976,1450.099976,1499.900024,1550,1599.900024,1649.800049,1700.200073,1750.099976,1800.099976,1850.099976,1899.300049],[15.036,15.038,15.039,14.353,13.743,13.405,13.337,13.292,13.18,13.015,12.938,12.652,12.35,12.201,11.887,11.752,11.724,11.725,11.543,11.508,11.356,11.28,11.114,11.014,10.891,10.752,10.635,10.444,10.261,10.276,10.237,9.946,9.75,9.525,9.466,9.49,9.339,9.08,8.69,7.681,6.035,5.453,5.216,4.756,4.415,4.334,3.846,3.705,3.903,3.777,3.552,3.361,3.169,3.319,3.301,3.217,3.148,3.053,2.98,2.926,2.883,2.843,2.821,2.79,2.756,2.741,2.728,2.713,2.696],[35.276737,35.275742,35.273746,35.207802,35.15284,35.111855,35.103863,35.095867,35.081867,35.059887,35.052895,35.004917,34.944954,34.936962,34.889,34.889004,34.903992,34.931965,34.927967,34.947964,34.930973,34.926971,34.909,34.901989,34.884018,34.86203,34.847038,34.825058,34.813053,34.827057,34.818054,34.773094,34.743111,34.708118,34.714138,34.72913,34.709126,34.690144,34.649193,34.527241,34.343365,34.301414,34.302418,34.273438,34.25845,34.301434,34.281452,34.324429,34.398403,34.420383,34.434372,34.454365,34.45937,34.528328,34.552315,34.583298,34.603294,34.623268,34.633282,34.656269,34.675259,34.694248,34.708233,34.725243,34.738235,34.750225,34.761215,34.774197,34.783199]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_201","geolocation":{"type":"Point","coordinates":[27.994,-40.457]},"basin":3,"timestamp":"2015-07-23T10:27:31.001Z","date_updated_argovis":"2023-01-26T10:44:49.277Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_201.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":201,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.3,18.700001,29.9,40.700001,50.099998,60.200001,70.300003,80.099998,90.199997,100.199997,109.800003,119.800003,130.199997,140.5,150.100006,160.5,170.5,180.300003,187.899994,200,210.699997,220.100006,230.5,240.199997,250.300003,260.299988,270,280.200012,290.5,300.299988,309.899994,319.899994,330,340.299988,350.100006,359.600006,379.200012,400,450,500.299988,550.200012,599.799988,650.200012,700.5,749.799988,796.900024,850.400024,899.700012,949.5,1000.400024,1049.800049,1099.599976,1150.199951,1200.099976,1249.699951,1300.099976,1350.400024,1400.199951,1449.5,1500.5,1550.5,1600,1650.099976,1700.400024,1750,1799.400024,1849.800049,1900.300049],[12.643,12.646,12.644,12.648,12.651,12.652,12.65,12.637,12.637,12.636,12.636,12.636,12.636,12.634,12.636,12.632,12.595,12.095,12.008,11.949,11.749,11.575,11.303,11.21,11.006,10.924,10.846,10.654,10.416,10.153,10.025,9.908,9.896,9.867,9.666,9.534,9.519,9.245,9.161,8.227,6.902,6.139,5.616,5.237,4.959,4.458,4.076,3.805,4.177,4.03,3.724,3.575,3.589,3.547,3.401,3.31,3.19,3.083,3.022,2.959,2.918,2.866,2.836,2.803,2.768,2.745,2.733,2.699,2.663],[34.984058,34.981049,34.987038,34.999027,35.000015,34.999035,35.001026,34.999027,34.999035,34.99902,35.000027,34.99802,34.997021,34.998013,34.999016,34.996033,34.986046,34.900082,34.930069,34.975056,34.969067,34.949074,34.910084,34.900105,34.87413,34.86813,34.855125,34.820156,34.778175,34.745205,34.732201,34.722221,34.738213,34.741211,34.724224,34.718231,34.719223,34.701233,34.708244,34.590305,34.418434,34.354465,34.320503,34.308506,34.297527,34.282524,34.26754,34.275547,34.383484,34.417473,34.401474,34.43948,34.483448,34.521427,34.540409,34.559399,34.582382,34.612392,34.630371,34.648361,34.662354,34.684341,34.70134,34.720341,34.740326,34.754314,34.760292,34.775303,34.7873]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_200","geolocation":{"type":"Point","coordinates":[28.157,-41.362]},"basin":3,"timestamp":"2015-07-13T06:22:45.000Z","date_updated_argovis":"2023-01-26T10:44:47.493Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_200.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":200,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.400001,20.299999,30.099998,39.899998,50.299999,59.799999,70.200005,80.300003,89.700005,100.100006,109.300003,120,129.400009,139.699997,150.199997,160.199997,170.300003,180.199997,188.199997,200.300003,210.5,220.100006,230,240.199997,249.600006,260.199982,269.599976,279.799988,290,300.299988,310.099976,320.099976,330,340.099976,349.5,359.5,379.399994,399.399994,450.199982,499.599976,549.5,599.599976,649.599976,700.099976,749.399963,798.099976,850.399963,900.200012,949.700012,999.599976,1049.900024,1099.100098,1150.100098,1199.900024,1249.900024,1299.800049,1350.300049,1400.200073,1449.900024,1499.800049,1550.100098,1599.900024,1649.800049,1699.800049,1749.700073,1799.600098,1849.400024,1899.900024],[12.89,12.881,12.884,12.894,12.892,12.893,12.899,12.902,12.821,12.87,12.875,12.665,12.506,11.891,11.284,10.929,10.29,10.29,10.293,10.559,11.247,11.46,11.617,11.551,11.333,11.24,11.098,11.005,11.079,10.849,10.601,10.351,10.366,10.402,10.2,10.168,9.941,9.705,9.411,8.271,7.242,5.922,5.684,5.226,4.863,4.481,4.307,4.035,4.414,4.185,3.852,3.533,3.645,3.504,3.409,3.322,3.257,3.072,2.887,2.826,2.761,2.719,2.694,2.711,2.699,2.686,2.659,2.651,2.695],[35.034245,35.035244,35.034233,35.032238,35.033234,35.035263,35.034245,35.033234,35.014244,35.025249,35.026257,34.980274,34.932308,34.808369,34.68145,34.602497,34.488571,34.489563,34.49057,34.566521,34.784386,34.856373,34.909321,34.945305,34.922329,34.923325,34.903339,34.889336,34.914326,34.877354,34.835377,34.797401,34.814392,34.837379,34.812393,34.81039,34.790401,34.762432,34.72047,34.566551,34.493618,34.325718,34.339722,34.317749,34.325748,34.296749,34.313763,34.332767,34.424709,34.434715,34.416721,34.420719,34.491673,34.520664,34.542671,34.557652,34.568649,34.588634,34.608616,34.626629,34.627632,34.634632,34.657604,34.690594,34.698597,34.712585,34.72657,34.746559,34.770554]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_199","geolocation":{"type":"Point","coordinates":[27.746,-41.646]},"basin":3,"timestamp":"2015-07-03T02:30:08.000Z","date_updated_argovis":"2023-01-26T10:44:45.618Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_199.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":199,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.299999,20.199999,29.6,40.5,50.200001,60.200001,70.300003,80.400002,89.700005,99.800003,109.700005,120.400002,130.099991,139.899994,149.599991,160.5,170.299988,180.399994,190,200.5,210,220.5,229.899994,240.5,249.899994,259.699982,270.299988,279.699982,289.899994,300.5,310.5,320.399994,329.399994,339.899994,349.600006,360.299988,380.199982,399.899994,450.5,500.199982,550.100037,600,650.100037,700.100037,749.900024,800.100037,850.200012,900,950.400024,999.800049,1049.700073,1100.300049,1149.800049,1200,1249.599976,1300,1349.700073,1399.900024,1447.200073,1499.800049,1549.800049,1599.900024,1650.200073,1700.099976,1749.700073,1799.900024,1849.700073,1899.700073],[10.779,10.761,11.06,11.274,11.228,11.207,11.187,10.903,10.682,10.838,11.18,11.076,11.016,10.68,10.613,11.134,11.124,10.836,10.826,11.166,10.945,10.809,10.689,10.571,10.306,10.076,9.938,9.916,9.835,9.784,9.636,9.565,9.435,9.272,9.142,9.103,9.124,8.931,8.751,7.965,6.706,6.019,5.609,5.195,5.044,4.77,4.545,4.326,4.024,3.953,3.798,3.718,3.564,3.364,3.275,3.197,3.126,3.057,3.003,2.921,2.887,2.863,2.804,2.786,2.76,2.734,2.715,2.713,2.684],[null,34.521637,34.596603,34.648579,34.639587,34.635578,34.633583,34.5756,34.540638,34.582611,34.669563,34.65456,34.64159,34.579624,34.58062,34.725529,34.766514,34.742542,34.778515,34.891434,34.867458,34.858459,34.84647,34.830475,34.790508,34.753521,34.73056,34.738533,34.735554,34.732544,34.71656,34.709564,34.700573,34.681599,34.670589,34.671593,34.684589,34.662598,34.653603,34.584648,34.438747,34.395775,34.372818,34.355816,34.380814,34.381813,34.404797,34.419804,34.449787,34.457783,34.476776,34.502773,34.520752,34.548748,34.564743,34.579731,34.598728,34.618721,34.636719,34.660717,34.674702,34.686691,34.703678,34.714676,34.726669,34.735657,34.757668,34.769634,34.779625]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_198","geolocation":{"type":"Point","coordinates":[26.346,-41.734]},"basin":3,"timestamp":"2015-06-22T22:29:06.002Z","date_updated_argovis":"2023-01-26T10:44:43.796Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_198.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":198,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.6,10.5,20.5,30.199999,40.300003,49.900002,60.100002,69.800003,80.400002,90.5,100.5,110.5,120,130,140.299988,149.5,159.799988,169.599991,180.199997,190,197.899994,210.099991,220.5,230.399994,240.399994,250.199997,260.399994,269.899994,279.699982,289.899994,300,309.5,320.199982,330.100006,340.100006,350.199982,359.399994,380,400.299988,450,500.100006,550.100037,599.800049,649.900024,700.100037,750.200012,800.200012,850.400024,900.200012,949.400024,1000.300049,1049.900024,1100.099976,1150.200073,1200.400024,1249.800049,1300.200073,1350.200073,1399.400024,1449.400024,1500,1549.5,1599.5,1650.300049,1699.900024,1750.200073,1799.5,1849.800049,1900.099976],[15.097,15.098,15.098,15.1,15.103,15.104,15.104,15.093,15.014,14.867,14.443,13.469,13.174,12.869,12.563,12.344,12.317,12.088,11.842,11.703,11.554,11.531,11.449,11.411,11.281,11.154,11.075,10.893,10.733,10.521,10.467,10.386,10.191,10.027,9.855,9.678,9.604,9.396,9.279,8.643,7.95,7.192,6.449,5.722,5.357,5.081,4.77,4.587,4.319,4.076,3.847,3.693,3.615,3.543,3.38,3.272,3.136,3.041,2.989,2.925,2.884,2.853,2.824,2.799,2.764,2.751,2.721,2.712,2.688],[35.260349,35.259361,35.259361,35.260353,35.261349,35.260326,35.260326,35.262344,35.260338,35.269352,35.219395,35.032494,35.015491,35.028496,35.010502,35.017506,35.034508,35.017509,34.984543,34.96756,34.959545,34.978531,34.978542,34.973534,34.955547,34.933575,34.919582,34.893589,34.866608,34.836647,34.829636,34.813648,34.785667,34.766678,34.743702,34.724693,34.716698,34.69873,34.706722,34.638771,34.565804,34.494854,34.421894,34.347954,34.368958,34.384956,34.399944,34.406948,34.424946,34.44294,34.468937,34.489925,34.521904,34.542892,34.552906,34.571877,34.594864,34.617867,34.642853,34.660843,34.676838,34.691833,34.707825,34.722809,34.736816,34.751797,34.762794,34.773788,34.785774]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_197","geolocation":{"type":"Point","coordinates":[24.834,-42.19]},"basin":3,"timestamp":"2015-06-12T18:29:01.001Z","date_updated_argovis":"2023-01-26T10:44:41.981Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_197.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":197,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.7,20.400002,30.5,39.799999,50.400002,60.200001,70.199997,80.199997,90.399994,100.699997,110.599998,120.599998,129.899994,140.699997,150.099991,160.399994,170.300003,180.399994,190.5,200.5,210.699997,220.699997,230.699997,240.199997,250.699997,260.400024,270.300018,280.700012,290.5,300.200012,310.700012,320.5,330.100006,339.800018,349.900024,360.100006,380.5,400.300018,450.700012,500.600006,549.700012,600.700012,650.400024,700.200012,750.700012,799.799988,850.400024,900.400024,950.100037,1000.299988,1050.399902,1100.599976,1149.799927,1200.599976,1249.899902,1300.799927,1350.199951,1400.599976,1450.099976,1499.899902,1550.299927,1600.5,1649.799927,1700.699951,1750.599976,1799.799927,1850.5,1900.299927],[16.093,16.093,16.087,16.108999,15.736,15.389,15.073,15.029,15.008,14.789,14.367,13.861,13.703,13.572,13.454,13.229,13.022,13.477,14.063,13.964,13.854,13.262,12.974,13.005,12.739,12.578,12.469,12.296,12.378,12.252,12.124,11.982,11.776,11.618,11.517,11.332,11.092,10.848,10.645,10.212,9.622,8.664,8.137,7.243,6.225,5.563,5.367,5.137,4.845,4.639,4.369,4.102,3.946,3.835,3.663,3.483,3.36,3.238,3.17,3.065,2.976,2.924,2.902,2.85,2.82,2.793,2.769,2.754,2.735],[35.323326,35.323326,35.334332,35.379307,35.34531,35.282375,35.230392,35.23539,35.230389,35.184414,35.124447,35.062492,35.045502,35.0485,35.06049,35.026524,34.998524,35.142445,35.322353,35.319366,35.302372,35.171448,35.115479,35.153446,35.105476,35.093498,35.082489,35.068501,35.100487,35.081486,35.066502,35.05051,35.008533,34.991547,34.975563,34.950569,34.909595,34.882614,34.862629,34.821659,34.753696,34.650764,34.597794,34.504848,34.401913,34.363953,34.369957,34.383949,34.401939,34.409935,34.427933,34.447937,34.467911,34.484901,34.503914,34.53289,34.549885,34.576889,34.593868,34.619862,34.642849,34.660847,34.67083,34.69582,34.712807,34.72982,34.744804,34.753788,34.763786]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_196","geolocation":{"type":"Point","coordinates":[23.822,-42.467]},"basin":3,"timestamp":"2015-06-02T14:27:03.001Z","date_updated_argovis":"2023-01-26T10:44:40.098Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_196.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":196,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,19.799999,30.4,39.700001,50.300003,60,69.900002,79.400002,89.900002,99.5,109.300003,120.200005,130,139.699997,149.5,160.199997,169.599991,180.199997,189.899994,199.5,209.699997,219.899994,230.299988,240.199997,250.299988,259.5,267.399994,280.100006,290.199982,300,310.100006,320.5,329.600006,340.100006,349.899994,360,379.799988,400,450.299988,499.799988,550.100037,599.400024,649.600037,700.400024,749.900024,800.300049,850.100037,900,949.400024,1000.300049,1050,1100.400024,1150.200073,1199.800049,1250.300049,1299.700073,1349.700073,1400.200073,1449.800049,1500.099976,1550.300049,1599.900024,1649.099976,1700,1749.700073,1799.599976,1850,1899.599976,1949.099976],[14.754,14.754,14.752,14.756,14.756,14.757,14.759,14.76,14.76,14.762,14.763,14.765,14.767,14.768,14.767,14.77,14.771,14.772,14.774,14.774,14.773,14.774,14.77,14.617,13.591,13.226,13.151,13.018,12.887,12.773,12.685,12.539,12.424,12.289,12.081,11.915,11.813,11.591,11.273,10.708,10.185,9.417,8.696,7.738,6.345,5.874,5.47,5.316,4.977,4.823,4.463,4.192,4.049,3.931,3.784,3.528,3.396,3.263,3.124,3.073,3.011,2.945,2.874,2.852,2.827,2.806,2.788,2.774,2.76,2.74],[35.441559,35.442566,35.44355,35.44257,35.441563,35.44257,35.441544,35.44157,35.441544,35.44257,35.44257,35.443565,35.44257,35.441555,35.44257,35.441555,35.442562,35.441547,35.441555,35.441555,35.441566,35.441555,35.437546,35.402565,35.227684,35.172714,35.164707,35.159733,35.148735,35.141739,35.131744,35.116745,35.104755,35.087772,35.059795,35.038795,35.02581,34.998814,34.948849,34.879894,34.813946,34.72599,34.651039,34.55011,34.406208,34.354237,34.365246,34.383221,34.388237,34.395237,34.415234,34.43523,34.448219,34.472218,34.492199,34.522202,34.550186,34.573174,34.596161,34.611153,34.630157,34.653126,34.678131,34.692104,34.709114,34.722099,34.736088,34.745087,34.757084,34.767082]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_195","geolocation":{"type":"Point","coordinates":[23.839,-42.145]},"basin":3,"timestamp":"2015-05-23T10:18:34.001Z","date_updated_argovis":"2023-01-26T10:44:38.314Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_195.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":195,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.599999,20.4,30.199999,40,50.200001,60.200001,69.599998,80.400002,89.5,99.599998,110.099998,119.599998,130.299988,139.599991,149.799988,160.399994,169.699997,180.299988,189.899994,200.299988,209.799988,220.199997,230.299988,240.199997,249.799988,259.899994,270.399994,280.199982,290.199982,299.899994,309.799988,319.899994,329.600006,339.899994,349.600006,359.600006,380.299988,399.799988,450.199982,500,550.400024,599.5,650.300049,700.300049,750,799.5,849.900024,900.100037,949.800049,1000.5,1050,1100,1150.300049,1199.800049,1249.900024,1299.900024,1350,1399.800049,1449.5,1499.800049,1548.900024,1599.800049,1650.099976,1700.400024,1750.300049,1799.700073,1849.900024,1899.5,1950.5],[15.155,15.155,15.158,15.159,15.16,15.158,15.161,15.165,15.17,15.17,15.177,15.178,15.184,15.183,15.186,15.186,15.188,15.189,15.192,15.164,14.358,13.844,13.806,13.666,13.643,13.518,13.319,13.281,13.186,13.111,13.071,12.883,12.669,12.606,12.534,12.419,12.263,11.948,11.692,11.116,10.175,9.649,9.104,8.5,7.738,6.785,6.053,5.605,5.185,4.855,4.475,4.283,4.127,3.924,3.708,3.608,3.453,3.329,3.23,3.139,3.045,2.959,2.904,2.868,2.825,2.797,2.773,2.766,2.751,2.729],[35.461681,35.461697,35.462688,35.462669,35.462669,35.46069,35.461674,35.461689,35.464691,35.463699,35.465683,35.465687,35.465687,35.465675,35.466694,35.464695,35.466686,35.465675,35.465672,35.458698,35.319786,35.269802,35.273792,35.26981,35.268803,35.261818,35.244827,35.23983,35.226837,35.218853,35.211838,35.184856,35.152893,35.14188,35.134895,35.117901,35.093925,35.051941,35.016956,34.936012,34.811089,34.745121,34.699162,34.632191,34.557247,34.449326,34.375374,34.389362,34.390381,34.401382,34.414379,34.427376,34.451351,34.476345,34.503342,34.512341,34.541317,34.563324,34.582306,34.600311,34.621304,34.648289,34.668274,34.686268,34.709263,34.725254,34.741238,34.749237,34.758236,34.769226]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_194","geolocation":{"type":"Point","coordinates":[23.933,-42.685]},"basin":3,"timestamp":"2015-05-13T06:27:49.000Z","date_updated_argovis":"2023-01-26T10:44:36.411Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_194.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":194,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.5,20.5,30.6,40.099998,50.400002,60.200001,69.800003,80.199997,90.199997,99.900002,109.800003,119.800003,130.300003,139.899994,149.899994,160,170.600006,179.600006,190.199997,199.5,209.800003,218.899994,230.5,240,250.300003,260,270.5,280.299988,290.5,299.700012,310.200012,319.899994,329.700012,339.700012,349.799988,360,379.600006,399.799988,450.100006,499.799988,549.900024,599.700012,650.299988,700.099976,750,800.299988,850.5,900.400024,950.200012,1000.400024,1050.400024,1100.199951,1150,1199.800049,1250.300049,1299.900024,1350.199951,1400.5,1450.300049,1498.599976,1550.5,1600.300049,1649.800049,1700.199951,1750.199951,1799.800049,1849.900024,1899.199951,1946],[15.346,15.346,15.347,15.341,15.36,15.355,15.359,15.365,15.368,15.369,15.376,15.381,15.394,15.387,15.396,15.397,15.361,15.373,14.909,14.149,13.966,13.755,13.602,13.37,13.1,13.021,12.902,12.778,12.723,12.574,12.442,12.4,12.344,12.231,12.042,11.898,11.697,11.373,11.175,10.413,9.89,9.268,8.724,7.953,6.977,6.278,5.692,5.24,4.966,4.669,4.462,4.211,4.051,3.916,3.738,3.673,3.483,3.354,3.186,3.104,3.037,2.967,2.925,2.9,2.874,2.835,2.814,2.791,2.771,2.755],[35.426811,35.429829,35.42981,35.429817,35.436821,35.436821,35.43581,35.435822,35.439808,35.437824,35.437809,35.439823,35.444801,35.441811,35.443813,35.443813,35.434799,35.433804,35.361866,35.261913,35.237923,35.210945,35.195946,35.169971,35.147991,35.141968,35.140991,35.130993,35.135998,35.122005,35.107018,35.103008,35.099018,35.084049,35.060043,35.039047,35.00708,34.957096,34.928116,34.818172,34.757206,34.699253,34.648289,34.576344,34.486389,34.412441,34.388447,34.377495,34.389473,34.407478,34.418461,34.430458,34.454464,34.479446,34.499439,34.518433,34.539433,34.559425,34.588402,34.603401,34.619396,34.643379,34.66037,34.675354,34.69035,34.709347,34.721344,34.735329,34.748325,34.758331]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_193","geolocation":{"type":"Point","coordinates":[23.472,-42.324]},"basin":3,"timestamp":"2015-05-03T02:30:31.000Z","date_updated_argovis":"2023-01-26T10:44:34.607Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_193.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":193,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.5,20.4,30.1,40,50.5,60.5,69.900002,80.699997,90.599998,99.900002,110.199997,119.800003,130.300003,140,150.399994,160.399994,170.300003,180.199997,190.199997,199.5,209.800003,220.100006,228.800003,240.5,250.199997,260.299988,270.100006,279.799988,290.299988,300.299988,309.799988,319.899994,329.799988,340,350.299988,360.399994,380.399994,400.100006,449.899994,500,550.299988,600.5,650.299988,700.200012,750.200012,799.900024,849.799988,900.299988,950.099976,999.799988,1050.300049,1100.099976,1149.800049,1200.5,1249.599976,1300.199951,1350.099976,1400.199951,1449.699951,1500.5,1550,1600.099976,1650.400024,1700,1750.099976,1800.099976,1849.900024,1900.300049,1947.800049],[16.132,16.132,16.132,16.129,16.135,16.136,16.134001,16.136,16.136999,16.139,16.145,16.148001,16.148001,16.152,16.145,16.069,15.977,14.865,14.542,14.365,14.169,13.996,13.967,13.833,13.648,13.323,13.129,12.928,12.863,12.771,12.723,12.661,12.57,12.403,12.315,12.191,11.965,11.758,11.632,10.842,10.103,9.517,8.698,8.043,7.443,6.664,5.724,5.267,5.048,4.839,4.61,4.274,4.121,3.872,3.744,3.587,3.464,3.375,3.204,3.09,3.043,3.011,2.93,2.882,2.847,2.814,2.787,2.768,2.743,2.725],[35.559887,35.558895,35.560879,35.559887,35.559887,35.558887,35.558887,35.558895,35.559879,35.558861,35.559891,35.559883,35.560902,35.563885,35.561886,35.548878,35.518925,35.36499,35.328018,35.306053,35.278053,35.267067,35.289066,35.278069,35.255074,35.204102,35.181122,35.167118,35.16412,35.154129,35.159126,35.157131,35.143127,35.113174,35.100166,35.080177,35.045212,35.015224,35.007198,34.889286,34.795353,34.740376,34.652428,34.587475,34.528515,34.45356,34.385593,34.376621,34.38562,34.40062,34.410606,34.434624,34.463593,34.480591,34.499577,34.519585,34.540573,34.555573,34.584557,34.608528,34.621536,34.631527,34.655529,34.680511,34.698498,34.718491,34.736485,34.751484,34.760475,34.77047]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_192","geolocation":{"type":"Point","coordinates":[23.928,-42.119]},"basin":3,"timestamp":"2015-04-22T22:22:02.002Z","date_updated_argovis":"2023-01-26T10:44:32.890Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_192.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":192,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.3,20.099998,29.799999,40.200001,49.299999,60.200001,70.100006,80.100006,89.900002,99.900002,110.300003,119.600006,130.199997,139.800003,149.199997,159.699997,170.199997,179.5,190.199997,199.800003,207.800003,219.800003,230.400009,240,250,260.099976,269.899994,279.799988,289.699982,299.899994,310.099976,320,330.199982,339.399994,349.599976,360.099976,380.199982,399.899994,450.299988,499.599976,549.899963,599.299988,649.5,699.899963,749.700012,799.799988,850,900.200012,949.599976,999.299988,1049.900024,1099.800049,1147.900024,1200.400024,1249.800049,1299.900024,1348.200073,1399.900024,1450.200073,1500.100098,1549.900024,1599.700073,1650.200073,1700.400024,1750.100098,1800.100098,1849.700073,1899.200073,1949.800049],[16.267,16.273001,16.285,16.285,16.284,16.288,16.290001,16.294001,16.297001,16.299,16.302,16.299999,16.304001,16.284,15.453,15.118,14.975,14.713,14.562,14.277,14.155,13.884,13.736,13.59,13.49,13.36,13.245,13.136,13.04,12.952,12.844,12.738,12.647,12.48,12.364,12.233,12.145,11.884,11.669,10.882,10.014,9.171,8.38,7.624,6.883,6.2,5.603,5.254,4.972,4.732,4.515,4.287,4.057,3.853,3.745,3.573,3.433,3.318,3.207,3.111,3.031,2.961,2.893,2.852,2.829,2.803,2.784,2.757,2.733,2.721],[35.546116,35.547127,35.546131,35.546143,35.547131,35.547115,35.547123,35.546116,35.546108,35.546116,35.547119,35.547127,35.54015,35.539124,35.433189,35.397228,35.382214,35.350246,35.332249,35.302296,35.30027,35.2603,35.264301,35.256302,35.2453,35.245304,35.23333,35.219326,35.209335,35.199333,35.184349,35.169353,35.157368,35.134373,35.117397,35.097404,35.084419,35.044449,35.019459,34.909504,34.790585,34.693634,34.61969,34.543736,34.474785,34.417831,34.376862,34.37487,34.389858,34.397881,34.42384,34.451836,34.466846,34.478825,34.499821,34.520824,34.542805,34.569805,34.585793,34.604782,34.627785,34.649776,34.667755,34.693745,34.707741,34.723728,34.737743,34.751724,34.764709,34.777702]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_191","geolocation":{"type":"Point","coordinates":[24.518,-41.468]},"basin":3,"timestamp":"2015-04-12T18:27:33.001Z","date_updated_argovis":"2023-01-26T10:44:31.000Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_191.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":191,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.5,20.299999,30.4,40.400002,49.700001,60.400002,70.300003,79.400002,87.900002,100.599998,110.099998,120,130.199997,140,150.399994,160.5,170.100006,180,190.199997,199,210.5,220.199997,229.899994,240.199997,250.199997,259.899994,270,279.799988,290.399994,300.399994,309.799988,319.700012,330.100006,339.799988,350.200012,359.700012,380.100006,399.600006,450.100006,500.5,550.299988,599.900024,650.099976,700.400024,750.200012,800.099976,850.200012,899.900024,949.799988,996.799988,1050.099976,1100.5,1150.099976,1200,1249.900024,1300.099976,1349.900024,1399.699951,1450.199951,1499.699951,1550.099976,1600.099976,1650.199951,1700.300049,1750,1799.800049,1849.699951,1900.099976,1947.699951],[16.983999,16.966999,16.903999,16.745001,16.656,16.664,16.665001,16.663,16.66,16.638,16.207001,15.926,15.221,14.921,14.599,14.413,14.242,13.976,13.778,13.605,13.481,13.33,13.156,13.004,12.816,12.678,12.521,12.344,12.162,12.012,11.882,11.699,11.633,11.519,11.342,11.25,11.089,10.816,10.513,9.941,9.382,8.833,8.237,7.348,6.321,5.816,5.434,5.1,4.824,4.564,4.395,4.144,3.979,3.76,3.63,3.495,3.385,3.283,3.175,3.091,2.981,2.943,2.873,2.856,2.831,2.808,2.788,2.764,2.735,2.708],[35.460232,35.459232,35.460251,35.47123,35.490215,35.496212,35.497219,35.499207,35.498203,35.49622,35.449242,35.444229,35.381279,35.359299,35.319324,35.295341,35.271351,35.242371,35.224384,35.208397,35.192402,35.174412,35.152424,35.135445,35.118443,35.10046,35.080482,35.058483,35.033485,35.012497,34.994503,34.970535,34.963531,34.946548,34.922558,34.909569,34.886581,34.847595,34.808624,34.747646,34.701691,34.65271,34.602768,34.520809,34.424866,34.393883,34.373901,34.385902,34.399906,34.402897,34.427891,34.442898,34.476871,34.482876,34.510864,34.523861,34.55085,34.571846,34.592834,34.609821,34.634808,34.653805,34.680805,34.693783,34.704788,34.721771,34.731773,34.746765,34.763767,34.77475]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_190","geolocation":{"type":"Point","coordinates":[25.199,-41.978]},"basin":3,"timestamp":"2015-04-02T14:27:27.001Z","date_updated_argovis":"2023-01-26T10:44:29.205Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_190.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":190,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.7,20.299999,29.9,39.5,49.899998,60.200001,70.300003,80,90.300003,99.400002,110.200005,119.900002,130.199997,139.600006,149.800003,159.699997,169.699997,180,189.699997,200.100006,209.600006,220.199997,229.600006,240.100006,248,259.899994,269.799988,280.099976,290.199982,299.299988,310.199982,319.599976,329.299988,339.5,349.699982,359.899994,379.899994,399.399994,449.899994,500.199982,550.200012,599.399963,650.200012,699.700012,749.799988,799.399963,850.200012,899.399963,949.299988,999.700012,1049.600098,1099.700073,1149.5,1200.300049,1250.200073,1300.200073,1350.200073,1399.900024,1450.100098,1498.200073,1549.800049,1599.700073,1649.900024,1699.800049,1750,1799.600098,1850.100098,1899.300049,1948.700073],[17.069,17.070999,17.07,17.066,17.059,17.055,16.981001,16.993999,16.830999,16.712999,15.596,15.145,14.819,14.574,14.299,14.045,13.687,13.461,13.294,13.095,12.911,12.736,12.559,12.408,12.242,12.107,11.936,11.772,11.674,11.544,11.397,11.28,11.19,11.078,10.961,10.779,10.584,10.245,10.085,9.477,8.942,8.155,7.521,6.736,6.151,5.671,5.128,4.88,4.64,4.379,4.139,3.939,3.837,3.711,3.619,3.454,3.32,3.23,3.165,3.072,3.026,2.94,2.883,2.848,2.822,2.804,2.787,2.77,2.752,2.738],[35.479458,35.481453,35.479439,35.47744,35.476452,35.474442,35.462452,35.463451,35.437466,35.417473,35.29055,35.299557,35.325546,35.308563,35.28059,35.248608,35.207623,35.179638,35.162651,35.141674,35.122677,35.106686,35.085693,35.065727,35.044727,35.028725,35.007744,34.98875,34.975765,34.955769,34.932785,34.917786,34.903809,34.891808,34.87582,34.851826,34.823872,34.77388,34.762882,34.705925,34.658951,34.591011,34.541023,34.472069,34.430103,34.404137,34.377155,34.401134,34.40514,34.41814,34.436153,34.456123,34.49012,34.509117,34.536098,34.549099,34.567093,34.594082,34.609077,34.623062,34.640064,34.657051,34.672054,34.693039,34.718021,34.730015,34.741016,34.752014,34.77,34.778999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_189","geolocation":{"type":"Point","coordinates":[24.15,-42.432]},"basin":3,"timestamp":"2015-03-23T10:36:42.001Z","date_updated_argovis":"2023-01-26T10:44:27.489Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_189.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":189,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.2,20.199999,29.799999,40.200001,50,59.5,68.900002,80.5,90.099998,100.099998,110.099998,120.099998,130.299988,140,149.599991,160.299988,170.199997,179.599991,189.699997,199.899994,210.299988,220.5,230.299988,239.899994,249.799988,260.199982,270.399994,280.299988,289.699982,299.699982,309.699982,320,329.799988,340.299988,350.100006,359.699982,379.799988,399.699982,450.299988,499.899994,550.100037,599.600037,648.900024,700.5,749.600037,800.200012,850,900.300049,949.800049,1000.100037,1050.099976,1099.700073,1149.900024,1200,1249.599976,1299.700073,1350.400024,1400.099976,1450,1500.300049,1550.200073,1600.099976,1650,1700.300049,1750.400024,1799.800049,1850.099976,1900.099976,1948.300049],[16.636,16.636,16.636999,16.638,16.639,16.613001,16.608,16.597,16.542999,14.963,14.586,14.18,13.934,13.771,13.479,13.36,13.188,13.032,12.909,12.752,12.647,12.417,12.29,12.198,12.084,11.935,11.816,11.658,11.472,11.316,11.165,11.023,10.872,10.734,10.579,10.5,10.323,10.075,9.805,9.152,8.587,8.043,7.137,6.393,5.79,5.368,5.097,4.731,4.632,4.11,4.051,3.719,3.68,3.638,3.525,3.453,3.252,3.102,3.036,2.989,2.941,2.901,2.869,2.849,2.811,2.777,2.756,2.74,2.729,2.719],[35.441574,35.44059,35.440575,35.440594,35.440601,35.437576,35.437569,35.433575,35.4216,35.305656,35.291691,35.246719,35.221714,35.202713,35.166748,35.15976,35.138783,35.121796,35.107792,35.087795,35.074806,35.04781,35.040821,35.031822,35.020836,35.001846,34.98587,34.965858,34.94088,34.919899,34.898907,34.879925,34.858929,34.838947,34.818962,34.809956,34.787964,34.761997,34.736996,34.686035,34.633068,34.5821,34.497169,34.435196,34.39624,34.378246,34.403236,34.395248,34.426231,34.399269,34.446228,34.440228,34.472225,34.514194,34.536186,34.560188,34.571186,34.590183,34.609169,34.631165,34.65316,34.673145,34.688133,34.700134,34.720104,34.741112,34.752102,34.762096,34.775089,34.7841]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_188","geolocation":{"type":"Point","coordinates":[23.808,-41.691]},"basin":3,"timestamp":"2015-03-13T06:31:00.000Z","date_updated_argovis":"2023-01-26T10:44:25.680Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_188.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":188,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.8,19.300001,30,40,49.699997,59.899998,69.5,78.5,89.599998,99.900002,109.799995,119.699997,129.400009,139.800003,149.800003,159.600006,169.200012,179.700012,190,197.900009,210.200012,219.600006,229.800003,239.700012,250,259.600006,269.5,279.899994,289.300018,299.600006,309.399994,320.100006,330,340.100006,350.100006,360,379.899994,399.300018,449.899994,499.800018,549.399963,599.599976,649.799988,699.899963,749.5,799.899963,849.5,899.799988,949.799988,1000.299988,1049.5,1099.5,1149.900024,1199.699951,1249.5,1299.599976,1349.799927,1399.699951,1449.5,1499.699951,1549.599976,1599.199951,1649.900024,1700,1749.699951,1799.599976,1849.099976,1899.099976,1946.299927],[16.905001,16.907,16.907,16.908001,16.91,16.906,16.896,16.872999,16.655001,15.273,15.046,14.719,14.521,14.273,13.991,13.723,13.432,13.252,12.981,12.76,12.645,12.469,12.279,12.123,11.976,11.889,11.812,11.749,11.582,11.465,11.242,11.104,11.007,10.837,10.687,10.538,10.411,10.209,9.985,9.634,8.889,8.133,7.341,6.517,5.786,5.263,5.105,4.944,4.673,4.417,4.011,4.043,3.827,3.656,3.519,3.432,3.315,3.163,3.162,3.07,2.97,2.942,2.911,2.857,2.818,2.791,2.773,2.749,2.726,2.709],[35.46183,35.460857,35.461838,35.460835,35.459831,35.458843,35.459827,35.456837,35.437843,35.354912,35.36491,35.32793,35.310955,35.283958,35.246975,35.212002,35.178028,35.165031,35.123055,35.099056,35.086082,35.070084,35.047096,35.028095,35.008118,35.002125,34.996117,34.990131,34.969166,34.947163,34.907181,34.887188,34.874207,34.853214,34.832222,34.811245,34.793251,34.775261,34.757282,34.74329,34.654339,34.586376,34.522419,34.447475,34.388523,34.367542,34.387531,34.413525,34.423515,34.420532,34.413548,34.457527,34.473518,34.497517,34.522499,34.540485,34.566479,34.58448,34.609474,34.628445,34.636448,34.661438,34.676426,34.695423,34.7174,34.730423,34.742405,34.757401,34.767376,34.776371]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_187","geolocation":{"type":"Point","coordinates":[24.611,-41.009]},"basin":3,"timestamp":"2015-03-03T02:27:11.000Z","date_updated_argovis":"2023-01-26T10:44:23.891Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_187.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":187,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.5,10.1,19.5,30.1,40,49.299999,59.899998,69.599998,79.199997,89.799995,99.799995,109.799995,120.199997,129.700012,139.900009,150,160.100006,170,180,189.200012,199.900009,209.300003,219.300003,229.400009,240.200012,249.800003,260,270.100006,280.100006,289.800018,300,310.100006,320.100006,330,340.100006,349.399994,359.200012,380.100006,399.600006,449.700012,499.800018,549.299988,599.399963,650.199951,699.399963,749.099976,799.599976,849.699951,899.799988,949.599976,999.599976,1049.5,1100.199951,1149.599976,1199.599976,1249.900024,1299.099976,1350.099976,1399.5,1449.799927,1500.099976,1550.099976,1599.5,1649.799927,1699.699951,1749.799927,1800,1849.699951,1899,1949.199951],[16.809,16.815001,16.798,16.771,16.767,16.757,16.764,16.74,16.531,15.981,14.878,14.673,14.193,13.923,13.512,13.397,13.275,12.907,12.719,12.542,12.345,12.244,12.116,11.908,11.74,11.62,11.57,11.434,11.242,10.927,10.687,10.527,10.41,10.35,10.162,9.996,9.914,9.717,9.553,9.169,8.264,7.734,7.123,6.35,5.633,5.373,5.27,4.85,4.138,4.01,3.883,3.951,3.795,3.65,3.48,3.304,3.21,3.132,3.041,2.968,2.926,2.886,2.86,2.833,2.814,2.796,2.769,2.745,2.723,2.692],[35.433014,35.431999,35.430008,35.42701,35.428017,35.426014,35.42701,35.421009,35.389015,35.312061,null,35.286098,35.230125,35.212139,35.152191,35.151176,35.147194,35.083221,35.063225,35.044254,35.030266,35.025272,35.022259,34.99828,34.979294,34.966293,34.969296,34.951309,34.918327,34.863361,34.819378,34.793404,34.777416,34.7714,34.746422,34.726433,34.722435,34.705452,34.70546,34.682476,34.599533,34.557552,34.501587,34.430649,34.376671,34.388668,34.416653,34.409679,34.35371,34.380699,34.404682,34.458664,34.48666,34.510632,34.540627,34.556618,34.581623,34.599617,34.618607,34.638603,34.657593,34.675587,34.688576,34.705574,34.720558,34.733555,34.746548,34.759541,34.766529,34.775517]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_186","geolocation":{"type":"Point","coordinates":[25.696,-40.951]},"basin":3,"timestamp":"2015-02-20T22:29:53.002Z","date_updated_argovis":"2023-01-26T10:44:22.096Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_186.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":186,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9,20.4,30.199999,40.300003,50.300003,60.100002,70.200005,80.200005,89.900002,99.800003,109.900002,119.599998,129.799988,139.699997,150.099991,160.299988,169.5,179.599991,189.899994,200,209.899994,220,229.699997,239.599991,250.299988,260,270.299988,280.299988,290.100006,300,310.299988,319.899994,330.100006,340.299988,349.699982,359.5,379.899994,399.799988,450.199982,499.899994,549.600037,599.800049,650.400024,700,750.300049,799.400024,850,899.700012,949.800049,1000.100037,1050.099976,1099.900024,1149.900024,1200.300049,1249.800049,1300.099976,1350.300049,1400.200073,1450.200073,1500.400024,1549.700073,1600,1649.700073,1700.300049,1750.300049,1800.099976,1849.800049,1899.599976,1948.800049],[17.566,17.573,17.57,17.577999,17.572001,17.566,16.987,15.415,14.871,14.421,14.49,14.307,14.031,13.82,13.747,13.714,13.474,13.229,13.016,12.825,12.681,12.652,12.298,11.972,11.757,11.657,11.469,11.252,11.085,10.912,10.798,10.763,10.644,10.495,10.301,10.151,10.098,9.865,9.596,9.098,8.447,7.875,6.701,6.114,5.516,5.306,4.99,4.713,4.602,4.262,4.062,3.86,3.561,3.628,3.541,3.378,3.253,3.155,3.077,3.01,2.956,2.889,2.858,2.839,2.803,2.784,2.767,2.751,2.729,2.706],[35.468018,35.467022,35.467999,35.468002,35.467003,35.46302,35.387054,35.252121,35.178158,35.131199,35.234142,35.264133,35.238159,35.218178,35.221176,35.228161,35.188171,35.160183,35.138203,35.112221,35.102226,35.114243,35.055248,35.001293,34.965302,34.956333,34.926327,34.896351,34.870358,34.846375,34.829388,34.832397,34.819401,34.799416,34.771423,34.751427,34.747437,34.728443,34.703468,34.676487,34.624519,34.567554,34.445618,34.413651,34.367683,34.389671,34.388676,34.39967,34.428658,34.425678,34.443661,34.464653,34.461674,34.512634,34.544628,34.562622,34.579609,34.597614,34.622608,34.632591,34.651592,34.67157,34.690567,34.707546,34.723564,34.738564,34.750542,34.764519,34.77354,34.782532]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_185","geolocation":{"type":"Point","coordinates":[26.424,-41.417]},"basin":3,"timestamp":"2015-02-10T18:33:32.001Z","date_updated_argovis":"2023-01-26T10:44:20.295Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_185.nc","date_updated":"2020-11-12T10:21:07.000Z"}],"cycle_number":185,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,19.699999,29.9,40,49.600002,60.200001,70.300003,80.400002,90.300003,100,109.900002,120.400002,130.199997,140.399994,149.799988,160.399994,169.699997,179.699997,189.899994,200.399994,210.099991,219.899994,230.199997,240.5,250.099991,259.899994,270.299988,280.100006,289.799988,300.399994,309.699982,319.799988,329.899994,339.799988,349.799988,360.199982,380.199982,399.699982,449.399994,499.899994,550,600,650.300049,700.200012,749.700012,799.5,850.100037,899.900024,950.300049,998,1049.800049,1100.099976,1149.400024,1200.300049,1250.400024,1299.599976,1349.900024,1400.300049,1449.700073,1500.400024,1549.800049,1599.700073,1650.300049,1699.900024,1750.300049,1800.200073,1849.5,1899.400024,1949.599976],[17.613001,17.612,17.608999,17.589001,17.424999,17.386999,17.049999,16.749001,16.035999,15.229,14.814,14.617,14.195,14.005,13.876,13.779,13.621,13.48,13.285,13.053,12.876,12.713,12.526,12.496,12.275,12.088,11.958,11.771,11.489,11.307,11.197,11.083,10.939,10.72,10.591,10.561,10.442,10.412,10.219,9.471,8.837,8.195,7.536,6.806,6.008,5.697,5.131,4.959,4.71,4.462,4.127,4.082,3.858,3.777,3.635,3.47,3.361,3.12,3.129,3.047,2.976,2.917,2.88,2.849,2.822,2.814,2.794,2.765,2.744,2.719],[35.47216,35.47316,35.473152,35.474163,35.488148,35.491131,35.442192,35.434177,35.417194,35.351257,35.325264,35.308266,35.260281,35.239307,35.232327,35.226318,35.217319,35.204334,35.180347,35.147358,35.124363,35.108364,35.0844,35.090385,35.056416,35.026424,35.008442,34.977451,34.939472,34.915482,34.906487,34.8885,34.862522,34.826538,34.811539,34.821533,34.810539,34.827545,34.802559,34.7136,34.65564,34.596676,34.534725,34.473751,34.3988,34.399799,34.362831,34.390816,34.399826,34.417812,34.412823,34.457806,34.465797,34.490788,34.521774,34.534775,34.562767,34.557766,34.59375,34.619732,34.644733,34.662731,34.679718,34.696712,34.712704,34.724697,34.739697,34.759693,34.770664,34.782661]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_184","geolocation":{"type":"Point","coordinates":[26.207,-41.886]},"basin":3,"timestamp":"2015-01-31T14:38:06.001Z","date_updated_argovis":"2023-01-26T10:44:18.493Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_184.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":184,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.299999,20,30.4,39.900002,50,59.900002,70.400002,80.700005,90.300003,100,110.5,120.200005,129.899994,140.099991,149.699997,159.899994,169.799988,179.899994,189.5,199.799988,210.399994,220.299988,229.899994,240.399994,250.199997,260.299988,270.199982,280.199982,290.299988,299.899994,310,320.299988,330.100006,339.799988,350.299988,360,380.399994,399.899994,450,500.199982,550,600.300049,647.900024,699.800049,750.100037,799.800049,850.5,899.400024,949.700012,996.300049,1050.300049,1100.200073,1150.099976,1200.300049,1249.800049,1299.800049,1349.900024,1400.200073,1450.400024,1498.700073,1549.800049,1599.599976,1650,1699.900024,1749.599976,1800,1850.300049,1899.400024,1948.099976],[17.879999,17.879999,17.858999,17.823,17.726999,17.385,17.041,17.011999,16.636999,16.049999,15.243,15.028,14.555,14.296,13.902,13.548,13.236,13.137,12.979,13.032,12.876,12.686,12.576,12.386,12.143,11.892,11.863,11.873,11.786,11.63,11.582,11.421,11.28,11.036,10.875,10.593,10.466,10.23,10.043,9.473,8.993,8.252,7.444,6.855,5.978,4.955,4.885,4.863,4.703,4.607,4.276,4.042,3.882,3.679,3.57,3.399,3.301,3.247,3.138,3.049,2.982,2.919,2.889,2.845,2.817,2.807,2.788,2.768,2.744,2.725],[35.459309,35.460312,35.460316,35.462311,35.462315,35.460327,35.465313,35.470291,35.418327,35.311401,35.319416,35.322411,35.285431,35.266453,35.218472,35.168488,35.124512,35.121532,35.117531,35.149525,35.130508,35.108528,35.099548,35.072563,35.03056,34.990585,34.993584,35.019592,35.00758,34.986607,34.977604,34.95261,34.932621,34.88765,34.863667,34.821678,34.805698,34.779709,34.766724,34.706749,34.673775,34.605816,34.529865,34.481895,34.402931,34.296005,34.343987,34.393963,34.426964,34.456928,34.430946,34.446953,34.462955,34.486942,34.507927,34.532906,34.560902,34.583897,34.603886,34.621891,34.640877,34.660881,34.678856,34.696861,34.712852,34.723846,34.737843,34.751831,34.764816,34.774822]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_183","geolocation":{"type":"Point","coordinates":[24.923,-42.37]},"basin":3,"timestamp":"2015-01-21T10:30:32.001Z","date_updated_argovis":"2023-01-26T10:44:16.611Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_183.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":183,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.1,20.200001,29.6,39.5,49.699997,60.099998,69.900002,80,89.799995,99.799995,110,120.099998,129.5,139.400009,149.300003,159.400009,169.200012,179.700012,189.200012,200,209.700012,219.700012,229.300003,240,249.900009,259.5,269.899994,279.600006,290,300.200012,309.5,319.700012,329.5,339.399994,349.600006,359.899994,379.800018,399.800018,449.5,499.300018,549.5,599.899963,646.899963,699.699951,749.599976,799.399963,850,899.399963,949.199951,996.599976,1050.199951,1099.400024,1149.900024,1199.799927,1250.099976,1299.799927,1349.900024,1399.900024,1448.299927,1499.599976,1549.5,1600,1650,1700,1749.799927,1799.900024,1849.900024,1899.799927,1949.699951],[17.236,17.221001,17.212,17.202,17.197001,17.197001,17.176001,16.663,15.271,14.715,14.442,13.964,13.658,13.503,13.175,13.03,12.738,12.588,12.459,12.372,12.177,12.01,11.954,11.778,11.626,11.469,11.24,11.234,11.099,10.989,10.878,10.712,10.507,10.475,10.353,10.26,10.126,9.986,9.728,9.065,8.409,7.814,7.004,6.171,5.109,5.277,4.966,4.934,4.332,4.176,3.956,3.9,3.698,3.586,3.408,3.343,3.228,3.151,3.058,2.992,2.931,2.909,2.857,2.823,2.81,2.784,2.769,2.749,2.722,2.702],[35.457577,35.457577,35.457561,35.457584,35.457573,35.4576,35.453583,35.410618,35.334652,35.303688,35.27071,35.213737,35.187744,35.180756,35.132778,35.122803,35.079826,35.063843,35.058838,35.046833,35.023857,35.012848,35.01086,34.989868,34.968884,34.946899,34.913918,34.912914,34.892925,34.878933,34.860931,34.83696,34.805969,34.807972,34.790993,34.784985,34.773006,34.763004,34.742008,34.684063,34.616093,34.59412,34.505165,34.432213,34.307285,34.397251,34.396255,34.445217,34.394257,34.42226,34.42926,34.462246,34.486229,34.51622,34.531212,34.561207,34.584198,34.608189,34.630173,34.643181,34.655163,34.672153,34.690166,34.709145,34.724133,34.743122,34.754112,34.76712,34.780117,34.788105]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_182","geolocation":{"type":"Point","coordinates":[23.736,-42.269]},"basin":3,"timestamp":"2015-01-11T06:32:19.000Z","date_updated_argovis":"2023-01-26T10:44:14.680Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_182.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":182,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.6,20.4,30.1,40.5,50.299999,60.299999,70.199997,80.300003,90.199997,100,110.199997,120.300003,130,140.300003,150.5,159.600006,170.100006,180.300003,189.600006,199.800003,210.300003,220.199997,228.199997,240.199997,250.300003,260.399994,270.200012,280,290.299988,299.899994,309.899994,320.299988,330,340.200012,350.299988,359.600006,379.700012,400.100006,450.299988,499.899994,550.200012,600.299988,650.200012,700.5,750,798.099976,850.5,900.299988,950.200012,1000.400024,1050,1100.099976,1150.199951,1199.900024,1249.699951,1299.900024,1349.900024,1400.400024,1449.5,1500,1550.5,1600.400024,1650.199951,1699.900024,1749.800049,1800.199951,1850,1899.400024],[16.485001,16.486,16.48,16.474001,16.466999,16.408001,14.405,13.567,12.937,12.507,11.944,11.695,11.687,11.474,11.279,11.225,11.342,10.847,10.735,10.648,10.46,10.294,10.202,10.127,10.096,10.127,9.949,9.626,9.59,9.434,9.276,9.17,9.23,9.069,8.983,8.928,8.834,8.589,8.399,7.785,7.198,6.485,5.832,5.462,5.543,4.906,4.75,4.088,3.809,3.938,3.788,3.593,3.504,3.336,3.218,3.174,3.108,3.015,2.94,2.887,2.844,2.824,2.805,2.781,2.735,2.729,2.718,2.698,2.685],[35.258682,35.258701,35.257683,35.256687,35.254688,35.2397,35.166744,35.131756,35.073784,35.02282,34.940872,34.914871,34.926876,34.897888,34.869896,34.868916,null,34.824944,34.813938,34.802933,34.771965,34.751949,34.741962,34.740978,34.742966,34.755981,34.734985,34.682003,34.68401,34.669014,34.645039,34.632042,34.659027,34.63604,34.629036,34.640041,34.632042,34.620041,34.602051,34.529083,34.500126,34.451157,34.402187,34.412197,34.47414,34.428177,34.443192,34.395214,34.394218,34.457188,34.480164,34.496181,34.53817,34.553146,34.564156,34.58514,34.610134,34.632118,34.655106,34.67411,34.692097,34.714073,34.730072,34.746075,34.758064,34.765064,34.774071,34.779045,34.789059]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_181","geolocation":{"type":"Point","coordinates":[24.028,-41.73]},"basin":3,"timestamp":"2015-01-01T02:35:01.000Z","date_updated_argovis":"2023-01-26T10:44:12.783Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_181.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":181,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.9,10.8,20.299999,29.9,40.200001,50.299999,59.599998,70.300003,80.300003,90.300003,100.5,110.5,120.099998,129.899994,140.199997,149.899994,159.699997,169.699997,180.199997,189.800003,200.300003,209.899994,220.399994,230.199997,240.399994,249.699997,260,270.200012,280,290,300.399994,310.299988,320.399994,330.399994,340.100006,350.200012,360.399994,379.899994,400,450.100006,500.5,550.400024,600,650.099976,700.400024,749.799988,799.599976,850.200012,900.400024,949.599976,1000,1050.400024,1100.300049,1150.5,1200.400024,1250,1300,1349.900024,1399.800049,1450.099976,1499.900024,1550,1599.800049,1650.5,1699.800049,1750.300049,1800.099976,1849.800049,1900,1950.099976],[17.298,17.032,15.347,15.109,15.329,14.89,14.236,13.954,13.564,12.997,12.448,12.443,12.367,12.457,12.432,12.188,11.525,11.133,10.794,10.571,10.197,10.066,9.937,10.073,10.113,9.784,9.636,9.749,9.847,9.605,9.399,9.327,9.339,9.441,9.405,9.381,9.284,9.096,8.859,7.704,7.158,6.415,5.726,6.172,5.52,5.095,4.284,4.235,3.723,3.957,3.803,3.656,3.494,3.386,3.29,3.193,3.062,3.022,2.984,2.91,2.879,2.859,2.836,2.812,2.803,2.783,2.762,2.754,2.741,2.704],[35.263813,35.214855,35.050945,35.025944,35.111893,35.102921,35.182899,35.186897,35.12392,35.026962,34.940006,34.976986,34.991978,35.031967,35.064957,35.024979,34.880047,34.827072,34.777107,34.740124,34.675148,34.655163,34.639168,34.682148,34.697144,34.654163,34.628181,34.669163,34.698135,34.662163,34.641174,34.635166,34.645176,34.675152,34.682152,34.693172,34.694153,34.682163,34.659168,34.536236,34.504261,34.444302,34.377331,34.516277,34.474297,34.458313,34.376362,34.413342,34.379372,34.455338,34.481323,34.498306,34.519295,34.548298,34.564301,34.586281,34.603275,34.625267,34.637264,34.654259,34.67025,34.696239,34.711224,34.727234,34.736206,34.753212,34.769211,34.777199,34.785202,34.795197]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_180","geolocation":{"type":"Point","coordinates":[24.673,-41.133]},"basin":3,"timestamp":"2014-12-21T22:35:51.002Z","date_updated_argovis":"2023-01-26T10:44:10.975Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_180.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":180,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.4,19.199999,30.1,40.600002,49.800003,60,70.400002,80.300003,90.099998,99.800003,109.800003,120.200005,130.099991,140.199997,149.699997,160.299988,169.799988,179.799988,190.299988,199.899994,209.699997,220,229.799988,240.299988,250.299988,260,269.899994,280.199982,290.399994,299.799988,309.899994,320.399994,329.600006,339.5,349.600006,360,380.299988,399.600006,449.699982,500.399994,550.100037,600,649.400024,699.900024,750.400024,799.700012,850.200012,900.400024,950.400024,999.600037,1049.800049,1100.200073,1150.400024,1199.800049,1249.800049,1300,1349.900024,1399.800049,1449.800049,1500.099976,1550.200073,1599.700073,1650.400024,1699.800049,1750.400024,1800.300049,1849.5,1899.900024,1949.200073],[15.838,15.841,15.85,15.852,15.848,14.991,14.478,13.558,12.921,12.505,12.512,12.188,11.887,11.694,11.557,11.499,11.446,11.286,11.261,10.951,10.83,10.71,10.492,9.965,9.491,9.426,9.471,9.382,9.18,9.502,9.655,9.665,9.603,9.449,9.242,9.089,8.873,8.995,8.675,8.178,7.022,5.928,5.234,5.88,5.548,5.282,5.04,3.76,3.628,3.875,3.739,3.598,3.399,3.268,3.174,3.082,3.03,3.006,2.967,2.897,2.846,2.828,2.824,2.803,2.786,2.762,2.738,2.727,2.715,2.692],[35.181057,35.180042,35.180042,35.180042,35.175049,35.149075,35.124092,35.047131,34.989155,34.944191,34.977173,34.922203,34.877243,34.856232,34.867233,34.878242,34.890244,34.878242,34.883236,34.835251,34.819263,34.806263,34.768311,34.669346,34.586395,34.577385,34.595394,34.585392,34.554401,34.635376,34.673355,34.698338,34.694359,34.673363,34.640366,34.608391,34.581402,34.632381,34.608398,34.603401,34.492477,34.381538,34.304565,34.475502,34.477509,34.487495,34.506489,34.355568,34.396553,34.467522,34.48851,34.5135,34.538502,34.552494,34.570503,34.591469,34.607479,34.628468,34.648445,34.665447,34.68644,34.707428,34.714432,34.733418,34.745415,34.758411,34.772388,34.780396,34.784386,34.794388]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_179","geolocation":{"type":"Point","coordinates":[22.048,-40.436]},"basin":3,"timestamp":"2014-12-11T18:37:37.001Z","date_updated_argovis":"2023-01-26T10:44:09.193Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_179.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":179,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.8,10.7,20.4,30.4,40.099998,50.099998,60.299999,70.400002,80.400002,90.199997,100.400002,110.099998,119.800003,130.300003,140.399994,149.699997,160.199997,170.100006,180.5,190.300003,200,209.600006,220.399994,229.600006,239.699997,250.399994,260.399994,269.899994,280.600006,289.899994,300.399994,310.5,320.100006,330,340.399994,350.200012,360,380.5,400.399994,450.299988,500.200012,550.200012,600.099976,649.799988,700.400024,750.599976,800,850.099976,899.900024,949.900024,999.099976,1050.400024,1099.599976,1150.400024,1199.599976,1250.5,1300.400024,1349.900024,1400.5,1450.300049,1498.800049,1550.300049,1599.800049,1649.900024,1700.5,1749.900024,1800,1849.699951,1900,1949.599976],[18.181999,18.181999,16.653999,16.308001,16.153,15.94,15.466,14.85,14.357,12.996,12.559,12.661,12.74,12.91,13.154,13.089,13.069,12.625,11.856,11.73,11.593,11.465,11.398,11.207,11.042,10.81,10.693,10.591,10.378,10.235,10.105,10.011,9.776,9.717,9.64,9.619,9.398,9.308,9.2,8.311,7.987,7.047,6.165,5.574,4.699,4.436,4.486,4.447,3.98,4.19,4.023,3.834,3.705,3.596,3.401,3.348,3.266,3.165,3.038,2.975,2.9,2.866,2.84,2.832,2.801,2.788,2.767,2.743,2.723,2.697],[35.271103,35.406044,35.48502,35.486019,35.503025,35.509026,35.495022,35.402084,35.289124,35.053242,34.979275,35.030262,35.072243,35.135208,35.216171,35.201183,35.1922,35.09523,34.94231,34.922325,34.90633,34.899323,34.901329,34.878349,34.854343,34.820366,34.804371,34.78838,34.757401,34.736427,34.717422,34.708435,34.676441,34.684444,34.677448,34.67646,34.642467,34.647476,34.657463,34.538521,34.559517,34.461575,34.36462,34.320656,34.247707,34.265697,34.328663,34.363644,34.338665,34.432613,34.449615,34.465607,34.499596,34.521599,34.53558,34.568581,34.591568,34.615559,34.636547,34.653545,34.676533,34.692539,34.710526,34.718529,34.740509,34.751503,34.761513,34.774502,34.784492,34.794476]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_178","geolocation":{"type":"Point","coordinates":[21.839,-41.342]},"basin":3,"timestamp":"2014-12-01T14:33:47.001Z","date_updated_argovis":"2023-01-26T10:44:07.480Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_178.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":178,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.8,9.4,20,30.299999,39.700001,49.600002,58.900002,70.300003,80,90.200005,100.099998,109.900002,120.200005,130.399994,140.099991,149.699997,159.799988,170.299988,180.099991,190.099991,200.299988,209.599991,220,229.699997,239.399994,250.199997,260.199982,269.699982,279.899994,289.199982,300.100006,310.299988,320.299988,329.799988,340.199982,350.299988,360.399994,379.5,399.899994,450.100006,500.100006,549.900024,599.700012,650.5,699.800049,749.5,800.200012,850.200012,900,949.800049,1000.100037,1050.099976,1099.800049,1147.099976,1199.700073,1250.200073,1299.400024,1349.400024,1399.599976,1449.900024,1500,1550.200073,1599.599976,1650.400024,1700.099976,1750.099976,1800,1849.5,1899.599976,1949.300049],[16.308001,16.302999,15.575,15.008,14.822,14.813,14.667,14.533,13.775,13.321,12.687,12.469,11.973,11.714,11.477,11.339,11.11,11.023,10.841,10.542,10.326,10.115,9.981,9.836,9.605,9.491,9.434,9.404,9.308,9.264,9.206,9.265,9.33,9.262,9.149,8.987,8.78,8.545,8.39,7.496,6.741,5.938,5.536,5.135,4.803,4.456,4.261,4.091,4.003,3.851,3.685,3.536,3.394,3.307,3.169,3.124,3.04,2.948,2.876,2.851,2.824,2.814,2.797,2.777,2.759,2.748,2.734,2.717,2.682,2.67],[35.310303,35.309315,35.304291,35.313293,35.326298,35.3283,35.331284,35.309326,35.21138,35.151386,35.074444,35.046444,34.984482,34.952492,34.92252,34.901516,34.870525,34.857544,34.830551,34.782593,34.748604,34.716625,34.695625,34.672642,34.640656,34.62466,34.61367,34.609676,34.599682,34.605675,34.613667,34.637665,34.674641,34.687645,34.677647,34.658649,34.641659,34.627659,34.614685,34.52874,34.484768,34.40181,34.396812,34.404823,34.392826,34.386841,34.404827,34.427814,34.458809,34.481796,34.501789,34.525787,34.551781,34.565781,34.584763,34.597752,34.622746,34.645741,34.670731,34.685719,34.700722,34.723709,34.733707,34.741714,34.75671,34.769699,34.783691,34.789692,34.802677,34.804691]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_177","geolocation":{"type":"Point","coordinates":[21.971,-38.918]},"basin":3,"timestamp":"2014-11-21T10:26:13.001Z","date_updated_argovis":"2023-01-26T10:44:05.687Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_177.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":177,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.799999,19.799999,29.6,39.600002,49.100002,60.200001,70.400002,79.900002,90.5,100.200005,110.300003,120.5,129.899994,140,150.199997,160.199997,170,180.199997,190.099991,199.699997,209.699997,220.199997,229.5,239.599991,249.799988,259.399994,270.100006,279.5,290.199982,300.199982,310,320.399994,329.899994,339.899994,350.399994,359.799988,379.899994,400,450.100006,500.299988,550.300049,600.400024,649.700012,700.100037,749.600037,799.900024,850.300049,900,949.700012,999.700012,1050,1100.200073,1149.700073,1200.200073,1250.400024,1300.400024,1350.200073,1399.800049,1449.599976,1499.700073,1549.900024,1600.400024,1649.5,1699.5,1749.800049,1800.400024,1849.900024,1899.5,1950.099976],[14.938,14.878,14.853,14.839,14.778,14.692,14.423,14.203,13.663,13.259,13.131,13.091,13.147,13.096,13.035,13.122,13.606,12.473,12.286,12.325,12.925,12.851,12.695,12.642,12.538,12.302,12.083,12.023,11.542,11.213,10.751,10.976,11.104,10.574,10.229,10.108,10.08,10.061,9.844,9.802,9.371,8.244,7.762,6.979,6.345,5.446,4.506,4.379,4.587,4.069,4.048,3.898,3.852,3.724,3.612,3.589,3.441,3.279,3.233,3.177,3.083,3,2.937,2.899,2.886,2.844,2.826,2.814,2.801,2.782],[35.307449,35.308453,35.309437,35.309456,35.302452,35.30846,35.253498,35.198532,35.07856,34.987614,34.956619,34.955624,34.97163,34.965618,34.957638,34.997608,35.159534,34.937649,34.927639,34.959621,35.150543,35.146534,35.12455,35.117573,35.106586,35.066593,35.021622,35.00761,34.910656,34.832699,34.763729,34.82671,34.874672,34.767731,34.711769,34.696774,34.697773,34.721764,34.68478,34.728767,34.713764,34.585842,34.548862,34.463917,34.422924,34.318996,34.236042,34.253036,34.325005,34.303013,34.342999,34.360001,34.39999,34.424973,34.450958,34.495937,34.525921,34.546928,34.575912,34.594917,34.616898,34.641884,34.663895,34.686874,34.696869,34.724854,34.73785,34.750847,34.762852,34.780842]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_176","geolocation":{"type":"Point","coordinates":[20.945,-40.855]},"basin":3,"timestamp":"2014-11-11T06:33:36.000Z","date_updated_argovis":"2023-01-26T10:44:03.894Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_176.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":176,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.1,20,30.099998,39.799999,49.299999,60.200001,68.400002,80,89.900002,99.800003,110.100006,120,130.199997,140.100006,150.300003,159.900009,169.699997,179.800003,190,199.400009,209.5,219.699997,229.300003,239.400009,249.5,259.5,269.699982,279.199982,290,297.299988,310.299988,320.099976,329.699982,340.199982,350,360.199982,380,400.099976,449.5,500.299988,549.899963,599.5,648.099976,700.299988,750.299988,800.099976,849.399963,899.799988,949.700012,999.899963,1050.200073,1099.900024,1149.600098,1199.5,1250.400024,1299.700073,1349.700073,1400,1450.100098,1499.400024,1550.200073,1599.700073,1650.100098,1700.200073,1749.800049,1799.900024,1849.800049,1899.5,1949.200073],[15.814,15.79,15.757,14.241,13.118,12.56,12.294,11.574,11.304,11.343,10.603,10.377,10.848,10.824,10.551,10.56,10.525,10.472,10.395,10.173,10.041,9.927,9.818,9.663,9.143,8.987,8.795,8.568,8.437,8.493,8.384,8.079,8.104,8.154,8.237,8.259,8.261,8.1,7.764,7.02,6.171,5.866,5.349,5.273,4.757,4.384,3.843,3.446,3.327,4.02,3.883,3.45,3.71,3.559,3.438,3.274,3.258,3.161,3.074,2.956,2.902,2.854,2.822,2.817,2.795,2.768,2.762,2.741,2.725,2.704],[35.44059,35.437588,35.423588,35.205696,35.053768,35.006794,34.980812,34.845867,34.828869,34.856869,34.705952,34.686958,34.810898,34.817913,34.771927,34.786922,34.787926,34.77692,34.771927,34.732944,34.709953,34.69397,34.68298,34.654991,34.562031,34.521053,34.496075,34.458084,34.444103,34.464077,34.441105,34.405106,34.425106,34.455082,34.492077,34.498074,34.508068,34.504078,34.474094,34.427124,34.370155,34.372166,34.325184,34.350189,34.329189,34.309189,34.270226,34.251247,34.271236,34.420151,34.434162,34.422176,34.500141,34.517132,34.54211,34.558121,34.594101,34.618095,34.638081,34.648079,34.667068,34.684059,34.700066,34.717052,34.730038,34.748039,34.760029,34.769024,34.780025,34.788025]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_175","geolocation":{"type":"Point","coordinates":[22.179,-40.888]},"basin":3,"timestamp":"2014-11-01T02:18:34.000Z","date_updated_argovis":"2023-01-26T10:44:02.009Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_175.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":175,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.8,9.900001,20.099998,30.299999,40.399998,50.200001,59.599998,69.600006,79.100006,90.300003,99.900002,110.400002,120.400002,130.100006,140.100006,150.300003,159.900009,170.199997,179.900009,189.600006,200.300003,209.699997,219.699997,230,239.800003,250.300003,260.099976,270.199982,279.699982,290.199982,300.099976,310,319.699982,330.399994,340.099976,350,359.899994,380.099976,399.799988,449.799988,499.599976,549.899963,600.299988,650.299988,700.399963,750.200012,800.099976,849.5,899.899963,949.700012,999.899963,1049.700073,1099.800049,1150.200073,1199.800049,1250.400024,1300.100098,1350.100098,1400.200073,1449.800049,1499.5,1549.800049,1599.600098,1649.5,1699.600098,1750.200073,1799.5,1849.800049,1900.100098,1949.5,1999.200073],[16.267,16.268,16.264999,16.219999,15.889,15.501,14.458,13.919,13.436,12.865,12.459,12.573,12.329,12.112,12.004,12.028,11.851,11.659,11.39,11.224,10.969,11.009,10.89,10.907,10.778,10.78,10.886,10.962,11.077,10.954,10.683,10.491,10.272,10.176,10.279,9.927,9.945,9.605,9.229,8.584,7.861,6.86,5.954,5.379,5.221,4.759,4.361,3.787,4.156,4.095,3.844,3.712,3.48,3.407,3.404,3.285,3.194,3.094,2.953,2.911,2.865,2.84,2.822,2.807,2.763,2.748,2.733,2.726,2.727,2.692,2.669],[35.304779,35.303768,35.30677,35.297771,35.277802,35.26981,35.230827,35.224861,35.127888,35.045933,34.945972,35.012936,34.963966,34.929977,34.91898,34.938972,34.912998,34.881004,34.833027,34.804039,34.770054,34.786049,34.781055,34.808052,34.793056,34.802067,34.835037,34.879017,34.915005,34.89901,34.85305,34.820049,34.787052,34.785065,34.822041,34.767071,34.779076,34.736115,34.69912,34.659153,34.60017,34.498226,34.420284,34.377308,34.406288,34.378307,34.378326,34.329334,34.429298,34.472279,34.478287,34.491291,34.507271,34.537273,34.570251,34.592232,34.614235,34.634216,34.645226,34.668221,34.682201,34.703197,34.718193,34.741188,34.751179,34.760166,34.773167,34.782173,34.793159,34.801167,34.803158]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_174","geolocation":{"type":"Point","coordinates":[21.948,-40.694]},"basin":3,"timestamp":"2014-10-21T22:36:12.002Z","date_updated_argovis":"2023-01-26T10:44:00.182Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_174.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":174,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.5,19.200001,29.4,39.299999,49.099998,57.399998,69.900002,80,89.699997,99.699997,109.699997,119.799995,129.5,139.900009,150,159.900009,169.900009,179.800003,189.600006,199.400009,209.800003,219.400009,229.5,239.700012,250,259.899994,269.700012,279.399994,290.100006,300.100006,309.5,319.899994,329.5,339.5,350,359.600006,380.100006,399.700012,449.899994,500.100006,550.099976,600.099976,649.399963,699.699951,749.699951,799.899963,850,899.899963,949.799988,999.599976,1049.599976,1099.699951,1149.699951,1199.299927,1250,1299.5,1349.5,1399.799927,1449.799927,1500,1549.400024,1599.699951,1649.400024,1699.699951,1749.900024,1799.699951,1849.799927,1899.199951,1949.5],[15.866,15.334,15.123,14.977,14.475,13.819,13.556,13.183,12.907,12.679,12.297,11.936,11.563,11.331,11.255,11.208,10.969,10.875,10.774,10.389,10.096,9.974,9.792,10.021,10.197,9.982,9.582,9.587,9.82,10.039,9.962,9.8,9.432,9.329,9.164,9.14,9.051,8.396,8.705,7.611,7.303,6.524,5.513,5.15,5.02,4.781,4.704,4.577,4.218,3.771,3.809,3.68,3.566,3.293,3.187,3.104,2.996,3.029,2.951,2.892,2.872,2.841,2.804,2.772,2.758,2.747,2.734,2.717,2.699,2.694],[35.394993,35.386978,35.373989,35.354996,35.271046,35.197083,35.203068,35.168125,35.142117,35.117142,35.060177,34.994186,34.934219,34.898239,34.903236,34.89325,34.85228,34.842285,34.829281,34.753311,34.698345,34.683353,34.650364,34.710331,34.756306,34.726337,34.64838,34.674366,34.724335,34.768322,34.777298,34.746326,34.694347,34.687366,34.666382,34.676369,34.67337,34.577431,34.667381,34.50946,34.533451,34.440502,34.320572,34.323574,34.371555,34.385563,34.407551,34.460529,34.452538,34.440536,34.477528,34.513523,34.529522,34.531509,34.548523,34.563503,34.589489,34.624485,34.648476,34.668468,34.687458,34.700455,34.710434,34.73045,34.745426,34.758423,34.773411,34.781406,34.792412,34.797417]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_173","geolocation":{"type":"Point","coordinates":[20.638,-40.53]},"basin":3,"timestamp":"2014-10-11T17:55:02.001Z","date_updated_argovis":"2023-01-26T10:43:58.379Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_173.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":173,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.900001,20,30.299999,39.700001,49.700001,59.200001,70.400002,80.200005,90.300003,100.200005,109.600006,118.800003,130.300003,140,149.800003,160.100006,169.600006,179.900009,190.300003,200.100006,210.199997,219.699997,230.199997,239.400009,249.699997,259.699982,269.699982,280,287.399994,299.899994,309.799988,320.199982,330,339.899994,349.899994,360.199982,379.699982,400.199982,449.5,499.5,549.399963,600.099976,650.200012,699.599976,749.799988,799.799988,850.099976,898.5,949.700012,999.5,1047.300049,1099.700073,1149.700073,1200,1250.100098,1300.300049,1349.800049,1400,1449.400024,1499.200073,1549.700073,1599.800049,1650.200073,1699.900024,1750,1800,1849.700073,1899.300049,1949.100098,1998.700073],[19.952,19.955999,19.858999,19.688,18.996,18.077999,17.827999,17.525,17.153999,16.700001,16.547001,16.388,16.291,15.604,15.063,14.884,14.42,14.053,13.357,13.237,12.972,12.157,12.205,12.461,12.504,12.458,12.409,12.452,12.379,12.294,12.151,11.923,11.813,11.612,11.388,10.376,9.643,9.238,9.316,9.616,9.255,8.746,8.114,7.499,6.443,5.872,5.306,4.894,4.589,4.044,4.028,3.946,3.604,3.703,3.335,3.283,3.144,3.058,3.011,3.048,2.928,2.879,2.843,2.808,2.793,2.782,2.767,2.767,2.74,2.714,2.685],[35.427971,35.428982,35.426991,35.418991,35.467979,35.518993,35.586952,35.606953,35.583942,35.536991,35.543972,35.555958,35.540985,35.42403,35.335083,35.339081,35.263123,35.192162,35.086205,35.080215,35.061211,34.894295,34.926273,35.044228,35.084209,35.081203,35.091202,35.123203,35.114201,35.102207,35.079216,35.045258,35.035236,34.997253,34.947277,34.73238,34.584438,34.517471,34.548481,34.650421,34.649429,34.635437,34.601467,34.592476,34.479542,34.442574,34.410568,34.414597,34.422588,34.39761,34.435585,34.469574,34.471577,34.532558,34.53056,34.569546,34.583534,34.603542,34.62553,34.657516,34.667511,34.682514,34.697495,34.726494,34.737473,34.74646,34.760468,34.76947,34.789452,34.792458,34.802467]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_172","geolocation":{"type":"Point","coordinates":[17.381,-38.828]},"basin":1,"timestamp":"2014-10-01T14:29:28.001Z","date_updated_argovis":"2023-01-26T10:43:56.494Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_172.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":172,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.2,19.5,29.699999,40.200001,49.799999,59.700001,69.600006,80,90,99.200005,109.700005,116.900002,130,139.900009,149.699997,159.900009,169.699997,180.100006,189.800003,200,209.800003,219.699997,229.699997,239.5,250.300003,259.599976,267.799988,280.399994,290.199982,300.099976,310.099976,319.899994,329.699982,339.899994,349.599976,359.899994,379.599976,399.799988,449.899994,499.799988,550.200012,600.099976,649.599976,699.700012,749.799988,800,850.099976,899.599976,949.899963,1000.099976,1049.800049,1099.5,1150.100098,1199.300049,1250.300049,1300.100098,1349.900024,1399.800049,1450.100098,1499.700073,1550.100098,1599.700073,1650.100098,1699.400024,1749.700073,1800.200073,1850,1899.300049,1949],[16.173,16.079,15.936,15.87,15.858,15.841,15.808,15.779,15.774,15.659,15.318,14.902,14.591,13.849,13.719,13.408,13.079,12.89,12.745,12.561,12.301,12.07,12.057,11.92,11.881,11.796,11.683,11.597,11.466,11.331,11.255,11.073,10.895,10.734,10.564,10.329,10.3,10.026,9.746,9.22,8.599,7.805,7.12,6.303,5.907,5.269,4.97,4.451,4.458,4.112,3.642,3.218,3.433,3.492,3.198,3.076,3.005,2.982,2.934,2.892,2.843,2.798,2.775,2.746,2.729,2.757,2.735,2.697,2.658,2.634],[35.477165,35.47517,35.473152,35.472164,35.472179,35.47118,35.469166,35.464176,35.464176,35.447178,35.405186,35.363224,35.321247,35.247269,35.262276,35.217289,35.16132,35.14333,35.122349,35.102337,35.069363,35.040367,35.036377,35.01638,35.015373,35.000389,34.988403,34.989395,34.975422,34.959412,34.950436,34.933422,34.910435,34.894455,34.871464,34.836475,34.84549,34.806507,34.774517,34.737534,34.674553,34.602604,34.557644,34.486683,34.478683,34.439713,34.454704,34.43874,34.481709,34.474716,34.469723,34.438744,34.499722,34.544674,34.546703,34.576694,34.601669,34.627666,34.647652,34.663658,34.677662,34.696644,34.71265,34.730621,34.745613,34.766621,34.781609,34.785599,34.788601,34.796604]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_171","geolocation":{"type":"Point","coordinates":[17.358,-39.414]},"basin":1,"timestamp":"2014-09-21T09:49:15.001Z","date_updated_argovis":"2023-01-26T10:43:54.690Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_171.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":171,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.9,19.700001,29.900002,39.5,49.400002,59.799999,69.299995,79.399994,89.699997,100.199997,110,120.099998,130.099991,139.599991,150.099991,160.199997,169.899994,180.099991,190.099991,200.099991,209.300003,220,229.5,240.099991,249.800003,259.700012,269.600006,279.300018,288.300018,300.300018,310.100006,319.700012,330.200012,339.800018,349.300018,359.400024,379.400024,399.700012,449.800018,499.700012,549.5,599.299988,649.700012,700,749.700012,800,849.799988,900.100037,949.400024,999.900024,1050.199951,1099.299927,1149.299927,1199.599976,1250.299927,1300.099976,1349.599976,1399.599976,1450.099976,1500.099976,1549.699951,1599.299927,1650,1700.099976,1749.599976,1799.699951,1850,1900.099976,1949.299927,2000.099976],[16.040001,16.035999,16.025999,16.025999,16.023001,16.018,16.018999,16.018999,16.014,15.99,15.945,14.326,13.716,13.314,13.016,12.746,12.428,12.303,12.012,11.771,11.638,11.491,11.307,11.17,11.154,11.012,10.865,10.837,10.662,10.452,10.205,9.977,9.871,9.839,9.622,9.348,9.24,8.89,8.734,8.101,6.984,6.394,5.898,5.417,5.031,4.719,4.595,4.377,4.227,3.337,3.204,3.389,3.335,3.193,3.068,3.021,2.936,2.896,2.879,2.865,2.832,2.812,2.813,2.803,2.758,2.722,2.654,2.68,2.669,2.645,2.614],[35.464352,35.465351,35.46434,35.464359,35.464348,35.464359,35.463371,35.463379,35.461361,35.458359,35.446365,35.282436,35.225471,35.182491,35.162498,35.137524,35.101543,35.095535,35.054569,35.025581,35.009605,34.9916,34.965607,34.953621,34.956615,34.945618,34.922638,34.921646,34.897644,34.862652,34.824692,34.798698,34.788708,34.797703,34.778721,34.742733,34.730736,34.696751,34.688763,34.638786,34.535839,34.504864,34.475868,34.450909,34.44891,34.457912,34.490906,34.513885,34.5299,34.428951,34.455936,34.523891,34.547894,34.562889,34.569885,34.590893,34.621861,34.665852,34.677845,34.691845,34.707829,34.718838,34.734829,34.747818,34.762817,34.769806,34.7738,34.792797,34.797794,34.801781,34.803802]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_170","geolocation":{"type":"Point","coordinates":[17.641,-39.727]},"basin":1,"timestamp":"2014-09-11T06:34:53.000Z","date_updated_argovis":"2023-01-26T10:43:52.892Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_170.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":170,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.5,19.4,30.4,40,49.700001,59.799999,69.400002,79,89.400002,99.600006,108.700005,120.5,129.699997,140.199997,150.100006,159.5,170.100006,180.300003,189.5,200,209.699997,219.699997,230,239.800003,249.5,259.299988,269.899994,279.799988,289.899994,300.299988,310.099976,320,330.299988,340.299988,350.099976,359.699982,380.099976,399.5,449.899994,499.799988,550,600,650.5,700.099976,750.299988,799.799988,847.099976,899.700012,949.299988,999.899963,1050.100098,1099.800049,1150.300049,1199.600098,1249.900024,1299.700073,1347.600098,1400.400024,1449.5,1500.400024,1550.300049,1599.700073,1650.200073,1699.700073,1749.900024,1799.800049,1849.600098,1899.5,1949.600098],[17.628,17.628,17.370001,17.077,16.934999,16.792999,16.504999,16.007,15.46,15.148,14.716,14.446,13.622,13.072,12.814,12.515,12.325,12.133,11.988,12.018,11.76,11.508,11.33,11.194,11.109,10.768,10.724,10.688,10.621,10.471,10.492,10.504,10.29,10.09,9.946,9.708,9.526,9.245,8.763,7.672,6.805,6.638,6.234,5.38,5.151,5.067,4.569,4.465,4.398,4.248,3.636,3.234,3.095,3.084,3.072,2.966,2.921,2.885,2.8,2.691,2.744,2.775,2.765,2.737,2.723,2.703,2.678,2.668,2.633,2.618],[35.520428,35.518429,35.514442,35.502449,35.495449,35.490452,35.468449,35.440468,35.42049,35.385506,35.343513,35.314545,35.192596,35.126629,35.098652,35.065662,35.041668,35.01368,34.998692,35.022694,34.996685,34.973701,34.954727,34.935722,34.934738,34.872749,34.877758,34.876755,34.867771,34.848774,34.86377,34.883755,34.86377,34.837776,34.822788,34.7938,34.773823,34.746838,34.700851,34.573925,34.489956,34.52494,34.48996,34.444008,34.470001,34.510975,34.461994,34.479,34.516972,34.553982,34.583969,34.556984,34.570965,34.595982,34.605976,34.624958,34.645943,34.668953,34.674946,34.679928,34.702934,34.725918,34.739914,34.751896,34.766903,34.779903,34.790897,34.795898,34.800884,34.806881]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_169","geolocation":{"type":"Point","coordinates":[19.571,-39.524]},"basin":1,"timestamp":"2014-09-01T02:24:31.000Z","date_updated_argovis":"2023-01-26T10:43:51.101Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_169.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":169,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.5,20.099998,30.4,40.200001,50.200001,59.799999,69.800003,79.900002,89.600006,97.400002,110.300003,120.100006,129.800003,139.800003,150.300003,159.600006,169.600006,180,189.900009,199.300003,209.5,219,229.300003,239.5,250.100006,259.799988,270.099976,277.899994,289.799988,299.699982,309.699982,319.799988,329.599976,340.099976,349.5,360.099976,379.599976,399.099976,450.099976,499.699982,550.299988,600,649.899963,700.399963,749.899963,800.099976,849.899963,899.5,950.099976,1000,1049.400024,1100.100098,1150.400024,1199.5,1249.600098,1300.100098,1350,1399.900024,1449.400024,1499.400024,1549.5,1600.300049,1650.100098,1700,1749.900024,1799.800049,1850.200073,1900,1949.600098],[17.396999,17.402,17.403,17.403,17.398001,17.396,17.375,17.333,16.166,15.075,15.015,14.604,14.054,13.455,12.886,12.182,11.837,11.508,10.902,10.647,10.497,10.35,10.2,9.847,9.578,9.362,9.101,8.798,8.552,8.365,8.191,8.044,7.944,7.836,7.747,7.617,7.453,7.282,7.052,6.27,5.91,5.483,5.18,4.841,4.195,3.744,3.706,3.558,3.382,3.361,3.2,3.14,3.13,2.985,2.952,2.933,2.864,2.814,2.792,2.784,2.774,2.765,2.748,2.744,2.719,2.72,2.693,2.678,2.664,2.601],[35.420605,35.420616,35.420639,35.419601,35.420616,35.419617,35.420609,35.408611,35.322659,35.273708,35.270702,35.248714,35.208729,35.164764,35.12178,35.065823,35.038822,35.00584,34.94688,34.920883,34.901901,34.886902,34.869923,34.830929,34.802948,34.782948,34.760983,34.732986,34.707005,34.688007,34.672024,34.657028,34.649033,34.638039,34.629044,34.61805,34.607037,34.599056,34.589058,34.520088,34.508114,34.495129,34.512127,34.542099,34.493153,34.455162,34.495148,34.518139,34.525143,34.549129,34.565121,34.581131,34.609119,34.619102,34.634102,34.645088,34.671085,34.71207,34.726074,34.736057,34.739056,34.744068,34.760056,34.77005,34.786037,34.801044,34.808044,34.811039,34.815044,34.81604]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_168","geolocation":{"type":"Point","coordinates":[21.306,-37.034]},"basin":3,"timestamp":"2014-08-21T22:30:02.002Z","date_updated_argovis":"2023-01-26T10:43:49.299Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_168.nc","date_updated":"2020-11-12T10:21:06.000Z"}],"cycle_number":168,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.5,19.9,30.199999,36.399998,50.099998,60.099998,69.900002,79.900002,90,99.800003,110.300003,119,129.900009,139.800003,149.5,159.600006,169.699997,180,190.100006,199.600006,210.300003,220.100006,229.600006,239.100006,250.100006,260.099976,270.299988,279.399994,289.899994,300.199982,309.399994,319.5,329.699982,340.199982,349.699982,359.899994,380,399.899994,449.899994,499.599976,550.099976,600.399963,649.799988,699.700012,749.899963,800.099976,849.799988,900.099976,950,999.599976,1050,1100.100098,1150,1200.200073,1250.300049,1299.400024,1350,1399.600098,1450.100098,1500,1549.800049,1599.5,1649.5,1699.900024,1750,1800.100098,1849.700073,1899.900024,1947.300049],[18.877001,18.896,18.879999,18.483,17.615,16.761999,15.02,13.799,13.345,12.98,12.661,12.334,12.355,12.23,12.116,11.845,11.714,11.612,11.47,10.983,10.633,10.424,10.328,10.2,10.039,9.726,9.603,9.46,9.38,9.306,9.172,9.098,9.035,8.918,8.675,8.645,8.612,8.162,7.579,6.719,6.286,5.679,5.345,5.123,4.994,4.761,4.276,3.938,3.827,3.725,3.634,3.482,3.258,3.176,3.106,3.019,3.006,2.941,2.886,2.854,2.831,2.812,2.804,2.791,2.786,2.769,2.757,2.743,2.734,2.714],[35.403751,35.404755,35.389767,35.387756,35.388783,35.346802,35.262844,35.198883,35.172916,35.142929,35.132915,35.100945,35.116943,35.099953,35.082958,35.05896,35.044968,35.031982,35.011986,34.948017,34.904049,34.879047,34.867062,34.85207,34.836063,34.796093,34.779099,34.760105,34.751118,34.743122,34.731117,34.726131,34.717133,34.714127,34.691154,34.68816,34.688145,34.645176,34.565212,34.481262,34.459267,34.424294,34.404308,34.403309,34.438286,34.451298,34.437309,34.440311,34.453297,34.478306,34.519272,34.559269,34.555275,34.573261,34.609257,34.615253,34.647247,34.661224,34.679222,34.697205,34.719212,34.737213,34.747192,34.758205,34.771194,34.781193,34.789185,34.797184,34.80418,34.808174]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_167","geolocation":{"type":"Point","coordinates":[21.341,-38.961]},"basin":3,"timestamp":"2014-08-11T18:13:08.001Z","date_updated_argovis":"2023-01-26T10:43:47.600Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_167.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":167,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.1,20.199999,30.099998,39.599998,49.5,60.200001,69.400002,79.800003,89.300003,99.600006,109.700005,120.100006,130.100006,140.100006,148.600006,160,170,180.400009,190.300003,199.5,209.600006,220.100006,230.199997,239.699997,249.400009,259.299988,269.199982,279.599976,290.099976,299.399994,309.699982,319.199982,329.399994,339.299988,350.099976,359.799988,378.399994,400.299988,450.299988,500.099976,549.899963,599.799988,650,700.399963,750.200012,799.799988,850.099976,899.799988,949.700012,999.599976,1049.600098,1100.200073,1149.800049,1199.900024,1250.100098,1299.600098,1349.200073,1399.800049,1450.100098,1499.600098,1549.900024,1599.5,1650.100098,1698.800049,1750,1800.100098,1849.900024,1899.300049,1949.5,1999],[17.249001,17.249001,17.245001,17.240999,17.239,17.24,17.24,17.238001,17.238001,17.233999,17.232,17.171,17.105,16.954,16.909,16.822001,16.743999,16.662001,16.658001,16.559,16.525999,16.516001,16.507,16.495001,16.471001,16.438999,16.398001,16.309,16.059,15.903,15.782,15.646,15.484,15.423,15.238,15.06,14.899,14.608,14.148,13.677,13.128,12.556,11.632,11.028,10.276,10.111,9.419,8.232,7.754,6.99,6.261,5.789,5.14,5.034,4.747,4.277,4.104,3.833,3.523,3.43,3.316,3.24,3.1,3.023,2.974,2.938,2.889,2.86,2.844,2.815,2.797],[35.593842,35.592854,35.592842,35.592857,35.59383,35.593845,35.594864,35.594864,35.594864,35.593838,35.592846,35.587837,35.582863,35.571854,35.568848,35.564857,35.558853,35.552856,35.563877,35.559887,35.560867,35.563873,35.56485,35.563877,35.560886,35.55587,35.549877,35.535881,35.506912,35.492897,35.484898,35.472904,35.464912,35.461914,35.447922,35.431931,35.417919,35.389961,35.347973,35.310013,35.240021,35.155079,35.00713,34.922184,34.813221,34.823223,34.750256,34.601318,34.574356,34.522377,34.45742,34.465408,34.416443,34.458435,34.47543,34.47044,34.499432,34.490433,34.492432,34.52142,34.55241,34.572411,34.591412,34.622391,34.640373,34.65538,34.679379,34.701366,34.720371,34.737343,34.750355]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_166","geolocation":{"type":"Point","coordinates":[19.139,-40.554]},"basin":1,"timestamp":"2014-08-01T14:27:02.001Z","date_updated_argovis":"2023-01-26T10:43:45.781Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_166.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":166,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.7,19.5,29.599998,39.799999,50,59.5,70.100006,79.900002,89.200005,99.600006,110.100006,119.800003,129.400009,139.100006,149.5,160.100006,170.100006,180.400009,190.199997,200.199997,210.199997,220.100006,230.100006,239.600006,249.699997,260.299988,270,279.899994,290.399994,300.299988,309.899994,320.099976,329.699982,340.299988,349.399994,359.899994,379.299988,399.699982,450.199982,500.299988,549.599976,599.399963,650.299988,699.799988,750.200012,799.700012,849.799988,899.700012,950.200012,999.799988,1050.400024,1099.300049,1149.900024,1200.100098,1249.700073,1300.300049,1350.100098,1399.900024,1449.600098,1500.100098,1549.800049,1600,1649.700073,1699.900024,1749.900024,1799.600098,1849.800049,1899.200073,1949],[17.673,17.677,17.677999,17.679001,17.681,17.681999,17.681999,17.673,17.653,17.639999,17.627001,17.622999,17.611,17.610001,17.601,17.6,17.6,17.601,17.601999,17.604,17.593,17.563999,17.399,17.252001,17.111,16.983,16.952,16.785999,16.57,16.306999,15.997,15.655,15.54,15.257,15.174,14.978,14.856,14.519,14.342,13.708,13.225,12.35,11.867,11.46,10.81,10.245,9.604,8.856,8.08,7.268,6.201,5.945,5.128,4.961,4.691,4.158,4.484,3.879,3.521,3.49,3.375,3.195,3.2,3.122,2.989,2.877,2.819,2.808,2.765,2.753],[35.618977,35.618984,35.618977,35.618984,35.617985,35.617973,35.618988,35.619976,35.618984,35.618988,35.618999,35.618973,35.61898,35.619003,35.618992,35.618992,35.617989,35.617989,35.618992,35.617981,35.616997,35.613972,35.599995,35.591995,35.586002,35.579018,35.576,35.561016,35.546005,35.523018,35.499046,35.474056,35.464062,35.444073,35.43708,35.422085,35.414089,35.387096,35.372116,35.308151,35.248169,35.126228,35.058281,35.00029,34.905334,34.834373,34.757401,34.67944,34.616467,34.528515,34.430561,34.454548,34.374599,34.414593,34.448582,34.423592,34.538548,34.494583,34.488579,34.531555,34.566555,34.576553,34.614532,34.636536,34.660522,34.674515,34.695518,34.712517,34.723492,34.733498]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_165","geolocation":{"type":"Point","coordinates":[21.793,-38.306]},"basin":3,"timestamp":"2014-07-22T09:51:44.999Z","date_updated_argovis":"2023-01-26T10:43:43.800Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_165.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":165,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10,20.200001,29.800001,40.200001,49.799999,60,69.699997,80,89.799995,100.099998,110,120,129.899994,140.199997,150.199997,159.899994,169.399994,179.599991,189.599991,199.5,209.300003,219.399994,230,239.5,249.899994,259.700012,269.800018,279.600006,289.5,297.5,310.100006,320,329.700012,340.100006,350.100006,359.700012,380.200012,399.400024,450.200012,499.600006,550.100037,599.5,649.5,700,749.700012,800.100037,849.299988,899.5,950.100037,999.900024,1049.199951,1100,1149.799927,1199.299927,1250,1299.899902,1350,1399.599976,1449.899902,1499.899902,1549.899902,1600.099976,1650.099976,1699.399902,1749.599976,1799.699951,1849.699951,1899.099976,1949.199951,1997.799927],[18.707001,18.716,18.716999,18.718,18.700001,18.658001,18.572001,18.500999,18.507,18.490999,18.429001,18.415001,18.389999,18.257999,17.899,17.818001,17.761,17.733,17.705,17.698999,17.695,17.694,17.688999,17.681999,17.672001,17.665001,17.5,17.132,16.677999,16.52,16.469999,16.237,15.951,15.803,15.688,15.687,15.603,15.203,14.733,13.927,13.513,12.948,12.318,11.692,11.169,10.506,9.932,9.436,8.368,7.587,6.684,6.04,5.346,5.011,4.802,4.566,4.447,4.201,3.649,3.615,3.431,3.321,3.195,3.112,2.993,2.962,2.929,2.901,2.871,2.848,2.826],[35.556187,35.554176,35.554192,35.555195,35.555183,35.558186,35.555195,35.568192,35.57618,35.58519,35.591187,35.595177,35.595177,35.595181,35.60817,35.611191,35.61517,35.615177,35.61718,35.618172,35.618176,35.618176,35.618176,35.617172,35.617168,35.616173,35.599197,35.577198,35.549198,35.537212,35.532215,35.526226,35.499226,35.480255,35.46526,35.469246,35.46526,35.431282,35.395287,35.325317,35.280346,35.207375,35.121418,35.027447,34.952496,34.856544,34.783577,34.742599,34.613659,34.566681,34.479721,34.444748,34.394791,34.394794,34.411793,34.436783,34.476768,34.511757,34.470791,34.498764,34.532757,34.553753,34.573738,34.601742,34.62373,34.642727,34.663712,34.690704,34.712688,34.727695,34.74369]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_164","geolocation":{"type":"Point","coordinates":[21.768,-39.511]},"basin":3,"timestamp":"2014-07-12T06:25:55.000Z","date_updated_argovis":"2023-01-26T10:43:41.979Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_164.nc","date_updated":"2021-06-15T10:46:41.000Z"}],"cycle_number":164,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.400001,20.299999,29.699999,40.299999,50.299999,59.799999,69.5,80,90.100006,99.400002,110.200005,120.200005,130,140.100006,149.100006,159.5,169.5,179.400009,189.100006,200,209.400009,219.5,230,240.400009,249.800003,260.199982,269.799988,279.699982,289.799988,299.599976,310,319.599976,330.299988,339.599976,349.799988,360.199982,380.299988,399.799988,450.399994,499.799988,550.099976,600.299988,650.399963,699.700012,750.299988,799.899963,849.700012,899.700012,949.899963,999.799988,1050.100098,1099.5,1150.200073,1199.700073,1249.600098,1300,1349.600098,1399.700073,1450,1499.800049,1549.700073,1600.400024,1649.900024,1699.600098,1749.700073,1800.300049,1849.300049,1899.800049,1949.400024],[18.079,18.084,18.075001,18.09,18.059999,17.940001,17.900999,17.847,17.791,17.743999,17.688999,17.677,17.664,17.669001,17.67,17.672001,17.671,17.669001,17.67,17.667999,17.669001,17.667999,17.339001,16.983999,16.812,16.716999,16.431999,16.344999,16.069,15.876,15.747,15.64,15.614,15.43,15.345,15.198,15.077,14.831,14.569,13.917,13.383,12.745,12.164,11.719,11.133,10.405,9.843,9.399,8.782,7.965,7.281,6.511,5.826,5.127,4.81,4.592,4.614,4.266,3.924,3.879,3.801,3.603,3.355,3.144,3.031,3.016,2.945,2.89,2.846,2.828],[35.591949,35.592953,35.593971,35.592945,35.590961,35.593975,35.595955,35.597965,35.601971,35.606968,35.610958,35.612976,35.612972,35.615974,35.614956,35.615974,35.615967,35.614956,35.614964,35.614952,35.61599,35.615955,35.589973,35.57597,35.564987,35.554008,35.529018,35.521004,35.493999,35.477036,35.470032,35.463039,35.465046,35.454063,35.448029,35.437038,35.425053,35.408058,35.390076,35.329098,35.268127,35.185181,35.099216,35.034256,34.944286,34.844326,34.773369,34.74839,34.681412,34.596451,34.541485,34.454536,34.417545,34.344582,34.358574,34.389568,34.456547,34.488537,34.471565,34.506542,34.555523,34.588516,34.603519,34.607517,34.619511,34.646503,34.667488,34.695484,34.719475,34.733479]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_163","geolocation":{"type":"Point","coordinates":[19.586,-39.212]},"basin":1,"timestamp":"2014-07-02T02:11:09.000Z","date_updated_argovis":"2023-01-26T10:43:40.081Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_163.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":163,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.099999,20.4,29.6,40.300003,49.900002,59.5,69.800003,80.099998,89.400002,100.200005,110,119.300003,130,139.699997,149.799988,160,169.299988,179.899994,189.799988,200.299988,210.099991,219,230.299988,239.899994,250.599991,260.399994,270.100006,280.100006,289.899994,300.100006,309.699982,319.699982,329.600006,340.100006,350,359.699982,379.799988,400.399994,450.399994,500.100006,550.5,599.900024,649.800049,699.600037,750.300049,799.900024,850.300049,899.900024,949.900024,999.300049,1050.200073,1100.400024,1149.599976,1199.900024,1250.099976,1299.700073,1349.5,1400.300049,1450.200073,1499.800049,1550.200073,1600.200073,1649.900024,1700.400024,1750.300049,1800,1849.400024,1900,1949.400024],[18.004999,18.004,18.006001,18.007999,18.011,18.011999,18.014,18.014,18.018,18.018999,18.017,18.016001,18.018,18.018,18.02,18.023001,18.017,18.017,18.021,17.988001,17.888,17.535,17.386999,17.069,17.032,16.865,16.774,16.617001,16.521999,16.406,16.323,16.267,16.056999,16.027,15.884,15.744,15.537,15.24,14.859,14.235,13.672,13.162,12.72,12.106,11.619,11.305,10.697,10.14,9.418,8.781,8.152,7.3,6.618,6.085,5.031,4.653,5.008,4.389,4.387,4.051,4.091,3.897,3.633,3.523,3.212,3.182,3.153,2.916,2.893,2.886],[35.617401,35.618404,35.617393,35.617405,35.618389,35.618393,35.618401,35.618401,35.619396,35.619389,35.619404,35.619385,35.619389,35.618401,35.619389,35.618397,35.616409,35.617401,35.617409,35.612415,35.597401,35.56443,35.559425,35.542458,35.570412,35.568413,35.559414,35.546429,35.538425,35.529423,35.524433,35.518463,35.50045,35.495434,35.482468,35.472466,35.448483,35.438488,35.408497,35.357548,35.302563,35.237576,35.178627,35.084656,35.020668,34.976696,34.894737,34.828754,34.740788,34.672825,34.605858,34.528893,34.476929,34.442951,34.332001,34.326004,34.447971,34.393986,34.435986,34.443985,34.517937,34.552933,34.56794,34.59293,34.588936,34.616909,34.650917,34.648895,34.673897,34.700886]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_162","geolocation":{"type":"Point","coordinates":[21.821,-37.904]},"basin":3,"timestamp":"2014-06-21T22:11:04.004Z","date_updated_argovis":"2023-01-26T10:43:38.291Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_162.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":162,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,20.099998,30.099998,39.799999,50,59.599998,69.900002,79.600006,89.900002,99.600006,110,119.600006,130.199997,139.600006,150.199997,159.800003,169.400009,178.900009,190.199997,200.100006,210,219.800003,229.400009,240.199997,249.900009,259.399994,269.699982,279.399994,289.799988,299.799988,310.299988,318.199982,330.299988,340.299988,350.199982,359.899994,380,399.699982,450.299988,499.599976,549.799988,599.599976,650.299988,700,750.299988,799.700012,849.599976,900.299988,950.299988,1000.200012,1050.400024,1100.200073,1150.200073,1199.800049,1249.800049,1299.800049,1349.800049,1399.900024,1449.700073,1500,1550.200073,1600,1650.200073,1699.600098,1750.300049,1799.5,1849.600098,1899.300049,1949.5,2000.200073],[18.365,18.361,18.368999,18.370001,18.372,18.375999,18.377001,18.377001,18.378,18.382999,18.382999,18.367001,18.368,18.368999,18.372,18.361,18.33,18.299,18.288,18.132,17.861,17.591999,17.500999,17.433001,17.365999,17.323999,17.297001,17.247,17.202999,17.134001,16.999001,16.870001,16.660999,16.429001,16.372999,16.184,16.065001,15.735,15.482,14.347,13.952,13.416,12.761,12.023,11.319,10.421,9.977,9.417,8.949,8.059,7.53,6.622,6.137,5.877,5.548,5.498,4.816,4.546,4.375,4.169,4.009,3.775,3.713,3.365,3.178,3.072,3.017,2.961,2.915,2.894,2.9],[35.612583,35.611595,35.611584,35.612595,35.612579,35.611588,35.611588,35.611595,35.612583,35.611588,35.611595,35.610607,35.6106,35.610584,35.610577,35.609577,35.606575,35.606575,35.606609,35.600597,35.592613,35.598598,35.603588,35.606586,35.607578,35.608585,35.609581,35.611584,35.608601,35.595589,35.580612,35.570614,35.55262,35.536617,35.530647,35.513634,35.503639,35.478642,35.456676,35.334721,35.314739,35.260761,35.15881,35.066853,34.966888,34.830956,34.782963,34.71701,34.67902,34.585056,34.547073,34.48011,34.441128,34.424156,34.420162,34.465137,34.409153,34.425148,34.463154,34.476143,34.533142,34.546127,34.585117,34.56712,34.59013,34.613117,34.629116,34.645107,34.669098,34.692093,34.724072]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_161","geolocation":{"type":"Point","coordinates":[24.276,-39.487]},"basin":3,"timestamp":"2014-06-11T17:43:54.000Z","date_updated_argovis":"2023-01-26T10:43:36.507Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_161.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":161,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.299999,20.299999,30.5,40.100002,50.100002,57.400002,70.400002,80.300003,89.599998,100,110,120.200005,129.599991,140,149.599991,159.799988,168.299988,180.399994,190.299988,200.199997,210.399994,219.799988,230.199997,239.599991,249.699997,260,270.199982,280.299988,290,300.399994,309.899994,320.100006,330.399994,340.199982,349.600006,360.100006,379.600006,400,450,500.399994,549.600037,599.400024,649.800049,699.600037,750.400024,799.700012,850.100037,899.5,950,1000.100037,1049.700073,1100.099976,1150,1200,1249.599976,1300.300049,1349.800049,1400.200073,1449.599976,1500,1550,1600.300049,1650.200073,1699.900024,1749.700073,1799.700073,1849.599976,1899.200073,1949.900024,2000.200073],[19.152,19.152,19.16,19.162001,19.164,19.169001,19.165001,19.145,18.983999,18.771,18.641001,18.558001,18.532,18.507999,18.478001,18.386,18.097,17.989,17.787001,17.693001,17.511999,17.440001,17.408001,17.216999,17.198,17.009001,16.93,16.697001,16.386999,16.174,16.091,15.907,15.608,15.538,15.222,14.974,14.738,14.63,14.418,13.854,13.122,12.568,12.179,11.681,11.227,10.479,9.653,9.103,8.298,7.559,6.467,5.812,5.655,5.182,4.837,4.707,4.483,4.191,3.971,3.813,3.662,3.459,3.369,3.192,3.107,3.069,3.016,2.998,2.906,2.875,2.846],[35.608685,35.608685,35.608685,35.607685,35.607677,35.608681,35.607677,35.605694,35.601696,35.596706,35.591717,35.590694,35.589703,35.590694,35.588715,35.578705,35.56271,35.585701,35.57272,35.574718,35.584717,35.5877,35.585701,35.579716,35.584721,35.57671,35.572723,35.548748,35.520752,35.499767,35.487766,35.470764,35.437775,35.440769,35.424797,35.387794,35.35183,35.381824,35.333828,35.298851,35.21489,35.147923,35.095947,35.027958,34.960991,34.854042,34.761086,34.698116,34.626137,34.55817,34.458233,34.418247,34.43425,34.409256,34.408245,34.429256,34.438251,34.450256,34.465256,34.490253,34.51025,34.541225,34.555233,34.569221,34.605217,34.636215,34.645199,34.6572,34.676186,34.691193,34.707188]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_160","geolocation":{"type":"Point","coordinates":[25.862,-39.356]},"basin":3,"timestamp":"2014-06-01T14:00:36.997Z","date_updated_argovis":"2023-01-26T10:43:34.805Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_160.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":160,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,20.200001,30.299999,39.900002,50.200001,59.799999,69.599998,78.900002,88.800003,98.800003,109.199997,120,129.899994,140.300003,150.399994,159.399994,169.399994,180.399994,188.399994,200.199997,210.199997,220.399994,230.5,239.600006,250.300003,260,269.899994,279.899994,290.5,300.5,310.399994,320,330.100006,340.299988,350.600006,360,380.299988,400.299988,449.5,499.700012,549.700012,600.200012,649.400024,699.799988,750.099976,800.400024,850.099976,900.299988,949.599976,1000,1049.900024,1100.599976,1150.300049,1200.199951,1249.5,1299.699951,1349.599976,1399.800049,1449.800049,1500.199951,1550.300049,1599.5,1650.400024,1700.400024,1750,1799.800049,1849.599976,1899.699951,1949.599976],[17.903,17.903999,17.905001,17.907,17.91,17.910999,17.913,17.913,17.915001,17.915001,17.916,17.92,17.919001,17.922001,17.924,17.922001,17.915001,17.893999,17.775999,17.51,16.962999,16.759001,16.531,16.275,16.184999,16.023001,15.821,15.704,15.568,15.241,15.161,14.971,14.839,14.709,14.561,14.362,14.225,13.775,13.612,12.982,12.452,11.635,10.764,10.421,10.157,9.315,8.751,7.577,6.876,6.05,5.505,5.073,4.514,4.252,4.032,3.801,3.653,3.538,3.369,3.277,3.121,3.05,3.037,2.999,2.905,2.811,2.773,2.768,2.761,2.724],[35.609806,35.610806,35.609806,35.610809,35.610809,35.609798,35.60981,35.609852,35.609798,35.60981,35.609818,35.609798,35.608807,35.609821,35.609821,35.608818,35.606823,35.602806,35.588821,35.569809,35.554836,35.539845,35.521839,35.516861,35.509865,35.496861,35.485886,35.476875,35.462883,35.435921,35.426914,35.413906,35.403915,35.392929,35.38192,35.362934,35.349926,35.302952,35.284966,35.193008,35.133038,35.013081,34.883148,34.839153,34.816162,34.713207,34.662224,34.566269,34.494301,34.436333,34.419353,34.421371,34.400364,34.415359,34.436359,34.475342,34.495331,34.513336,34.53334,34.556328,34.595318,34.627304,34.642296,34.659294,34.673279,34.710262,34.728271,34.741264,34.751259,34.761269]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_159","geolocation":{"type":"Point","coordinates":[27.592,-39.247]},"basin":3,"timestamp":"2014-05-22T10:30:22.999Z","date_updated_argovis":"2023-01-26T10:43:33.079Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_159.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":159,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10,19.900002,29.900002,40.299999,50,60.200001,69.299995,79.899994,89.5,99.5,109.899994,120.199997,129.899994,139.800003,149.899994,160.099991,169.899994,180,190.099991,199.399994,210.199997,220.300003,229.599991,239.599991,249.399994,259.600006,270.200012,280.100006,289.900024,300.400024,309.600006,319.900024,329.700012,339.700012,349.900024,360,379.400024,399.800018,450.200012,499.400024,550.100037,600,650.200012,699.900024,750.100037,799.100037,850.100037,900.200012,950.100037,1000,1049.599976,1100.199951,1149.5,1199.5,1250.099976,1299.5,1349.399902,1399.5,1449.899902,1499.699951,1549.799927,1599.799927,1649.699951,1699.699951,1750.099976,1799.899902,1850.099976,1899.799927,1949.299927],[18.621,18.620001,18.624001,18.622,18.624001,18.625,18.620001,18.617001,18.603001,18.606001,18.607,18.605,18.601999,18.605,18.605,18.606001,18.604,18.525,18.094999,17.914,17.790001,17.683001,17.525999,17.483999,17.302,17.143,17.011,16.910999,16.733,16.655001,16.528,16.290001,16.183001,15.998,15.924,15.772,15.542,15.152,14.917,14.158,13.678,13.159,12.567,11.963,11.384,10.793,10.387,9.647,8.963,8.378,7.559,6.644,6.09,5.555,5.275,4.97,4.602,4.306,4.237,3.878,3.767,3.592,3.439,3.34,3.146,3.025,3.023,2.974,2.928,2.877],[35.624088,35.624077,35.624081,35.624069,35.624081,35.62307,35.623077,35.624065,35.623089,35.624073,35.623085,35.62307,35.623089,35.623062,35.622063,35.622063,35.621078,35.612083,35.583073,35.582085,35.582069,35.580086,35.582085,35.580093,35.579094,35.578094,35.574104,35.564117,35.551105,35.545097,35.532112,35.516125,35.508148,35.496113,35.490131,35.479141,35.460148,35.43417,35.412178,35.344193,35.298225,35.236263,35.154285,35.067326,34.983372,34.905403,34.850426,34.749477,34.685501,34.630524,34.562561,34.461613,34.443626,34.406624,34.424641,34.435635,34.440632,34.44865,34.478634,34.47863,34.523624,34.539612,34.558609,34.582615,34.596619,34.6096,34.629604,34.653587,34.675571,34.69656]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_158","geolocation":{"type":"Point","coordinates":[28.063,-39.826]},"basin":3,"timestamp":"2014-05-12T05:47:20.999Z","date_updated_argovis":"2023-01-26T10:43:31.203Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_158.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":158,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.7,20.199999,30.099998,40,50.299999,60.200001,70.100006,79.300003,89.700005,100.100006,109.400002,119.600006,130,139.699997,149.5,159.699997,169.800003,180.5,190,200.400009,209.699997,219.900009,230.100006,240.199997,250.300003,260.299988,269.699982,279.5,289.899994,300.299988,310.299988,320,329.799988,339.699982,350.199982,359.699982,379.599976,399.899994,450,499.899994,549.899963,599.799988,649.799988,700,749.799988,799.599976,849.599976,899.899963,950.099976,999.5,1049.5,1100,1149.600098,1199.100098,1249.600098,1300.100098,1350,1399.600098,1450,1499.700073,1548.800049,1599.5,1650,1699.5,1750.200073,1799.700073,1850.200073,1899.700073,1949.400024,1999.300049],[19.253,19.254,19.254999,19.257,19.257999,19.26,19.261,19.26,19.261999,19.263,19.263,19.264,19.264,19.266001,19.261999,19.261,19.252001,19.059,18.399,18.330999,18.153,18.003,17.968,17.736,17.639999,17.503,17.361,17.27,17.184999,17.031,16.768,16.569,16.427,16.104,15.914,15.799,15.626,15.282,15.045,14.395,13.844,13.321,12.661,12.117,11.557,11.049,10.42,9.804,9.298,8.677,7.927,7.294,6.281,5.804,5.462,5.154,4.824,4.646,4.274,3.828,3.873,3.648,3.517,3.44,3.094,3.142,3.07,2.977,2.928,2.888,2.86],[35.618179,35.61718,35.617188,35.618176,35.618164,35.618164,35.61718,35.617188,35.617172,35.617172,35.617172,35.617199,35.617191,35.61618,35.617184,35.61618,35.613163,35.601189,35.593189,35.589184,35.587189,35.583195,35.581207,35.580193,35.577209,35.576202,35.581215,35.59219,35.590206,35.578213,35.554222,35.54023,35.529232,35.501228,35.482254,35.475246,35.456264,35.445278,35.430283,35.3713,35.314339,35.255356,35.170391,35.089428,35.009453,34.937496,34.846527,34.764549,34.713596,34.661613,34.594643,34.539661,34.445709,34.436722,34.419727,34.431728,34.446732,34.468731,34.477718,34.454742,34.514721,34.526707,34.54871,34.567715,34.557705,34.604691,34.622696,34.636681,34.65469,34.68066,34.698666]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_157","geolocation":{"type":"Point","coordinates":[27.462,-40.297]},"basin":3,"timestamp":"2014-05-02T02:22:44.000Z","date_updated_argovis":"2023-01-26T10:43:29.383Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_157.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":157,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.599999,19.799999,30.1,39.400002,49,59.700001,69.5,78.700005,90.200005,100.400002,110.099998,120.099998,130.099991,140.299988,149.899994,159.5,170.399994,180.399994,190.299988,199.899994,209.799988,220.099991,229.599991,240.099991,249.399994,259.899994,269.699982,279.799988,290,300,310.100006,320.199982,330.100006,339.799988,349.899994,359.600006,380.100006,400,450.399994,499.799988,549.700012,599.800049,647.900024,700.200012,750,799.5,850.300049,900.400024,949.800049,999.900024,1050.200073,1099.800049,1149.5,1197.900024,1250.5,1299.5,1349.800049,1399.800049,1449.900024,1499.599976,1550.400024,1600.099976,1649.800049,1699.800049,1750.300049,1799.700073,1850.200073,1899.400024,1949.599976],[19.806999,19.808001,19.809999,19.813,19.813999,19.816999,19.819,19.82,19.823,19.826,19.827,19.829,19.01,18.691,18.518999,18.32,18.245001,18.136,18.016001,17.771,17.607,17.495001,17.212,17.018999,16.84,16.75,16.629,16.58,16.469,16.282,16.058001,15.927,15.77,15.57,15.513,15.341,15.181,14.905,14.613,14.006,13.534,12.932,12.203,11.534,10.961,10.315,9.722,9.039,8.134,7.555,7.092,6.172,5.717,5.39,4.894,4.615,4.393,4.219,4.134,3.828,3.588,3.496,3.376,3.252,3.194,3.1,3.02,2.976,2.831,2.815],[35.62429,35.624294,35.625275,35.62529,35.624264,35.624264,35.625298,35.624275,35.625282,35.624275,35.625282,35.622303,35.587303,35.593296,35.589298,35.587303,35.588314,35.585308,35.582321,35.583313,35.584339,35.582317,35.579319,35.570324,35.561348,35.553326,35.546326,35.540337,35.536327,35.520336,35.503361,35.494366,35.482368,35.46735,35.463367,35.448376,35.43539,35.414387,35.387405,35.330429,35.287468,35.208492,35.103519,35.008568,34.927593,34.836647,34.756683,34.685688,34.601738,34.559761,34.532749,34.445816,34.439812,34.442829,34.416828,34.43383,34.450832,34.475838,34.498806,34.491821,34.506824,34.544804,34.567802,34.591805,34.6138,34.631783,34.649784,34.67276,34.679779,34.701771]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_156","geolocation":{"type":"Point","coordinates":[29.019,-39.503]},"basin":3,"timestamp":"2014-04-21T21:49:01.999Z","date_updated_argovis":"2023-01-26T10:43:27.591Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_156.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":156,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.9,19.6,30.199999,40,49.800003,60.100002,69.800003,78.400002,89.900002,100.599998,109.900002,119.800003,129.799988,140,150,160.099991,170.099991,180.299988,190,200.299988,209.899994,220.099991,229.899994,239.5,249.799988,259.799988,269.699982,279.600006,289.899994,299.799988,310.299988,320.299988,330.5,340.399994,350.199982,360.100006,380.299988,399.899994,449.699982,500.199982,550,599.900024,650.200012,700.400024,749.5,799.600037,849.900024,900.300049,949.600037,999.600037,1050,1100.099976,1149.599976,1200,1250,1299.900024,1349.599976,1399.5,1450.300049,1500.099976,1549.599976,1600,1650.300049,1700.300049,1750.099976,1799.700073,1849.400024,1899.599976,1949.599976,2000.700073],[20.576,20.577,20.58,20.579,20.58,20.580999,20.586,20.589001,20.59,20.591,20.563999,19.514,19.145,18.983999,18.724001,18.639999,18.457001,18.402,18.297001,18.16,18.025999,17.863001,17.724001,17.506001,17.302999,17.242001,17.215,17.157,16.993,16.829,16.625,16.518,16.277,16.155001,15.991,15.758,15.607,15.384,15.06,14.193,13.63,13.011,12.51,11.796,11.306,10.474,9.743,9.36,8.508,8.038,7.205,6.644,6.013,5.611,4.961,4.361,4.374,4.148,3.996,3.728,3.691,3.586,3.3,3.135,3.132,3.038,3.012,2.967,2.919,2.871,2.837],[35.589432,35.58844,35.589443,35.589443,35.589443,35.589443,35.590446,35.589447,35.58942,35.589428,35.586441,35.583447,35.593449,35.597458,35.601429,35.599438,35.597443,35.59544,35.591457,35.585457,35.582485,35.581467,35.580467,35.580479,35.583462,35.584473,35.582462,35.58046,35.573486,35.560478,35.547474,35.538467,35.524479,35.515507,35.501511,35.487511,35.475513,35.45755,35.43055,35.353561,35.287613,35.218628,35.145657,35.025715,34.970722,34.842754,34.749817,34.727829,34.640854,34.608887,34.538906,34.499939,34.453945,34.441952,34.403973,34.35899,34.420979,34.441971,34.471966,34.49197,34.521954,34.539948,34.534946,34.562965,34.601929,34.620937,34.645935,34.666916,34.687912,34.705906,34.728905]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_155","geolocation":{"type":"Point","coordinates":[29.173,-38.873]},"basin":3,"timestamp":"2014-04-11T18:12:16.002Z","date_updated_argovis":"2023-01-26T10:43:25.779Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_155.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":155,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.099999,20.1,29.5,39.700001,49.400002,59.400002,70.399994,80.099998,90.099998,100.199997,109.299995,119.699997,129,139.800003,147.099991,160.199997,169.899994,180.199997,189.5,199.599991,210.099991,220.099991,229.399994,239.5,250.099991,260.100006,270.300018,280.200012,290,299.700012,310.200012,319.600006,329.400024,339.600006,349.800018,359.400024,379.900024,399.400024,449.5,499.900024,549.600037,600,650.100037,699.700012,750,799.700012,850.299988,899.400024,949.5,999.600037,1048.5,1100,1149.5,1200,1249.699951,1299.299927,1349.799927,1399.899902,1450.199951,1499.099976,1549.399902,1599.399902,1649.799927,1700.099976,1749.699951,1799.199951,1850.099976,1899.899902,1949.199951],[21.282,21.275999,21.228001,21.033001,21.016001,20.988001,20.955,20.851,20.313999,19.601999,19.187,18.952,18.74,18.562,18.385,18.274,18.125999,17.962,17.653,17.417999,17.311001,17.108,16.99,16.841,16.709,16.469999,16.360001,16.15,16.056999,15.935,15.757,15.644,15.569,15.385,15.31,15.148,14.982,14.703,14.536,13.947,13.293,12.753,11.965,11.246,10.608,9.932,9.396,8.562,8.005,7.35,6.668,5.822,5.33,4.91,4.715,4.466,4.09,3.899,3.77,3.533,3.499,3.354,3.257,3.17,2.991,2.89,2.886,2.821,2.835,2.774],[35.576664,35.577679,35.574673,35.592655,35.594658,35.594646,35.596676,35.592663,35.586662,35.585678,35.595669,35.604668,35.601673,35.60569,35.597687,35.591698,35.584694,35.581676,35.579697,35.5797,35.580704,35.580708,35.574726,35.560703,35.551704,35.531727,35.525703,35.516716,35.508739,35.49873,35.486748,35.47678,35.467743,35.454765,35.448757,35.437778,35.425777,35.401787,35.38578,35.328796,35.253845,35.18288,35.065914,34.967976,34.864998,34.778038,34.727066,34.650085,34.60812,34.552155,34.507172,34.439201,34.436207,34.427208,34.454212,34.470215,34.467216,34.484203,34.510204,34.521202,34.565193,34.586178,34.601185,34.61517,34.631161,34.651165,34.673157,34.693142,34.719131,34.72913]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_154","geolocation":{"type":"Point","coordinates":[31.545,-39.5]},"basin":3,"timestamp":"2014-04-01T13:54:26.996Z","date_updated_argovis":"2023-01-26T10:43:23.977Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_154.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":154,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.299999,19.9,30.5,40.200001,49.700001,60.200001,69.800003,80.400002,90,98.200005,110.5,120.400002,130.099991,139.699997,150,159.5,169.799988,180,190.299988,200.099991,209.799988,220.199997,229.899994,240.299988,250,259.799988,269.799988,279.799988,289.899994,300.399994,310.100006,320.299988,330.100006,340,349.600006,359.600006,379.899994,400.299988,450.199982,500,550.300049,600.200012,650.100037,700.300049,750,799.600037,850.100037,900.200012,950,999.600037,1050,1100.099976,1150.099976,1200.300049,1250.099976,1300.200073,1350.400024,1399.599976,1450,1500,1550.200073,1600.200073,1649.800049,1700,1747.700073,1799.900024,1850.099976,1899.800049,1949.300049,2000.300049],[21.261,21.266001,21.289,21.301001,21.304001,21.306,21.308001,21.308001,21.306,21.306999,21.202999,19.606001,19.195999,18.969999,18.629999,18.372,18.259001,18.163,18.041,17.916,17.700001,17.566999,17.500999,17.320999,17.261,17.101,17.006001,16.938999,16.792,16.688999,16.500999,16.228001,16.084999,15.893,15.675,15.589,15.519,15.076,14.84,14.225,13.596,13.006,12.406,11.67,11.106,10.502,10.021,9.422,8.849,8.192,7.274,6.709,5.983,5.797,5.049,4.582,4.491,4.22,3.738,3.752,3.806,3.439,3.303,3.195,3.146,3.052,2.978,2.935,2.876,2.829,2.801],[35.562752,35.568752,35.601738,35.623707,35.631744,35.63372,35.63472,35.637703,35.637718,35.636719,35.621735,35.564754,35.567768,35.575768,35.589764,35.594757,35.590767,35.589771,35.586754,35.579762,35.581783,35.581764,35.580761,35.575768,35.573784,35.568783,35.566795,35.562794,35.556789,35.544781,35.531796,35.522812,35.51281,35.498802,35.482811,35.476818,35.47081,35.433826,35.412827,35.355877,35.288898,35.215939,35.132957,35.023018,34.946033,34.867077,34.807091,34.740105,34.685139,34.628155,34.545204,34.498222,34.435246,34.458237,34.439251,34.407269,34.45726,34.477268,34.455269,34.503242,34.572231,34.559238,34.587219,34.609219,34.62722,34.653214,34.676205,34.687202,34.705181,34.723198,34.73418]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_153","geolocation":{"type":"Point","coordinates":[31.427,-40.491]},"basin":3,"timestamp":"2014-03-22T10:24:13.997Z","date_updated_argovis":"2023-01-26T10:43:22.272Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_153.nc","date_updated":"2020-11-12T10:21:05.000Z"}],"cycle_number":153,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10,19.9,29.299999,39.600002,50.200001,58.200001,70.400002,80.200005,90.700005,100.5,109.700005,119.800003,129.199997,140.099991,150.099991,160.199997,170.199997,179.699997,190.299988,199.799988,210.199997,220.099991,230.099991,240,250.099991,259.5,270.199982,280,290.199982,300.399994,309.899994,319.899994,329.699982,339.799988,349.600006,359.600006,379.899994,399.899994,450.399994,499.5,550.100037,599.800049,650.100037,700.300049,750,799.5,849.900024,899.700012,949.700012,999.700012,1050.400024,1100.200073,1149.900024,1200.200073,1250.200073,1300.5,1350.300049,1397.200073,1449.700073,1499.5,1549.400024,1600,1649.700073,1699.5,1750.5,1799.599976,1849.599976,1899.800049,1949.400024],[21.517,21.516001,21.518999,21.518999,21.521,21.524,21.523001,21.525,21.514,21.476999,19.914,19.455999,19.167,18.847,18.684999,18.436001,18.261999,18.153,18.059,17.899,17.818001,17.621,17.533001,17.358999,17.207001,17.087999,16.958,16.799,16.549999,16.281,16.091999,15.915,15.853,15.674,15.574,15.431,15.304,15.127,14.763,14.122,13.584,13.146,12.384,11.877,11.446,10.743,10.178,9.574,9.006,8.327,7.756,6.965,6.491,5.997,5.398,5.137,4.775,4.42,4.195,3.902,3.759,3.579,3.4,3.303,3.194,3.076,3.017,2.992,2.933,2.903],[35.682854,35.682854,35.682861,35.682854,35.682854,35.682858,35.682842,35.682858,35.68185,35.673843,35.602905,35.607914,35.607906,35.602909,35.602886,35.596905,35.58992,35.585922,35.58292,35.580898,35.582909,35.581917,35.588924,35.584919,35.588924,35.578922,35.57394,35.559944,35.54192,35.522945,35.50695,35.495956,35.491959,35.478981,35.467983,35.454967,35.445992,35.431969,35.401997,35.342026,35.287041,35.241035,35.130089,35.056137,34.99316,34.897205,34.82423,34.753246,34.697277,34.638294,34.586323,34.518349,34.482384,34.458393,34.428406,34.441395,34.452396,34.456402,34.452415,34.489395,34.503399,34.524376,34.536385,34.570374,34.594364,34.617355,34.643356,34.66436,34.690346,34.703346]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_152","geolocation":{"type":"Point","coordinates":[29.032,-38.769]},"basin":3,"timestamp":"2014-03-12T06:28:49.000Z","date_updated_argovis":"2023-01-26T10:43:20.300Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_152.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":152,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.5,19.9,29.700001,39.799999,50.299999,59.5,67,79.900002,89.699997,99.5,109.800003,119.5,130.100006,139.899994,149.800003,159.300003,169.699997,179.899994,189.300003,199.699997,209.300003,219.600006,229.100006,240,249.899994,260.100006,270,279.899994,290.100006,299.399994,309.399994,319.600006,329.899994,339.899994,349.299988,359.200012,380.100006,399.899994,449.399994,499.299988,549.700012,599.099976,649.900024,699.700012,749.900024,799.299988,849.400024,899.799988,949.299988,1000.099976,1049.5,1099.599976,1149.300049,1199.400024,1249.599976,1299.800049,1349.400024,1400.099976,1449.099976,1497.199951,1549.699951,1599.800049,1649.800049,1699.400024,1749.599976,1799.099976,1849.599976,1899.5,1949],[23.049999,23.051001,23.047001,23.041,23.046,22.884001,20.990999,20.322001,19.715,19.177,18.962,18.591999,18.368,18.072001,17.862,17.698,17.563999,17.372999,17.181,17.122,17.056999,16.957001,16.798,16.643999,16.462,16.223,15.855,15.696,15.485,15.333,15.244,15.031,14.863,14.6,14.501,14.361,14.083,13.875,13.643,13.097,12.431,11.785,11.128,10.554,9.897,9.304,8.541,7.757,6.997,6.446,5.916,5.673,5.276,4.727,4.367,4.198,3.993,3.654,3.48,3.34,3.259,3.174,3.121,3.016,2.919,2.909,2.874,2.822,2.816,2.786],[35.52018,35.521198,35.521198,35.522182,35.520195,35.515202,35.547199,35.531231,35.579216,35.580212,35.607208,35.595211,35.600193,35.585209,35.580219,35.572235,35.572216,35.586231,35.602219,35.601215,35.596241,35.587234,35.57024,35.55423,35.549267,35.524261,35.488266,35.471256,35.467289,35.450287,35.441269,35.433319,35.4193,35.393307,35.390331,35.373299,35.338356,35.323353,35.298359,35.231384,35.137417,35.04446,34.953487,34.874519,34.791553,34.725582,34.648624,34.58765,34.532677,34.499699,34.472713,34.488724,34.465733,34.441734,34.445744,34.466747,34.504734,34.505726,34.521748,34.550732,34.565708,34.590725,34.612705,34.638702,34.666695,34.69268,34.708683,34.720673,34.738689,34.747665]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_151","geolocation":{"type":"Point","coordinates":[26.977,-36.671]},"basin":3,"timestamp":"2014-03-02T01:50:27.000Z","date_updated_argovis":"2023-01-26T10:43:18.510Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_151.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":151,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.9,20.1,29.5,40.5,50.200001,60.5,70.099998,77.800003,90.099998,100.099998,109.800003,120.099998,128.799988,140,150.399994,160.399994,170.199997,180.299988,190.099991,199.799988,210.399994,220.299988,230.099991,239.899994,250.099991,259.600006,267.199982,280,290,300,310.199982,319.899994,329.799988,340.199982,350.199982,360.199982,380.100006,400.100006,449.899994,499.699982,550.100037,600.200012,650.200012,700.100037,750,799.700012,847.100037,899.800049,950.100037,1000.400024,1049.400024,1100.099976,1150,1200.099976,1247.599976,1300.099976,1350,1400.200073,1449.900024,1500.400024,1549.800049,1600.200073,1650.099976,1699.599976,1750.099976,1800.099976,1849.700073,1900,1949.700073,2000.5],[24.618999,24.618999,24.625,24.627001,24.576,22.542999,21.636,21.283001,20.51,20.153999,19.444,19.028999,18.785999,18.606001,18.452,18.212999,17.896999,17.74,17.606001,17.509001,17.412001,17.290001,17.111,16.976999,16.833,16.718,16.620001,16.503,16.299999,16.193001,16.042,16.011,15.904,15.679,15.501,15.38,15.181,14.959,14.613,14.082,13.696,13.089,12.586,12.11,11.485,10.988,10.471,9.866,9.386,8.745,8.059,7.381,6.456,5.849,5.468,4.895,4.642,4.729,4.557,4.157,3.766,3.657,3.46,3.329,3.218,3.139,3.047,2.953,2.927,2.892,2.863],[35.672142,35.672134,35.671146,35.672131,35.657162,35.473213,35.502201,35.523216,35.571201,35.632175,35.634193,35.628197,35.623177,35.613197,35.604191,35.605209,35.586208,35.58622,35.590206,35.603214,35.605209,35.597221,35.58223,35.573215,35.558216,35.552227,35.543232,35.531242,35.51524,35.50425,35.49527,35.503258,35.494255,35.471272,35.457275,35.453289,35.440273,35.423286,35.385315,35.342312,35.29834,35.225346,35.156387,35.087406,34.998459,34.931484,34.860508,34.788544,34.734543,34.672573,34.605614,34.551632,34.471668,34.415688,34.401688,34.371708,34.396706,34.48167,34.49966,34.496666,34.476688,34.513672,34.528683,34.557671,34.580669,34.59766,34.621666,34.642643,34.657639,34.677647,34.696621]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_150","geolocation":{"type":"Point","coordinates":[26.468,-36.129]},"basin":3,"timestamp":"2014-02-19T22:24:53.005Z","date_updated_argovis":"2023-01-26T10:43:16.683Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_150.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":150,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.9,19.9,30.5,40.5,50,60.400002,70.200005,80.400002,90.200005,99.800003,110.599998,120.300003,130,140,150.099991,160.299988,170.399994,180,189.899994,199.899994,210,219.599991,230.299988,240.199997,247.299988,259.899994,269.899994,279.899994,290.199982,300.5,310.199982,320.199982,329.600006,339.899994,349.600006,360.199982,379.5,399.799988,449.799988,500.299988,550.300049,600,649.900024,700.400024,750,799.600037,849.300049,900.200012,950.200012,999.600037,1047.200073,1100.5,1149.900024,1199.5,1250.400024,1300.099976,1350.200073,1400.300049,1450.200073,1500.099976,1549.800049,1599.900024,1650.300049,1699.800049,1750,1800.400024,1849.400024,1899.200073,1949.300049],[25.044001,25.045,25.048,24.955,24.068001,21.379999,20.292,19.834,19.322001,18.841999,18.559,18.188999,18,17.729,17.587,17.521,17.415001,17.313999,17.198999,17.118,17.055,16.955,16.829,16.666,16.608,16.544001,16.445,16.225,16.089001,15.949,15.833,15.667,15.582,15.508,15.38,15.283,15.128,14.839,14.61,14.052,13.536,12.99,12.48,11.984,11.415,10.993,10.497,9.995,9.355,8.84,8.275,7.456,6.571,6.09,5.641,5.178,4.765,4.476,4.386,3.889,3.737,3.722,3.592,3.364,3.229,3.113,3.053,3.044,2.983,2.944],[35.686283,35.687275,35.686287,35.682274,35.668324,35.659332,35.662346,35.664307,35.658325,35.637333,35.631359,35.615353,35.616341,35.60836,35.600361,35.607365,35.611374,35.60738,35.606354,35.602394,35.597385,35.588383,35.56937,35.543396,35.548393,35.542385,35.535389,35.50938,35.498394,35.488411,35.488411,35.474411,35.467419,35.461418,35.452438,35.450432,35.434425,35.404442,35.387444,35.341473,35.284489,35.220528,35.148548,35.072571,34.991608,34.933624,34.865646,34.803673,34.728718,34.680721,34.632736,34.547775,34.474792,34.458809,34.44183,34.418854,34.419853,34.42083,34.478825,34.438847,34.462833,34.513836,34.539822,34.547813,34.573799,34.596809,34.619793,34.656784,34.675777,34.692776]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_149","geolocation":{"type":"Point","coordinates":[28.152,-35.892]},"basin":3,"timestamp":"2014-02-09T17:57:44.000Z","date_updated_argovis":"2023-01-26T10:43:14.888Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_149.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":149,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.3,18,29.4,40.200001,50,60.200001,67.800003,80.300003,90.300003,100.300003,109.900002,120,129.900009,139.600006,150.199997,160.300003,170.100006,180,190.300003,199.699997,209.900009,219.800003,229.600006,239.5,249.699997,259.699982,269.699982,279.599976,289.699982,299.699982,310,320.199982,330.099976,340.199982,350.099976,359.599976,380,399.899994,449.899994,499.799988,550.099976,599.899963,650.200012,700.099976,750.200012,799.5,849.399963,899.899963,950,999.700012,1049.5,1100.100098,1149.900024,1199.5,1250,1299.5,1350,1399.5,1449.800049,1499.900024,1549.600098,1599.800049,1649.400024,1700.100098,1749.700073,1800.300049,1850.100098,1900.200073,1949.200073,2000.200073],[24.075001,24.079,24.079,24.006001,23.948,21.955999,20.908001,20.514,20.153999,19.466999,19.160999,18.900999,18.774,18.613001,18.441999,18.299,18.215,18.124001,17.995001,17.893,17.671,17.497999,17.368999,17.299999,17.254,17.23,17.195,17.124001,17.061001,16.907,16.774,16.605,16.405001,16.268,16.073,15.954,15.844,15.547,15.286,14.685,14.035,13.339,12.941,12.505,12.007,11.442,11.065,10.526,9.935,9.463,8.738,8.141,7.244,6.704,6.057,5.618,5.291,5.11,4.868,4.568,4.439,4.335,4.171,4.148,3.946,3.69,3.319,3.097,3.031,2.958,2.904],[35.729462,35.72747,35.728458,35.722462,35.721481,35.6465,35.603535,35.62252,35.642532,35.570545,35.585533,35.59153,35.605556,35.605545,35.596539,35.591557,35.586544,35.583538,35.578564,35.571568,35.570576,35.576569,35.603542,35.607567,35.611557,35.614555,35.614552,35.606548,35.597546,35.581566,35.567562,35.552574,35.532578,35.525574,35.5126,35.501595,35.492596,35.474606,35.447643,35.409653,35.340675,35.258698,35.212704,35.147751,35.07077,34.983799,34.938805,34.867851,34.794865,34.741879,34.669926,34.61594,34.526962,34.490978,34.433006,34.442013,34.435017,34.471004,34.477009,34.490017,34.515003,34.546989,34.559998,34.612999,34.634972,34.650978,34.641991,34.640987,34.660976,34.677979,34.696976]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_148","geolocation":{"type":"Point","coordinates":[28.483,-36.024]},"basin":3,"timestamp":"2014-01-30T14:27:29.994Z","date_updated_argovis":"2023-01-26T10:43:13.081Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_148.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":148,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.3,9.5,19.6,29.299999,39.400002,49.400002,59.600002,69.900002,79.099998,89.599998,99.200005,109.900002,119.400002,129.199997,139.5,149.899994,159.5,169.799988,179.699997,189.399994,199.299988,209.5,219.199997,229.5,239.799988,249.399994,259.100006,269.899994,279.5,289.199982,299.199982,307.600006,320,330,339.399994,349.299988,359.799988,379.799988,399.100006,449.799988,499.600006,549.400024,599.5,649.5,699.900024,749.800049,799.700012,849.600037,899.5,949.700012,999.300049,1049.300049,1099.900024,1149.099976,1199.5,1249.800049,1299.400024,1349.800049,1399.800049,1449.700073,1499.099976,1546.700073,1599.200073,1649.300049,1699.700073,1749.599976,1799.900024,1849.800049,1898.800049,1948.800049],[23.622,23.627001,23.618999,23.583,23.424,21.002001,20.513,20.243999,19.861,19.495001,19.209999,18.947001,18.733999,18.676001,18.535,18.408001,18.323,18.288,18.225,18.176001,18.131001,18.082001,18.014,17.941,17.871,17.716999,17.607,17.445,17.326,17.205999,17.066,16.972,16.743999,16.542,16.392,16.257999,16.122999,15.806,15.524,14.818,14.252,13.676,13.168,12.599,12.044,11.426,10.934,10.48,9.948,9.405,8.908,8.254,7.762,6.968,6.361,5.876,5.523,5.165,5.004,4.73,4.366,4.392,4.163,3.823,3.594,3.335,3.236,3.132,3.08,2.991],[35.599796,35.600784,35.597794,35.60078,35.593807,35.535851,35.602802,35.610809,35.610832,35.614861,35.612831,35.593819,35.590839,35.60186,35.583851,35.577854,35.578865,35.589848,35.585854,35.583866,35.58284,35.580868,35.578857,35.578854,35.575871,35.574867,35.573853,35.572872,35.571861,35.582863,35.564861,35.557892,35.544876,35.529873,35.524914,35.511906,35.497898,35.481895,35.457912,35.401928,35.363968,35.296986,35.235004,35.159039,35.079094,34.988102,34.919144,34.862167,34.794182,34.742199,34.692226,34.637257,34.607265,34.537315,34.500324,34.481342,34.486336,34.48233,34.517338,34.526337,34.509346,34.560333,34.573334,34.571327,34.575333,34.582333,34.61134,34.630318,34.653324,34.672314]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_147","geolocation":{"type":"Point","coordinates":[27.608,-36.082]},"basin":3,"timestamp":"2014-01-20T09:51:55.999Z","date_updated_argovis":"2023-01-26T10:43:11.288Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_147.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":147,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.1,9.599999,20.1,30.300001,40.100002,49.299999,60.100002,70.399994,79.599998,90.099998,99.599998,110,120,130.099991,139.5,149.699997,159.399994,170.399994,180,189.899994,199.800003,210,220.199997,230,240.199997,250,259.900024,269.700012,280,289.200012,299.600006,309.900024,319.700012,330.100006,340.100006,350.200012,360,379.700012,400.200012,450.300018,500,550.200012,600.200012,649.799988,700,750.200012,799.5,850.100037,900.100037,949.799988,999.299988,1050.099976,1098.599976,1150.199951,1199.899902,1250.199951,1300.099976,1349.699951,1399.199951,1448.699951,1500,1549.5,1599.699951,1650.199951,1699.699951,1750.199951,1799.699951,1849.399902,1899.399902,1950,1999.5],[23.617001,23.58,23.139999,22.976999,22.371,21.292999,20.549999,20.086,19.666,19.42,19.211,19.018,18.861,18.642,18.547001,18.427999,18.368999,18.309999,18.275,18.219999,18.164,18.117001,18.045,17.986,17.892,17.789,17.608,17.493999,17.364,17.221001,17.051001,16.945,16.85,16.649,16.495001,16.361,16.226,15.977,15.56,14.732,14.162,13.602,13.062,12.55,12.059,11.453,10.924,10.387,9.88,9.411,8.801,8.213,7.533,6.877,6.407,5.459,5.047,4.773,4.64,4.38,4.03,3.825,3.801,3.636,3.531,3.395,3.245,3.087,3.027,2.968,2.929],[35.622852,35.623821,35.61985,35.614868,35.603855,35.588867,35.587875,35.590881,35.58588,35.597874,35.628872,35.616859,35.609875,35.60088,35.603905,35.59988,35.593876,35.590881,35.588894,35.586887,35.583912,35.580898,35.578884,35.576904,35.574902,35.575874,35.568897,35.56892,35.583897,35.57291,35.554913,35.566914,35.556911,35.535938,35.525928,35.513916,35.506927,35.484917,35.457954,35.39695,35.335999,35.277023,35.219044,35.145081,35.07209,34.984135,34.925156,34.852173,34.790207,34.73822,34.679256,34.633282,34.568298,34.52832,34.508327,34.412357,34.399376,34.409363,34.448357,34.463364,34.462364,34.482365,34.517353,34.543343,34.583336,34.604332,34.620323,34.633324,34.658318,34.676319,34.697319]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_146","geolocation":{"type":"Point","coordinates":[25.776,-36.164]},"basin":3,"timestamp":"2014-01-10T06:34:46.999Z","date_updated_argovis":"2023-01-26T10:43:09.494Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_146.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":146,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.9,19.900002,29.6,39.900002,50,57.299999,69.699997,79.5,89.899994,100.099998,109.5,119.799995,129.300003,139.099991,149.699997,159.699997,169.699997,180,190,200,210.099991,219.5,230,239.800003,249.5,259.400024,269.5,280.200012,290.400024,300.100006,310.200012,320.100006,330,340,350.100006,360,379.700012,400.100006,450.100006,499.800018,549.299988,600,649.900024,699.700012,749.900024,799.5,850.100037,899.5,950.200012,1000.100037,1050,1100.199951,1149.599976,1197.5,1250.199951,1299.899902,1349.799927,1399.399902,1450.199951,1499.599976,1549.199951,1599.799927,1650.099976,1699.299927,1750,1800.199951,1849.5,1899.699951,1949.199951],[23.445999,23.438,23.399,20.912001,20.58,20.459999,20.275999,19.818001,19.632,19.447001,19.208,19.024,18.796,18.642,18.541,18.462,18.379999,18.323,18.257,18.212999,18.131001,18.055,18.039,17.952999,17.83,17.725,17.589001,17.479,17.261999,17.141001,17.011999,16.969,16.855,16.721001,16.631001,16.533001,16.368,16.052,15.593,14.778,14.241,13.626,13.105,12.421,11.879,11.246,10.72,10.102,9.533,8.931,8.431,7.728,7.183,6.726,6.342,5.866,5.295,4.936,4.774,4.491,4.383,3.997,3.55,3.481,3.434,3.347,3.183,3.054,3.02,2.969],[35.619984,35.619991,35.615978,35.586033,35.599033,35.619011,35.62101,35.60603,35.625015,35.628017,35.598022,35.599014,35.597031,35.584038,35.577049,35.58503,35.580017,35.581028,35.581055,35.581039,35.577042,35.575062,35.574043,35.573055,35.570045,35.567028,35.566048,35.558071,35.550068,35.554058,35.55407,35.570053,35.555054,35.545067,35.535061,35.527084,35.514061,35.487076,35.4561,35.394123,35.364143,35.284168,35.226204,35.132233,35.055244,34.96529,34.89431,34.816341,34.752377,34.689396,34.640408,34.579441,34.55444,34.54245,34.57346,34.547466,34.516464,34.51049,34.53347,34.534485,34.559483,34.533478,34.519508,34.566502,34.599468,34.619476,34.625458,34.639469,34.667458,34.683441]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_145","geolocation":{"type":"Point","coordinates":[26.051,-35.722]},"basin":3,"timestamp":"2013-12-31T01:53:36.999Z","date_updated_argovis":"2023-01-26T10:43:07.702Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_145.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":145,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.3,19.599998,29.199999,40.099998,49.399998,60.399998,69.800003,80.300003,90.200005,100.100006,109.900002,120,129.5,140.199997,149.699997,160.199997,170.300003,180.199997,189.800003,199.800003,209.699997,220.300003,230.400009,239.800003,249.699997,259.5,270.099976,280.299988,289.599976,299.799988,309.599976,319.399994,329.399994,337.5,350.399994,359.799988,380.099976,399.5,447.699982,500.299988,550.099976,599.899963,649.799988,699.899963,749.700012,799.799988,850.099976,900.200012,950,999.700012,1050,1100,1149.900024,1199.600098,1250.200073,1299.900024,1349.5,1398.5,1449.800049,1499.700073,1549.400024,1600.200073,1649.700073,1700,1748.100098,1800.200073,1850.100098,1899.900024,1949.5,1999.100098],[22.556,22.506001,22.437,22.357,21.32,20.870001,20.559999,20.172001,19.719999,19.474001,19.311001,19.267,19.231001,19.205999,19.159,19.101999,19.033001,18.923,18.796,18.68,18.566,18.504,18.348,18.263,18.214001,18.167,18.141001,18.1,18.051001,17.962999,17.867001,17.788,17.721001,17.683001,17.618999,17.431999,17.233999,16.83,16.767,15.981,15.041,14.397,13.948,13.368,12.677,12.077,11.561,10.993,10.358,9.519,8.965,8.369,7.755,7.382,6.92,6.357,5.733,5.355,4.993,4.662,4.55,4.251,4.207,4.041,3.879,3.675,3.469,3.156,3.098,3.037,2.95],[35.600121,35.601109,35.600121,35.599133,35.575138,35.59116,35.617134,35.636127,35.648144,35.643135,35.63913,35.637115,35.638134,35.635147,35.634144,35.632133,35.627136,35.624134,35.619152,35.615158,35.609158,35.602158,35.591148,35.58614,35.584152,35.584152,35.584118,35.582169,35.582161,35.582161,35.581154,35.584167,35.595154,35.599163,35.603149,35.599144,35.584167,35.553165,35.548172,35.48518,35.419228,35.376259,35.32325,35.257275,35.162319,35.081352,35.010376,34.930401,34.846432,34.745468,34.692486,34.637505,34.595539,34.59753,34.569542,34.560539,34.518574,34.523575,34.499577,34.512596,34.55357,34.557587,34.596561,34.612564,34.636551,34.647549,34.655556,34.648563,34.657562,34.676552,34.687553]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_144","geolocation":{"type":"Point","coordinates":[27.667,-34.328]},"basin":3,"timestamp":"2013-12-20T22:06:36.006Z","date_updated_argovis":"2023-01-26T10:43:05.786Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_144.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":144,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.099999,19.900002,30.1,40,50,60.5,70.199997,80.099998,89.5,99.599998,109.399994,120.199997,129.599991,140.300003,150.300003,159.800003,170.199997,179.699997,189.899994,199.899994,209.599991,220.099991,229.699997,240.099991,250.199997,259.700012,269.700012,280.100006,290.200012,299.5,309.900024,320.200012,330,339.700012,349.800018,359.600006,379.200012,399.400024,449.900024,499.400024,549.799988,600,650.100037,699.700012,749.900024,800.200012,849.700012,899.900024,949.5,1000,1049.699951,1099.799927,1149.5,1197.699951,1249.899902,1299.299927,1349.699951,1400.299927,1450,1499.399902,1550.199951,1600.099976,1649.699951,1699.699951,1749.699951,1799.399902,1849.699951,1899.899902,1949.5,2000],[23.337999,23.341,23.337999,22.143,21.025,20.454,19.996,19.709999,19.252001,19.023001,18.913,18.736,18.549999,18.318001,18.138,18.035,17.957001,17.754999,17.608,17.509001,17.27,17.18,17.164,17.136,17.025999,16.934,16.848,16.743,16.679001,16.448999,16.316999,16.176001,16.037001,15.874,15.71,15.477,15.315,15.028,14.585,13.897,13.261,12.721,12.031,11.357,10.762,10.279,9.605,8.99,8.483,7.707,7.007,6.557,6.01,5.704,5.266,5.186,5.083,4.668,4.311,4.177,4.083,3.891,3.778,3.592,3.396,3.231,3.09,3.005,2.939,2.884,2.833],[35.48634,35.487331,35.486332,35.587315,35.45636,35.549328,35.527336,35.612324,35.621323,35.629322,35.62434,35.614342,35.612331,35.603336,35.590328,35.586353,35.609344,35.605358,35.606346,35.611332,35.584347,35.605354,35.603336,35.603333,35.590336,35.585358,35.577351,35.574375,35.570354,35.53738,35.527367,35.517391,35.504379,35.494366,35.474388,35.460403,35.445396,35.423401,35.385426,35.323456,35.25148,35.175507,35.081535,34.97559,34.901592,34.840622,34.760662,34.696674,34.654694,34.587723,34.544739,34.527756,34.513756,34.531765,34.524761,34.571754,34.578754,34.575756,34.56477,34.597767,34.627762,34.627766,34.64975,34.660744,34.669743,34.684753,34.688747,34.700752,34.708736,34.721737,34.731724]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_143","geolocation":{"type":"Point","coordinates":[30.196,-32.362]},"basin":3,"timestamp":"2013-12-10T18:26:05.997Z","date_updated_argovis":"2023-01-26T10:43:03.895Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_143.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":143,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.8,19.599998,29.599998,40.599998,49.799999,60.299999,70.200005,79.900002,89.800003,99.600006,110.300003,120,130.300003,140.300003,150.199997,160.199997,169.800003,179.900009,189.699997,199.900009,209.900009,219.699997,230.199997,240,249.900009,259.699982,269.799988,280.299988,289.5,299.599976,309.799988,319.399994,330.299988,340.099976,350.099976,360,380,399.799988,449.899994,500,549.5,599.899963,649.799988,700,749.899963,800,846.899963,899.899963,950.299988,999.299988,1049.900024,1100,1149.400024,1199.300049,1250.300049,1299.900024,1349.300049,1399.800049,1449.700073,1499.800049,1549.800049,1599.700073,1650.100098,1698.600098,1750.100098,1799.900024,1850.100098,1899.700073,1950.200073],[22.417,22.419001,22.426001,22.43,22.424,21.271999,20.054001,19.919001,19.381001,18.941999,18.636999,18.493,18.382999,18.288,18.216999,18.166,18.150999,18.139999,18.087999,18.052,18.01,17.945,17.864,17.688,17.577,17.318001,17.222,17.173,16.983999,16.896999,16.735001,16.586,16.351999,16.028,15.731,15.459,15.361,15.146,14.621,13.955,13.311,12.58,11.923,11.596,10.758,10.116,9.544,9.028,8.175,7.777,7.08,6.459,5.899,5.414,4.877,4.795,4.703,4.498,4.37,4.259,4.108,3.892,3.678,3.525,3.315,3.192,3.061,2.979,2.875,2.822],[35.48344,35.484432,35.485447,35.484436,35.48246,35.552433,35.538467,35.597435,35.597431,35.597443,35.592438,35.596443,35.594429,35.589455,35.585442,35.583431,35.582451,35.582439,35.581444,35.580456,35.578453,35.574471,35.570469,35.567471,35.588448,35.587456,35.598473,35.599457,35.57745,35.569473,35.554466,35.549488,35.525475,35.499496,35.477501,35.463505,35.457516,35.44553,35.399532,35.335552,35.26059,35.158619,35.068645,35.019669,34.904709,34.819725,34.756752,34.69978,34.619804,34.588806,34.552837,34.524857,34.501862,34.492863,34.4529,34.509872,34.543861,34.563858,34.593857,34.616852,34.629852,34.640846,34.653851,34.664848,34.674828,34.690826,34.698833,34.706844,34.717838,34.728825]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_142","geolocation":{"type":"Point","coordinates":[31.583,-31.607]},"basin":3,"timestamp":"2013-11-30T14:24:07.997Z","date_updated_argovis":"2023-01-26T10:43:02.086Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_142.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":142,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.6,19.300001,30.1,40,50.099998,60,70.099998,80.400002,90.099998,100,109.299995,119.199997,129.5,139.100006,149.900009,159.600006,169.800003,179.600006,190,200,209.5,219.600006,229.700012,240.100006,250.100006,259.399994,269.5,279.200012,290.100006,297.399994,309.899994,319.700012,329.899994,339.800018,350.100006,359.899994,379.300018,399.899994,449.200012,500.100006,549.299988,599.699951,649.299988,699.799988,749.799988,799.399963,849.899963,900,949.399963,1000,1049.400024,1099.400024,1149.5,1199.799927,1249.799927,1299.5,1349.5,1398.599976,1449.5,1499.699951,1548.5,1599.400024,1649.199951,1699.299927,1749.799927,1799.599976,1849.199951,1899.199951,1949.799927,1999.799927],[23.497,23.497999,23.506001,23.471001,23.1,21.959,21.533001,21.156,20.525,19.844,19.378,18.836,18.535999,18.421,18.309,18.252001,18.226999,18.173,18.131001,18.094,18.049,17.878,17.705999,17.503,17.451,17.202,17.094999,16.889999,16.782,16.683001,16.599001,16.493,16.179001,15.957,15.542,15.396,15.342,14.906,14.6,14.047,13.294,12.831,12.276,11.423,10.983,10.367,9.827,9.196,8.457,7.846,7.114,6.449,5.957,5.614,5.164,4.975,4.778,4.34,3.991,3.847,3.723,3.548,3.559,3.402,3.291,3.155,3.026,2.934,2.848,2.787,2.73],[35.418697,35.41766,35.417679,35.416668,35.421684,35.430687,35.468685,35.497681,35.510681,35.517673,35.588676,35.600658,35.585686,35.587681,35.585674,35.584679,35.583672,35.581688,35.580677,35.577679,35.574688,35.563683,35.555695,35.566681,35.589661,35.594669,35.594692,35.575691,35.565685,35.558716,35.550682,35.549713,35.513699,35.491737,35.459728,35.47073,35.46973,35.434765,35.407768,35.349762,35.2668,35.20285,35.116856,34.995892,34.934933,34.852955,34.78698,34.714012,34.645039,34.603035,34.55307,34.521091,34.503105,34.507103,34.5131,34.536095,34.565102,34.544113,34.545116,34.565109,34.597092,34.602108,34.649094,34.670074,34.678093,34.689079,34.699074,34.708073,34.722073,34.733089,34.745071]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_141","geolocation":{"type":"Point","coordinates":[31.729,-31.728]},"basin":3,"timestamp":"2013-11-20T10:28:42.999Z","date_updated_argovis":"2023-01-26T10:43:00.209Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_141.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":141,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.5,19.9,30.4,39.700001,50.600002,60.5,70.200005,79.900002,90,99.700005,110.200005,120.300003,129.699997,139.899994,149.199997,160.299988,170.299988,179.899994,189.899994,200.299988,209.899994,220.099991,230,239.699997,250,260.199982,270.100006,280.5,290.299988,300.299988,309.899994,319.899994,330,340.399994,350,359.899994,379.899994,400.199982,449.899994,499.699982,550.400024,600.300049,650,700,750.100037,800,850.200012,900.100037,950.100037,1000.300049,1050.400024,1099.900024,1149.700073,1200.200073,1249.800049,1299.800049,1349.700073,1400.099976,1450.400024,1499.599976,1550.099976,1599.599976,1649.700073,1699.400024,1750,1799.900024,1849.5,1899.900024,1949.800049],[22.326,22.305,21.891001,20.841999,20.67,20.438999,20.143999,19.731001,19.035,18.92,18.663,18.478001,18.392,18.316,18.283001,18.243,18.190001,18.132,18.072001,17.962,17.721001,17.533001,17.452,17.333,17.247999,17.153999,16.916,16.91,16.709999,16.521999,16.437,16.214001,15.973,15.798,15.663,15.571,15.302,14.912,14.608,13.816,13.255,12.6,11.99,11.578,11.058,10.446,9.852,9.244,8.598,8.036,7.388,6.724,6.358,5.748,5.244,5.143,4.852,4.6,4.295,4.141,4.014,3.815,3.656,3.354,3.273,3.18,3.063,2.987,2.892,2.83],[35.453743,35.453747,35.474735,35.551701,35.562717,35.568699,35.575706,35.585732,35.590698,35.58971,35.586708,35.58271,35.583698,35.585724,35.58572,35.584713,35.583702,35.582729,35.581718,35.581726,35.574734,35.570721,35.570721,35.570728,35.569725,35.56673,35.546726,35.575745,35.549717,35.529766,35.532726,35.51376,35.482784,35.481762,35.471771,35.46479,35.446781,35.412781,35.382793,35.304844,35.248852,35.15987,35.075909,35.017933,34.944939,34.863964,34.788998,34.724026,34.65905,34.615063,34.56707,34.524101,34.512093,34.476116,34.476128,34.513096,34.52512,34.536102,34.547096,34.576096,34.59911,34.624084,34.641094,34.638084,34.6581,34.676086,34.687084,34.703083,34.717064,34.729076]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_140","geolocation":{"type":"Point","coordinates":[31.977,-31.87]},"basin":3,"timestamp":"2013-11-10T05:52:12.999Z","date_updated_argovis":"2023-01-26T10:42:58.409Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_140.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":140,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.7,19.5,29.799999,39.599998,50,59.599998,69.599998,80.099998,89.300003,99.800003,109.400002,120,129.899994,140,147.699997,160,169.899994,179.699997,189.5,200,209.5,219.300003,229.199997,239.800003,249.899994,259.799988,269.600006,279.399994,289.799988,299.100006,309.799988,319.899994,329.899994,340,349.899994,360,379.899994,399.299988,449.799988,499.299988,549.400024,599.700012,649.299988,700,749.200012,799.299988,849.200012,896.400024,949.400024,999.099976,1049.800049,1099.5,1149.900024,1199.199951,1249.900024,1299.199951,1349.199951,1399.900024,1449.599976,1499.599976,1548.400024,1599.900024,1649.099976,1699.199951,1748.900024,1799.199951,1849.699951,1898.800049,1948.800049,1999.5],[21.820999,21.796,21.782,21.761999,21.740999,21.707001,21.657,21.382,21.283001,21.278,21.246,21.233999,21.225,21.195,21.099001,20.959999,20.605,20.125,20.063999,19.756001,19.503,19.173,18.896,18.764999,18.535999,18.400999,18.323999,18.004,17.923,17.479,17.405001,17.278999,17.181,16.857,16.635,16.304001,16.049999,15.818,15.575,14.8,13.845,13.286,12.649,12.098,11.605,11.016,10.419,9.861,9.38,8.684,7.946,7.442,6.593,6.077,5.569,5.26,5.026,4.803,4.561,4.372,4.196,4.004,3.889,3.761,3.558,3.333,3.215,3.077,2.97,2.877,2.811],[35.474018,35.474003,35.473007,35.47702,35.480026,35.484001,35.479034,35.456017,35.451031,35.457001,35.460014,35.468029,35.477024,35.476032,35.484009,35.515007,35.556995,35.569004,35.580013,35.586998,35.591,35.620991,35.643993,35.642998,35.633999,35.661983,35.650009,35.638988,35.633011,35.569035,35.582016,35.603012,35.601017,35.555046,35.547054,35.51506,35.500053,35.479073,35.465065,35.395096,35.30814,35.246151,35.16518,35.087208,35.016247,34.935268,34.858295,34.796318,34.734325,34.66835,34.605385,34.568409,34.499424,34.475437,34.472439,34.504448,34.513435,34.522438,34.537437,34.555435,34.574448,34.590435,34.620422,34.642426,34.663425,34.67342,34.688412,34.70042,34.70842,34.718418,34.731415]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_139","geolocation":{"type":"Point","coordinates":[31.965,-31.846]},"basin":3,"timestamp":"2013-10-31T02:24:48.000Z","date_updated_argovis":"2023-01-26T10:42:56.590Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_139.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":139,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.7,20.4,29.9,40.299999,49.900002,60,70.199997,80.5,89.900002,100.400002,109.699997,120.5,130.199997,140,150.5,158.899994,170.199997,180.300003,190.199997,200.199997,209.800003,219.899994,230.399994,240.600006,250,260.299988,270,279.600006,289,300,309.899994,319.700012,330.5,339.799988,350.299988,359.799988,380.100006,400.100006,450.399994,500.399994,549.700012,599.599976,647.200012,700.299988,750.099976,800.099976,850.200012,900.299988,950.200012,1000.099976,1050.300049,1099.800049,1150,1199.5,1250.199951,1300.199951,1349.699951,1400.5,1450.099976,1499.400024,1550.300049,1600.300049,1650.300049,1700.300049,1749.900024,1800,1849.800049,1899.699951,1949.699951],[21.650999,21.653,21.655001,21.656,21.659,21.653999,21.620001,21.6,21.459999,21.344999,21.049999,20.74,20.620001,20.299,19.98,19.534,19.299,18.950001,18.733999,18.658001,18.544001,18.514,18.462,18.233,17.927,17.645,17.341,17.264,17.098,16.891001,16.709999,16.606001,16.540001,16.413,16.209,16.077999,15.984,15.481,15.266,14.437,13.532,13.018,12.536,12.089,11.481,10.811,10.182,9.503,8.998,8.38,7.648,7.114,6.6,5.88,5.105,4.897,4.851,4.594,4.3,4.064,4.002,3.841,3.702,3.575,3.418,3.279,3.127,3.041,2.949,2.895],[35.483978,35.483974,35.483974,35.483982,35.483013,35.483006,35.483009,35.483006,35.482986,35.494991,35.525982,35.542973,35.55999,35.566975,35.568977,35.585976,35.59597,35.601959,35.618977,35.622967,35.624958,35.62598,35.626972,35.624977,35.613972,35.609985,35.590988,35.612988,35.587997,35.560986,35.550987,35.549995,35.551022,35.53698,35.512035,35.506004,35.501019,35.455029,35.447033,35.375057,35.273102,35.216125,35.153137,35.089146,35.004169,34.911209,34.829239,34.750244,34.694267,34.640293,34.577324,34.54332,34.515339,34.482361,34.421371,34.455376,34.520355,34.538345,34.560341,34.56834,34.601341,34.619324,34.637325,34.654316,34.667313,34.683327,34.691322,34.701309,34.712311,34.720325]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_138","geolocation":{"type":"Point","coordinates":[32.066,-31.797]},"basin":3,"timestamp":"2013-10-20T22:08:50.000Z","date_updated_argovis":"2023-01-26T10:42:54.794Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_138.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":138,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.1,19.700001,29.200001,39.899998,49.5,59.399998,70,79.599998,89.5,99.799995,109.599998,119.5,129.900009,140,149.400009,159.300003,167.400009,180,190.200012,199.600006,209.800003,219.800003,229.700012,240,249.600006,259.300018,269.700012,278.100006,289.800018,299.600006,309.700012,320.100006,329.800018,339.399994,349.5,359.800018,379.200012,399.800018,449.800018,499.399994,550.099976,600,649.5,699.699951,749.599976,799.799988,849.399963,899.299988,949.899963,999.299988,1049.900024,1099.599976,1149.900024,1199.199951,1249.699951,1299.599976,1350,1399.099976,1449.299927,1499.400024,1549.900024,1599.599976,1649.5,1699.199951,1749,1799.5,1849.599976,1899.599976,1949.099976,2000.299927],[19.893,19.889,19.843,19.785999,19.243999,18.969999,18.757999,18.6,18.559999,18.511999,18.448,18.392,18.33,18.229,18.101999,18.032,17.886999,17.782,17.612,17.487,17.330999,17.157,17.068001,16.996,16.85,16.738001,16.676001,16.396999,16.209,15.921,15.684,15.42,15.358,15.154,15.044,14.83,14.729,14.502,14.332,13.693,13.198,12.604,12.134,11.631,11.074,10.53,10.005,9.558,9.058,8.161,7.552,7.026,6.395,5.898,5.175,4.907,4.696,4.607,4.522,4.25,4.089,3.864,3.828,3.563,3.394,3.177,3.089,3.006,2.89,2.844,2.795],[35.550274,35.575275,35.598251,35.605267,35.580273,35.592281,35.592297,35.587284,35.589287,35.596283,35.59029,35.584267,35.586266,35.583294,35.576294,35.573296,35.566296,35.560272,35.558289,35.556309,35.555302,35.55331,35.554302,35.550289,35.541317,35.537319,35.533295,35.516312,35.505325,35.483326,35.44635,35.418331,35.437328,35.425358,35.417336,35.399357,35.393349,35.375366,35.356373,35.306385,35.247398,35.164452,35.099464,35.02549,34.945511,34.872536,34.805557,34.755569,34.701603,34.617634,34.568642,34.542645,34.501671,34.478687,34.433708,34.44371,34.473705,34.502689,34.557686,34.565693,34.57468,34.587669,34.63567,34.66066,34.669678,34.677662,34.691666,34.704659,34.718647,34.724655,34.733646]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_137","geolocation":{"type":"Point","coordinates":[31.622,-31.726]},"basin":3,"timestamp":"2013-10-10T17:46:20.997Z","date_updated_argovis":"2023-01-26T10:42:52.892Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_137.nc","date_updated":"2020-11-12T10:21:04.000Z"}],"cycle_number":137,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.599999,20.1,29.900002,38.700001,50.299999,59.600002,70.299995,79.899994,90.099998,100.199997,109.5,119.399994,130.099991,140,149.800003,160.300003,169.800003,179.899994,190.199997,200.199997,210,220.199997,230.099991,239.599991,249.5,259.5,269.800018,280.300018,289.900024,299.900024,310,320,330.300018,339.900024,349.800018,360.100006,380,400.100006,449.800018,500,549.700012,600,649.5,699.900024,750,799.5,849.600037,900.299988,949.600037,1000,1049.399902,1100.199951,1149.799927,1199.899902,1250.199951,1299.5,1349.5,1399.699951,1449.5,1499.899902,1549.299927,1599.599976,1649.799927,1699.599976,1749.299927,1800.199951,1849.899902,1899.199951,1949.099976,2000.799927],[21.885,21.886999,21.747,21.507,21.363001,20.945,20.767,20.084999,19.778999,19.302,19.042,18.917,18.700001,18.621,18.563,18.448999,18.400999,18.382999,18.212999,17.966,17.742001,17.650999,17.532,17.466,17.402,17.233,16.993,16.643999,16.535,16.4,16.246,15.986,15.908,15.711,15.567,15.317,15.046,14.695,14.398,13.787,13.345,12.905,12.353,11.982,11.374,10.72,10.093,9.566,8.913,8.213,7.654,7.034,6.224,5.638,5.425,5.086,4.824,4.948,4.656,4.462,4.211,3.81,3.625,3.443,3.262,3.129,2.972,2.879,2.82,2.756,2.703],[35.490406,35.490406,35.480385,35.523396,35.542377,35.558372,35.562366,35.580372,35.587391,35.591393,35.585396,35.58437,35.5854,35.581398,35.58939,35.584385,35.588409,35.613384,35.605392,35.591393,35.594368,35.598404,35.598396,35.60339,35.604385,35.583405,35.56739,35.535416,35.530415,35.522404,35.512428,35.502457,35.496433,35.482433,35.471424,35.460457,35.43047,35.403465,35.378479,35.315514,35.267521,35.209534,35.13055,35.075584,34.990601,34.899639,34.817665,34.756676,34.684692,34.624718,34.579742,34.541748,34.480774,34.45578,34.479797,34.474796,34.501781,34.582771,34.587765,34.604767,34.624767,34.647762,34.667755,34.679752,34.685764,34.699764,34.713749,34.722755,34.73074,34.740742,34.75174]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_136","geolocation":{"type":"Point","coordinates":[32.775,-29.711]},"basin":3,"timestamp":"2013-09-30T13:55:34.995Z","date_updated_argovis":"2023-01-26T10:42:51.077Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_136.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":136,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10,19.800001,29.800001,39.600002,49.799999,59.900002,70.199997,79.799995,90,100.199997,110.099998,119.5,130,140,150.099991,160.300003,170.300003,179.699997,189.699997,199.5,209.599991,220,229.699997,239.800003,248.300003,260.300018,270.400024,279.900024,290.200012,300.100006,310.100006,319.900024,329.600006,339.600006,349.600006,359.900024,380,399.600006,449.700012,499.5,549.600037,599.799988,649.5,699.600037,750.200012,799.900024,849.799988,900.100037,950.200012,1000,1049.099976,1099.699951,1149.899902,1200,1249.799927,1299.599976,1350,1399.899902,1450.099976,1499.699951,1549.899902,1599.399902,1649.399902,1699.299927,1750.199951,1798.699951],[21.639,21.636,21.523001,21.504999,21.500999,21.493,21.487,20.912001,20.490999,20.250999,19.910999,19.25,19.136999,18.983999,18.732,18.059999,17.664,17.455,17.127001,16.822001,16.684,16.568001,16.374001,16.231001,15.982,15.815,15.4,15.321,15.096,14.914,14.814,14.71,14.569,14.36,14.325,14.257,14.109,13.876,13.669,12.99,12.609,12.061,11.374,10.785,10.113,9.502,8.827,8.21,7.62,6.815,6.275,5.811,5.408,5.027,4.622,4.435,4.436,4.176,3.877,3.686,3.629,3.527,3.329,3.142,3.061,2.954,2.75],[35.497555,35.497555,35.492554,35.492546,35.491531,35.492542,35.488533,35.497559,35.521534,35.534557,35.530556,35.524532,35.64053,35.638538,35.610542,35.496555,35.503571,35.51059,35.514572,35.505573,35.500587,35.540569,35.523575,35.49757,35.484592,35.473598,35.454601,35.448612,35.443619,35.42762,35.422607,35.416618,35.403625,35.384628,35.381641,35.374649,35.358627,35.333656,35.310654,35.225674,35.17569,35.088722,34.989754,34.907768,34.821808,34.752815,34.681847,34.626869,34.582893,34.520912,34.480919,34.464928,34.466934,34.474934,34.488941,34.525921,34.605915,34.605904,34.603905,34.616928,34.656891,34.674892,34.690895,34.699913,34.712906,34.721893,34.744896]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_135","geolocation":{"type":"Point","coordinates":[34.179,-29.16]},"basin":3,"timestamp":"2013-09-20T09:43:21.002Z","date_updated_argovis":"2023-01-26T10:42:49.203Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_135.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":135,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.9,17.699999,30,40.400002,49.900002,59.400002,69.599998,80.400002,89.900002,100.200005,110.400002,120.099998,129.5,139.899994,148.5,160.299988,170.199997,180.399994,190.199997,199.799988,210.399994,219.799988,230.299988,240.099991,250,259.299988,269.899994,279.699982,288.899994,300.199982,310.100006,320.399994,330.5,339.899994,349.899994,360.299988,379.899994,399.600006,450,500.100006,550.100037,600.400024,649.5,699.800049,750.100037,799.900024,849.600037,900,950.100037,1000.100037,1050,1100.300049,1150.099976,1199.400024,1250.099976,1300.300049,1349.700073,1400,1450.200073,1500.200073,1549.700073,1599.900024,1650,1699.400024,1750.200073,1799.800049,1850.200073,1900,1949.800049,1999.300049],[21.184999,21.193001,21.136999,21.101,21.062,20.118999,19.775999,19.632,19.518,19.221001,18.945999,18.829,18.768999,18.73,18.620001,18.419001,18.223,18.011,17.785999,17.533001,17.306999,17.164,16.927,16.77,16.674999,16.490999,16.299999,16.127001,16.009001,15.874,15.599,15.393,15.132,15.063,14.919,14.782,14.595,14.253,13.981,13.295,12.804,12.209,11.554,11.045,10.244,9.709,8.863,8.276,7.637,6.962,6.351,5.728,5.23,4.823,4.758,4.797,4.489,4.258,4.335,3.903,3.61,3.616,3.47,3.305,3.119,2.995,2.859,2.778,2.701,2.653,2.618],[35.528618,35.528633,35.528633,35.528622,35.524612,35.576611,35.573612,35.595589,35.599606,35.60363,35.621605,35.651585,35.655602,35.665592,35.664593,35.648598,35.640594,35.618622,35.612598,35.583633,35.571629,35.571629,35.560638,35.547646,35.551632,35.537651,35.525673,35.515656,35.505627,35.494675,35.474655,35.459671,35.440681,35.43568,35.421684,35.411682,35.409668,35.374699,35.356712,35.27174,35.207748,35.111771,35.015797,34.943829,34.839859,34.776871,34.685894,34.640919,34.570942,34.521954,34.486965,34.473984,34.470989,34.46899,34.518978,34.583958,34.589966,34.599957,34.643951,34.615967,34.605965,34.651955,34.676937,34.692951,34.703938,34.716953,34.728935,34.739941,34.74992,34.758934,34.763935]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_134","geolocation":{"type":"Point","coordinates":[35.162,-29.072]},"basin":3,"timestamp":"2013-09-10T05:37:39.999Z","date_updated_argovis":"2023-01-26T10:42:47.384Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_134.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":134,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.9,19.400002,30.200001,40.100002,50.299999,59.600002,70,80.299995,90.199997,100.099998,109.799995,120.099998,129.699997,140.099991,149.899994,159.599991,169.800003,180.199997,189.699997,199.899994,209.899994,219.800003,229.399994,240,249.699997,259.200012,269.900024,279.900024,289.700012,299.800018,309.900024,317.700012,329.800018,339.900024,349.700012,360,379.5,399.400024,450,500.200012,549.900024,599.5,649.799988,700,750.200012,799.600037,850.100037,899.299988,950.100037,1000.100037,1049.299927,1100,1149.5,1200,1249.799927,1299.599976,1349.799927,1399.599976,1450.199951,1499.799927,1550,1600.199951,1650.099976,1700.199951,1749.799927,1800.099976,1849.599976,1899.699951,1950,1999.899902],[21.205,21.205999,21.205999,21.205999,21.211,21.212,20.806,20.612,20.365999,20.174,19.778999,19.438999,19.219999,19.041,18.9,18.551001,18.076,17.844,17.756001,17.452,17.287001,17.035,16.933001,16.832001,16.743999,16.573,16.552999,16.296,15.99,15.794,15.644,15.551,15.418,15.189,14.954,14.737,14.407,14.078,13.777,13.285,12.939,12.351,11.89,11.153,10.391,9.847,9.192,8.39,7.534,6.792,6.235,5.776,5.306,4.946,4.603,4.46,4.384,4.246,4.024,3.892,3.773,3.618,3.524,3.36,3.168,3.028,2.931,2.845,2.792,2.737,2.7],[35.479832,35.479855,35.479855,35.479855,35.479855,35.47784,35.514847,35.536835,35.53886,35.54882,35.565857,35.592831,35.618832,35.620827,35.620827,35.623829,35.582859,35.569859,35.564861,35.559841,35.555855,35.557865,35.555862,35.548847,35.546856,35.539871,35.536858,35.522896,35.501877,35.487881,35.478867,35.470894,35.459904,35.442909,35.425911,35.409904,35.372921,35.333954,35.324951,35.263966,35.226967,35.133999,35.06403,34.957058,34.855083,34.786098,34.713116,34.633167,34.560188,34.507206,34.48621,34.472218,34.469223,34.468216,34.489235,34.51722,34.551197,34.570217,34.594215,34.616199,34.645195,34.662182,34.673199,34.674183,34.68219,34.699184,34.711189,34.721195,34.732182,34.738167,34.746181]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_133","geolocation":{"type":"Point","coordinates":[35.723,-29.632]},"basin":3,"timestamp":"2013-08-31T02:13:02.000Z","date_updated_argovis":"2023-01-26T10:42:45.505Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_133.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":133,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.3,19.6,29.6,40.099998,50.099998,60.099998,69.799995,79.900002,89.900002,100,109.5,120,129.700012,139.300003,150,160.100006,169.600006,179.5,189.700012,199.700012,209.400009,219.700012,229.300003,239.700012,249.900009,259.800018,269.700012,280,290,300,310.200012,319.700012,329.700012,339.899994,350.100006,359.600006,379.399994,399.899994,449.899994,500,549.899963,599.399963,649.899963,699.099976,749.699951,799.899963,849.399963,899.899963,950.099976,1000,1049.900024,1100,1150,1199.400024,1249.099976,1299.5,1350.099976,1399.599976,1449.900024,1499.799927,1549.299927,1599.599976,1649.5,1700.099976,1749.799927,1800,1849.900024,1899.299927],[19.888,19.893999,19.525,19.496,19.488001,18.695,18.615999,18.492001,18.41,18.337999,18.24,18.129999,18.037001,17.872,17.645,17.452999,17.337999,17.165001,17.018,16.923,16.858,16.819,16.792,16.677,16.608999,16.511999,16.292,16.250999,16.1,15.889,15.646,15.528,15.359,15.257,15.08,15.003,14.967,14.817,14.365,13.728,13.126,12.532,11.967,11.472,10.941,10.329,9.79,9.327,8.749,8.129,7.195,6.603,6.02,5.575,5.307,5.02,4.771,4.48,4.257,4.113,3.983,3.815,3.62,3.5,3.296,3.21,3.093,3.021,2.881],[35.609009,35.608025,35.62701,35.62801,35.625027,35.64703,35.642025,35.627033,35.633007,35.632034,35.627014,35.60902,35.594044,35.580048,35.569046,35.563038,35.557053,35.555046,35.555046,35.553051,35.552055,35.552082,35.549046,35.54406,35.541058,35.535061,35.523071,35.521065,35.510059,35.49509,35.478085,35.470078,35.457092,35.448093,35.436104,35.429123,35.426102,35.411091,35.369114,35.305134,35.23317,35.151188,35.071228,35.004215,34.932247,34.853275,34.790306,34.740311,34.684326,34.617348,34.534386,34.514389,34.468418,34.466419,34.48341,34.50341,34.521404,34.544415,34.56739,34.589397,34.611408,34.639381,34.658394,34.66938,34.687374,34.694378,34.704376,34.712379,34.726383]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_132","geolocation":{"type":"Point","coordinates":[35.674,-29.486]},"basin":3,"timestamp":"2013-08-20T22:07:21.000Z","date_updated_argovis":"2023-01-26T10:42:43.775Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_132.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":132,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.299999,20.199999,30.6,40.300003,50.400002,60,70.099998,79.800003,90.400002,100,110.099998,120,130,140.5,150.199997,160.099991,170.299988,179.899994,189.699997,200.199997,209.599991,220.199997,230.199997,237.699997,250,260.399994,270.299988,280.399994,290.100006,300,309.799988,320,330.100006,339.899994,350.199982,360.299988,380.100006,399.600006,449.699982,500.199982,550.200012,600.100037,649,700.300049,749.700012,800.200012,850,899.300049,950.400024,1000,1050.300049,1100.5,1149.800049,1197,1249.900024,1300,1350.200073,1399.900024,1449.5,1500.200073,1549,1600.200073,1650,1699.5,1750,1799.700073,1850.099976],[19.84,19.851999,19.849001,19.851999,19.830999,19.135,19.089001,18.981001,18.813,18.65,18.09,17.978001,17.683001,17.082001,16.790001,16.695,16.761999,16.629999,16.566,16.393,16.247,16.035999,15.716,15.505,15.506,15.306,15.142,14.946,14.762,14.664,14.529,14.437,14.367,14.251,14.116,14.006,13.946,13.717,13.422,12.877,12.414,11.799,11.349,10.861,10.31,9.906,9.235,8.643,8.028,7.257,6.692,6.191,5.396,4.969,4.888,4.706,4.537,4.315,4.124,4.017,3.854,3.722,3.602,3.428,3.267,3.159,3.023,2.928],[35.608067,35.607067,35.608059,35.60807,35.601055,35.670055,35.676044,35.672039,35.659035,35.639076,35.543095,35.568085,35.536091,35.442123,35.415096,35.451115,35.5061,35.515099,35.523083,35.524086,35.510105,35.481098,35.427124,35.399128,35.425114,35.41613,35.421127,35.398148,35.387142,35.380142,35.365139,35.367149,35.365139,35.347153,35.339169,35.325169,35.334156,35.304161,35.27018,35.202209,35.137226,35.050232,34.986252,34.918262,34.845291,34.794312,34.717327,34.656357,34.599373,34.538387,34.50539,34.493404,34.454418,34.454418,34.495403,34.519413,34.539421,34.551403,34.585407,34.608395,34.620392,34.643398,34.663395,34.675381,34.687393,34.69738,34.711388,34.721378]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_131","geolocation":{"type":"Point","coordinates":[36.024,-29.065]},"basin":3,"timestamp":"2013-08-10T18:15:38.999Z","date_updated_argovis":"2023-01-26T10:42:42.010Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_131.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":131,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.1,19.9,30.199999,40.299999,50,60,70.300003,80.300003,89.5,100.200005,110.100006,120.200005,130,140,150.300003,159.900009,170.199997,179.699997,189.600006,199.300003,210.100006,219.800003,229.900009,239.800003,250.400009,260.399994,269.799988,279.699982,289.5,300.199982,310.199982,319.599976,330.099976,340.299988,349.399994,359.699982,380.199982,399.899994,450,500.299988,549.599976,600.099976,650.399963,699.700012,750.099976,800.099976,850.099976,899.700012,950.200012,1000,1050,1099.600098,1149.5,1199.400024,1250.100098,1300.100098,1348.200073,1400.100098,1450,1499.5,1547.100098,1599.700073,1650.200073,1700.200073,1749.900024,1799.800049,1849.5,1899.700073],[21.153,21.152,21.15,20.781,20.172001,19.653999,19.295,19.142,19.134001,19.07,18.941999,18.709999,17.808001,17.329,17.174999,16.948,16.782,16.636999,16.459999,16.389,16.277,16.191,16.069,15.939,15.822,15.728,15.582,15.429,15.385,15.293,15.204,15.105,15.005,14.955,14.795,14.675,14.485,14.234,14.03,13.411,13.11,12.643,12.086,11.55,11.048,10.462,9.629,8.947,8.264,7.748,6.923,6.343,5.696,5.29,4.758,4.562,4.503,4.408,4.084,4.05,3.918,3.819,3.599,3.47,3.26,3.103,3.025,2.94,2.872],[35.483257,35.48328,35.482239,35.530251,35.596237,35.624245,35.66523,35.656223,35.693214,35.683231,35.667236,35.640232,35.568268,35.548279,35.550266,35.544273,35.539276,35.53429,35.523289,35.533295,35.530277,35.525284,35.520283,35.514256,35.508297,35.502296,35.494267,35.487278,35.484314,35.475304,35.467304,35.45731,35.447334,35.440311,35.424313,35.412319,35.393314,35.371338,35.349331,35.286358,35.252377,35.176384,35.091393,35.012432,34.940464,34.861481,34.760513,34.688519,34.62455,34.575562,34.513588,34.496593,34.46059,34.458618,34.44062,34.4916,34.520603,34.56559,34.552593,34.596588,34.611588,34.645569,34.654587,34.672581,34.676582,34.684582,34.694572,34.708565,34.722569]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_130","geolocation":{"type":"Point","coordinates":[37.236,-28.805]},"basin":3,"timestamp":"2013-07-31T13:49:25.005Z","date_updated_argovis":"2023-01-26T10:42:40.276Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_130.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":130,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.6,19.6,29.200001,40.199997,50.099998,59.799999,69.699997,79.400002,89.599998,99.799995,109.599998,119.5,129.800003,139.600006,149.900009,159.700012,169.400009,179.5,189.900009,200.100006,209.800003,219.700012,229.600006,239.600006,249.700012,257.200012,270,280,289.899994,299.800018,310.100006,320.100006,329.5,339.800018,349.600006,359.399994,379.700012,399.200012,450,500.200012,549.399963,599.699951,649.599976,699.599976,749.299988,800.099976,850.299988,899.5,949.799988,999.699951,1049.400024,1099.5,1149.699951,1199.5,1250.099976,1299.5,1349.299927,1400.099976,1449.400024,1499.199951,1550,1599.599976,1649.699951,1699.900024,1749.799927,1800.199951,1849.400024,1900,1949.199951,1999.400024],[20.586,20.200001,19.820999,19.587,19.5,19.403999,19.219999,19.150999,19.131001,19.094999,19.069,19.013,18.985001,18.943001,18.337,17.433001,17.117001,16.933001,16.780001,16.653,16.378,16.240999,16.094,15.922,15.793,15.669,15.573,15.446,15.359,15.251,15.093,15.032,14.863,14.796,14.662,14.522,14.381,14.117,13.927,13.582,13.169,12.806,12.33,11.778,11.287,10.751,10.034,9.279,8.605,8.133,7.312,6.723,6.176,5.629,5.226,4.705,4.359,4.443,4.296,4.025,3.972,3.734,3.443,3.378,3.271,3.126,3.058,2.968,2.906,2.864,2.81],[35.555466,35.58947,35.629486,35.668446,35.67345,35.680435,35.689438,35.693459,35.692467,35.690453,35.691456,35.691471,35.69445,35.691483,35.619476,35.561474,35.558506,35.555492,35.552498,35.545502,35.53352,35.525517,35.520523,35.510521,35.503517,35.496529,35.491528,35.485519,35.479527,35.474522,35.458538,35.452538,35.437546,35.43055,35.418568,35.406555,35.392555,35.367565,35.350578,35.318573,35.271599,35.21463,35.131626,35.047657,34.972668,34.897701,34.808727,34.721756,34.65477,34.613785,34.543793,34.517834,34.484844,34.47884,34.481853,34.45586,34.467857,34.538845,34.575844,34.585831,34.613823,34.619823,34.609844,34.637821,34.648827,34.65683,34.674828,34.690819,34.705811,34.716805,34.730808]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_129","geolocation":{"type":"Point","coordinates":[37.894,-30.044]},"basin":3,"timestamp":"2013-07-21T10:32:15.999Z","date_updated_argovis":"2023-01-26T10:42:38.497Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_129.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":129,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.6,19.5,30,39.799999,49.400002,59.599998,69.5,79.900002,89.699997,99.5,108.900002,119.400002,129.5,140.199997,150.100006,159.699997,169.600006,179.5,189.600006,199.100006,209.899994,219,229,239,248.199997,259.700012,269.899994,279.799988,289.600006,299.700012,309.5,319.600006,329.700012,339.799988,349.200012,360,379.299988,400,450,499.700012,549.599976,599,650,699.900024,749.400024,799.400024,849.700012,899.799988,949.5,999.400024,1048.699951,1099.400024,1149.800049,1199.300049,1250,1299.5,1349.099976,1399.800049,1449.599976,1499.5,1549.800049,1600.099976,1649.400024,1699.5,1749.699951,1799.199951,1849.400024,1899.300049,1948.800049],[19.139999,19.141001,19.141001,19.145,19.132999,19.132999,19.125,19.059999,18.997,18.966999,18.945,18.940001,18.931999,18.914,18.813,17.882999,17.427,17.257999,16.968,16.629,16.478001,16.33,16.253,16.118,16.066,15.964,15.825,15.731,15.609,15.547,15.376,15.258,15.141,15.035,14.94,14.714,14.573,14.313,14.038,13.535,13.127,12.737,12.216,11.774,11.258,10.753,10.036,9.459,8.912,8.18,7.316,6.608,6.118,5.62,5.326,4.933,4.585,4.376,4.166,3.905,3.835,3.662,3.608,3.454,3.318,3.147,3.096,3.018,2.949,2.894],[35.691639,35.691639,35.691647,35.691639,35.69165,35.69165,35.691658,35.696636,35.702637,35.705624,35.704639,35.703644,35.704639,35.702644,35.682652,35.575699,35.560688,35.557693,35.550697,35.544704,35.54068,35.534706,35.529705,35.521717,35.518703,35.512733,35.505703,35.498726,35.489716,35.487698,35.477703,35.468735,35.458729,35.450718,35.439713,35.419739,35.407734,35.386742,35.362755,35.308769,35.255798,35.198814,35.113815,35.043858,34.970875,34.900894,34.809925,34.741943,34.683949,34.612995,34.545006,34.512016,34.493019,34.476025,34.48703,34.500034,34.50605,34.522038,34.533043,34.543041,34.569031,34.590034,34.617023,34.634026,34.659023,34.666019,34.687008,34.697021,34.707005,34.715996]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_128","geolocation":{"type":"Point","coordinates":[37.964,-31.075]},"basin":3,"timestamp":"2013-07-11T05:52:57.999Z","date_updated_argovis":"2023-01-26T10:42:36.689Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_128.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":128,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.2,19.700001,29.6,39.5,49.600002,60,69.599998,80.299995,89.799995,100,110.099998,119.799995,130.300003,140,149.800003,160.099991,169.899994,179.800003,190.099991,200.099991,209.800003,219.899994,229.300003,239.099991,250.199997,260,270.100006,279.700012,289.800018,300.100006,310.300018,320,329.800018,339.900024,349.600006,359.5,379.700012,399.700012,450,499.600006,549.600037,599.400024,649,700.100037,750.100037,800.100037,850,899.799988,950,999.700012,1050.099976,1100,1149.5,1199.299927,1249.899902,1299.399902,1350.099976,1396.899902,1449.5,1499.5,1549.699951,1599.599976,1649.899902,1700.099976,1750,1799.599976,1850,1899.399902,1949.299927,1999.699951],[19.386999,19.384001,19.381001,19.396999,19.400999,19.402,19.399,19.399,19.392,19.264,19.117001,18.434999,17.985001,17.667,17.348,17.143,16.976999,16.746,16.549999,16.407,16.257999,16.118999,16.027,15.966,15.874,15.743,15.688,15.481,15.333,15.264,15.128,15.042,14.867,14.761,14.662,14.48,14.347,14.189,13.94,13.409,12.967,12.588,12.15,11.594,11.018,10.48,9.873,9.123,8.46,7.713,7.108,6.551,5.912,5.505,5.18,4.896,4.712,4.517,4.487,4.237,4.078,3.85,3.711,3.582,3.465,3.331,3.238,3.119,3.01,2.95,2.871],[35.685719,35.685719,35.685719,35.684711,35.684719,35.684734,35.685715,35.685726,35.684715,35.685715,35.676708,35.568745,35.55777,35.560749,35.558758,35.556763,35.551743,35.547764,35.541782,35.535763,35.528793,35.521767,35.517776,35.513779,35.509804,35.502789,35.497787,35.482792,35.473789,35.468803,35.457783,35.450806,35.433804,35.425819,35.415817,35.397812,35.385807,35.374809,35.346825,35.292854,35.230869,35.173885,35.102905,35.018921,34.935947,34.863941,34.78698,34.706013,34.639023,34.576038,34.541058,34.507069,34.486084,34.485077,34.482079,34.517071,34.555073,34.562069,34.604076,34.616066,34.634068,34.639061,34.658066,34.670067,34.676056,34.688065,34.698055,34.707066,34.716049,34.720058,34.729053]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_127","geolocation":{"type":"Point","coordinates":[37.716,-30.818]},"basin":3,"timestamp":"2013-07-01T02:20:53.000Z","date_updated_argovis":"2023-01-26T10:42:34.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_127.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":127,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.8,18.299999,30,40.299999,50.399998,60.200001,69.900002,79.900002,89.700005,100,110.100006,119.700005,129.900009,140.400009,149.699997,159.800003,169.600006,179.5,190.199997,200.199997,209.400009,219.5,228.699997,240.300003,250,259.899994,269.699982,279.899994,289.899994,299.899994,309.399994,319.5,329.599976,339.799988,349.599976,360.099976,379.699982,399.799988,450.199982,500.299988,550.200012,600,649.799988,700.200012,750,800,848.299988,900.099976,949.799988,999.899963,1050.400024,1099.600098,1150.100098,1199.900024,1249.700073,1299.800049,1350.300049,1400.300049,1449.900024,1500.100098,1549.5,1600,1649.800049,1699.800049,1750.100098,1799.700073,1849.5,1899.100098,1950],[19.724001,19.724001,19.716999,19.707001,19.705,19.702999,19.702999,19.702999,19.691999,19.683001,19.451,18.57,17.665001,17.372,17.188999,17.025999,16.743,16.521999,16.41,16.327,16.163,15.998,15.845,15.709,15.579,15.419,15.315,15.263,15.161,15.058,14.924,14.788,14.663,14.522,14.389,14.287,14.147,13.89,13.717,13.316,12.973,12.538,12.148,11.661,11.056,10.52,9.895,9.277,8.599,7.993,7.157,6.477,6.002,5.605,5.289,4.878,4.8,4.559,4.44,4.682,3.955,3.856,3.668,3.588,3.471,3.351,3.303,3.215,3.111,3.024],[35.692825,35.692837,35.692837,35.691833,35.691845,35.691833,35.691826,35.691833,35.690819,35.68882,35.655842,35.582859,35.562878,35.557877,35.554867,35.551865,35.546871,35.541874,35.537884,35.532871,35.523876,35.5149,35.504894,35.496891,35.488888,35.480907,35.468903,35.467911,35.458923,35.44891,35.434902,35.423908,35.410915,35.397926,35.383919,35.374928,35.361942,35.335945,35.318947,35.271965,35.228992,35.162975,35.103008,35.028023,34.941055,34.869064,34.790092,34.721111,34.650124,34.596142,34.535164,34.505173,34.488178,34.483173,34.491158,34.488171,34.546162,34.580166,34.580166,34.668152,34.598171,34.623169,34.636158,34.657154,34.668152,34.679161,34.692154,34.706154,34.711143,34.718136]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_126","geolocation":{"type":"Point","coordinates":[38.572,-30.064]},"basin":3,"timestamp":"2013-06-20T21:57:27.002Z","date_updated_argovis":"2023-01-26T10:42:33.069Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_126.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":126,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.099999,19.6,30,40.100002,49.5,60.299999,70.299995,79.899994,89.599998,100.299995,110.199997,120.099998,129.800003,140,149.5,159.699997,170.199997,180,190.099991,200.099991,210,219.300003,230.199997,239.599991,249.300003,260.100006,270,279.800018,290.300018,300.100006,309.700012,319.800018,329.800018,340.100006,349.300018,360.100006,379.800018,399.400024,449.400024,499.5,550,599.5,649.700012,699.900024,749.900024,799.299988,849.600037,900.100037,949.600037,999.5,1050.299927,1100,1149.799927,1199.799927,1249.699951,1299.799927,1349.799927,1400.099976,1449.899902,1499.899902,1547.599976,1600.099976,1649.699951,1699.899902,1749.899902,1799.399902,1849.5,1899.699951,1950.099976,1998.299927],[20.697001,20.695999,20.674999,20.577999,20.434999,20.42,20.205,19.674999,19.225,18.778999,18.382999,17.84,17.598,17.489,17.267,17.107,16.937,16.796,16.615,16.552,16.382,16.297001,16.148001,16.062,15.925,15.738,15.523,15.339,15.116,14.944,14.743,14.629,14.462,14.372,14.239,14.134,14.01,13.854,13.684,13.271,12.794,12.335,11.79,11.183,10.554,9.998,9.382,8.622,7.85,7.154,6.469,5.922,5.54,5.211,4.867,4.56,4.352,4.237,4.167,3.953,3.772,3.612,3.554,3.458,3.354,3.236,3.137,3.059,2.964,2.857,2.819],[35.681019,35.681007,35.683006,35.687019,35.687038,35.687023,35.671028,35.596031,35.572071,35.543068,35.548054,35.550072,35.560059,35.559059,35.556065,35.551052,35.551064,35.550053,35.542076,35.540073,35.534092,35.529076,35.513084,35.511074,35.499084,35.484089,35.471092,35.458084,35.440094,35.42712,35.413124,35.404114,35.388123,35.37912,35.367115,35.366104,35.353138,35.340115,35.325142,35.280144,35.210171,35.134193,35.047211,34.957214,34.871258,34.805275,34.733292,34.654305,34.586346,34.54435,34.50436,34.486362,34.487377,34.49437,34.513378,34.517368,34.533363,34.554352,34.598358,34.616364,34.626373,34.643353,34.665356,34.677338,34.682346,34.693344,34.70435,34.711346,34.717331,34.725338,34.733341]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_125","geolocation":{"type":"Point","coordinates":[39.503,-29.804]},"basin":3,"timestamp":"2013-06-10T18:18:50.001Z","date_updated_argovis":"2023-01-26T10:42:31.209Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_125.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":125,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.4,20.200001,29.700001,40.200001,50.200001,60.100002,69.199997,79.899994,90,99.299995,109.599998,118.299995,129.800003,140.199997,150.099991,159.5,170.199997,179.599991,189.800003,199.699997,210.099991,219.899994,228.199997,240.199997,249.899994,260.200012,270,279.700012,289.800018,299.900024,309.800018,319.600006,330.100006,340,350.100006,359.400024,379.900024,398.800018,450,500.100006,549.600037,600,649.799988,699.799988,750.100037,799.600037,849.900024,899.799988,949.5,1000,1047.5,1099.399902,1149,1199.099976,1250.199951,1300,1350,1400.199951,1450,1499.699951,1549.699951,1599.599976,1649.599976,1699.299927,1749.399902,1800,1850.099976,1899.299927,1949.899902],[21.408001,21.409,21.410999,21.4,21.389,21.374001,21.336,20.778999,19.565001,19.278,18.695,18.164,17.900999,17.532,17.379999,17.263,17.118,16.938999,16.827999,16.733,16.629,16.464001,16.231001,16.040001,15.883,15.648,15.422,15.35,15.2,14.966,14.763,14.656,14.516,14.283,14.157,14.019,13.912,13.605,13.489,12.877,12.328,11.835,11.24,10.756,10.147,9.524,8.958,8.038,7.429,6.751,6.095,5.49,5.066,4.577,4.416,4.258,4.082,4.112,3.824,3.538,3.519,3.475,3.417,3.34,3.281,3.217,3.201,3.234,3.07,3.014],[35.645157,35.64418,35.644173,35.646164,35.648186,35.649158,35.649178,35.611183,35.523209,35.545197,35.544186,35.55323,35.552219,35.557198,35.557198,35.55722,35.554218,35.547234,35.548218,35.546219,35.541237,35.534222,35.521221,35.505226,35.49324,35.476215,35.460247,35.456234,35.446224,35.428268,35.413254,35.403263,35.389278,35.368263,35.357269,35.34227,35.330284,35.296299,35.28429,35.204319,35.125332,35.055344,34.970375,34.902397,34.821404,34.750427,34.688446,34.608475,34.562489,34.519478,34.49052,34.475513,34.491512,34.463531,34.475529,34.492527,34.516533,34.597504,34.606495,34.592522,34.597515,34.609512,34.617519,34.625519,34.630497,34.63549,34.655502,34.698498,34.707489,34.718483]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_124","geolocation":{"type":"Point","coordinates":[40.127,-29.822]},"basin":3,"timestamp":"2013-05-31T13:36:44.002Z","date_updated_argovis":"2023-01-26T10:42:29.477Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_124.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":124,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.6,19.599998,30,39.899998,50.399998,59.700001,69.5,78.200005,89.800003,98.900002,110.400002,120.100006,129.900009,139.800003,150.300003,159.900009,169.600006,179.900009,190.100006,200.300003,209.900009,219.600006,230.100006,240.5,250.300003,259.899994,269.899994,280.099976,289.799988,299.799988,310.199982,320,330,339.399994,349.799988,359.399994,379.699982,399.399994,449.699982,499.699982,549.899963,600.099976,649.5,699.899963,749.599976,799.599976,849.399963,899.5,950.299988,1000.099976,1050.100098,1099.800049,1149.5,1199.5,1250.300049,1299.700073,1349.700073,1400.200073,1450.200073,1500.100098,1550.200073,1599.900024,1650.100098,1700.200073,1750.100098,1799.700073,1849.300049,1900,1949.700073,2000.700073],[21.681,21.614,21.599001,21.608999,21.603001,21.591999,20.954,20.42,19.886,19.113001,18.497,17.785,17.589001,17.393999,17.285,17.084,16.993,16.91,16.733999,16.462,16.243,16.035,15.923,15.812,15.624,15.424,15.295,15.212,15.083,14.98,14.854,14.706,14.563,14.382,14.276,14.155,14.043,13.883,13.631,13.108,12.427,11.852,11.335,10.923,10.381,9.734,9.033,8.489,7.687,6.995,6.444,5.943,5.443,5.159,4.75,4.649,4.391,4.438,4.159,4.004,3.905,3.761,3.55,3.304,3.257,3.11,3.094,3.016,2.935,2.888,2.808],[35.645287,35.658279,35.670277,35.680275,35.679306,35.676273,35.626293,35.63829,35.602299,35.563316,35.566319,35.560326,35.556328,35.56432,35.560322,35.558327,35.563324,35.561333,35.553349,35.538345,35.523338,35.515339,35.513344,35.506348,35.487354,35.466343,35.465366,35.457348,35.445347,35.435349,35.420372,35.406361,35.392365,35.375393,35.363392,35.354393,35.344391,35.326397,35.301395,35.238419,35.141434,35.057449,34.982471,34.926495,34.856514,34.77652,34.70055,34.646557,34.579575,34.53458,34.504597,34.486626,34.47963,34.504612,34.499619,34.534626,34.550598,34.622593,34.617599,34.629601,34.645592,34.663586,34.670586,34.660591,34.679607,34.6796,34.693584,34.702591,34.715588,34.72958,34.73558]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_123","geolocation":{"type":"Point","coordinates":[40.3,-29.509]},"basin":3,"timestamp":"2013-05-21T09:47:49.999Z","date_updated_argovis":"2023-01-26T10:42:27.414Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_123.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":123,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10,19.800001,29.5,40.200001,48.799999,60.100002,70.199997,79.599998,89.599998,100.299995,109.799995,120.299995,129.699997,139.399994,148.899994,159.800003,169.899994,179.699997,189.599991,200.099991,210.199997,220,230,239.899994,250,260.200012,270,280.300018,289.800018,299.900024,309.800018,320.200012,329.800018,340,350,360,379.600006,399.5,446.900024,499.800018,549.700012,600.200012,649.900024,700.400024,749.5,800.100037,846.600037,899.600037,950.200012,999.799988,1050.199951,1099.5,1149.899902,1199.799927,1249.599976,1299.899902,1349.899902,1400,1450.199951,1499.799927,1549.299927,1600.099976,1649.399902,1700,1749.899902,1799.799927,1849.699951,1900,1950,1998.199951],[22.465,22.461,22.486,22.503,22.544001,22.499001,22.457001,21.937,20.947001,20.503,19.796,19.188,18.584999,18.243,17.784,17.599001,17.465,17.275999,17.181,17.093,16.853001,16.718,16.535999,16.361,16.243,15.954,15.768,15.5,15.281,15.052,14.942,14.877,14.728,14.61,14.445,14.352,14.223,14.011,13.766,12.918,12.204,11.921,11.276,10.445,9.907,9.44,8.785,8.056,7.578,6.971,6.17,5.708,5.127,4.874,4.615,4.506,4.36,4.175,3.817,3.722,3.502,3.543,3.423,3.329,3.264,3.169,3.092,3.022,2.95,2.884,2.81],[35.551476,35.556492,35.574478,35.589474,35.639469,35.641464,35.646454,35.615467,35.567478,35.589485,35.554508,35.551498,35.556488,35.552521,35.555504,35.556499,35.556499,35.562515,35.563511,35.559517,35.55452,35.549526,35.537525,35.529522,35.519531,35.499546,35.482536,35.467525,35.450535,35.433556,35.426552,35.422546,35.408566,35.398563,35.384579,35.376568,35.361572,35.339584,35.314587,35.195614,35.109631,35.068645,34.973671,34.861702,34.793701,34.740723,34.677742,34.604767,34.573772,34.533794,34.493793,34.479801,34.464809,34.484814,34.511818,34.544796,34.569805,34.5728,34.570805,34.606785,34.615791,34.660778,34.676785,34.69278,34.701775,34.705776,34.710781,34.714779,34.723774,34.73077,34.738773]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_122","geolocation":{"type":"Point","coordinates":[40.085,-29.141]},"basin":3,"timestamp":"2013-05-11T06:37:12.999Z","date_updated_argovis":"2023-01-26T10:42:25.579Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_122.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":122,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.8,20,30.1,39.600002,50.200001,60.299999,69.699997,79.699997,89.599998,99.899994,109.799995,119.899994,130.099991,140.099991,150.199997,159.899994,169.399994,179.800003,189.399994,199.599991,210.099991,219.599991,229.599991,239.300003,250.099991,257.5,269.900024,280.200012,289.800018,299.700012,309.5,320.200012,330.100006,339.600006,349.400024,359.800018,380.100006,400.100006,449.800018,499.700012,549.900024,600.100037,650,700,749.600037,800,850.100037,899.799988,949.5,999.900024,1049.799927,1100.299927,1150.099976,1200.299927,1249.5,1299.5,1349.799927,1399.799927,1449.699951,1499.899902,1549.799927,1599.799927,1650,1697.399902,1750.199951,1799.699951,1849.5,1899.399902,1949.599976],[23.083,23.084,23.087,23.084999,22.974001,22.784,22.243999,21.468,21.014999,20.492001,19.233999,18.634001,18.219,17.900999,17.622,17.523001,17.417,17.365,17.280001,16.965,16.889,16.799999,16.753,16.705999,16.622,16.59,16.552999,16.438999,16.273001,16.172001,16.017,15.858,15.794,15.601,15.414,15.306,15.266,14.971,14.423,13.145,12.379,11.478,10.589,9.809,9.168,8.661,8.174,7.611,6.763,6.188,5.776,5.333,5.141,4.827,4.705,4.268,3.967,4.011,4,3.826,3.681,3.582,3.428,3.344,3.31,3.202,3.128,3.007,2.916,2.841],[35.544628,35.54364,35.544617,35.544628,35.578613,35.645638,35.630611,35.540649,35.574642,35.581642,35.551662,35.549656,35.548668,35.553673,35.559662,35.559681,35.554657,35.556664,35.552666,35.555656,35.564671,35.564678,35.563675,35.561676,35.557674,35.554672,35.552685,35.542667,35.523678,35.519676,35.50169,35.483692,35.479698,35.460705,35.445705,35.434692,35.431717,35.407719,35.358711,35.223747,35.128773,35.009808,34.889832,34.794861,34.727871,34.681885,34.637913,34.589916,34.521931,34.483948,34.485962,34.470955,34.483959,34.506958,34.544937,34.519958,34.522961,34.584949,34.614952,34.637943,34.640919,34.657932,34.673931,34.683929,34.698921,34.709915,34.716923,34.720928,34.725922,34.732922]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_121","geolocation":{"type":"Point","coordinates":[38.933,-29.37]},"basin":3,"timestamp":"2013-05-01T01:38:18.999Z","date_updated_argovis":"2023-01-26T10:42:23.812Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_121.nc","date_updated":"2020-11-12T10:21:03.000Z"}],"cycle_number":121,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.7,19.700001,28.900002,40.400002,49.700001,59.799999,70,79.699997,89.599998,100.099998,110.099998,119.599998,129.899994,139.899994,149.899994,159.699997,169.399994,179.800003,189.800003,199.899994,210,220.300003,230.099991,239.399994,250.099991,259.900024,270.100006,280,289.800018,300.200012,310,320.100006,330.300018,340,350.200012,359.700012,379.900024,399.700012,449.800018,499.400024,549.5,599.799988,649.799988,700.100037,749.799988,799.799988,849.600037,899.600037,949.600037,999.200012,1049.399902,1099.699951,1149.199951,1199.099976,1249.699951,1300,1349.899902,1399.799927,1450,1499.899902,1546.699951,1599.5,1649.199951,1700,1749.299927,1800.199951,1850,1900,1949.699951,2000.699951],[24.049,24.049,24.066999,24.075001,24.059999,23.841999,23.759001,23.691,23.261999,22.912001,22.384001,21.43,20.910999,19.914,19.336,18.990999,18.789,18.642,18.179001,17.957001,17.732,17.58,17.393,17.247,17.150999,17.115,16.978001,16.919001,16.827999,16.604,16.441,16.205999,15.976,15.712,15.649,15.342,15.142,14.65,14.15,13.333,12.712,12.274,11.785,11.226,10.521,9.933,9.315,8.781,8.135,7.21,6.426,6.141,5.434,5.15,4.964,4.743,4.445,4.504,4.265,3.823,3.622,3.696,3.559,3.37,3.343,3.284,3.142,3.073,3.001,2.938,2.858],[35.487785,35.487785,35.487774,35.486794,35.498772,35.59277,35.59375,35.592766,35.592751,35.639774,35.576771,35.501797,35.511799,35.524807,35.533806,35.541801,35.546783,35.544811,35.544807,35.556808,35.564804,35.564819,35.557785,35.552818,35.559814,35.563812,35.554817,35.552822,35.548828,35.52784,35.51683,35.498856,35.485859,35.465828,35.458824,35.441841,35.420856,35.386868,35.344875,35.260902,35.177895,35.117939,35.047935,34.969975,34.874989,34.800003,34.731022,34.673031,34.612061,34.529072,34.468086,34.497089,34.447098,34.472099,34.480106,34.508095,34.515095,34.568085,34.581089,34.558086,34.569092,34.621078,34.638077,34.637085,34.659077,34.678074,34.693062,34.705074,34.714062,34.720074,34.726078]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_120","geolocation":{"type":"Point","coordinates":[37.493,-29.517]},"basin":3,"timestamp":"2013-04-20T22:27:40.998Z","date_updated_argovis":"2023-01-26T10:42:21.995Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_120.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":120,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.1,19.699999,29.4,39.399998,49.700001,59.700001,70.100006,80.400002,90.100006,100,109.900002,120.400002,130.199997,140.400009,150.5,159.900009,170.300003,179.900009,189.900009,200,210.5,220.300003,230.199997,240.300003,250.199997,260.199982,269.599976,280,290.299988,299.399994,310.099976,320.299988,329.699982,340.299988,349.899994,359.799988,380.199982,400.199982,450.099976,500.099976,549.899963,600,649.599976,700.099976,749.5,799.700012,849.399963,899.700012,949.700012,1000.200012,1050.200073,1100.400024,1150.200073,1199.900024,1250.400024,1300.300049,1348.5,1400.300049,1450.100098,1499.900024,1549.900024,1600.300049,1650,1699.800049,1749.600098,1799.400024,1850,1899.600098,1949.200073],[25.201,25.207001,25.249001,25.236,25.198999,25.084999,24.976,24.959,24.929001,24.318001,23.938,23.667999,23.177999,22.93,22.673,22.174,21.709,21.337,21.082001,20.66,20.212999,19.756001,19.481001,19.098,18.809,18.584999,18.360001,18.115,17.805,17.409,17.223,16.933001,16.700001,16.472,16.327,16.184999,16.007999,15.669,15.32,14.452,13.701,13.23,12.662,12.071,11.638,11.045,10.524,10.106,9.298,8.527,7.84,7.452,6.343,5.929,5.402,4.97,4.702,4.297,4.375,3.976,3.876,3.856,3.561,3.533,3.231,3.233,3.148,2.985,2.917,2.862],[35.074989,35.074974,35.093975,35.189949,35.200947,35.191952,35.203938,35.220947,35.233955,35.193958,35.315914,35.329929,35.352947,35.384899,35.399914,35.380928,35.392929,35.422909,35.454941,35.478912,35.492924,35.510914,35.520912,35.54092,35.532936,35.541927,35.551926,35.552921,35.55492,35.541916,35.549927,35.545937,35.534946,35.532928,35.52494,35.518932,35.507942,35.485939,35.462952,35.388973,35.320992,35.261009,35.177021,35.088043,35.025055,34.944084,34.87109,34.81509,34.720116,34.638142,34.585159,34.575153,34.475182,34.48518,34.477188,34.469196,34.496197,34.487209,34.566193,34.540192,34.586189,34.621174,34.624176,34.658165,34.652176,34.684166,34.694164,34.703171,34.713169,34.724174]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_119","geolocation":{"type":"Point","coordinates":[37.614,-28.504]},"basin":3,"timestamp":"2013-04-10T18:03:20.002Z","date_updated_argovis":"2023-01-26T10:42:20.106Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_119.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":119,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,20.400002,29.700001,40.299999,50.200001,59.700001,69.599998,79.399994,90.399994,100.399994,110.299995,119.699997,129.899994,139.699997,149.5,158.599991,169.899994,179.800003,190.199997,199.899994,209.5,220,229.899994,240,249.699997,260.200012,269.600006,280,290.300018,300.100006,309.600006,319.700012,329.600006,339.700012,350,360,380,399.600006,449.900024,500.100006,549.700012,600.100037,649.200012,699.799988,750,799.600037,850,900.200012,949.5,1000,1049.799927,1099.599976,1149.899902,1199.599976,1250.099976,1299.799927,1349.899902,1400,1450,1499.399902,1549.799927,1599.799927,1650,1699.899902,1749.699951,1799.799927,1849.399902,1899.399902,1949.5,2000],[26.219999,26.202,26.191999,26.052,25.546,25.120001,25.075001,25.054001,25.055,25.039,24.75,23.886,22.934,22.884001,22.778999,22.533001,22.24,21.587,21.139999,20.492001,20.169001,19.812,19.200001,18.923,18.622999,18.364,18.028,17.745001,17.355,17.155001,16.860001,16.752001,16.587999,16.452999,16.246,16.108999,15.853,15.463,15.102,14.253,13.757,13.251,12.703,12.233,11.688,11.081,10.447,9.68,9.028,8.261,7.715,7.051,6.287,5.957,5.166,4.874,4.589,4.567,3.93,3.679,3.993,3.962,3.677,3.493,3.187,3.232,3.056,3.017,2.953,2.857,2.777],[34.963169,34.964157,34.964165,34.968159,35.096153,35.137131,35.158161,35.166142,35.17915,35.185146,35.218117,35.314114,35.207138,35.374119,35.411098,35.392124,35.392117,35.373138,35.402111,35.446114,35.451122,35.45113,35.487095,35.503105,35.517113,35.548103,35.55312,35.555099,35.556118,35.555119,35.552124,35.55011,35.543114,35.538113,35.525116,35.516125,35.501137,35.485138,35.456146,35.376156,35.327175,35.26318,35.183208,35.111229,35.032238,34.946262,34.859287,34.761307,34.694305,34.614342,34.57135,34.541367,34.508373,34.54237,34.47739,34.515388,34.523376,34.583374,34.543388,34.553371,34.663349,34.682362,34.662361,34.667351,34.652363,34.690361,34.686363,34.700359,34.716358,34.721355,34.728359]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_118","geolocation":{"type":"Point","coordinates":[40.149,-27.78]},"basin":3,"timestamp":"2013-03-31T13:35:14.004Z","date_updated_argovis":"2023-01-26T10:42:18.078Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_118.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":118,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.9,19.900002,29.900002,40.299999,49.799999,60,69.399994,79.899994,88.599998,100,110,120.099998,129.899994,140,149.899994,160.300003,170.099991,179.699997,189.699997,200.099991,209.199997,220,229.899994,239.899994,250.199997,259.5,269.600006,280,289.800018,300,309.600006,319.100006,329.800018,339.700012,350.300018,360.100006,379.800018,400.200012,449.5,499.800018,550.100037,599.700012,649.299988,699.5,749.600037,799.400024,849.799988,899.400024,950,1000,1050.099976,1100.099976,1149.399902,1199.699951,1250,1299.199951,1349.599976,1399.799927,1449.899902,1499.799927,1550.199951,1599.899902,1650.099976,1699.699951,1749.899902,1800,1849.899902,1899.899902,1949,1998.5],[25.787001,25.764,25.472,25.344999,25.257,24.608999,24.294001,23.889999,23.723,23.561001,23.122999,22.525999,22.221001,21.811001,21.427999,20.737,20.181999,19.898001,19.476,18.848,18.341999,17.834999,17.552,17.313999,17.274,17.042,16.812,16.673,16.549999,16.441,16.226999,16.011999,15.85,15.646,15.439,15.208,14.978,14.628,14.279,13.581,12.983,12.274,11.759,11.224,10.574,9.898,9.147,8.642,7.885,7.08,6.582,5.9,5.475,5.386,5.136,4.547,4.27,4.299,4.285,4.362,3.919,3.657,3.549,3.402,3.297,3.153,3.1,3.049,2.939,2.917,2.79],[35.053307,35.055298,35.141285,35.176289,35.222271,35.177292,35.193291,35.296272,35.345268,35.37825,35.418251,35.39325,35.389278,35.399254,35.425266,35.435265,35.461266,35.500259,35.537228,35.540245,35.534271,35.550259,35.566292,35.567245,35.565258,35.560276,35.549282,35.543262,35.539272,35.534275,35.520267,35.507267,35.496273,35.482277,35.471294,35.45528,35.434288,35.408314,35.371311,35.303322,35.219349,35.118355,35.042381,34.968399,34.87841,34.791439,34.697464,34.647469,34.577484,34.53249,34.512512,34.502525,34.506531,34.558506,34.591515,34.561512,34.561523,34.605507,34.656498,34.703506,34.660503,34.653522,34.672516,34.682507,34.68951,34.694496,34.704502,34.716511,34.726505,34.736507,34.736507]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_117","geolocation":{"type":"Point","coordinates":[42.762,-27.139]},"basin":3,"timestamp":"2013-03-21T10:33:00.999Z","date_updated_argovis":"2023-01-26T10:42:16.312Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_117.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":117,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10,20.200001,29.900002,40,49.799999,59.700001,70.5,79.799995,90.199997,98.899994,110,119.799995,130.099991,139.699997,150.300003,160.300003,170.199997,180.099991,189.800003,199.800003,210.099991,219.699997,229.699997,240,249.899994,259.300018,269.5,279,290.200012,299.700012,310.200012,319.600006,330.100006,339.600006,350.200012,360.200012,380,399.5,450.100006,499.900024,550.200012,599.5,649.299988,698.600037,749.900024,799.700012,850.100037,900,949.5,999.400024,1049.199951,1100,1150.099976,1199.799927,1249.899902,1299.699951,1349.799927,1399.399902,1449.799927,1499.399902,1550.199951,1599.399902,1649.699951,1700.099976,1750.199951,1799.799927,1850.099976,1899.599976,1949.699951],[27.056999,27.062,27.033001,27.028,26.541,25.325001,25.17,24.662001,23.83,22.849001,22.628,22.035999,21.490999,21.207001,20.839001,20.489,19.587999,19.082001,18.91,18.549,17.851,17.495001,17.372999,17.218,17.021,16.865,16.848,16.566999,16.291,16.041,15.911,15.531,15.322,15.102,14.979,14.818,14.433,14.115,13.748,13.023,12.2,11.424,11.09,10.557,9.859,9.077,8.429,7.594,6.734,6.199,5.695,5.23,4.836,4.347,4.673,4.856,4.598,4.528,4.386,4.026,3.795,3.653,3.559,3.452,3.267,3.142,3.052,2.966,2.891,2.821],[34.840481,34.840473,34.839489,35.144424,35.238415,35.345398,35.333405,35.352425,35.454399,35.459412,35.454395,35.44141,35.445404,35.445423,35.452415,35.466404,35.512405,35.541409,35.557404,35.5434,35.554409,35.553406,35.554405,35.552406,35.550411,35.546413,35.543411,35.535431,35.5214,35.50843,35.500439,35.473427,35.458458,35.44244,35.431446,35.417446,35.384472,35.354469,35.320465,35.224491,35.114517,34.99754,34.950558,34.876564,34.782578,34.686626,34.62862,34.561638,34.524658,34.522667,34.502678,34.503666,34.522671,34.507675,34.62265,34.706635,34.695637,34.720634,34.72364,34.695637,34.691643,34.697655,34.706642,34.705643,34.711651,34.716648,34.721645,34.727642,34.732632,34.738647]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_116","geolocation":{"type":"Point","coordinates":[44.367,-27.119]},"basin":3,"timestamp":"2013-03-11T05:41:34.998Z","date_updated_argovis":"2023-01-26T10:42:14.404Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_116.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":116,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.900001,19.5,30.200001,39.899998,50.199997,60.199997,70.199997,79.699997,90.099998,100,108.199997,120.199997,130.200012,139.800003,149.700012,160,169.700012,178.400009,189.900009,199.600006,210.400009,220.100006,230.200012,239.5,249.900009,259.399994,269.800018,279.300018,289.600006,299.300018,309.899994,319.800018,329.600006,340.100006,349.700012,359.700012,379.5,399.300018,450.100006,499.700012,549.899963,599.799988,649.5,700.099976,750.099976,800.099976,849.899963,899.699951,949.199951,999.199951,1049.799927,1099.400024,1149.400024,1199,1249.799927,1299.400024,1349,1399.799927,1449.900024,1499.900024,1549.699951,1600,1649.199951,1699.099976,1750,1799.5,1849.599976,1899.5,1949.199951,2000.5],[26.743999,26.544001,26.409,26.344,25.92,24.34,23.798,23.539,23.325001,22.993,22.841999,22.504999,22.194,21.832001,21.122,20.448999,20.395,20.169001,20.062,19.841,19.549,18.916,18.238001,17.608,17.465,17.01,16.722,16.552999,16.318001,16,15.911,15.584,15.471,15.318,15.236,15.06,14.984,14.597,14.041,13.132,12.379,11.687,11.017,10.137,9.47,8.939,8.372,7.633,7.136,6.428,5.829,5.205,4.94,4.617,4.381,4.025,3.809,3.57,3.475,3.437,3.393,3.373,3.175,3.06,3.027,2.961,2.916,2.82,2.768,2.716,2.673],[34.968651,35.030609,35.063618,35.084633,35.062637,35.119625,35.203632,35.197636,35.239609,35.315594,35.323601,35.383598,35.409607,35.412605,35.426601,35.454601,35.4576,35.470596,35.475578,35.483585,35.488613,35.520607,35.544594,35.556591,35.556614,35.550594,35.543633,35.535622,35.524586,35.508625,35.500607,35.47961,35.472637,35.461655,35.453621,35.440632,35.434643,35.411648,35.356651,35.244686,35.130695,35.032711,34.939743,34.821789,34.737789,34.673813,34.62281,34.572826,34.576839,34.537842,34.512859,34.500862,34.536861,34.537868,34.532852,34.539852,34.530865,34.538857,34.556873,34.574856,34.622852,34.64085,34.692856,34.71685,34.720848,34.732838,34.73885,34.743835,34.750839,34.754841,34.757828]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_115","geolocation":{"type":"Point","coordinates":[46.049,-26.227]},"basin":3,"timestamp":"2013-03-01T01:52:41.000Z","date_updated_argovis":"2023-01-26T10:42:12.594Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_115.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":115,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.6,19.5,29.799999,40.5,50.200001,60.200001,70.100006,79.800003,90.100006,100.200005,109.900002,119.900002,130.100006,140.400009,150.300003,159.5,170.199997,179.5,189.900009,200.199997,210.400009,220,229.699997,240,249.600006,260,269.599976,279.799988,287.5,300.299988,309.699982,319.799988,330.299988,339.699982,349.899994,359.5,379.899994,399.5,449.5,500,549.899963,599.599976,649.599976,699.799988,749.899963,799.599976,849.700012,899.799988,950.200012,999.5,1050,1099.800049,1150,1199.5,1250,1296.700073,1349.600098,1399.5,1450,1500.200073,1550,1600.300049,1649.900024,1700.200073,1749.800049],[26.399,26.382999,26.309999,26.076,26.042999,25.466,24.337999,23.472,23.035,22.757,22.323999,22.07,20.822001,19.947001,19.535,19.243999,18.989,18.795,18.655001,18.551001,18.499001,18.302999,17.936001,17.750999,17.671,17.037001,16.502001,16.191,16.035999,15.713,15.054,14.796,14.242,13.946,13.739,13.621,13.608,13.392,13.122,11.852,11.026,10.163,9.599,9.054,8.19,7.338,6.769,5.936,5.265,4.952,4.578,4.385,4.074,3.835,3.683,3.481,3.369,3.288,3.251,3.115,3.041,2.968,2.904,2.85,2.759,2.63],[34.827755,34.829758,34.840752,34.890747,34.910755,34.884747,35.19569,35.271725,35.377678,35.404675,35.383701,35.394707,35.407681,35.44767,35.483669,35.495667,35.501671,35.503685,35.510681,35.511692,35.510689,35.521667,35.51469,35.509682,35.529678,35.527679,35.50668,35.49971,35.481686,35.459709,35.409718,35.384705,35.340729,35.305744,35.286728,35.274738,35.273743,35.25174,35.223743,35.059803,34.942822,34.828842,34.758842,34.701855,34.622883,34.56089,34.528889,34.528912,34.502911,34.519917,34.504902,34.507919,34.509899,34.531921,34.554916,34.578915,34.588917,34.593899,34.595921,34.610897,34.619904,34.632904,34.642899,34.648911,34.665905,34.686897]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_114","geolocation":{"type":"Point","coordinates":[46.329,-25.793]},"basin":-1,"timestamp":"2013-02-18T20:35:06.996Z","date_updated_argovis":"2023-01-26T10:42:10.771Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_114.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"data_warning":["missing_basin"],"cycle_number":114,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.8,10.3,20.200001,30,40.199997,49.799999,60.099998,69.900002,80.099998,90.099998,99.699997,109.5,120.099998,129.700012,139.300003,150.100006,160.300003,170.100006,179.5,189.300003,199.400009,209.400009,219.400009,230.100006,239.600006,249.800003,259.700012,270,280.200012,290.100006,299.5,309.700012,319.800018,330.100006,339.300018,350,360,379.5,400,449.100006,499.600006,549.899963,598.299988,649.799988,699.299988,749.899963,799.399963,850.099976,899.799988,950.199951,1000,1049.5,1099.299927,1149.599976,1199.199951],[25.541,25.544001,25.493999,25.372,25.364,25.344999,25.148001,23.962999,22.938999,22.093,21.311001,20.465,19.183001,18.99,18.603001,18.167,17.607,17.264999,17.183001,16.922001,16.691999,16.461,15.917,15.591,15.318,14.357,13.879,13.745,13.641,12.897,12.667,12.572,12.443,12.312,12.014,11.769,11.509,11.149,10.977,10.601,9.974,9.21,8.439,8.056,7.783,6.905,6.595,5.964,5.054,4.788,4.482,4.27,4.128,3.976,3.617],[35.051949,35.05093,35.061928,35.093922,35.097931,35.111927,35.134922,35.174919,35.225933,35.280926,35.341911,35.379913,35.427902,35.42992,35.441921,35.448906,35.462921,35.465923,35.462914,35.463905,35.459919,35.456936,35.448914,35.438934,35.418941,35.331963,35.287971,35.27597,35.261971,35.187988,35.162998,35.155998,35.138996,35.119995,35.08102,35.049026,35.014027,34.964046,34.940044,34.886047,34.79707,34.711086,34.634102,34.600113,34.591129,34.533134,34.530132,34.520145,34.500172,34.508152,34.526154,34.539158,34.535152,34.546154,34.576164]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_113","geolocation":{"type":"Point","coordinates":[46.15,-25.852]},"basin":-1,"timestamp":"2013-02-08T16:44:22.003Z","date_updated_argovis":"2023-01-26T10:42:08.895Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_113.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"data_warning":["missing_basin"],"cycle_number":113,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.2,19.699999,30.199999,39.899998,50.399998,60.099998,70.200005,80.100006,89.900002,100.300003,110.200005,119.700005,130.300003,140.300003,148.900009,160.400009,170.100006,179.800003,189.5,199.5,209.800003,220.400009,230.400009,240.199997,250.300003,260,270,280,290.299988,299.699982,309.599976,320.299988,330.099976,340.099976,350.299988,360.199982,379.399994,399.599976,450.199982,499.599976,549,599.899963,650.299988,700.200012,750,799.599976,849.799988,899.5,949.700012,999.399963,1049.900024,1100.100098,1149.300049,1199.300049,1250.100098],[27.094999,27.099001,27.108999,27.120001,26.971001,26.466,25.563999,25.263,24.349001,23.686001,22.408001,21.490999,20.052999,18.952,18.403999,18.148001,17.636999,16.848,16.438999,16.075001,15.934,15.449,15.074,14.703,14.091,13.544,12.783,12.493,12.272,11.893,11.526,11.346,11.18,10.879,10.59,10.362,10.276,10.151,9.835,9.211,8.745,8.166,7.453,6.817,6.323,6.006,5.406,5.183,4.922,4.735,4.583,4.386,4.151,3.843,3.541,3.516],[34.705067,34.70705,34.80505,35.041008,35.131989,35.146,35.137005,35.158993,35.175011,35.174004,35.224998,35.271999,35.335018,35.35899,35.384003,35.387001,35.385002,35.420002,35.424999,35.421982,35.414989,35.391022,35.365009,35.33102,35.284042,35.229061,35.159065,35.132061,35.104061,35.060093,35.016087,34.993099,34.971088,34.932102,34.895115,34.866112,34.854118,34.837112,34.79813,34.730148,34.683159,34.633167,34.577183,34.552197,34.537178,34.524189,34.481209,34.480206,34.495205,34.510216,34.534206,34.555202,34.560192,34.558208,34.579197,34.582199]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_112","geolocation":{"type":"Point","coordinates":[47.313,-25.795]},"basin":3,"timestamp":"2013-01-29T13:34:39.999Z","date_updated_argovis":"2023-01-26T10:42:06.995Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_112.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":112,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.1,20.599998,29.799999,40.299999,50.299999,59.899998,69.600006,80.100006,90,99.800003,110.100006,119.5,128.900009,140.400009,149.900009,160,170,177,190.100006,200.100006,209.699997,219.699997,230.199997,239.900009,249.800003,259.5,269.899994,278.799988,290.399994,299.799988,310,320.199982,330.399994,339.799988,350.099976,360.099976,379.799988,399.799988,449.199982,500.299988,549.700012,599.599976,650,697.099976,750,799.599976,849.299988,900.399963,950.200012,999.700012,1050.300049,1099.5,1150,1199.700073,1249.600098,1299.400024,1350.300049,1399.600098,1450.300049,1500.100098,1549.300049,1600.300049,1650,1700.100098,1749.900024,1799.700073,1849.700073,1899.400024,1950.100098,1997.700073],[27.945,27.947001,27.856001,26.983,26.106001,25.417999,24.903999,24.559999,23.999001,23.74,23.441,23.257999,22.93,22.648001,21.966999,21.443001,21.238001,20.973,20.841999,20.551001,20.072001,19.723,19.412001,18.947001,18.457001,17.856001,17.455,17.063999,16.886,16.576,16.462,16.129999,15.815,15.584,15.276,14.854,14.589,14.255,13.693,12.924,12.289,11.346,10.737,10.124,9.526,9.099,8.515,7.542,6.944,6.16,5.81,5.281,4.857,4.453,4.249,3.921,3.858,3.606,3.544,3.381,3.245,3.136,3.035,2.916,2.819,2.76,2.701,2.653,2.589,2.535,2.497],[35.394096,35.391098,35.40712,35.38213,35.320137,35.377121,35.383121,35.405121,35.435101,35.45512,35.462105,35.458099,35.44912,35.441124,35.434128,35.450127,35.472126,35.494125,35.508118,35.52113,35.537102,35.548126,35.556107,35.565113,35.561111,35.568104,35.573132,35.574123,35.57214,35.553131,35.559147,35.534142,35.491138,35.479145,35.444145,35.415154,35.386169,35.35318,35.294178,35.206196,35.11821,34.989239,34.904247,34.818268,34.742275,34.693306,34.639301,34.563313,34.512329,34.48835,34.488342,34.485352,34.497334,34.50235,34.520351,34.518341,34.532345,34.553349,34.561348,34.585339,34.602345,34.615337,34.626335,34.641331,34.656349,34.666344,34.675327,34.684326,34.696331,34.705338,34.712326]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_111","geolocation":{"type":"Point","coordinates":[48.056,-24.948]},"basin":3,"timestamp":"2013-01-19T09:32:41.999Z","date_updated_argovis":"2023-01-26T10:42:05.186Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_111.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":111,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.7,19.699999,29.5,40.399998,50.099998,60.5,70.400002,79.800003,89.800003,99.400002,110.200005,119.200005,129.400009,139.900009,149.800003,159.5,170.199997,180.100006,190.100006,200.199997,208.5,219.800003,229.800003,240.199997,250,259.899994,269.599976,279.5,290.199982,300.199982,310,320.399994,330,339.799988,350.399994,360.299988,380,400,449.399994,499.699982,549.799988,599.899963,650.099976,700.200012,750.299988,800.299988,849.799988,899.899963,949.899963,1000,1049.5,1099.900024,1150,1200.400024,1249.800049,1299.700073,1350.100098,1400.100098,1449.600098,1500.100098,1550.300049,1600.100098,1650.100098,1699.700073,1749.700073,1799.900024,1850,1900,1949.600098,1997.5],[27.74,27.728001,27.716,27.625,26.613001,26.287001,25.632999,24.532,24.207001,23.794001,23.500999,23.504999,23.403999,23.105,22.936001,22.551001,22.360001,21.933001,21.687,21.330999,21.080999,20.860001,20.632999,20.437,20.120001,19.738001,19.437,19.044001,18.872,18.606001,18.174,17.681999,16.968,16.410999,16.285,16.184,15.929,15.559,15.015,14.067,12.819,11.915,10.985,10.432,9.866,9.368,8.783,7.917,7.444,6.695,6.099,5.38,4.943,4.57,4.343,4.145,3.95,3.701,3.452,3.274,3.167,3.046,2.957,2.853,2.797,2.761,2.684,2.651,2.587,2.546,2.498],[35.187283,35.18729,35.189301,35.180286,35.293282,35.279274,35.165295,34.981354,35.054317,35.010323,35.052345,35.159306,35.245289,35.200302,35.241295,35.281288,35.307289,35.346298,35.372292,35.416279,35.452267,35.479271,35.504257,35.522266,35.534264,35.547253,35.554249,35.563278,35.567257,35.570267,35.555267,35.53627,35.501297,35.476288,35.471313,35.462284,35.443287,35.43232,35.429302,35.346336,35.186348,35.067368,34.937401,34.860409,34.78442,34.732433,34.664444,34.579456,34.564468,34.549469,34.517483,34.483494,34.492489,34.509495,34.527493,34.538494,34.552483,34.558495,34.578491,34.601475,34.612492,34.622486,34.633488,34.649479,34.659485,34.666481,34.679478,34.68647,34.696484,34.703476,34.711475]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_110","geolocation":{"type":"Point","coordinates":[48.045,-23.876]},"basin":3,"timestamp":"2013-01-09T06:09:57.000Z","date_updated_argovis":"2023-01-26T10:42:03.376Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_110.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":110,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.2,19.5,30.200001,40.100002,50.100002,59.700001,69.699997,79.799995,88.799995,100,110.099998,119.599998,129.899994,140.399994,150.300003,159.800003,169.399994,179.599991,189.199997,199.899994,210.199997,220.300003,230,239.899994,249.899994,259.5,270.100006,279.700012,289.900024,299.900024,309.600006,320.100006,329.5,339.600006,349.800018,359.5,380.100006,399.100006,450.200012,499.600006,550.200012,599.900024,649.700012,699.799988,750.200012,799.5,850.100037,899.700012,949.600037,999.600037,1050.199951,1099.699951,1149.899902,1199.599976,1249.399902,1299.5,1349.799927,1399.599976,1449.299927,1499.799927,1549.799927,1599.5,1650,1699.099976,1749.899902,1799.399902,1849.799927],[27.464001,27.459,27.461,26.275999,25.277,24.882999,24.395,24.011,23.676001,23.575001,23.118999,22.945999,22.889999,22.674,22.327,21.666,21.091,20.552999,20.129999,19.816999,19.511,19.242001,19.032,18.605,18.339001,17.924999,17.606001,17.219999,16.929001,16.495001,16.200001,15.966,15.672,15.287,15.056,14.799,14.512,14.049,13.769,12.896,11.997,11.127,10.273,9.645,8.964,8.267,7.542,6.759,5.949,5.321,4.911,4.714,4.596,4.494,4.304,3.808,3.61,3.321,3.216,3.114,3.036,2.904,2.794,2.744,2.691,2.676,2.647,2.602],[35.128452,35.128475,35.136463,35.052509,34.9995,35.105495,35.0205,35.020504,35.01749,35.119488,35.123501,35.227486,35.297478,35.305492,35.383457,35.377495,35.37846,35.41647,35.408463,35.410484,35.458447,35.489464,35.50647,35.534447,35.529453,35.522472,35.515469,35.521454,35.515457,35.499477,35.490467,35.485477,35.472466,35.446472,35.430489,35.409496,35.378525,35.341522,35.314541,35.201542,35.078545,34.957592,34.842602,34.763615,34.678631,34.60965,34.554657,34.494675,34.462685,34.458679,34.473686,34.497688,34.531689,34.57568,34.593678,34.582676,34.581665,34.594685,34.61068,34.619694,34.628685,34.646687,34.662685,34.669662,34.677673,34.680672,34.685669,34.69368]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_109","geolocation":{"type":"Point","coordinates":[48.108,-23.568]},"basin":3,"timestamp":"2012-12-30T02:15:27.000Z","date_updated_argovis":"2023-01-26T10:42:01.584Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_109.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":109,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.3,20.4,30.299999,40.399998,50.299999,59.799999,70.100006,80.5,89.900002,99.900002,109.700005,119.300003,130.300003,140.100006,149.800003,159.900009,170.300003,179.699997,189.100006,199.800003,210,219.900009,230.199997,240.199997,249.800003,259.599976,268.099976,280,290,299.799988,309.699982,319.699982,329.5,339.899994,349.799988,359.599976,379.899994,399.799988,447.099976,500.299988,549.5,600,649.700012,699.799988,750.299988,799.799988,850.299988,900,949.5,1000.299988,1049.5,1099.800049,1150,1199.900024,1249.600098,1299.900024,1347,1400.200073,1449.900024,1499.300049,1549.900024,1600.100098,1649.600098,1700.200073,1749.800049,1799.600098,1849.400024],[26.468,26.469,26.478001,26.179001,25.547001,24.743999,23.791,23.059999,22.221001,21.525999,20.99,20.950001,20.808001,20.295,19.437,19.231001,19.032,18.739,18.408001,18.349001,17.927,17.617001,17.457001,17.198999,16.957001,16.688,16.448999,16.214001,15.597,15.255,15.146,15.121,14.653,14.516,14.452,14.313,14.035,13.622,13.074,12.137,11.09,10.19,9.629,8.965,8.421,7.805,7.158,6.183,5.402,4.894,4.699,4.588,4.466,4.188,3.981,3.704,3.447,3.328,3.205,3.071,2.976,2.896,2.818,2.76,2.749,2.671,2.644,2.632],[34.842636,34.84264,34.843636,34.879623,34.980621,35.010616,35.091602,35.214603,35.219593,35.301601,35.39259,35.39558,35.400578,35.404594,35.476559,35.495579,35.506557,35.512569,35.496582,35.497578,35.490566,35.502571,35.51659,35.513592,35.513577,35.51358,35.526573,35.503571,35.39661,35.404621,35.392609,35.447605,35.379623,35.387592,35.380623,35.365616,35.33963,35.271637,35.19363,35.088661,34.953697,34.828709,34.755718,34.678722,34.63773,34.591747,34.548763,34.474773,34.456776,34.463787,34.507774,34.540775,34.579773,34.593777,34.593784,34.584774,34.584759,34.594784,34.60878,34.618778,34.636776,34.64777,34.659756,34.667778,34.670765,34.681759,34.68676,34.68977]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_108","geolocation":{"type":"Point","coordinates":[48.486,-24.111]},"basin":3,"timestamp":"2012-12-19T22:25:37.005Z","date_updated_argovis":"2023-01-26T10:41:59.867Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_108.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":108,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.5,20,29.5,37.799999,50.399998,60.399998,69.600006,80.300003,89.800003,100.300003,110.300003,120.300003,130.300003,139.400009,150.400009,160.100006,169.900009,180.300003,189.600006,199.900009,210,219.900009,230,239.800003,250.5,260.199982,269.699982,279.899994,290,300.099976,310.5,319.899994,330.199982,339.699982,349.799988,360,380,399.699982,450,499.299988,549.700012,599.399963,649.399963,700.399963,750.299988,800,849.599976,900.299988,949.599976,999.399963,1047.700073,1100.100098,1150,1200,1250.100098,1299.5,1350.100098,1400.400024,1449.400024,1499.300049,1550.300049,1599.900024,1649.900024,1699.700073,1749.800049,1800.100098,1849.700073,1899.900024,1949.600098,2000.200073],[26.284,26.282,26.268999,25.334999,24.683001,24.375999,23.99,23.9,23.759001,23.593,23.934999,23.750999,23.448,23.148001,22.746,22.629999,22.443001,22.242001,21.649,21.132,20.768,20.391001,20.134001,19.615,18.836,18.464001,18.098,17.854,17.385,17.142,16.726999,16.181999,15.926,15.891,15.676,15.494,15.361,14.805,14.37,13.5,12.839,11.858,11.124,10.621,9.955,9.425,8.732,7.858,6.997,6.242,5.606,5.13,4.751,4.474,4.26,4.2,3.922,3.659,3.482,3.293,3.146,3.026,2.922,2.834,2.779,2.723,2.638,2.561,2.528,2.469,2.434],[35.118752,35.118744,35.107754,34.983772,34.962772,34.981781,34.927761,34.983784,35.096775,35.146736,35.429707,35.453705,35.460716,35.445721,35.434723,35.448727,35.429714,35.408722,35.412743,35.466721,35.489712,35.507729,35.519741,35.534721,35.482723,35.467724,35.490719,35.526733,35.496731,35.504738,35.487747,35.437756,35.419758,35.452751,35.460773,35.461765,35.47374,35.429752,35.386765,35.293789,35.204803,35.057804,34.955833,34.884846,34.797859,34.727871,34.64888,34.566902,34.511913,34.467922,34.456917,34.457939,34.472916,34.496933,34.512917,34.553909,34.556927,34.562927,34.577911,34.594921,34.609924,34.624916,34.637909,34.652916,34.666908,34.675934,34.688911,34.700912,34.705914,34.714897,34.71991]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_107","geolocation":{"type":"Point","coordinates":[49.092,-24.095]},"basin":3,"timestamp":"2012-12-09T18:32:02.999Z","date_updated_argovis":"2023-01-26T10:41:58.009Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_107.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":107,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.7,10.3,20.299999,30.599998,40.099998,49.799999,60.5,70.400002,80,89.800003,99.600006,109.600006,119.5,129.800003,139.300003,150.5,160,170.400009,180.400009,190.100006,199.900009,209.400009,220.400009,229.900009,239.600006,250.199997,260,270.199982,279.799988,287.899994,300.099976,310.399994,319.799988,330.099976,340.199982,350,359.699982,380.299988,399.799988,450.199982,499.699982,549.799988,599.299988,649.5,700.200012,750.299988,799.899963,850.099976,900.399963,950.099976,999.700012,1050.200073,1099.600098,1149.800049,1200.100098,1249.700073,1299.800049,1349.5,1399.700073,1449.800049,1499.600098,1550.400024,1600.100098,1649.800049,1699.400024,1750,1800.100098,1850.100098,1899.700073,1949.300049],[26.464001,26.464001,26.362,26.08,25.087999,24.823999,24.18,23.782,23.632,23.499001,23.316,23.148001,22.740999,22.625999,22.493999,21.789,21.155001,20.636999,20.290001,19.723,19.250999,18.656,18.355,18.011,17.636,17.452999,17.191999,17.011999,16.861,16.632,15.833,15.527,15.258,14.853,14.71,14.538,14.336,13.966,13.652,12.92,12.219,11.782,11.4,10.831,10.202,9.709,9.099,8.366,7.58,6.895,5.968,5.361,4.882,4.743,4.26,4.023,3.881,3.679,3.475,3.304,3.176,3.065,2.97,2.869,2.782,2.688,2.621,2.573,2.544,2.518],[35.224869,35.224876,35.224892,35.266876,35.408863,35.416874,35.441864,35.450867,35.454857,35.467869,35.463856,35.46286,35.421864,35.43787,35.428856,35.374874,35.392887,35.445881,35.513882,35.538883,35.525883,35.433884,35.435883,35.447895,35.469887,35.474907,35.502907,35.49189,35.507896,35.513893,35.405903,35.364914,35.346916,35.311916,35.327919,35.331924,35.314926,35.304935,35.298923,35.213947,35.110958,35.049961,34.990974,34.912979,34.827007,34.764027,34.69302,34.618034,34.553043,34.505054,34.460064,34.456062,34.465073,34.503067,34.494072,34.515064,34.542061,34.560066,34.58107,34.601063,34.616058,34.630062,34.638058,34.650063,34.664059,34.672058,34.684044,34.689056,34.704052,34.70805]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_106","geolocation":{"type":"Point","coordinates":[49.732,-24.104]},"basin":3,"timestamp":"2012-11-29T14:04:53.001Z","date_updated_argovis":"2023-01-26T10:41:56.195Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_106.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":106,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.900001,19.799999,30.299999,40.299999,49.700001,59.5,69.600006,77.5,90.400002,100,110.5,119.900002,130.400009,140.199997,148.800003,160.300003,169.900009,180.400009,189.800003,200.100006,210,220.199997,230.199997,239.800003,250.199997,260.099976,269.599976,280.199982,289.899994,299.899994,309.699982,320,329.599976,339.799988,349.699982,359.799988,379.5,400.299988,449.699982,499.899994,549.799988,600.200012,650,699.899963,749.799988,800.299988,849.299988,899.700012,949.899963,999.799988,1049.900024,1100.200073,1149.700073,1200,1250.100098,1300.200073,1349.300049,1400.300049,1450,1499.300049,1549.600098,1600.200073,1650.100098,1696.800049,1750.100098,1799.600098,1849.900024,1900,1949.200073,1999.800049],[25.544001,25.511999,25.448,25.436001,25.417,25.219999,24.295,23.896999,23.721001,23.125,22.853001,22.205,22.007999,21.764999,20.881001,20.518,20.278,20.032,19.629,19.334999,18.898001,18.667999,18.492001,17.898001,17.691999,17.253,16.995001,16.728001,16.334999,16.076,15.921,15.66,15.323,15.108,14.774,14.585,14.381,14.018,13.752,13.17,12.584,12.195,11.457,10.922,10.406,9.634,9.037,8.379,7.587,6.791,5.983,5.549,4.989,4.72,4.449,4.271,4.06,3.722,3.488,3.354,3.193,3.042,2.915,2.839,2.778,2.713,2.665,2.627,2.578,2.52,2.474],[35.405022,35.403008,35.403027,35.40202,35.403019,35.429008,35.458012,35.462013,35.462029,35.485008,35.479015,35.464031,35.466015,35.463013,35.472023,35.498016,35.51001,35.518028,35.539028,35.554028,35.573021,35.580021,35.573029,35.579029,35.577023,35.574017,35.587036,35.57803,35.55003,35.537029,35.526047,35.509045,35.484043,35.461044,35.432053,35.415058,35.394058,35.355076,35.336071,35.257084,35.170094,35.110092,35.000118,34.92514,34.853138,34.75415,34.686157,34.618179,34.554195,34.498203,34.461197,34.4562,34.457226,34.481205,34.512207,34.534222,34.546207,34.549213,34.573212,34.5882,34.609203,34.630207,34.647205,34.662182,34.668198,34.679195,34.686199,34.691196,34.699196,34.708214,34.714191]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_105","geolocation":{"type":"Point","coordinates":[50.413,-24.052]},"basin":3,"timestamp":"2012-11-19T10:26:16.000Z","date_updated_argovis":"2023-01-26T10:41:54.472Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_105.nc","date_updated":"2020-11-12T10:21:02.000Z"}],"cycle_number":105,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.400001,20,29.699999,39.799999,50.200001,59.700001,69.800003,80.400002,90.300003,99.700005,110.200005,119.700005,129.900009,140,150.400009,160.199997,169.600006,178.300003,190.5,199.900009,210.199997,219.600006,229.800003,240.199997,249.800003,260,270.199982,280.399994,289.799988,299.799988,310.299988,320.299988,329.5,340.099976,349.899994,359.699982,379.5,400.199982,450.199982,499.599976,550.299988,599.5,649.799988,699.799988,750,799.799988,846.899963,900,950,999.700012,1049.800049,1099.900024,1149.400024,1200,1249.900024,1299.300049,1349.800049,1400.400024,1450.200073,1499.300049,1549.800049,1600.100098,1650.100098,1700.100098,1749.800049,1799.600098,1849.600098,1899.300049,1949.400024],[25.339001,25.305,25.091999,24.656,24.533001,24.311001,23.912001,23.462999,23.218,22.604,22.105,21.709,21.478001,21.125,20.66,20.267,19.976,19.653,19.43,18.966999,18.620001,18.058001,17.754,17.319,17.073,16.797001,16.504,16.239,16.004,15.855,15.482,15.105,15.07,14.851,14.63,14.49,14.366,14.027,13.898,13.298,12.725,12.131,11.455,10.864,10.21,9.53,8.855,8.02,7.401,6.533,5.823,5.381,4.987,4.707,4.484,4.222,4.006,3.876,3.695,3.53,3.303,3.175,3.007,2.924,2.827,2.718,2.668,2.623,2.594,2.53],[35.414165,35.415157,35.409164,35.394173,35.393185,35.400162,35.436165,35.454163,35.467178,35.448174,35.446194,35.461166,35.464169,35.471169,35.486179,35.514164,35.524162,35.538174,35.545162,35.55917,35.573166,35.575184,35.572189,35.576172,35.574165,35.573185,35.560173,35.546181,35.528202,35.516186,35.490196,35.464176,35.459221,35.43821,35.417206,35.404202,35.392212,35.368206,35.351219,35.273239,35.193226,35.101254,35.002254,34.917286,34.828297,34.740311,34.666317,34.591339,34.54134,34.481365,34.458366,34.458366,34.462368,34.488358,34.513332,34.533356,34.548344,34.573353,34.595352,34.606354,34.608345,34.625351,34.637341,34.652348,34.666351,34.671345,34.67934,34.689346,34.694336,34.706348]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_104","geolocation":{"type":"Point","coordinates":[50.951,-23.962]},"basin":3,"timestamp":"2012-11-09T05:59:05.999Z","date_updated_argovis":"2023-01-26T10:41:52.601Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_104.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":104,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.099999,20,30.200001,39.900002,49.900002,59.900002,69.399994,77.799995,89.699997,99.699997,110.199997,119.399994,127.399994,139.800003,150.199997,160.099991,170.300003,180,189.599991,199.899994,210,219.800003,230.199997,239.599991,249.800003,260.100006,269.600006,277.5,290.200012,299.600006,309.900024,319.700012,329.900024,339.600006,350.100006,359.600006,380.200012,399.5,449.100006,500.100006,550,600.100037,649.400024,700,749.700012,800,849.600037,899.5,949.900024,1000,1046.799927,1100,1149.299927,1200,1250.199951,1299.599976,1348.299927,1400.099976,1449.599976,1499.699951,1550.099976,1599.599976,1649.399902,1700.099976,1749.899902,1799.799927,1849.399902,1899.599976,1949.799927,1999.199951],[24.596001,24.583,24.580999,24.532,24.204,23.99,23.789,23.638,23.610001,23.472,23.306999,22.927,22.573,22.169001,21.379,21.111,20.646,20.277,19.907,19.504999,19.099001,18.632999,18.195,17.774,17.403,17.101,16.739,16.476,16.32,16.028,15.737,15.493,15.302,15.164,15.026,14.89,14.737,14.223,13.885,13.276,12.679,12.182,11.596,11.108,10.613,9.921,9.199,8.448,7.584,6.571,5.868,5.253,4.786,4.503,4.389,4.164,3.933,3.662,3.514,3.36,3.211,3.141,2.979,2.872,2.782,2.728,2.671,2.623,2.556,2.5,2.462],[35.358353,35.358353,35.357357,35.354366,35.388371,35.420357,35.436352,35.451355,35.455353,35.442337,35.446354,35.44035,35.449345,35.443348,35.452354,35.469349,35.487366,35.513348,35.527374,35.541359,35.559387,35.568348,35.576366,35.585361,35.585361,35.575367,35.558384,35.550346,35.543385,35.521366,35.508381,35.491371,35.478367,35.467384,35.456379,35.442387,35.426403,35.375404,35.339417,35.266422,35.18343,35.108437,35.022449,34.952457,34.88348,34.790497,34.702511,34.626514,34.556522,34.482552,34.455559,34.457554,34.467552,34.503548,34.532558,34.544548,34.562527,34.56955,34.590549,34.601551,34.613544,34.631542,34.639545,34.65255,34.666531,34.674541,34.68354,34.694538,34.705532,34.713531,34.71854]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_103","geolocation":{"type":"Point","coordinates":[51.602,-23.825]},"basin":3,"timestamp":"2012-10-30T02:25:08.000Z","date_updated_argovis":"2023-01-26T10:41:50.777Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_103.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":103,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.3,20.199999,29.9,40.099998,50.099998,59.5,70.100006,79.700005,89.800003,100.400002,109.5,120.200005,129.699997,139.800003,149.5,160,170.300003,179.900009,190.100006,200,210.5,220.5,230.100006,240.300003,249.600006,260.399994,269.799988,280.399994,290.099976,300.299988,309.799988,319.799988,330.099976,339.799988,349.699982,359.699982,379.899994,400.299988,449.5,499.899994,549.399963,599.399963,649.5,699.899963,749.700012,799.799988,850.200012,899.899963,949.599976,1000,1050.300049,1099.900024,1149.800049,1200,1249.600098,1300.100098,1349.900024,1400,1450,1499.400024,1549.700073,1599.5,1649.5,1700.300049,1749.900024,1800.100098,1849.300049,1900.100098,1949.100098],[24.294001,24.299999,24.292,24.066999,24.042999,24.040001,23.771999,23.587999,23.548,23.473,23.301001,22.999001,21.936001,21.398001,21.201,21.000999,20.722,20.368999,19.969999,19.535,19.011,18.726999,18.214001,17.992001,17.569,17.346001,17.01,16.714001,16.215,16.011,15.78,15.398,15.229,15.118,14.887,14.744,14.61,14.119,13.808,13.353,12.691,11.987,11.416,11.072,10.233,9.633,9.051,8.302,7.567,6.686,6.022,5.381,4.984,4.635,4.385,4.141,3.838,3.659,3.467,3.297,3.156,3.049,2.948,2.852,2.758,2.672,2.61,2.57,2.511,2.477],[35.427471,35.427471,35.425457,35.435467,35.433475,35.431461,35.452457,35.456467,35.456474,35.453468,35.456474,35.433475,35.428474,35.459476,35.475494,35.489483,35.513477,35.516457,35.532478,35.54047,35.567459,35.576477,35.572456,35.580463,35.593468,35.592464,35.585472,35.567474,35.539486,35.528484,35.513485,35.488503,35.472481,35.460491,35.441505,35.429501,35.416496,35.365501,35.333511,35.28352,35.185535,35.081543,34.998558,34.947571,34.830582,34.754597,34.687614,34.612621,34.553627,34.486629,34.458637,34.457649,34.467648,34.479652,34.524647,34.542641,34.55864,34.574638,34.58366,34.604637,34.61665,34.630638,34.641636,34.65564,34.669621,34.683632,34.695637,34.702637,34.710617,34.715614]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_102","geolocation":{"type":"Point","coordinates":[52.139,-23.725]},"basin":3,"timestamp":"2012-10-19T22:05:26.004Z","date_updated_argovis":"2023-01-26T10:41:48.814Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_102.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":102,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.2,19.699999,30.4,40.200001,50,60.399998,69.900002,79.900002,90.200005,100.100006,110.100006,119.600006,130.5,140.300003,150.600006,160.199997,169.800003,180,190.400009,200.100006,210.300003,220.5,229.900009,239.900009,250,259.799988,270.399994,280.199982,290.099976,300.199982,309.799988,319.899994,330.199982,340,350.299988,360,379.899994,400.199982,449.199982,500.099976,549.700012,599.799988,647.299988,700.200012,750.299988,799.599976,849.899963,900.099976,950.099976,1000.099976,1050.200073,1100.300049,1150.100098,1198.400024,1249.900024,1299.5,1349.600098,1399.800049,1449.600098,1499.200073,1550,1600,1650,1699.5,1750.300049,1800.200073,1849.5,1899.800049,1949.800049,2000.400024],[24.337999,24.337999,24.278999,23.823,23.743999,23.643,23.583,23.483999,23.438999,23.389999,23.355,23.264,22.968,22.263,21.502001,20.85,20.552999,20.41,20.280001,19.993999,19.496,18.879,18.489,18.068001,17.754999,17.518999,17.211,16.780001,16.264,15.952,15.822,15.642,15.458,15.323,15.122,14.893,14.683,14.151,13.957,13.447,12.711,11.995,11.428,10.895,10.241,9.626,8.813,8.116,7.211,6.539,5.632,5.242,4.924,4.484,4.173,3.983,3.797,3.644,3.43,3.299,3.135,3.05,2.96,2.879,2.757,2.692,2.639,2.583,2.547,2.489,2.462],[35.501614,35.502602,35.492603,35.451626,35.449615,35.439632,35.441612,35.444641,35.449615,35.456608,35.455624,35.446625,35.431625,35.404621,35.425617,35.484623,35.521618,35.531601,35.533623,35.537628,35.54562,35.553623,35.558628,35.577614,35.580631,35.567623,35.577633,35.566639,35.536625,35.52063,35.515617,35.504639,35.49065,35.479656,35.462639,35.441643,35.421642,35.380676,35.353645,35.297699,35.187679,35.081703,34.9977,34.921722,34.830723,34.752735,34.664753,34.597759,34.526764,34.48378,34.452801,34.459789,34.47678,34.487804,34.516788,34.545788,34.567772,34.576782,34.588787,34.602787,34.61879,34.628788,34.640781,34.655773,34.668789,34.679779,34.688778,34.69878,34.704773,34.713779,34.717758]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_101","geolocation":{"type":"Point","coordinates":[52.486,-23.805]},"basin":3,"timestamp":"2012-10-09T18:24:56.000Z","date_updated_argovis":"2023-01-26T10:41:46.891Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_101.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":101,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,19.599998,30.4,39.700001,50.200001,60.299999,69.700005,80.100006,89.600006,100,109.5,119.600006,129.900009,140.300003,150.100006,160.400009,169.800003,180.300003,190.400009,199.699997,210.400009,220.100006,229.900009,239.900009,249.800003,259.5,269.699982,278.299988,290.199982,299.899994,309.899994,320.099976,329.5,339.799988,349.899994,359.599976,379.299988,400,450.099976,500.299988,549.899963,599.799988,650.299988,700,750.099976,799.599976,850.099976,899.099976,950.099976,999.799988,1050.400024,1100.200073,1150.100098,1200,1250.200073,1299.5,1349.600098,1400.200073,1449.300049,1499.700073,1550.100098,1599.800049,1650.100098,1699.900024,1749.800049,1799.400024,1849.200073,1899.300049,1949.200073],[23.877001,23.858999,23.77,23.723,23.68,23.6,23.582001,23.559999,23.552,23.488001,23.396999,23.334,23.283001,23.030001,22.556999,21.915001,21.259001,20.912001,20.409,20.149,19.785,19.452,18.979,18.558001,18.400999,18.107,17.782,17.334,16.974001,16.413,16.278,15.93,15.581,15.318,15.079,14.813,14.627,14.233,14.092,13.578,12.779,12.211,11.748,11.14,10.448,9.641,8.997,8.139,7.575,6.665,6.019,5.355,4.928,4.483,4.269,4.127,3.983,3.805,3.48,3.285,3.195,3.079,2.944,2.857,2.78,2.699,2.631,2.593,2.555,2.508],[35.477776,35.477749,35.482777,35.478783,35.477776,35.477757,35.480789,35.481777,35.479774,35.47477,35.46777,35.457756,35.456776,35.435776,35.411762,35.421772,35.439758,35.455791,35.513763,35.533772,35.538761,35.557758,35.575771,35.583767,35.59177,35.592773,35.576782,35.562782,35.558777,35.53878,35.534794,35.516811,35.496784,35.476795,35.457798,35.434795,35.413822,35.379795,35.361816,35.315834,35.196838,35.112831,35.044853,34.957855,34.86087,34.757885,34.682899,34.599903,34.553913,34.490913,34.456936,34.453941,34.47794,34.48592,34.513939,34.532944,34.54393,34.562931,34.589931,34.600933,34.608925,34.626926,34.642929,34.661934,34.671917,34.682911,34.693935,34.699928,34.703922,34.711926]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_100","geolocation":{"type":"Point","coordinates":[52.828,-23.963]},"basin":3,"timestamp":"2012-09-29T13:36:19.000Z","date_updated_argovis":"2023-01-26T10:41:45.094Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_100.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":100,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.1,10.6,20.199999,29.599998,40.399998,50,60.200001,69.800003,79.700005,89.700005,100.200005,109.5,119.800003,129.5,140.199997,150.400009,159.699997,169.600006,180.300003,190,200.300003,210.300003,220.400009,229.699997,240.300003,249.699997,260.299988,270.099976,277.599976,290.199982,300.099976,309.699982,319.899994,330,340.099976,349.399994,359.899994,379.899994,400.099976,449.699982,499.799988,550.299988,599.599976,649.299988,697.399963,750.099976,799.5,850.299988,900.299988,950,1000.099976,1049.700073,1100.200073,1150.100098,1199.300049,1250.200073,1300,1350.100098,1400.300049,1449.800049,1499.200073,1550.100098,1599.600098,1649.5,1700,1748.700073,1800,1849.900024,1899.900024,1949.800049,1999.800049],[23.528,23.516001,23.386999,23.368999,23.349001,23.351,23.341,23.299999,23.256001,23.243999,23.252001,23.224001,23.108999,22.9,22.108999,21.577,21.194,20.701,20.475,20.247,19.629,18.972,18.566,18.195999,18.042,17.698999,17.309999,16.962,16.864,16.34,16.135,15.849,15.595,15.274,15.062,14.939,14.822,14.46,14.188,13.464,12.906,12.347,11.792,11.241,10.477,9.83,9.141,8.272,7.657,6.893,6.151,5.379,4.931,4.629,4.38,4.089,3.859,3.659,3.481,3.304,3.136,3.04,2.957,2.851,2.802,2.731,2.643,2.59,2.546,2.507,2.468],[35.489918,35.487934,35.479912,35.478912,35.476936,35.476921,35.47691,35.471924,35.468918,35.467903,35.476925,35.476917,35.475899,35.476936,35.41993,35.444935,35.473904,35.479919,35.504921,35.514927,35.539925,35.556923,35.567921,35.578934,35.578915,35.585922,35.575947,35.552921,35.569939,35.546913,35.534924,35.517937,35.501934,35.477955,35.456936,35.447945,35.436943,35.400963,35.372944,35.289967,35.217991,35.13398,35.051006,34.972,34.86602,34.78104,34.698029,34.614059,34.560055,34.504059,34.465065,34.453075,34.466072,34.481064,34.493073,34.519085,34.543072,34.559074,34.580059,34.602077,34.614079,34.629063,34.646076,34.659069,34.670067,34.679062,34.692059,34.699062,34.707077,34.712063,34.718052]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_099","geolocation":{"type":"Point","coordinates":[52.832,-23.934]},"basin":3,"timestamp":"2012-09-19T10:19:08.998Z","date_updated_argovis":"2023-01-26T10:41:43.197Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_099.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":99,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.5,20,30,40,49.299999,60,69.300003,79.5,89.599998,99.900002,109.699997,119.599998,129.399994,140.199997,149.399994,159.600006,169.5,177.800003,189.699997,200.100006,209.699997,219.800003,229.699997,239.699997,250.100006,259.799988,269.5,279.299988,289,299.799988,309.899994,319.600006,329.799988,339.899994,349.399994,359.200012,379.299988,399,450.100006,499.399994,549.700012,599.900024,650.099976,699.799988,749.799988,799.299988,849.400024,899.599976,949.599976,999.5,1048.199951,1099.5,1149.699951,1199.800049,1250,1299.900024,1349.099976,1399.5,1449.5,1499.900024,1549.900024,1599.800049,1649.800049,1699.300049,1750.099976,1799.400024,1849.300049,1899.400024,1949.400024],[23.347,23.346001,23.323999,23.32,23.298,23.282,23.274,23.249001,23.245001,23.243999,23.245001,23.245001,23.24,23.229,22.981001,21.872,21.365999,21.093,20.771,20.283001,20.058001,19.6,19.235001,18.827,18.621,18.219,17.746,17.389999,17.146,16.896999,16.496,16.319,16.002001,15.725,15.488,15.279,15.105,14.617,14.291,13.398,12.818,12.289,11.74,11.121,10.46,9.796,9.141,8.286,7.395,6.679,5.889,5.33,4.887,4.548,4.274,4.045,3.876,3.71,3.494,3.34,3.152,3.025,2.911,2.844,2.794,2.74,2.662,2.596,2.543,2.523],[35.440174,35.440174,35.442177,35.443169,35.444172,35.448177,35.464149,35.474159,35.474159,35.474171,35.474159,35.474171,35.473171,35.473175,35.451153,35.41317,35.433189,35.495193,35.479179,35.50618,35.536175,35.554165,35.554192,35.571171,35.581169,35.587193,35.572186,35.573193,35.57019,35.569195,35.556183,35.546219,35.529236,35.513191,35.493202,35.476196,35.462212,35.41523,35.38324,35.282242,35.202259,35.124252,35.044292,34.957283,34.864296,34.77631,34.700321,34.613316,34.53933,34.491364,34.452366,34.45937,34.468369,34.48637,34.502365,34.522385,34.545364,34.55537,34.573383,34.590374,34.617374,34.632362,34.647385,34.665371,34.671371,34.678352,34.688354,34.698368,34.705364,34.709358]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_098","geolocation":{"type":"Point","coordinates":[53.152,-24.012]},"basin":3,"timestamp":"2012-09-09T05:43:34.999Z","date_updated_argovis":"2023-01-26T10:41:41.383Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_098.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":98,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.4,19.9,28.9,39.300003,49.300003,59.200001,69.400002,79.700005,88.800003,99.400002,110,118.700005,129.899994,139.699997,149.699997,159.699997,168.099991,179.699997,189.399994,200,209.199997,219.599991,229.399994,240,249.899994,259.299988,268.5,279.799988,289.600006,299.600006,309.299988,319.399994,329.100006,340,349.699982,359.5,379.799988,399.5,449.600006,499.699982,549.700012,599.5,649.200012,699,749.600037,799.200012,849.5,899.400024,949.400024,999.400024,1049.900024,1099.400024,1149.400024,1199.5,1249.599976,1299.700073,1349.200073,1400,1449.200073,1499.300049,1549.5,1599.5,1649.300049,1699.200073,1749.5,1799.700073,1849.200073,1899.599976,1949,1999.099976],[23.291,23.292,23.292,23.292,23.297001,23.299,23.299999,23.302,23.304001,23.302,23.302,23.249001,22.514999,21.801001,21.533001,21.181999,20.766001,20.289,19.893,19.476999,18.857,18.562,18.167999,17.948,17.499001,17.120001,16.844999,16.471001,16.261,15.975,15.813,15.704,15.621,15.39,15.193,15.018,14.796,14.249,13.883,13.227,12.63,12.178,11.541,11.008,10.432,9.775,9.076,8.249,7.416,6.638,5.933,5.402,5.028,4.735,4.286,4.067,3.853,3.648,3.47,3.249,3.178,3.033,2.916,2.82,2.735,2.659,2.608,2.568,2.525,2.475,2.429],[35.468361,35.467358,35.468346,35.468346,35.468338,35.467339,35.468361,35.468361,35.468349,35.467346,35.467358,35.462334,35.422363,35.455353,35.455353,35.440357,35.469357,35.503365,35.536354,35.554367,35.579361,35.585373,35.579376,35.580379,35.582394,35.568382,35.567375,35.559383,35.546391,35.527378,35.517384,35.510399,35.501392,35.486412,35.468403,35.454395,35.4324,35.378429,35.339417,35.262444,35.176449,35.109428,35.016472,34.940479,34.859489,34.773499,34.688515,34.608521,34.54253,34.489544,34.454563,34.455555,34.467564,34.478558,34.493561,34.521561,34.542561,34.562569,34.583557,34.590561,34.605553,34.626572,34.646549,34.657562,34.673565,34.684551,34.693546,34.70055,34.708546,34.714546,34.720547]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_097","geolocation":{"type":"Point","coordinates":[53.406,-24.086]},"basin":3,"timestamp":"2012-08-30T02:22:40.999Z","date_updated_argovis":"2023-01-26T10:41:39.672Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_097.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":97,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.3,20,30.200001,39.600002,49.600002,60.200001,70.199997,79.699997,89.599998,99.799995,109.599998,118,130,139.699997,149.699997,160.199997,169.800003,179.800003,189.599991,197.800003,210.099991,219.699997,229.399994,239.899994,249.199997,259.400024,269.5,278.5,290.100006,299.600006,310.100006,319.600006,329.600006,339.5,349.800018,360,380.100006,397.600006,450,499.800018,549.700012,599.400024,649.5,699.799988,749.799988,799.600037,849.200012,899.900024,949.700012,1000.200012,1049.399902,1100.099976,1149.799927,1199.5,1248.199951,1299.399902,1350.099976,1399.899902,1449.199951,1499.799927,1549.5,1599.599976,1650.099976,1700.099976,1750,1799.799927,1849.399902,1899.799927,1949.699951],[23.454,23.454,23.458,23.458,23.459999,23.459999,23.452999,23.440001,23.444,23.429001,23.384001,23.233,22.374001,21.716,21.334,20.874001,20.389999,20.166,19.577999,19.205,18.952999,18.448,17.966999,17.490999,17.243,17.063999,16.709,16.544001,16.264,15.997,15.747,15.545,15.303,15.12,14.863,14.712,14.621,14.216,14.001,13.21,12.748,12.061,11.471,10.818,10.068,9.658,9.075,8.311,7.594,6.821,6.037,5.331,5.001,4.654,4.316,4.025,3.729,3.56,3.495,3.402,3.25,3.133,2.999,2.865,2.794,2.736,2.68,2.612,2.552,2.499],[35.457401,35.45739,35.458389,35.457417,35.457409,35.457401,35.454411,35.453396,35.456413,35.452412,35.437397,35.419426,35.412422,35.417404,35.441422,35.473427,35.487408,35.52541,35.529408,35.544422,35.561424,35.56842,35.569397,35.579426,35.571419,35.570408,35.561413,35.553425,35.54343,35.531395,35.513428,35.497429,35.466442,35.460419,35.438442,35.42445,35.413456,35.375439,35.35144,35.25745,35.194466,35.093472,35.006493,34.913502,34.811512,34.758518,34.688534,34.613533,34.556549,34.501553,34.459545,34.444553,34.46756,34.494568,34.504574,34.51757,34.545555,34.561569,34.572548,34.590561,34.607563,34.62056,34.63356,34.650547,34.662552,34.672546,34.680553,34.692562,34.704552,34.711544]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_096","geolocation":{"type":"Point","coordinates":[53.697,-24.275]},"basin":3,"timestamp":"2012-08-19T21:49:00.000Z","date_updated_argovis":"2023-01-26T10:41:37.806Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_096.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":96,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.9,18.200001,30.1,39.600002,49.799999,60.200001,70.099998,79.899994,89.599998,100.099998,110.099998,120,130.099991,140.300003,149.899994,159.800003,169.399994,179.899994,189.800003,198.5,210.199997,220,230,239.699997,249.599991,259.900024,269.800018,279.800018,290.100006,300.100006,310.100006,319.700012,329.700012,339.900024,349.900024,359.400024,380.100006,400,449.800018,500,549.5,599.200012,649.900024,700.299988,750,799.799988,849.700012,899.900024,949.900024,1000,1049.299927,1099.799927,1149.5,1196.799927,1249.5,1299.699951,1349,1399.799927,1447.5,1499.699951,1550.199951,1600,1649.199951,1699.199951,1750.199951,1799.899902,1849.899902,1899.699951,1949,2000.099976],[23.455,23.459999,23.459,23.462,23.464001,23.466,23.466999,23.466,23.469999,23.469999,23.475,23.473,23.084,22.386999,21.832001,21.305,20.853001,20.426001,20.07,19.620001,19.32,18.809999,18.399,17.856001,17.589001,17.399,17.023001,16.841999,16.556999,16.391001,16.233999,16.01,15.773,15.526,15.165,14.909,14.788,14.406,14.092,13.218,12.559,12.075,11.547,11.165,10.473,9.849,9.2,8.599,7.925,6.899,6.124,5.403,4.916,4.781,4.527,4.234,4.068,3.926,3.545,3.318,3.159,3.028,2.939,2.872,2.788,2.686,2.615,2.578,2.536,2.488,2.446],[35.462551,35.462555,35.462532,35.462543,35.462563,35.462555,35.462555,35.462555,35.463547,35.463558,35.463547,35.466553,35.454563,35.396564,35.391544,35.451557,35.488571,35.497566,35.50956,35.529556,35.54356,35.564571,35.573563,35.56356,35.570572,35.581566,35.58057,35.576569,35.561588,35.549568,35.540558,35.532574,35.516579,35.496563,35.466587,35.444572,35.431599,35.396584,35.361591,35.259628,35.165615,35.095623,35.017635,34.961636,34.86665,34.778648,34.696667,34.640667,34.581661,34.50668,34.463699,34.435703,34.436714,34.483711,34.507698,34.541706,34.562691,34.574703,34.557701,34.576698,34.609699,34.6287,34.6357,34.646709,34.661694,34.67569,34.687687,34.696709,34.703697,34.712692,34.718681]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_095","geolocation":{"type":"Point","coordinates":[53.955,-24.479]},"basin":3,"timestamp":"2012-08-09T18:25:18.000Z","date_updated_argovis":"2023-01-26T10:41:36.080Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_095.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":95,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.5,19.9,29.299999,39.799999,49.900002,59.400002,70,79.300003,90,99.900002,109.699997,120.099998,130,139.699997,149.399994,159.899994,170,179.899994,189.800003,199.899994,209.699997,219.600006,229.600006,240,249.600006,259.799988,269.399994,279.799988,289.600006,300.100006,310,319.5,329.399994,340,349.399994,359.700012,379.799988,399.799988,449.700012,499.399994,549.299988,599.200012,649.599976,700,749.599976,799.400024,849,899.400024,949.299988,999.900024,1049.800049,1099.599976,1149.900024,1199.5,1249.5,1299.699951,1349.400024,1400,1449.300049,1499.400024,1550.099976,1599.800049,1649.699951,1699.300049,1749.699951,1799.199951,1849.900024,1899.699951,1948.699951],[23.646,23.650999,23.656,23.658001,23.662001,23.662001,23.639999,23.634001,23.618,23.598,23.415001,23.278999,22.698999,22.264,21.747999,21.171,21.011999,20.764999,20.563,20.070999,19.650999,18.978001,18.754,18.450001,18.188,17.941,17.587999,17.158001,16.858,16.555,16.26,15.998,15.745,15.456,15.288,15.007,14.821,14.534,14.015,13.385,12.692,11.946,11.435,10.826,10.303,9.697,8.884,8.126,7.33,6.636,5.964,5.455,4.968,4.541,4.29,4.116,4.031,3.825,3.548,3.383,3.203,3.052,2.935,2.867,2.753,2.668,2.617,2.552,2.504,2.48],[35.447762,35.447777,35.446777,35.447769,35.449768,35.45079,35.472759,35.479774,35.47876,35.484776,35.472748,35.471767,35.427773,35.445778,35.428791,35.448792,35.457764,35.496758,35.580772,35.590767,35.605778,35.565777,35.573788,35.584793,35.591785,35.594795,35.590813,35.590797,35.574787,35.5588,35.541801,35.527798,35.511814,35.489822,35.47583,35.451813,35.434826,35.404808,35.353817,35.280823,35.185841,35.07486,35.000854,34.914875,34.84288,34.760887,34.669918,34.597908,34.535923,34.490936,34.459938,34.443943,34.435944,34.454952,34.481956,34.529949,34.558941,34.564941,34.576954,34.589947,34.598949,34.614944,34.629959,34.639931,34.658943,34.673943,34.682938,34.694931,34.703926,34.70892]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_094","geolocation":{"type":"Point","coordinates":[54.24,-24.768]},"basin":3,"timestamp":"2012-07-30T13:41:20.003Z","date_updated_argovis":"2023-01-26T10:41:34.192Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_094.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":94,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,8,20.199999,30,40.399998,50.299999,59.799999,69.600006,80.300003,90.400002,100.400002,109.900002,120.400002,129.699997,137.699997,149.900009,160.400009,170.5,180.199997,189.699997,199.5,209.5,220.400009,230.400009,240,250,260.299988,269.899994,279.5,289.399994,300.299988,309.899994,320.199982,330.199982,340.199982,350.199982,360.099976,379.599976,399.399994,449.799988,499.599976,550.299988,599.399963,650,699.700012,749.700012,799.799988,849.5,899.599976,949.599976,1000,1050,1099.900024,1149.600098,1197.200073,1249.700073,1300.100098,1349.800049,1399.900024,1449.700073,1500,1550.400024,1599.600098,1650.100098,1700.100098,1749.800049,1800.100098,1849.800049,1899.5,1950.100098,2000.300049],[23.52,23.521999,23.525999,23.528,23.528,23.524,23.492001,23.483999,23.542999,23.528,23.476999,23.223,23.052999,22.143999,21.753,21.294001,20.858999,20.511999,20.127001,19.73,19.378,18.944,18.591999,18.306,17.98,17.766001,17.351999,16.976,16.671,16.448,16.219999,16.011999,15.736,15.464,15.248,15.039,14.849,14.452,14.027,13.349,12.586,12.151,11.627,11.229,10.574,10.004,9.248,8.571,7.7,6.969,6.237,5.608,5.144,4.568,4.327,4.153,3.878,3.664,3.451,3.334,3.231,3.11,3.006,2.867,2.794,2.717,2.655,2.606,2.548,2.495,2.442],[35.475826,35.474815,35.475819,35.475819,35.477818,35.480812,35.473816,35.472828,35.503819,35.517834,35.507801,35.473835,35.463814,35.39082,35.399834,35.418842,35.441826,35.470848,35.498814,35.523815,35.535828,35.560825,35.583817,35.589828,35.595829,35.596832,35.582825,35.570827,35.575829,35.56683,35.555847,35.539833,35.517849,35.492828,35.474857,35.458839,35.439857,35.398849,35.35585,35.276859,35.169865,35.104885,35.02887,34.969879,34.878891,34.799904,34.7089,34.636909,34.563919,34.50993,34.476933,34.464958,34.45295,34.454945,34.465942,34.497948,34.504959,34.528946,34.551952,34.581932,34.604923,34.613945,34.628941,34.641933,34.654942,34.66993,34.680939,34.689938,34.698933,34.707932,34.717934]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_093","geolocation":{"type":"Point","coordinates":[54.423,-25.085]},"basin":3,"timestamp":"2012-07-20T10:28:50.997Z","date_updated_argovis":"2023-01-26T10:41:32.365Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_093.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":93,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.8,20.1,27.900002,40.200001,50.299999,59.600002,70.299995,79.799995,90.199997,100.199997,109.799995,120.199997,130.399994,140.399994,150,160.099991,167.699997,180.300003,189.800003,200.099991,209.399994,218,230,239.899994,249.899994,260.100006,269.900024,279.600006,289.400024,299.900024,310.100006,320.100006,330,340.200012,349.5,359.5,380,399.700012,449.5,500.200012,549.700012,599.600037,650,699.700012,749.5,799.799988,850.100037,900,949.700012,1000.100037,1049.799927,1099.5,1149.299927,1200.199951,1249.599976,1299.599976,1349.299927,1399.799927,1450.199951,1499.799927,1549.5,1599.699951,1649.899902,1699.399902,1749.699951,1799.799927,1850,1899,1949.799927],[23.701,23.695999,23.681,23.674999,23.673,23.674999,23.690001,23.688999,23.687,23.68,23.684999,23.677999,23.650999,23.061001,22.313,21.754999,21.450001,21.111,20.539,20.129999,19.701,19.285,19.127001,18.743999,18.445,18.146999,17.937,17.733,17.240999,17.014999,16.625999,16.41,16.134001,15.855,15.638,15.266,15.019,14.549,14.198,13.49,12.842,12.128,11.692,11.217,10.653,10.19,9.39,8.519,7.816,7.105,6.397,5.576,5.055,4.682,4.401,4.173,4.028,3.765,3.556,3.417,3.247,3.091,2.935,2.863,2.775,2.69,2.642,2.582,2.514,2.465],[35.407013,35.408009,35.410015,35.410007,35.410004,35.411987,35.465992,35.471989,35.484997,35.485989,35.489994,35.500996,35.506996,35.422009,35.408005,35.44899,35.471004,35.525997,35.562023,35.522999,35.521023,35.541008,35.547997,35.570015,35.58202,35.589985,35.586006,35.580029,35.566013,35.565022,35.57201,35.560993,35.547024,35.528011,35.508007,35.474033,35.455036,35.411045,35.374035,35.296043,35.206059,35.100063,35.037098,34.969086,34.890079,34.827087,34.727097,34.633095,34.570137,34.51712,34.483131,34.457127,34.437145,34.454136,34.472118,34.497147,34.53413,34.535141,34.549122,34.570114,34.588127,34.607136,34.619125,34.637127,34.650135,34.662144,34.66914,34.682133,34.691135,34.700123]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_092","geolocation":{"type":"Point","coordinates":[54.493,-25.405]},"basin":3,"timestamp":"2012-07-10T05:33:40.999Z","date_updated_argovis":"2023-01-26T10:41:30.514Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_092.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":92,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.2,20.200001,29.800001,39.600002,49.400002,59.5,69.399994,79.5,90,99.399994,109.5,117.799995,129.800003,139.699997,150.099991,159.800003,169.699997,179.899994,190.099991,200.099991,209.899994,220.300003,229.300003,240,250.399994,259.800018,270,279.600006,289.800018,300.200012,310.300018,320,330,339.700012,350.300018,359.5,380.100006,399.100006,450,499.900024,550.100037,599.600037,650.100037,699.700012,750.200012,799.700012,850.100037,899.600037,950.100037,999.700012,1049.299927,1100,1149.599976,1199.099976,1249.899902,1299.899902,1349.799927,1399.699951,1449.599976,1499.5,1549.5,1599.799927,1650.099976,1699.599976,1749.199951,1799.699951,1849.299927,1899.099976,1950,1998.399902],[24.007,24.006001,24.007,24.009001,24.011999,24.014,24.014,24.018,24.017,24.016001,23.860001,23.687,23.639999,23.545,23.424999,22.5,22.156,21.690001,20.969999,20.754,20.358,19.893,19.639999,19.148001,18.804001,18.443001,18.065001,17.809999,17.497999,17.202999,16.655001,16.469999,16.169001,15.953,15.611,15.336,15.063,14.665,14.347,13.524,12.98,12.347,11.905,11.265,10.75,10.199,9.575,8.858,7.966,7.303,6.658,6.055,5.448,4.849,4.497,4.223,3.919,3.742,3.555,3.388,3.236,3.1,3.005,2.885,2.794,2.71,2.653,2.596,2.559,2.521,2.477],[35.374153,35.375153,35.376144,35.374153,35.375145,35.374138,35.374172,35.374153,35.374161,35.373146,35.371151,35.369171,35.364151,35.376167,35.384144,35.362164,35.391151,35.404156,35.435162,35.448174,35.48016,35.510155,35.514164,35.546173,35.56216,35.586151,35.593155,35.595165,35.599167,35.58717,35.559162,35.550167,35.534172,35.517185,35.499184,35.480179,35.457191,35.420197,35.39119,35.299202,35.225204,35.135216,35.06823,34.974228,34.90723,34.826241,34.748234,34.669262,34.586262,34.533268,34.489262,34.46027,34.437279,34.436283,34.450279,34.471275,34.494278,34.517296,34.541275,34.558266,34.578285,34.596287,34.611279,34.627281,34.643269,34.657265,34.66927,34.678284,34.692284,34.702267,34.709259]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_091","geolocation":{"type":"Point","coordinates":[54.361,-25.916]},"basin":3,"timestamp":"2012-06-30T02:24:00.000Z","date_updated_argovis":"2023-01-26T10:41:28.873Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_091.nc","date_updated":"2020-11-12T10:21:01.000Z"}],"cycle_number":91,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10.1,19.9,29.699999,40,49.899998,60.200001,69.900002,80.100006,89.200005,100.200005,110.400002,120.600006,130.199997,140.300003,149.600006,159.699997,169.600006,178.100006,190.100006,200.300003,210.400009,220.199997,230.300003,240.400009,250.400009,259.699982,270.099976,277.399994,290.399994,300.299988,309.799988,320.199982,330.299988,339.899994,349.599976,359.899994,379.599976,399.799988,450,499.5,549.899963,599.799988,650.299988,700.099976,750.200012,799.599976,849.5,899.799988,950.200012,999.5,1049.900024,1099.600098,1150,1199.600098,1250.300049,1299.600098,1349.5,1399.600098,1450.200073,1500.100098,1549.600098,1600,1649.700073,1699.200073,1750,1800.200073,1850.200073,1900,1949.300049],[24.278999,24.278999,24.281,24.283001,24.285,24.285,24.289,24.287001,24.284,23.672001,23.563999,22.962,22.621,22.124001,21.855,21.485001,21.087,20.534,20.231001,19.892,19.457001,19.058001,18.621,18.261999,17.987,17.77,17.546,17.152,16.893999,16.617001,16.323999,16.049,15.799,15.57,15.348,15.146,14.981,14.603,14.284,13.406,12.64,12.108,11.604,11.019,10.514,9.827,9.255,8.421,7.727,6.985,6.342,5.803,5.19,4.914,4.514,4.257,4.06,3.824,3.685,3.43,3.281,3.137,2.993,2.898,2.798,2.726,2.667,2.588,2.53,2.484],[35.377266,35.377274,35.377274,35.376278,35.377281,35.378277,35.377258,35.377277,35.371269,35.35128,35.372288,35.33728,35.347267,35.366268,35.372292,35.402279,35.427265,35.467274,35.489296,35.508266,35.548271,35.555286,35.578293,35.592281,35.597267,35.60228,35.598289,35.564285,35.563297,35.554298,35.537281,35.523281,35.518288,35.498291,35.484291,35.465282,35.448296,35.413288,35.381294,35.274319,35.178303,35.099335,35.024323,34.943336,34.870335,34.783344,34.71035,34.624363,34.561348,34.510372,34.468388,34.459377,34.450378,34.468376,34.474388,34.498375,34.518379,34.534378,34.559376,34.569366,34.584366,34.596375,34.614372,34.627361,34.643379,34.656364,34.669365,34.679382,34.690365,34.696369]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_090","geolocation":{"type":"Point","coordinates":[53.96,-26.104]},"basin":3,"timestamp":"2012-06-19T21:39:05.997Z","date_updated_argovis":"2023-01-26T10:41:27.096Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_090.nc","date_updated":"2020-11-12T10:21:00.000Z"}],"cycle_number":90,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.4,20,29.6,39.900002,49.599998,59.700001,69.400002,79.800003,89.699997,99.900002,109.699997,119.599998,129.5,139.899994,149.800003,159.5,169.699997,179.5,189.899994,200,209.800003,219.600006,229.699997,240,249.5,259.600006,269.100006,279.5,290,299.399994,309.5,319.200012,329.799988,339.299988,349.600006,359.5,379.700012,399.899994,449,500,549.299988,599.299988,648.900024,700.099976,749.799988,799.900024,849.599976,899.700012,949.900024,999.400024,1049.800049,1100,1149.599976,1199.800049,1249.900024,1299.699951,1350,1399.599976,1449.599976,1499.599976,1548.5,1599.300049,1649.400024,1699.199951,1749,1799.699951,1849.900024,1899.800049,1948.800049,1997.400024],[24.733,24.736,24.73,24.733999,24.735001,24.742001,23.969,23.733,23.636,23.451,22.384001,21.813999,21.377001,20.934,20.566999,20.187,19.679001,19.346001,18.986,18.586,18.16,17.818001,17.580999,17.289,17.07,16.846001,16.452,16.261,15.922,15.698,15.476,15.101,14.924,14.811,14.789,14.492,14.369,14.063,13.866,13.191,12.397,11.816,11.292,10.809,10.278,9.647,9.096,8.378,7.545,6.806,6.152,5.597,5.151,4.695,4.481,4.182,3.764,3.638,3.554,3.392,3.231,3.144,3.01,2.915,2.821,2.761,2.659,2.582,2.533,2.487,2.448],[35.308506,35.308506,35.309517,35.308514,35.310532,35.308517,35.355518,35.348522,35.372547,35.410534,35.385517,35.391533,35.412537,35.442562,35.464527,35.490528,35.530537,35.551556,35.573563,35.565536,35.590546,35.588547,35.586552,35.596546,35.579552,35.580555,35.552555,35.543537,35.528545,35.508537,35.49057,35.460579,35.445549,35.435555,35.43055,35.405579,35.391575,35.362572,35.341572,35.24958,35.141598,35.058601,34.981602,34.911602,34.840622,34.759628,34.694641,34.619629,34.550632,34.497662,34.462646,34.431652,34.436672,34.444672,34.476673,34.494675,34.493664,34.520668,34.550659,34.568668,34.580666,34.604652,34.61866,34.631668,34.644665,34.65966,34.672665,34.687664,34.696659,34.704647,34.711658]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_089","geolocation":{"type":"Point","coordinates":[53.757,-26.155]},"basin":3,"timestamp":"2012-06-09T18:35:00.999Z","date_updated_argovis":"2023-01-26T10:41:25.289Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_089.nc","date_updated":"2015-06-18T13:21:10.000Z"}],"cycle_number":89,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.7,19.700001,30.200001,39.799999,50.5,60.200001,69.800003,79.800003,90.199997,99.800003,109.400002,120.099998,130.300003,140.300003,150.100006,160,169.600006,179.399994,190,200,207.899994,219.899994,229.600006,240,250.100006,257.5,270,279.799988,289.600006,299.600006,310.100006,319.399994,329.600006,339.399994,349.5,359.5,380.100006,400.200012,450,499.799988,549.700012,600,650.099976,699.799988,750.099976,800.099976,849.5,898.099976,949.799988,999.900024,1050.099976,1099.900024,1150.199951,1199.5,1249.699951,1300,1349.5,1399.800049,1450,1499.699951,1549.699951,1599.699951,1650.099976,1699.800049,1749.900024,1799.5,1849.800049,1899.800049,1949.599976],[24.573,24.580999,24.580999,24.589001,24.593,24.535999,23.687,23.388,23.191999,22.983999,22.737,22.572001,22.159,21.391001,20.789,20.365,20.108,19.733999,19.445999,19.132999,18.906,18.621,18.257999,17.658001,17.282,16.848,16.687,16.261,16.023001,15.783,15.604,15.322,15.077,14.909,14.666,14.463,14.301,13.882,13.722,13.165,12.67,11.979,11.35,10.828,10.324,9.762,9.206,8.422,7.692,6.909,6.227,5.584,5.048,4.721,4.326,4.193,4.031,3.858,3.599,3.288,3.187,3.066,2.969,2.878,2.807,2.739,2.669,2.601,2.566,2.504],[35.366001,35.365002,35.366001,35.366001,35.365002,35.362999,35.333,35.333,35.334,35.338001,35.344002,35.347,35.360001,35.438,35.459999,35.483002,35.514,35.534,35.547001,35.566002,35.577,35.576,35.582001,35.578999,35.577999,35.573002,35.577999,35.556999,35.532001,35.519001,35.511002,35.478001,35.458,35.441002,35.421001,35.403999,35.383999,35.341,35.323002,35.256001,35.182999,35.083,34.991001,34.917,34.848999,34.775002,34.710999,34.632,34.561001,34.508999,34.463001,34.439999,34.432999,34.456001,34.466,34.501999,34.528999,34.551998,34.561001,34.562,34.576,34.596001,34.615002,34.631001,34.647999,34.660999,34.676998,34.688,34.696999,34.702999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_088","geolocation":{"type":"Point","coordinates":[53.525,-26.233]},"basin":3,"timestamp":"2012-05-30T13:51:03.001Z","date_updated_argovis":"2023-01-26T10:41:23.494Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_088.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":88,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10,19.799999,29.9,37.400002,50.099998,60.099998,70,79.5,90.099998,100.300003,110.400002,119.599998,130.300003,140.199997,150,160.100006,168.100006,180,190.100006,199.699997,209.600006,220,230.100006,240,249.899994,258.100006,269.899994,279.899994,289.799988,299.600006,309.299988,319.899994,329.899994,340,349.600006,359.899994,379.399994,400,450,499.799988,550.099976,599.5,649.400024,699.200012,749.700012,799.599976,849.900024,900,950,1000,1049.699951,1099.800049,1149.400024,1200.300049,1249.5,1299.400024,1349.900024,1399.400024,1449.699951,1499.400024,1549.599976,1599.599976,1650.099976,1699.400024,1749.199951,1799.900024,1849.800049,1899.199951,1949.800049,1997.900024],[25.110001,25.111,25.112,25.112,25.112,25.125999,24.660999,23.934,23.485001,23.212999,22.750999,22.511,21.414,20.325001,19.655001,19.143,18.596001,18.242001,17.742001,17.43,17.073999,16.785999,16.562,16.281,16.08,15.761,15.599,15.393,15.181,15.026,14.889,14.76,14.651,14.549,14.436,14.316,14.196,13.961,13.782,13.003,12.492,11.921,11.454,10.791,10.216,9.602,8.957,8.153,7.399,6.797,6.187,5.362,4.902,4.536,4.234,4.063,3.974,3.777,3.473,3.316,3.195,3.077,2.959,2.895,2.812,2.742,2.659,2.599,2.532,2.492,2.456],[35.181999,35.181999,35.181999,35.181999,35.181,35.193001,35.261002,35.341,35.327,35.327999,35.341,35.376999,35.484001,35.509998,35.527,35.542999,35.549999,35.557999,35.566002,35.568001,35.563999,35.557999,35.554001,35.542,35.528999,35.511002,35.5,35.487999,35.469002,35.456001,35.439999,35.429001,35.418999,35.408001,35.397999,35.386002,35.374001,35.351002,35.328999,35.233002,35.158001,35.075001,35.005001,34.911999,34.834,34.756001,34.683998,34.608002,34.540001,34.505001,34.474998,34.426998,34.431,34.452999,34.471001,34.485001,34.535999,34.550999,34.555,34.558998,34.591,34.604,34.618,34.632,34.646,34.659,34.674999,34.688,34.698002,34.705002,34.713001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_087","geolocation":{"type":"Point","coordinates":[53.126,-26.084]},"basin":3,"timestamp":"2012-05-20T10:33:52.999Z","date_updated_argovis":"2023-01-26T10:41:21.689Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_087.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":87,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.1,20.299999,29.700001,40.200001,49.900002,60.299999,70.400002,80.300003,90.300003,99.900002,110.5,120.300003,129.600006,139.699997,149.899994,160.300003,169.800003,180.300003,190,200.399994,209.800003,219.5,230,240.199997,249.899994,260.200012,270.200012,279.700012,290.200012,300.100006,309.799988,319.700012,329.600006,340.200012,349.700012,360.200012,380.299988,399.899994,450.100006,499.899994,549.799988,600.099976,649.900024,699.799988,749.599976,799.5,849.799988,900.400024,949.599976,1000.099976,1050.099976,1099.800049,1149.5,1199.800049,1249.800049,1299.699951,1350,1400.099976,1449.900024,1500,1550.199951,1600,1649.699951,1699.800049,1750.099976,1799.900024,1849.900024,1899.800049,1949.199951],[25.509001,25.514999,25.563999,25.598,25.584999,25.614,25.556,24.948,23.570999,23.028999,22.612,21.993,21.474001,20.959999,20.393999,20.077999,19.67,18.988001,18.809999,18.636999,18.417,17.915001,17.561001,17.282,17.059,16.857,16.406,16.062,15.927,15.741,15.51,15.423,15.283,15.002,14.733,14.542,14.393,14.119,13.759,13.06,12.567,12.063,11.518,10.887,10.373,9.86,9.209,8.329,7.453,6.823,6.138,5.417,5.079,4.693,4.429,4.205,3.978,3.701,3.484,3.344,3.196,3.06,2.92,2.804,2.76,2.7,2.638,2.606,2.557,2.516],[35.060001,35.077,35.112,35.132,35.129002,35.193001,35.241001,35.296001,35.320999,35.328999,35.345001,35.375,35.400002,35.436001,35.474998,35.499001,35.529999,35.568001,35.574001,35.584,35.588001,35.594002,35.583,35.574001,35.584,35.580002,35.557999,35.534,35.526001,35.513,35.495998,35.487999,35.476002,35.452999,35.424999,35.407001,35.393002,35.365002,35.327999,35.241001,35.171001,35.094002,35.014,34.924999,34.854,34.785999,34.710999,34.618,34.544998,34.504002,34.473,34.463001,34.463001,34.457001,34.491001,34.507,34.528,34.546001,34.549,34.564999,34.585999,34.606998,34.625,34.645,34.657001,34.668999,34.682999,34.688999,34.702,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_086","geolocation":{"type":"Point","coordinates":[52.355,-25.7]},"basin":3,"timestamp":"2012-05-10T05:34:04.000Z","date_updated_argovis":"2023-01-26T10:41:19.910Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_086.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":86,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.7,19.6,29.299999,40,50.099998,60.200001,70,80.099998,90.199997,100,109.900002,117.400002,130.199997,139.699997,150.199997,160,169.300003,179.5,190.100006,199.899994,210.300003,219.800003,229.699997,239.399994,250,260.100006,270.100006,280.299988,290.200012,299.5,309.700012,319.899994,330,339.700012,350,360.100006,379.700012,399.5,450.200012,499.799988,549.799988,600,649.5,699.900024,749.799988,799,850,899.700012,949.799988,999.700012,1049.400024,1100.099976,1149.800049,1199.800049,1250.199951,1299.5,1349.400024,1399.800049,1450,1499.5,1549.599976,1599.900024,1650.300049,1698.5,1749.900024,1799.400024,1849.900024,1899.599976,1949.5,1999.099976],[25.853001,25.854,25.855,25.856001,25.836,25.768999,25.347,24.280001,23.756001,23.347,22.705,22.219999,21.849001,21.214001,20.694,20.247,19.593,19.302,18.938999,18.671,18.299,17.940001,17.787001,17.566999,17.17,16.716999,16.382,16.080999,15.809,15.759,15.585,15.4,15.193,14.985,14.736,14.594,14.446,14.146,13.896,13.183,12.677,12.18,11.701,11.124,10.502,9.986,9.484,8.752,8.029,7.419,6.603,5.787,5.267,4.865,4.486,4.182,3.916,3.673,3.489,3.342,3.196,3.067,2.952,2.872,2.764,2.703,2.638,2.584,2.533,2.489,2.442],[35.165001,35.165001,35.165001,35.165001,35.161999,35.165001,35.326,35.319,35.328999,35.327,35.34,35.362999,35.381001,35.417999,35.452,35.487,35.526001,35.558998,35.577,35.595001,35.613998,35.622002,35.617001,35.612999,35.587002,35.560001,35.547001,35.529999,35.515999,35.513,35.500999,35.487999,35.470001,35.450001,35.426998,35.412998,35.400002,35.369999,35.342999,35.257,35.183998,35.110001,35.041,34.958,34.868999,34.799,34.736,34.654999,34.585999,34.537998,34.493,34.465,34.464001,34.458,34.453999,34.464001,34.479,34.506001,34.525002,34.551998,34.567001,34.591,34.610001,34.627998,34.643002,34.653999,34.667,34.679001,34.693001,34.705002,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_085","geolocation":{"type":"Point","coordinates":[51.525,-25.307]},"basin":3,"timestamp":"2012-04-30T02:23:26.000Z","date_updated_argovis":"2023-01-26T10:41:18.103Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_085.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":85,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.3,20.1,29.5,39.700001,49.5,59.799999,68.5,80.300003,89.900002,99.599998,109.699997,117.800003,130,138.699997,150.399994,160.300003,169.600006,179.5,189.699997,200.199997,209.800003,219.800003,229.899994,239.800003,249.399994,259.700012,270.100006,279.899994,290.100006,299.899994,309.899994,319.600006,329.700012,339.899994,349.600006,359.799988,380.100006,400,449.700012,499.5,549.299988,599.5,650,699.5,749.900024,799.900024,850.099976,900.200012,949.900024,999.5,1049.800049,1099.599976,1149.300049,1200,1249.699951,1299.5,1349.900024,1399.5,1450.099976,1499.900024,1550.099976,1600.099976,1649.699951,1699.300049,1749.900024,1799.599976,1849.599976,1899.300049,1949.599976],[25.992001,25.993,25.997999,25.996,26.004,26.003,25.094999,24.407,23.627001,23.158001,22.636,22.290001,21.731001,21.348,20.978001,20.337,19.830999,19.431999,18.958,18.400999,18.082001,17.700001,17.308001,17.059,16.877001,16.726,16.583,16.381001,16.120001,15.822,15.651,15.511,15.231,15.023,14.821,14.641,14.485,14.231,13.836,13.267,12.646,12.099,11.669,11.106,10.412,9.78,9.181,8.547,7.797,6.841,6.29,5.608,5.086,4.802,4.532,4.287,4.024,3.701,3.474,3.381,3.213,3.09,2.973,2.867,2.782,2.706,2.633,2.581,2.534,2.493],[35.194,35.194,35.195,35.193001,35.194,35.202,35.372002,35.344002,35.332001,35.338001,35.349998,35.360001,35.386002,35.411999,35.442001,35.507999,35.546001,35.569,35.584999,35.584999,35.591,35.581001,35.575001,35.569,35.567001,35.563999,35.563,35.549999,35.535,35.518002,35.508999,35.497002,35.472,35.453999,35.437,35.417,35.402,35.375,35.337002,35.266998,35.181999,35.097,35.035,34.952,34.856998,34.772999,34.702,34.636002,34.568001,34.501999,34.48,34.463001,34.464001,34.472,34.488998,34.511002,34.534,34.539001,34.553001,34.566002,34.574001,34.592999,34.612,34.624001,34.639,34.654999,34.667999,34.679001,34.692001,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_084","geolocation":{"type":"Point","coordinates":[50.858,-25.566]},"basin":3,"timestamp":"2012-04-19T21:45:04.998Z","date_updated_argovis":"2023-01-26T10:41:16.307Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_084.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":84,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.9,9.1,20,30.299999,40,49.299999,60.400002,70,80.400002,90.300003,100,109.800003,117.400002,130.199997,140.300003,149.5,159.899994,169.399994,179.800003,190.300003,199.699997,210.199997,219.899994,229.600006,239.899994,249.899994,259.899994,270.100006,280,289.299988,297.600006,310,320.200012,329.899994,339.899994,349.899994,359.799988,379.899994,399.200012,450.200012,500.200012,549.5,600,649.099976,700.299988,750.200012,799.599976,849.299988,899.599976,949.799988,999.900024,1049.900024,1100.099976,1149.900024,1200,1249.900024,1299.800049,1349.599976,1400.099976,1450.099976,1500,1550.099976,1599.800049,1649.699951,1699.599976,1749.699951,1799.599976,1849.300049,1899.900024,1949.900024,1998.699951],[26.628,26.583,26.538,26.511,25.790001,25.716999,25.673,25.407,24.271999,22.372999,21.438999,20.900999,20.365999,19.818001,19.225,18.664,18.471001,17.92,17.608999,17.33,17.063999,16.725,16.518,16.351,16.15,16.013,15.806,15.67,15.576,15.418,15.309,15.149,14.844,14.616,14.387,14.066,13.882,13.684,13.397,12.934,12.42,11.818,11.282,10.64,10.169,9.436,8.982,8.137,7.465,6.774,5.998,5.502,5.106,4.707,4.435,4.212,4.002,3.804,3.626,3.433,3.263,3.101,2.993,2.914,2.815,2.73,2.672,2.611,2.566,2.521,2.478],[35.151001,35.169998,35.167,35.181999,35.423,35.422001,35.428001,35.422001,35.403999,35.417,35.444,35.471001,35.488998,35.506001,35.535,35.554001,35.568001,35.580002,35.580002,35.577999,35.574001,35.567001,35.558998,35.549999,35.540001,35.529999,35.518002,35.507,35.499001,35.487999,35.48,35.467999,35.437,35.411999,35.389999,35.356998,35.341,35.319,35.286999,35.223999,35.148998,35.056,34.98,34.889,34.824001,34.730999,34.68,34.595001,34.542,34.504002,34.469002,34.464001,34.483002,34.494999,34.507,34.527,34.542999,34.561001,34.573002,34.594002,34.610001,34.622002,34.638,34.652,34.662998,34.674,34.682999,34.693001,34.702,34.708,34.713001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_083","geolocation":{"type":"Point","coordinates":[50.513,-25.765]},"basin":3,"timestamp":"2012-04-09T18:30:43.002Z","date_updated_argovis":"2023-01-26T10:41:14.475Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_083.nc","date_updated":"2015-06-18T13:21:09.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.8,20.299999,29.700001,40,49.400002,58.900002,70.300003,80.300003,90.599998,100.099998,110.5,120.300003,129.699997,139.899994,149.800003,160.300003,170.300003,180.399994,190.199997,199.899994,209.399994,220,229.199997,240.399994,249.899994,260.100006,269.899994,279.700012,289.600006,300.200012,310.200012,320.299988,330,339.299988,349.399994,359.600006,380,399.899994,449.600006,499.700012,550.099976,599.5,649.5,700.400024,750.299988,799.700012,850,899.900024,950.099976,999.200012,1050.099976,1099.699951,1149.699951,1199.800049,1249.800049,1300.099976,1350,1400,1449.800049,1500.199951,1550.099976,1599.800049,1649.599976,1700.199951,1750.099976,1799.900024,1849.300049,1899.599976,1950],[26.106001,26.106001,26.112,26.118999,26.052999,25.884001,25.860001,25.826,24.868,22.524,21.548,20.466,19.677999,19.049999,18.559,18.264,17.773001,17.393999,17.083,16.811001,16.577999,16.323,16.153999,15.927,15.796,15.548,15.383,15.162,14.973,14.823,14.535,14.402,14.321,14.054,13.963,13.821,13.721,13.579,13.272,12.677,12.297,11.625,10.999,10.561,10.089,9.37,8.771,8.025,7.379,6.657,6.018,5.476,5.025,4.682,4.381,4.134,3.905,3.709,3.518,3.347,3.202,3.068,2.983,2.88,2.814,2.726,2.656,2.615,2.561,2.533],[35.235001,35.236,35.235001,35.234001,35.245998,35.376999,35.400002,35.405998,35.418999,35.450001,35.487999,35.514,35.518002,35.528,35.547001,35.553001,35.562,35.562,35.563,35.560001,35.555,35.541,35.533001,35.523998,35.515999,35.495998,35.484001,35.464001,35.449001,35.433998,35.407001,35.391998,35.382999,35.358002,35.352001,35.337002,35.325001,35.311001,35.271,35.186001,35.127998,35.033001,34.939999,34.875999,34.813999,34.723,34.654999,34.585999,34.534,34.498001,34.472,34.463001,34.481998,34.497002,34.514,34.530998,34.551998,34.569,34.583,34.598999,34.613998,34.625999,34.633999,34.650002,34.661999,34.673,34.683998,34.691002,34.705002,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_082","geolocation":{"type":"Point","coordinates":[50.554,-25.552]},"basin":3,"timestamp":"2012-03-30T23:50:37.000Z","date_updated_argovis":"2023-01-26T10:41:12.675Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_082.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.3,9.9,20,29.799999,39.599998,49.099998,60.099998,69.800003,80,89.900002,99.900002,110,120.199997,129.5,140.199997,149.699997,158.699997,169.899994,180.100006,189.5,199.600006,209.699997,219.800003,230,239.899994,249.800003,260,269.899994,279.600006,289.5,300.100006,309.799988,319.5,329.600006,339.600006,349.200012,359.700012,379.299988,399.600006,447.200012,500,549.700012,599.299988,649.400024,699.599976,749.900024,799.200012,849.099976,899.900024,949.400024,999.5,1049.800049,1100,1149.800049,1199.699951,1249.599976,1300,1350,1400.099976,1449.300049,1499.599976,1549.599976,1599.400024,1650.099976,1699.900024,1749.599976,1799.699951,1849.300049,1899.900024,1949],[26.367001,26.368999,26.370001,26.349001,26.336,25.794001,25.684999,25.629,25.285999,23.349001,22.153,21.073999,20.608999,19.854,19.295,19.054001,18.639,18.257,17.997,17.666,17.351999,16.934999,16.778,16.360001,16.122,16.021,15.839,15.748,15.642,15.438,15.193,14.988,14.832,14.69,14.583,14.482,14.375,14.016,13.718,12.892,11.979,11.471,10.748,10.282,9.808,9.28,8.774,8.172,7.295,6.726,6.078,5.498,5.142,4.904,4.555,4.295,4.072,3.887,3.674,3.528,3.382,3.245,3.118,2.971,2.885,2.805,2.686,2.637,2.583,2.544],[35.127998,35.127998,35.129002,35.236,35.277,35.405998,35.417,35.417,35.418999,35.410999,35.423,35.488998,35.501999,35.516998,35.535,35.551998,35.560001,35.588001,35.605999,35.627998,35.596001,35.564999,35.563999,35.543999,35.533001,35.527,35.518002,35.515999,35.508999,35.488998,35.469002,35.453999,35.438999,35.425999,35.416,35.404999,35.393002,35.355999,35.332001,35.219002,35.09,35.015999,34.903999,34.839001,34.776001,34.709999,34.654999,34.597,34.526001,34.497002,34.470001,34.466,34.476002,34.498001,34.502998,34.516998,34.533001,34.551998,34.569,34.583,34.599998,34.617001,34.629002,34.641998,34.652,34.666,34.678001,34.689999,34.702,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_081","geolocation":{"type":"Point","coordinates":[50.803,-25.54]},"basin":3,"timestamp":"2012-03-20T10:09:58.998Z","date_updated_argovis":"2023-01-26T10:41:10.891Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_081.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.9,19.5,29.799999,37.700001,49.900002,60.400002,69.599998,80.400002,90.199997,100,110,120.199997,129.899994,140,150.399994,159.699997,169.899994,179.5,188.399994,200.300003,210.199997,220.199997,229.699997,240,249.800003,259.700012,270.100006,279.200012,289.600006,299.899994,310.399994,320.200012,329.600006,339.5,350.100006,359.299988,379.299988,399.700012,450.100006,500.299988,549.900024,599.700012,649.400024,700.099976,749.900024,799.700012,849.599976,900.299988,949.900024,999.900024,1050.400024,1100,1150.099976,1199.699951,1249.900024,1300,1349.699951,1400.300049,1450.300049,1500.199951,1550,1599.800049,1650.099976,1699.599976,1750.300049,1799.599976,1849.599976,1900.199951,1949.699951,2000],[27.549,27.516001,27.466999,27.427999,27.416,27.4,26.27,24.200001,23.716,23.327,22.815001,22.301001,21.847,21.525999,21.1,20.566,20.261,20.037001,19.629999,19.27,18.707001,18.333,17.987,17.514999,17.253,17.021999,16.693001,16.385,16.142,15.898,15.65,15.216,14.869,14.686,14.563,14.389,14.242,13.986,13.717,12.885,12.435,11.901,11.354,10.851,10.359,9.809,9.125,8.39,7.676,7.019,6.401,5.643,5.152,4.795,4.466,4.278,3.977,3.83,3.689,3.54,3.334,3.177,3.066,2.994,2.882,2.795,2.716,2.649,2.592,2.56,2.513],[35.368,35.368,35.375,35.374001,35.374001,35.377998,35.333,35.308998,35.320999,35.325001,35.34,35.348999,35.386002,35.396,35.422001,35.466999,35.494999,35.511002,35.535999,35.563,35.569,35.578999,35.609001,35.595001,35.595001,35.598,35.581001,35.557999,35.537998,35.522999,35.508999,35.485001,35.448002,35.428001,35.415001,35.397999,35.380001,35.354,35.32,35.212002,35.147999,35.071999,34.992001,34.919998,34.852001,34.775002,34.696999,34.617001,34.556,34.508999,34.485001,34.463001,34.450001,34.467999,34.495998,34.522999,34.541,34.554001,34.574001,34.588001,34.601002,34.626999,34.637001,34.646999,34.659,34.669998,34.678001,34.688,34.698002,34.702999,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_080","geolocation":{"type":"Point","coordinates":[51.157,-25.484]},"basin":3,"timestamp":"2012-03-10T05:34:26.000Z","date_updated_argovis":"2023-01-26T10:41:09.100Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_080.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":80,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.6,19.4,29.5,38.299999,50.099998,60.299999,69.900002,79.900002,90.099998,99.599998,110.5,120.300003,130,139.899994,150.199997,160.399994,170.100006,180.199997,190,200.5,210.199997,220,230.199997,240,249.600006,259.799988,269.700012,279.899994,290.399994,300.399994,310.399994,320.200012,330.299988,340.100006,350.100006,360.100006,380.200012,400.100006,450.299988,499.600006,549.900024,599.799988,650.099976,699.900024,750.099976,799.799988,849.5,900.200012,950,1000,1049.900024,1099.699951,1150.300049,1200.400024,1249.699951,1300.199951,1350,1397.5,1450.300049,1499.800049,1549.800049,1600.099976,1650.300049,1699.900024,1750.099976,1800,1849.900024,1899.599976,1949.800049,1997.400024],[27.417,27.416,27.416,27.375999,27.358999,27.353001,25.403,23.848,23.514999,23.115999,22.471001,22.054001,21.611,21.184,20.774,20.398001,20.099001,19.764999,19.452999,19.042999,18.559999,18.431999,18.120001,17.802,17.312,16.997,16.754,16.650999,16.32,16.059999,15.722,15.554,15.405,15.323,15.124,14.825,14.513,14.027,13.697,13.13,12.566,12.087,11.658,11.065,10.427,9.947,9.253,8.492,7.859,7.137,6.459,5.749,5.313,4.876,4.436,4.228,4.05,3.88,3.708,3.509,3.336,3.216,3.131,3.01,2.9,2.798,2.718,2.652,2.589,2.538,2.485],[35.424,35.424999,35.424999,35.428001,35.429001,35.432999,35.330002,35.306999,35.310001,35.332001,35.342999,35.359001,35.380001,35.401001,35.426998,35.48,35.506001,35.540001,35.556,35.584,35.595001,35.598,35.602001,35.597,35.584,35.57,35.582001,35.577,35.563,35.547001,35.523998,35.512001,35.499001,35.493,35.473999,35.438,35.404999,35.356998,35.323002,35.250999,35.167999,35.097,35.034,34.950001,34.858002,34.792,34.706001,34.627998,34.569,34.514999,34.481998,34.460999,34.465,34.480999,34.492001,34.514,34.527,34.544998,34.567001,34.59,34.604,34.615002,34.627998,34.639,34.650002,34.653999,34.660999,34.674999,34.686001,34.696999,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_079","geolocation":{"type":"Point","coordinates":[51.663,-25.451]},"basin":3,"timestamp":"2012-02-29T02:29:24.000Z","date_updated_argovis":"2023-01-26T10:41:07.294Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_079.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":79,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.8,19.9,29.5,39.700001,49.900002,59.599998,70.099998,79.800003,90.400002,100,110.400002,120.400002,129.800003,140.399994,149.899994,160.399994,170.399994,179.800003,190.199997,198.199997,210.100006,219.899994,229.699997,240,249.899994,259.899994,269.700012,277.200012,290.200012,300.100006,310,319.899994,329.799988,339.700012,349.799988,359.600006,379.600006,400.399994,450.200012,500.299988,549.900024,599.700012,649.5,700.200012,749.900024,799.400024,849.799988,900,949.799988,999.700012,1050.099976,1100.099976,1150.300049,1199.800049,1250.300049,1300.199951,1349.699951,1399.800049,1449.800049,1499.800049,1550,1599.699951,1649.5,1699.699951,1750.300049,1800.199951,1849.599976,1899.300049,1949.199951],[27.485001,27.486,27.489,27.492001,27.488001,27.485001,26.117001,25.406,24.615,23.816,23.129,22.448999,21.573999,21.129,20.686001,20.274,19.888,19.552,19.325001,18.981001,18.778,18.489,18.143,17.726999,17.408001,17.016001,16.664,16.448999,16.195999,15.83,15.612,15.519,15.226,15.132,14.81,14.483,14.246,13.922,13.638,13.222,12.651,11.964,11.469,10.932,10.399,9.871,9.279,8.617,7.952,7.211,6.535,5.829,5.298,4.888,4.613,4.34,4.123,3.724,3.605,3.43,3.252,3.128,3.005,2.9,2.809,2.703,2.666,2.604,2.574,2.537],[35.425999,35.425999,35.426998,35.425999,35.425999,35.424999,35.368,35.334999,35.32,35.333,35.346001,35.366001,35.380001,35.403,35.429001,35.463001,35.493,35.521,35.533001,35.588001,35.599998,35.601002,35.594002,35.599998,35.592999,35.580002,35.568001,35.551998,35.537998,35.516998,35.499001,35.491001,35.467999,35.458,35.431,35.402,35.377998,35.345001,35.314999,35.263,35.181,35.078999,35.007999,34.931,34.854,34.783001,34.708,34.637001,34.577,34.519001,34.480999,34.459,34.456001,34.455002,34.484001,34.507,34.528,34.526001,34.563999,34.585999,34.604,34.618,34.632999,34.643002,34.660999,34.671001,34.685001,34.689999,34.701,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_078","geolocation":{"type":"Point","coordinates":[52.193,-25.572]},"basin":3,"timestamp":"2012-02-18T22:23:43.003Z","date_updated_argovis":"2023-01-26T10:41:05.504Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_078.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":78,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.2,20.299999,29.799999,39.900002,48.5,60.200001,68.5,80.400002,89.699997,100.400002,110.199997,119.900002,130.100006,138,150.300003,160,169.699997,179.600006,189.699997,199.899994,209,219.899994,230,240.399994,250.199997,260,269.799988,279.799988,290.200012,299.700012,310.100006,319.700012,330.100006,339.5,350,360.100006,379.799988,399.399994,450.299988,499.899994,549.700012,599.5,650,700,749.900024,799.5,850.200012,900.299988,950.200012,999.599976,1050.300049,1100,1149.400024,1199.300049,1248.300049,1300,1350.099976,1399.800049,1449.599976,1499.400024,1549.900024,1600.099976,1649.900024,1699.300049,1749.699951,1799.5,1849.5,1899.900024,1949.199951],[27.641001,27.445,27.089001,26.153999,25.945,25.716999,25.355,24.375999,23.212,22.806,22.17,21.620001,21.318001,21.066,20.836,20.261,19.802,19.282,19.014999,18.82,18.415001,18.183001,17.722,17.275,16.889999,16.549999,16.226999,15.854,15.736,15.416,15.148,14.951,14.721,14.582,14.421,14.167,14.026,13.813,13.55,12.936,12.44,11.937,11.336,10.863,10.467,9.825,9.19,8.537,7.883,7.179,6.356,5.7,5.256,4.945,4.602,4.216,4.05,3.918,3.733,3.565,3.401,3.159,3.048,2.983,2.849,2.758,2.701,2.637,2.569,2.523],[35.321999,35.348999,35.345001,35.299999,35.278,35.254002,35.275002,35.346001,35.339001,35.312,35.342999,35.396,35.412998,35.428001,35.444,35.444,35.495998,35.532001,35.541,35.577,35.601002,35.598999,35.584999,35.592999,35.584,35.563,35.539001,35.514999,35.505001,35.480999,35.459,35.443001,35.424,35.410999,35.396999,35.373001,35.355999,35.333,35.304001,35.223,35.150002,35.075001,34.987,34.921001,34.866001,34.777,34.698002,34.630001,34.571999,34.521,34.470001,34.459999,34.452,34.453999,34.470001,34.480999,34.526001,34.555,34.566002,34.577999,34.588001,34.591999,34.605999,34.617001,34.633999,34.650002,34.662998,34.675999,34.689999,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_077","geolocation":{"type":"Point","coordinates":[52.707,-25.807]},"basin":3,"timestamp":"2012-02-08T17:56:32.999Z","date_updated_argovis":"2023-01-26T10:41:03.703Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_077.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":77,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,9.5,20.1,29.6,38.599998,50.400002,60.5,69.900002,79.099998,90.300003,99.900002,110.400002,119.900002,130.199997,140.199997,150.399994,160.100006,170.100006,179.5,189.800003,200.300003,210.199997,220.100006,230.300003,239.699997,250.300003,260.100006,269.899994,279.899994,289.799988,299.799988,309.700012,319.899994,329.899994,340.100006,349.700012,359.600006,379.600006,399.799988,449.799988,500.299988,549.900024,600.200012,649.900024,699.900024,749.599976,799.900024,849.5,899.900024,949.599976,999.799988,1048.199951,1100.199951,1150.099976,1200,1250.199951,1299.5,1349.900024,1398.800049,1450.199951,1500.099976,1549.900024,1600.400024,1650.199951,1699.300049,1749.800049,1800.099976,1849.599976,1899.599976,1949.5,1999.199951],[27.322001,26.959999,26.601,26.056,25.898001,25.712,25.548,24.261999,23.582001,23.052,22.608,22.309,21.809999,21.313,20.962,20.599001,20.1,19.823,19.427999,19.077999,18.671,18.179001,17.919001,17.638,17.377001,16.964001,16.628,16.319,16.098,15.915,15.708,15.461,15.222,15.088,14.906,14.694,14.497,14.073,13.786,13.127,12.52,12.03,11.521,11.047,10.398,9.868,9.311,8.736,7.986,7.358,6.552,5.845,5.265,4.984,4.59,4.249,4.011,3.791,3.665,3.459,3.39,3.226,3.058,2.936,2.833,2.787,2.732,2.7,2.643,2.586,2.518],[35.344002,35.292,35.272999,35.223,35.275002,35.293999,35.361,35.300999,35.311001,35.318001,35.326,35.344002,35.382999,35.424999,35.459999,35.432999,35.48,35.515999,35.513,35.549999,35.569,35.602001,35.594002,35.604,35.609001,35.592999,35.566002,35.568001,35.556,35.543999,35.526001,35.507,35.485001,35.473999,35.459999,35.435001,35.411999,35.363998,35.332001,35.249001,35.161999,35.09,35.015999,34.946999,34.855999,34.784,34.712002,34.646999,34.583,34.533001,34.484001,34.455002,34.441002,34.462002,34.471001,34.481998,34.492001,34.52,34.537998,34.557999,34.575001,34.592999,34.612999,34.632999,34.647999,34.664001,34.674,34.681,34.689999,34.701,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_076","geolocation":{"type":"Point","coordinates":[53.127,-25.715]},"basin":3,"timestamp":"2012-01-29T14:24:27.999Z","date_updated_argovis":"2023-01-26T10:41:01.893Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_076.nc","date_updated":"2015-06-18T13:21:08.000Z"}],"cycle_number":76,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.5,20.299999,29.6,39.700001,50.200001,60.400002,70.400002,80,90.400002,100,108.5,120.099998,130.399994,140.300003,150.399994,159.800003,170.100006,180.199997,190.199997,200.399994,210.399994,219.800003,230.199997,240,249.600006,259.200012,270.200012,280.200012,289.799988,299.899994,310,319.899994,329.899994,339.799988,349.799988,360.299988,380.399994,400.100006,450.100006,500.5,549.799988,599.799988,650.400024,700.400024,750,799.799988,849.799988,900.200012,949.799988,999.5,1050.5,1099.699951,1150.099976,1200.199951,1250.099976,1300.400024,1350,1400.300049,1450.099976,1499.800049,1550.400024,1600,1650.099976,1700.099976,1749.900024,1799.900024,1849.699951,1900,1950.199951],[26.233,26.222,26.055,25.892,25.725,25.569,24.914,23.351999,22.893,22.358,21.656,21.316999,21.17,20.788,20.583,20.243,19.976,19.638,19.372,19.129999,18.502001,18.214001,17.747,17.365999,17.254,16.929001,16.580999,16.299999,15.901,15.663,15.496,15.331,15.177,15.078,14.902,14.751,14.465,14.024,13.784,13.092,12.531,11.945,11.457,10.832,10.318,9.826,9.261,8.806,8.174,7.212,6.528,5.642,5.133,4.748,4.413,4.252,3.985,3.687,3.547,3.441,3.277,3.16,3.04,2.897,2.81,2.733,2.66,2.622,2.58,2.526],[35.431,35.431999,35.425999,35.408001,35.409,35.391998,35.334,35.305,35.314999,35.327999,35.354,35.355999,35.369999,35.396999,35.437,35.470001,35.494999,35.521,35.573002,35.596001,35.562,35.567001,35.571999,35.570999,35.564999,35.563,35.557999,35.550999,35.515999,35.500999,35.488998,35.480999,35.472,35.463001,35.442001,35.431999,35.404999,35.359001,35.328999,35.243,35.161999,35.076,35.004002,34.916,34.841999,34.775002,34.705002,34.654999,34.596001,34.522999,34.479,34.444,34.43,34.466999,34.472,34.52,34.523998,34.542999,34.561001,34.567001,34.584,34.599998,34.613998,34.623001,34.641998,34.655998,34.667,34.682999,34.691002,34.702]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_075","geolocation":{"type":"Point","coordinates":[53.753,-25.659]},"basin":3,"timestamp":"2012-01-19T09:59:09.999Z","date_updated_argovis":"2023-01-26T10:40:59.984Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_075.nc","date_updated":"2015-06-18T13:21:07.000Z"}],"cycle_number":75,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,20.299999,29.9,39.400002,47.799999,60.200001,68.599998,80.300003,90.099998,99.800003,109.300003,120.199997,129.699997,139.899994,150.199997,159.800003,169.600006,179.300003,190.100006,200.100006,209.600006,219.699997,229.600006,239.699997,250,257.200012,270.100006,279.899994,289.700012,299.600006,310.100006,319.799988,329.799988,339.5,349.299988,359.399994,379.5,400,449.600006,500,549.200012,599.400024,649.599976,700.099976,749.400024,799.200012,849.299988,900,949.900024,999.900024,1048.5,1099.900024,1149.800049,1200,1250.099976,1299.5,1349.599976,1399.5,1449.5,1499.599976,1548,1599.699951,1649.599976,1699.900024,1749.699951,1799.400024,1849.900024,1899.5,1949.300049,1997.199951],[25.402,25.403999,25.406,25.403,25.378,25.358999,25.275999,24.062,23.388,23.150999,22.611,22.165001,21.363001,20.823999,20.311001,19.931,19.747,19.372999,19.028999,18.681,18.462,18.249001,17.99,17.684,17.188,16.858,16.604,16.329,16.004,15.877,15.586,15.314,15.073,14.903,14.621,14.351,14.158,13.89,13.522,13.045,12.525,12.038,11.442,10.862,10.335,9.924,9.419,8.804,8.097,7.461,6.589,5.803,5.338,4.887,4.562,4.319,4.021,3.8,3.619,3.445,3.294,3.155,3.033,2.938,2.838,2.753,2.698,2.637,2.564,2.494,2.451],[35.328999,35.328999,35.327999,35.328999,35.328999,35.326,35.317001,35.296001,35.316002,35.320999,35.356998,35.362999,35.387001,35.425999,35.469002,35.5,35.507999,35.521999,35.535,35.560001,35.578999,35.599998,35.618999,35.622002,35.598,35.591,35.588001,35.571999,35.542999,35.537998,35.527,35.495998,35.471001,35.455002,35.431,35.393002,35.375,35.342999,35.299999,35.237999,35.161999,35.091999,35.005001,34.923,34.846001,34.789001,34.724998,34.654999,34.589001,34.537998,34.485001,34.457001,34.439999,34.429001,34.453999,34.473999,34.493,34.521999,34.541,34.563,34.580002,34.598,34.615002,34.630001,34.644001,34.646999,34.66,34.674,34.688,34.696999,34.706001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_074","geolocation":{"type":"Point","coordinates":[54.316,-25.553]},"basin":3,"timestamp":"2012-01-09T06:30:49.001Z","date_updated_argovis":"2023-01-26T10:40:58.195Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_074.nc","date_updated":"2015-06-18T13:21:07.000Z"}],"cycle_number":74,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.7,19.6,30.1,38.299999,50,58.299999,70.300003,80.300003,90.099998,100.300003,110.400002,120.099998,130.100006,139.800003,148,160,170.199997,179.699997,189.399994,200,210.199997,219.699997,229.600006,239.600006,250,260.100006,269.5,279.899994,290.200012,299.5,310.200012,320.200012,329.899994,339.600006,349.5,359.399994,379.600006,400.299988,449.600006,499.600006,550,599.799988,650.200012,700.200012,750.099976,799.700012,849.799988,900.299988,949.400024,1000,1049.800049,1100.199951,1149.300049,1199.199951,1249.800049,1300.199951,1350.199951,1399.800049,1449.599976,1499.800049,1549.699951,1600.099976,1649.699951,1699.800049,1750.199951,1799.5,1850,1899.199951,1949.300049],[26.493999,26.481001,26.469,26.462999,26.448,25.035999,24.292999,23.879,23.412001,23.194,22.82,22.386999,21.951,21.493999,21.056,20.771999,20.327999,19.983,19.695,19.306,19.156,18.856001,18.539,18.261,17.672001,17.275,17.163,16.789,16.486,16.069,15.898,15.691,15.504,15.181,14.96,14.867,14.506,14.134,13.795,13.097,12.539,12.044,11.556,11.133,10.571,9.96,9.414,8.712,7.945,7.358,6.826,6.081,5.404,4.878,4.484,4.196,3.978,3.798,3.604,3.441,3.283,3.147,3.025,2.933,2.856,2.796,2.698,2.608,2.572,2.515],[35.493999,35.493999,35.493,35.492001,35.493,35.360001,35.301998,35.294998,35.304001,35.313,35.344002,35.348,35.370998,35.391998,35.414001,35.441002,35.467999,35.513,35.516998,35.530998,35.547001,35.59,35.578999,35.603001,35.589001,35.573002,35.581001,35.557999,35.542999,35.529999,35.529999,35.521,35.507,35.478001,35.460999,35.457001,35.417999,35.372002,35.334,35.243999,35.166,35.091,35.021,34.959999,34.880001,34.794998,34.723999,34.646,34.576,34.532001,34.495998,34.460999,34.444,34.451,34.452,34.48,34.493999,34.514,34.542999,34.564999,34.582001,34.601002,34.619999,34.636002,34.650002,34.664001,34.673,34.686001,34.694,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_073","geolocation":{"type":"Point","coordinates":[54.846,-25.499]},"basin":3,"timestamp":"2011-12-30T02:08:19.000Z","date_updated_argovis":"2023-01-26T10:40:56.389Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_073.nc","date_updated":"2015-06-18T13:21:07.000Z"}],"cycle_number":73,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.2,19.9,29.200001,40.099998,50.400002,60.200001,70.300003,79.900002,90,100.099998,109.900002,119.900002,130.399994,140.100006,149.800003,160.199997,170.100006,178.199997,189.800003,199.899994,210.300003,220.199997,230.399994,239.699997,250.199997,260.200012,269.200012,280.200012,289.799988,299.700012,309.799988,319.799988,330.100006,339.799988,350.100006,360.200012,379.700012,398.200012,450.299988,499.799988,549.400024,599.799988,650.200012,700.299988,750.099976,799.599976,850.299988,899.900024,950,999.700012,1049.599976,1100.199951,1150,1200.300049,1250.199951,1300.199951,1350,1400.099976,1450.099976,1499.5,1549.300049,1600,1650,1699.300049,1749.699951,1800.099976,1849.800049,1899.900024,1949.699951,2000.199951],[26.077999,26.066,25.756001,25.728001,25.179001,24.695,23.573999,23.275999,23.059999,22.908001,22.712,22.632,22.235001,21.773001,21.349001,20.909,20.278,20.069,19.903,19.681,19.296,18.92,18.521,18.129999,17.466999,17.243999,16.993,16.688999,16.540001,16.309999,15.977,15.658,15.415,15.224,15.001,14.759,14.512,14.143,13.747,13.042,12.541,12.007,11.488,10.875,10.38,9.795,9.32,8.708,8.054,7.518,6.782,6.06,5.502,5.03,4.612,4.416,4.074,3.892,3.716,3.547,3.343,3.154,3.029,2.937,2.833,2.742,2.677,2.599,2.538,2.492,2.455],[35.522999,35.519001,35.439999,35.455002,35.333,35.276001,35.254002,35.256001,35.289001,35.299,35.301998,35.305,35.319,35.348,35.382,35.389999,35.48,35.509998,35.497002,35.578999,35.598999,35.57,35.555,35.570999,null,null,null,null,null,35.539001,35.521999,35.507999,35.483002,35.466999,35.448002,35.425999,35.405998,35.372002,35.326,35.236,35.164001,35.085999,35.011002,34.923,34.853001,34.773998,34.713001,34.646,34.587002,34.544998,34.494999,34.459,34.444,34.445,34.463001,34.492001,34.506001,34.528,34.554001,34.567001,34.578999,34.591999,34.612,34.626999,34.645,34.66,34.672001,34.683998,34.698002,34.707001,34.715]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_072","geolocation":{"type":"Point","coordinates":[55.428,-25.338]},"basin":3,"timestamp":"2011-12-19T22:25:01.003Z","date_updated_argovis":"2023-01-26T10:40:54.575Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_072.nc","date_updated":"2015-06-18T13:21:07.000Z"}],"cycle_number":72,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.2,16.4,29.9,40.099998,50.200001,59.799999,70.300003,80.099998,90.199997,100,109.699997,120.300003,130.300003,140.300003,149.699997,160,169.800003,179.800003,190,200.100006,210,219.699997,229.600006,240,249.899994,258.799988,270,280.399994,290.200012,300,310.200012,320.200012,330.100006,340.200012,349.899994,360,379.899994,399.299988,450.299988,500.299988,549.599976,599.900024,650.099976,700.099976,749.599976,800.200012,849.900024,899.700012,950.299988,999.799988,1050.300049,1100.099976,1149.800049,1199.599976,1250.300049,1299.599976,1350.199951,1399.900024,1450,1499.300049,1550.099976,1600,1650,1700,1747,1800,1849.599976,1900.099976,1950],[25.759001,25.761999,25.763,25.763,25.767,25.768,24.237,23.802999,23.48,23.187,22.882,22.707001,22.268999,21.941999,21.486,20.947001,20.437,20.181999,19.907,19.643,19.285,18.854,18.378,18.017,17.718,17.417,17.063,16.507,16.215,16.059999,15.873,15.57,15.202,14.94,14.704,14.492,14.365,14.048,13.77,13.294,12.718,12.151,11.524,11.03,10.446,10.11,9.507,8.824,8.076,7.443,6.533,5.802,5.391,4.838,4.628,4.402,4.103,3.918,3.765,3.526,3.348,3.181,3.024,2.931,2.856,2.773,2.667,2.587,2.5,2.448],[35.514999,35.514999,35.514999,35.514999,35.514999,35.515999,35.326,35.313,35.318001,35.317001,35.346001,35.375,35.389,35.382999,35.375,35.444,35.499001,35.521999,35.52,35.52,35.554001,35.554001,35.57,35.578999,35.574001,35.577999,35.575001,35.542999,35.529999,35.522999,35.512001,35.492001,35.464001,35.441002,35.419998,35.400002,35.386002,35.356998,35.327999,35.27,35.189999,35.105999,35.014999,34.944,34.859001,34.813999,34.733002,34.658001,34.59,34.539001,34.483002,34.460999,34.463001,34.470001,34.492001,34.514999,34.523998,34.541,34.558998,34.577,34.591999,34.603001,34.617001,34.632999,34.641998,34.653999,34.669998,34.683998,34.694,34.702999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_071","geolocation":{"type":"Point","coordinates":[55.975,-24.971]},"basin":3,"timestamp":"2011-12-09T17:59:44.002Z","date_updated_argovis":"2023-01-26T10:40:52.788Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_071.nc","date_updated":"2015-06-18T13:21:07.000Z"}],"cycle_number":71,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.6,19.5,29.799999,40.299999,49.799999,59.700001,70.300003,80.400002,89.699997,99.800003,109.300003,120.5,130.199997,139.600006,149.699997,158.300003,170,179.899994,190.100006,200,209.5,219.899994,229.699997,240,249.800003,260,269.799988,279.700012,290.200012,300.299988,310,319.700012,329.799988,340.299988,350.299988,359.899994,379.299988,399.700012,449.799988,500.100006,549.900024,599.700012,647.299988,700.099976,749.599976,800.299988,850.200012,900.200012,949.5,999.599976,1049.800049,1100,1149.5,1200.199951,1249.800049,1300,1350.199951,1399.900024,1450.199951,1499.900024,1549.800049,1600.099976,1650.099976,1699.699951,1749.300049,1799.699951,1850.199951,1900,1949.199951,2000.199951],[25.863001,25.860001,25.865,25.882999,25.903,25.132999,24.277,23.743999,23.285999,22.921,22.490999,22.110001,21.621,21.25,21.009001,20.659,20.353001,20.006001,19.290001,19.164,18.922001,18.726,18.544001,18.312,18.025999,17.82,17.304001,16.723,16.524,16.368999,16.191999,15.788,15.506,15.239,15.099,14.871,14.775,14.353,14.03,13.158,12.58,12.046,11.528,11.072,10.558,9.985,9.412,8.796,8.005,7.137,6.452,5.736,5.296,4.85,4.575,4.242,3.981,3.758,3.539,3.355,3.231,3.12,2.982,2.86,2.786,2.689,2.608,2.528,2.459,2.405,2.35],[35.443001,35.443001,35.445,35.457001,35.499001,35.398998,35.347,35.303001,35.308998,35.313999,35.317001,35.348999,35.389999,35.41,35.436001,35.479,35.516998,35.556999,35.566002,35.632999,35.641998,35.676998,35.685001,35.682999,35.695999,35.679001,35.638,35.57,35.553001,35.551998,35.537998,35.506001,35.486,35.465,35.453999,35.433998,35.429001,35.387001,35.353001,35.252998,35.171001,35.091,35.014999,34.950001,34.875999,34.797001,34.721001,34.658001,34.583,34.514,34.474998,34.458,34.465,34.48,34.505001,34.514,34.529999,34.543999,34.551998,34.567001,34.584999,34.603001,34.619999,34.633999,34.646,34.660999,34.674,34.687,34.695999,34.703999,34.709]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_070","geolocation":{"type":"Point","coordinates":[56.646,-24.322]},"basin":3,"timestamp":"2011-11-29T14:16:26.000Z","date_updated_argovis":"2023-01-26T10:40:50.971Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_070.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.2,20.1,29.700001,37.900002,50.299999,60.200001,69.800003,80.199997,89.699997,99.599998,109.5,120.099998,130.100006,140.600006,149.800003,159.800003,169.699997,180,190.199997,200.199997,209.899994,220.300003,229.199997,239.600006,249.800003,259.600006,268.200012,280,289.899994,300.100006,310,320,329.700012,339.899994,349.600006,360.100006,379.600006,400.100006,450.200012,500,549.599976,599.900024,649.5,699.900024,750,799.900024,850.200012,899.900024,949.900024,999.5,1049.800049,1099.5,1149.800049,1200.300049,1249.599976,1300,1349.300049,1399.599976,1449.800049,1499.5,1549.800049,1599.900024,1650.099976,1699.800049,1750,1800.099976,1849.599976,1899.800049,1949.900024],[26.436001,26.436001,25.533001,24.676001,24.115999,23.625999,23.278999,23.117001,22.936001,22.781,22.628,22.238001,21.576,21.327,20.790001,20.51,19.937,19.596001,19.16,18.823,18.450001,18.191,18.02,17.615999,17.351,17.103001,16.778999,16.575001,16.032,15.762,15.421,15.251,15.196,15.046,14.812,14.559,14.366,13.993,13.762,13.064,12.376,11.856,11.145,10.613,9.903,9.243,8.737,7.692,7.038,6.186,5.623,5.267,4.914,4.653,4.398,4.174,3.951,3.766,3.539,3.349,3.282,3.117,3.004,2.797,2.737,2.66,2.588,2.553,2.51,2.461],[35.480999,35.481998,35.417999,35.345001,35.334999,35.314999,35.284,35.286999,35.306,35.317001,35.320999,35.346001,35.382999,35.396999,35.464001,35.485001,35.498001,35.516998,35.542,35.555,35.564999,35.57,35.571999,35.570999,35.57,35.563,35.556999,35.564999,35.526001,35.506001,35.479,35.465,35.462002,35.448002,35.426998,35.403999,35.387001,35.349998,35.327999,35.240002,35.140999,35.064999,34.960999,34.884998,34.785,34.703999,34.653,34.560001,34.507,34.463001,34.463001,34.466,34.474998,34.498001,34.513,34.525002,34.553001,34.570999,34.591999,34.591999,34.611,34.618999,34.640999,34.647999,34.664001,34.676998,34.689999,34.700001,34.707001,34.715]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_069","geolocation":{"type":"Point","coordinates":[57.007,-23.403]},"basin":3,"timestamp":"2011-11-19T09:59:31.999Z","date_updated_argovis":"2023-01-26T10:40:49.167Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_069.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.2,20.299999,29.799999,40.5,50.200001,59.5,69.699997,77.5,90.199997,100.300003,110.599998,120.400002,129.899994,140.300003,150.300003,159.699997,168.199997,180.100006,190.399994,200.300003,210.100006,219.300003,229.600006,239.5,250,260.5,270.299988,280.299988,290.100006,300,309.799988,320.100006,330.100006,339.899994,350.200012,359.799988,380,399.799988,449.399994,500.100006,549.900024,599.5,649.799988,699.599976,750.299988,799.900024,849.799988,900.099976,950.099976,1000.200012,1050.099976,1100.400024,1150.300049,1200.099976,1249.900024,1299.5,1350.099976,1400.199951,1450.099976,1500.300049,1549.699951,1599.599976,1650.099976,1697,1749.800049,1799.800049,1850.199951,1899.699951,1949.599976,2000.5],[24.820999,24.400999,23.773001,23.631001,23.422001,22.65,21.882,21.658001,21.469999,21.007999,20.766001,20.438,19.944,19.487,19.101999,18.74,18.533001,18.208,17.915001,17.52,17.200001,17.112,16.900999,16.631001,16.462,16.159,15.574,14.992,14.736,14.506,14.342,14.183,13.988,13.885,13.746,13.652,13.585,13.443,13.132,12.541,11.923,11.387,11.008,10.374,9.783,9.12,8.45,7.532,6.595,5.947,5.505,4.966,4.655,4.264,4.083,3.867,3.786,3.632,3.501,3.375,3.241,3.057,2.923,2.81,2.716,2.634,2.578,2.53,2.469,2.436,2.392],[35.254002,35.222,35.234001,35.245998,35.247002,35.292999,35.333,35.348,35.367001,35.388,35.414001,35.432999,35.471001,35.471001,35.490002,35.535999,35.549,35.534,35.599998,35.597,35.59,35.587002,35.582001,35.589001,35.570999,35.540001,35.494999,35.446999,35.421001,35.400002,35.383999,35.370998,35.349998,35.341,35.326,35.314999,35.307999,35.289001,35.250999,35.165001,35.075001,34.995998,34.942001,34.849998,34.772999,34.693001,34.624001,34.542,34.483002,34.463001,34.465,34.472,34.497002,34.514999,34.536999,34.560001,34.571999,34.585999,34.603001,34.633999,34.650002,34.652,34.658001,34.671001,34.675999,34.687,34.695999,34.705002,34.712002,34.716999,34.723]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_068","geolocation":{"type":"Point","coordinates":[57.125,-22.773]},"basin":3,"timestamp":"2011-11-09T06:20:55.001Z","date_updated_argovis":"2023-01-26T10:40:47.194Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_068.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.2,20.299999,30.5,40.200001,50.400002,59.900002,69.900002,79.599998,90.099998,99.800003,110.199997,120.199997,130.100006,140.399994,149.800003,159.800003,169.300003,180,190,200.199997,210,220.100006,230.199997,239.899994,249.899994,260.200012,269.799988,280.100006,289.799988,300,309.799988,319.799988,329.5,340.100006,349.299988,359.899994,378.299988,400.399994,449.799988,500.299988,550.400024,600.200012,649.900024,699.700012,750.099976,800.099976,850.200012,900.099976,950.200012,998.900024,1049.900024,1100.099976,1150.099976,1200,1249.900024,1300,1350.099976,1399.900024,1449.699951,1500,1549.699951,1599.800049,1649.900024,1699.5,1749.400024,1800.300049,1850,1899.900024,1949.699951],[24.483,24.445999,23.721001,23.611,23.406,22.888,22.694,22.566,22.483999,22.299999,21.236,21.028999,20.931999,20.749001,20.138,19.152,18.636999,18.476999,18.034,17.784,17.447001,16.716999,16.417,16.24,16.115999,15.928,15.714,15.359,15.199,14.914,14.663,14.45,14.341,14.16,13.948,13.901,13.686,13.46,13.187,12.639,12.105,11.467,10.845,10.23,9.71,9.018,8.315,7.703,6.595,5.966,5.46,4.903,4.535,4.273,4.025,3.857,3.681,3.528,3.389,3.288,3.166,3.028,2.942,2.82,2.756,2.652,2.579,2.524,2.471,2.424],[35.285,35.283001,35.240002,35.237999,35.255001,35.282001,35.292,35.296001,35.303001,35.312,35.345001,35.363998,35.368,35.376999,35.424999,35.525002,35.556999,35.560001,35.563,35.57,35.576,35.563999,35.544998,35.537998,35.532001,35.52,35.505001,35.476002,35.460999,35.437,35.415001,35.396,35.383999,35.367001,35.346001,35.34,35.318001,35.292999,35.261002,35.18,35.102001,35.008999,34.917,34.828999,34.759998,34.68,34.612999,34.555,34.485001,34.466,34.470001,34.476002,34.501999,34.529999,34.542999,34.570999,34.599998,34.605,34.622002,34.632999,34.646999,34.659,34.665001,34.674999,34.682999,34.694,34.701,34.707001,34.710999,34.716]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_067","geolocation":{"type":"Point","coordinates":[56.976,-22.83]},"basin":3,"timestamp":"2011-10-30T01:42:33.000Z","date_updated_argovis":"2023-01-26T10:40:45.298Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_067.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":67,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.9,20,29.700001,39.599998,50.099998,60.200001,70.400002,79,90.300003,100.5,110.199997,120.199997,129.199997,140,149.699997,158.899994,170.100006,180,190.199997,200.399994,210.199997,219.600006,229.899994,240,250.100006,259.799988,270,279.600006,290.399994,300.100006,310,320.100006,329.600006,339.799988,349.799988,359.700012,379.799988,399.799988,450.200012,499.899994,550.200012,599.400024,650,699.799988,749.900024,800.299988,849.799988,899.700012,949.599976,1000,1050.099976,1099.699951,1149.599976,1199.900024,1249.900024,1300.099976,1349.599976,1400.400024,1450,1500.099976,1549.900024,1600.199951,1649.5,1699.900024,1750.099976,1800.199951,1849.599976,1899.300049,1950.099976,1998.5],[23.625,23.625999,23.625,23.632,23.632,23.632999,23.386999,23.120001,22.093,21.622999,21.476999,20.966,20.681,20.431999,20.075001,19.722,19.431999,18.879999,18.500999,18.249001,18.069,17.906,17.642,17.117001,16.818001,16.561001,16.259001,15.966,15.822,15.717,15.265,14.745,14.647,14.327,13.985,13.749,13.602,13.355,13.095,12.502,11.943,11.44,11.053,10.584,9.829,9.12,8.6,7.644,6.926,6.183,5.592,5.077,4.822,4.444,4.279,4.083,3.8,3.638,3.496,3.389,3.219,3.089,3.031,2.918,2.799,2.672,2.604,2.543,2.494,2.439,2.391],[35.257999,35.257999,35.257999,35.257999,35.257999,35.257,35.250999,35.251999,35.328999,35.324001,35.327,35.342999,35.404999,35.415001,35.424999,35.464001,35.526001,35.519001,35.502998,35.525002,35.554001,35.57,35.580002,35.567001,35.556999,35.543999,35.530998,35.518002,35.523998,35.567001,35.516998,35.463001,35.448002,35.409,35.355999,35.327,35.312,35.279999,35.242001,35.160999,35.077999,35,34.944,34.875999,34.775002,34.689999,34.637001,34.549,34.501999,34.464001,34.463001,34.471001,34.490002,34.501999,34.535,34.549,34.564999,34.589001,34.602001,34.612,34.629002,34.638,34.659,34.669998,34.679001,34.694,34.699001,34.705002,34.709999,34.716,34.722]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_066","geolocation":{"type":"Point","coordinates":[56.794,-23.265]},"basin":3,"timestamp":"2011-10-19T22:26:20.001Z","date_updated_argovis":"2023-01-26T10:40:43.494Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_066.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.5,19.799999,30.1,39.900002,49.900002,60.200001,69.599998,79.599998,89.699997,100.300003,110.099998,120.400002,130.300003,140.300003,150.100006,159.800003,169.699997,180.199997,189,200.5,210.300003,220,230,240.300003,249.699997,257.399994,270.399994,279.799988,289.799988,299.700012,309.700012,319.899994,329.899994,340.200012,350,359.799988,379.700012,397.700012,449.799988,500.299988,549.799988,600.099976,649.400024,700.400024,749.799988,800.299988,849.5,899.700012,950.200012,999.5,1050.099976,1099.800049,1150.099976,1200.199951,1250.199951,1299.400024,1349.699951,1400.099976,1449.900024,1500.400024,1549.900024,1599.599976,1649.599976,1699.800049,1750,1799.800049,1849.599976,1899.5,1949.199951],[23.000999,22.993,22.839001,22.790001,22.746,22.683001,22.632,22.614,22.528999,22.368999,21.851999,21.722,21.337999,20.724001,20.562,20.474001,20.093,19.768999,19.517,19.247,18.716,18.336,17.965,17.594,17.296,16.913,16.466999,15.92,15.73,15.39,15.103,14.989,14.711,14.511,14.25,13.91,13.671,13.449,13.251,12.834,12.41,11.804,11.23,10.729,10.216,9.604,8.862,8.166,7.137,6.683,5.77,5.313,4.902,4.61,4.315,4.138,3.856,3.695,3.588,3.39,3.181,3.068,2.97,2.818,2.701,2.627,2.577,2.534,2.48,2.428],[35.286999,35.289001,35.328999,35.327,35.326,35.324001,35.320999,35.326,35.310001,35.312,35.338001,35.381001,35.368,35.431999,35.446999,35.491001,35.526001,35.530998,35.515999,35.554001,35.582001,35.578999,35.578999,35.570999,35.592999,35.568001,35.547001,35.519001,35.504002,35.477001,35.452999,35.441002,35.417,35.401001,35.380001,35.341999,35.316002,35.292999,35.27,35.209,35.146,35.057999,34.973999,34.903,34.828999,34.749001,34.665001,34.598,34.512001,34.487,34.464001,34.472,34.476002,34.501999,34.521,34.535,34.537998,34.562,34.582001,34.601002,34.618999,34.632,34.643002,34.659,34.674999,34.685001,34.694,34.702999,34.709999,34.716999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_065","geolocation":{"type":"Point","coordinates":[56.96,-23.872]},"basin":3,"timestamp":"2011-10-09T17:56:21.999Z","date_updated_argovis":"2023-01-26T10:40:41.686Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_065.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,9.7,19.9,30.1,40.200001,50,60.200001,69.800003,79.800003,90.099998,99.900002,110.099998,120.199997,129.699997,138.300003,150,160.399994,169.699997,179.699997,189.899994,199.699997,208.399994,220,230,239.800003,249.699997,260.200012,270,279.700012,289.600006,299.899994,309.600006,319.899994,329.5,340,350.200012,360.200012,379.700012,399.600006,450.100006,500.100006,550,599.700012,650,699.799988,749.599976,799.5,849.299988,899.799988,950.200012,1000.200012,1050.099976,1099.599976,1150,1199.400024,1250.300049,1299.5,1349.5,1399.400024,1450,1500.099976,1550,1600.099976,1650.199951,1699.599976,1750,1799.699951,1849.400024,1899.400024,1949.900024,2000.400024],[22.759001,22.778999,22.782,22.781,22.785,22.787001,22.790001,22.790001,22.676001,22.582001,22.49,22.049999,21.745001,21.382,20.768999,20.559,20.238001,19.708,19.636,19.312,18.995001,18.591,18.532,17.997999,17.493999,16.978001,16.540001,16.243999,16.1,15.935,15.74,15.531,15.275,15.096,14.673,14.511,14.235,13.84,13.556,12.994,12.555,12.045,11.566,10.985,10.371,9.779,9.232,8.603,7.808,6.831,6.232,5.615,5.201,4.787,4.475,4.219,3.851,3.685,3.588,3.367,3.189,3.06,2.978,2.864,2.726,2.66,2.572,2.509,2.453,2.434,2.404],[35.306999,35.306,35.306,35.306,35.306,35.306,35.306,35.306999,35.290001,35.279999,35.279999,35.310001,35.319,35.375,35.459999,35.474998,35.493999,35.466999,35.488998,35.519001,35.578999,35.594002,35.668999,35.657001,35.615002,35.576,35.563,35.540001,35.537998,35.527,35.509998,35.498001,35.473999,35.456001,35.414001,35.398998,35.373001,35.337002,35.304001,35.229,35.166,35.092999,35.022999,34.942001,34.851002,34.772999,34.705002,34.639,34.564999,34.494999,34.467999,34.462002,34.463001,34.470001,34.500999,34.506001,34.502998,34.525002,34.539001,34.573002,34.591999,34.613998,34.627998,34.639,34.654999,34.667,34.68,34.689999,34.700001,34.709,34.716999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_064","geolocation":{"type":"Point","coordinates":[57.268,-24.251]},"basin":3,"timestamp":"2011-09-29T14:21:28.996Z","date_updated_argovis":"2023-01-26T10:40:39.904Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_064.nc","date_updated":"2015-06-18T13:21:06.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.3,20.4,29.799999,39.700001,50.099998,60.299999,69.800003,79.599998,89.900002,99.699997,109.900002,120.199997,130.100006,140.300003,150.399994,160.300003,168.800003,180.5,189.899994,199.600006,210,220.399994,230.300003,239.800003,250.100006,260,269.700012,279.600006,287.700012,300.200012,309.899994,319.899994,329.899994,339.600006,349.600006,360.299988,380,399.600006,450,500,549.799988,600.200012,649.900024,700.299988,749.900024,800,849.299988,896.299988,949.900024,999.299988,1049.199951,1100,1150.300049,1199.5,1250.199951,1300.300049,1350,1400.300049,1450.199951,1500,1548.900024,1599.800049,1650.099976,1699.699951,1750,1800.300049,1849.900024,1899.300049,1949.800049],[22.990999,22.799,22.768999,22.757999,22.750999,22.743999,22.743999,22.74,22.809,22.768,22.731001,22.725,22.716999,22.584999,22.326,21.888,21.386,21.218,20.823,20.443001,20.257999,20.167,19.752001,19.254999,18.833,18.525,18.124001,17.639,17.187,16.917999,16.549,16.252001,15.954,15.743,15.53,15.301,15.053,14.474,14.181,13.295,12.552,12.061,11.469,10.953,10.54,9.903,9.403,8.869,8.018,7.165,6.45,5.76,5.285,4.947,4.622,4.417,4.235,3.945,3.655,3.501,3.331,3.155,3.022,2.956,2.813,2.714,2.616,2.522,2.464,2.405],[35.210999,35.207001,35.206001,35.208,35.209,35.209,35.209999,35.210999,35.25,35.285999,35.293999,35.307999,35.319,35.314999,35.299999,35.32,35.424,35.439999,35.466999,35.473,35.543999,35.563999,35.569,35.627998,35.612999,35.612,35.615002,35.602001,35.577999,35.583,35.564999,35.551998,35.526001,35.508999,35.493999,35.473,35.450001,35.395,35.366001,35.265999,35.165001,35.094002,35.007999,34.932999,34.875,34.786999,34.722,34.664001,34.582001,34.514,34.473,34.455002,34.465,34.472,34.486,34.518002,34.542,34.558998,34.570999,34.577,34.59,34.599998,34.612999,34.636002,34.650002,34.661999,34.671001,34.682999,34.691002,34.695999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_063","geolocation":{"type":"Point","coordinates":[57.596,-24.49]},"basin":3,"timestamp":"2011-09-19T09:42:11.000Z","date_updated_argovis":"2023-01-26T10:40:38.091Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_063.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":63,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,19.9,29.5,39.5,49.900002,60.099998,69.800003,80.099998,89.800003,100.199997,109.699997,119.300003,130.399994,139.899994,149.899994,159.899994,168.699997,180.100006,189.899994,199.5,209.800003,220,229.699997,239.5,250.100006,259.700012,270.100006,279.799988,289.700012,299.5,309.799988,319.799988,329.799988,339.600006,349.600006,359.799988,379.899994,399.5,449.799988,499.399994,549.599976,599.599976,649.799988,699.799988,749.400024,799.400024,849.700012,900,950.099976,999.5,1050.300049,1099.5,1150,1199.900024,1249.900024,1299.699951,1350.099976,1399.400024,1449.5,1500,1549.400024,1599.900024,1649.699951,1699.300049,1748.300049,1799.800049,1849.5,1899.199951,1949.900024,2000.5],[22.610001,22.577999,22.547001,22.542,22.549,22.566999,22.556999,22.556,22.551001,22.549999,22.551001,22.552999,22.552999,22.486,22.077,21.278,21.014999,20.738001,20.306,19.968,19.711,19.305,18.861,18.558001,18.254,18.073,17.833,17.228001,17.033001,16.681,16.316,16.065001,15.816,15.76,15.541,15.15,14.926,14.523,14.134,13.415,12.751,12.186,11.746,11.128,10.647,10.166,9.631,9.096,8.26,7.415,6.585,5.781,5.278,4.895,4.551,4.31,4.119,3.951,3.72,3.463,3.321,3.174,2.971,2.824,2.738,2.673,2.621,2.567,2.525,2.48,2.448],[35.238998,35.237999,35.237999,35.238998,35.247002,35.268002,35.27,35.268002,35.265999,35.266998,35.268002,35.268002,35.268002,35.275002,35.325001,35.396999,35.465,35.484001,35.494999,35.528999,35.560001,35.553001,35.563,35.573002,35.578999,35.622002,35.611,35.584999,35.578999,35.570999,35.547001,35.534,35.518002,35.516998,35.495998,35.459,35.438999,35.402,35.362,35.282001,35.192001,35.112,35.047001,34.959,34.889,34.820999,34.750999,34.688999,34.599998,34.535,34.48,34.452,34.455002,34.466,34.479,34.505001,34.521,34.529999,34.556999,34.573002,34.596001,34.616001,34.631001,34.641998,34.653999,34.661999,34.679001,34.691002,34.702,34.709999,34.716]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_062","geolocation":{"type":"Point","coordinates":[57.86,-24.709]},"basin":3,"timestamp":"2011-09-09T06:18:29.999Z","date_updated_argovis":"2023-01-26T10:40:36.203Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_062.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":62,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10.3,20.4,30.200001,40.299999,50,60.099998,70,79.699997,89.900002,100,109.800003,120.400002,130.199997,139.699997,149.699997,159.199997,169.800003,180,189.899994,199.399994,209.199997,218.5,230.199997,239.800003,249.699997,260,268.399994,280.200012,289.799988,299.799988,309.5,319.899994,329.899994,339.5,350.100006,359.799988,379.899994,399.399994,449.399994,500.100006,550.200012,600,649.799988,699.5,749.900024,800.099976,849.599976,896.799988,949.900024,1000.099976,1050.199951,1099.800049,1150.199951,1199.900024,1249.800049,1300,1349.800049,1400.099976,1449.900024,1499.5,1547.300049,1599.900024,1649.699951,1699.800049,1750,1799.900024,1849.800049,1899.5,1949.099976],[22.726,22.708,22.704,22.707001,22.702999,22.702999,22.702999,22.687,22.625,22.632,22.618,22.611,22.472,21.672001,21.434999,21.171,20.900999,20.688,20.186001,19.813,19.368,19.188,18.773001,18.549,17.849001,17.514999,17.183001,17.033001,16.854,16.639999,16.417999,16.07,15.813,15.566,15.363,15.146,14.975,14.327,13.91,13.184,12.754,12.112,11.646,11,10.49,9.978,9.558,8.942,8.286,7.482,6.686,5.902,5.27,4.988,4.581,4.318,3.99,3.875,3.589,3.491,3.329,3.149,2.973,2.857,2.778,2.697,2.636,2.556,2.468,2.423],[35.272999,35.273998,35.272999,35.271999,35.271999,35.272999,35.272999,35.275002,35.289001,35.306999,35.311001,35.308998,35.306,35.365002,35.381001,35.402,35.435001,35.469002,35.500999,35.521,35.566002,35.595001,35.596001,35.653999,35.59,35.601002,35.606998,35.605,35.597,35.583,35.575001,35.535999,35.513,35.504002,35.483002,35.460999,35.441002,35.379002,35.338001,35.252998,35.195,35.102001,35.034,34.941002,34.868,34.797001,34.742001,34.671001,34.604,34.536999,34.492001,34.450001,34.441002,34.453999,34.464001,34.487999,34.519001,34.541,34.557999,34.578999,34.591,34.595001,34.605,34.623001,34.641998,34.653999,34.668999,34.681999,34.699001,34.706001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_061","geolocation":{"type":"Point","coordinates":[58.203,-24.84]},"basin":3,"timestamp":"2011-08-30T01:54:08.000Z","date_updated_argovis":"2023-01-26T10:40:34.385Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_061.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":61,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9,20.1,30.1,39.900002,50,59.700001,70.300003,80.099998,90.300003,100.199997,110.199997,120,130.300003,138.5,149.699997,160.199997,170.5,180.199997,190.399994,200.100006,208.300003,220.300003,230.5,240,249.600006,259.600006,270.200012,277.100006,290.399994,300.399994,310.399994,320.100006,330,339.600006,350.100006,359.899994,379.399994,399.700012,450.100006,499.5,549.799988,599.900024,649.799988,700.200012,750,800.200012,849.5,900.200012,950.200012,1000,1047.800049,1100.199951,1149.699951,1199.900024,1249.5,1299.900024,1350.300049,1399.599976,1450.300049,1499.599976,1549.400024,1599.900024,1649.699951,1699.400024,1750.199951,1799.599976,1849.5,1899.300049,1949.699951,1998.400024],[22.723,22.733,22.733,22.737,22.733999,22.757,22.718,22.686001,22.621,22.625999,22.646,22.653999,22.642,22.642,22.629,21.608999,21.263,20.778999,20.334999,20.018999,19.671,19.349001,18.556999,18.222,17.837999,17.598,17.323,16.917,16.757999,16.351999,16.219999,15.931,15.592,15.335,15.119,14.717,14.467,14.089,13.741,13.134,12.491,12.099,11.521,10.975,10.507,10.016,9.44,8.864,8.149,7.282,6.565,6.041,5.391,4.951,4.548,4.293,4.01,3.855,3.698,3.571,3.418,3.225,3.031,2.907,2.809,2.722,2.643,2.59,2.535,2.471,2.431],[35.217999,35.219002,35.217999,35.217999,35.217999,35.262001,35.264999,35.272999,35.282001,35.286999,35.296001,35.304001,35.306999,35.306999,35.303001,35.407001,35.414001,35.484001,35.508999,35.549,35.578999,35.569,35.576,35.620998,35.602001,35.591,35.591,35.562,35.556,35.539001,35.529999,35.512001,35.493,35.483002,35.462002,35.422001,35.396999,35.360001,35.321999,35.25,35.152,35.094002,35.011002,34.932999,34.868,34.800999,34.723999,34.66,34.595001,34.52,34.473999,34.452999,34.443001,34.445999,34.464001,34.487999,34.508999,34.541,34.561001,34.576,34.588001,34.592999,34.613998,34.630001,34.645,34.655998,34.668999,34.679001,34.689999,34.699001,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_060","geolocation":{"type":"Point","coordinates":[58.526,-24.939]},"basin":3,"timestamp":"2011-08-19T22:15:29.998Z","date_updated_argovis":"2023-01-26T10:40:32.585Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_060.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":60,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,19.9,29.299999,39.900002,49.799999,59.599998,69.400002,79.5,88.900002,98.199997,110,119.900002,130.699997,139.800003,149.699997,158.100006,169.800003,180.199997,189.600006,199.800003,209.100006,219.899994,229.899994,239.899994,249.899994,260,269.600006,279.399994,289.700012,300,309.799988,319.700012,329.799988,339.899994,349.299988,359.700012,379.899994,399.299988,450,499.399994,549.400024,599.5,650.299988,699.5,750,799.5,849.700012,900.099976,949.5,999.900024,1048.400024,1099.199951,1149.599976,1199.5,1249.599976,1300.099976,1349.800049,1400.099976,1450,1499.800049,1550.199951,1599.5,1649.400024,1699.900024,1749.800049,1799.699951,1850.099976,1899.599976,1949.199951],[22.85,22.837,22.851,22.862,22.863001,22.865,22.868999,22.867001,22.868999,22.872999,22.875999,22.877001,22.861,22.802999,21.745001,21.344999,21.028999,20.427,20.297001,19.816,19.402,19.056999,18.9,18.354,18.070999,17.767,17.424999,17.171,16.761999,16.605,16.399,16.032,15.611,15.348,15.059,14.884,14.762,14.276,13.947,13.287,12.77,12.228,11.738,11.181,10.75,10.252,9.792,9.21,8.486,7.847,6.839,6.043,5.433,4.913,4.449,4.161,3.957,3.837,3.728,3.521,3.365,3.183,3.012,2.917,2.81,2.74,2.667,2.589,2.533,2.48],[35.313999,35.313999,35.313999,35.312,35.313,35.313,35.313,35.313,35.313,35.313,35.313999,35.312,35.310001,35.306999,35.396,35.436001,35.444,35.492001,35.495998,35.529999,35.601002,35.608002,35.598999,35.622002,35.638,35.639,35.624001,35.633999,35.582001,35.57,35.563,35.536999,35.506001,35.484001,35.455002,35.438999,35.425999,35.382999,35.345001,35.266998,35.195999,35.116001,35.043999,34.964001,34.903,34.831001,34.766998,34.696999,34.623001,34.561001,34.485001,34.451,34.442001,34.446999,34.463001,34.486,34.511002,34.542,34.561001,34.580002,34.602001,34.609001,34.616001,34.631001,34.643002,34.654999,34.667,34.681,34.688999,34.700001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_059","geolocation":{"type":"Point","coordinates":[58.761,-24.805]},"basin":3,"timestamp":"2011-08-09T17:33:24.999Z","date_updated_argovis":"2023-01-26T10:40:30.678Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_059.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":59,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10,19.299999,29.299999,40,49.200001,59.200001,70.199997,79.800003,90.099998,97.199997,110.199997,120.400002,130.300003,139.800003,150.100006,159.5,169.699997,180.100006,189.899994,199.600006,209.600006,219.300003,230.300003,240,249.899994,260.100006,269.899994,280.200012,289.700012,299.5,310,320.200012,329.600006,340.399994,349.799988,359.5,380.200012,399.5,446.799988,500.200012,549.900024,599.599976,649.799988,699.799988,749.799988,800.099976,850.200012,900.299988,950.299988,1000,1049.400024,1100,1149.599976,1199.900024,1250.400024,1299.699951,1349.800049,1399.800049,1450,1500.099976,1550.300049,1600,1649.599976,1700.199951,1750,1800.300049,1849.699951,1899.400024,1949.900024,2000],[22.988001,22.989,22.988001,22.988001,22.995001,22.979,22.995001,22.981001,22.990999,22.995001,22.996,22.988001,22.927999,22.215,21.812,21.447001,21.125,20.816,20.139,19.862,19.445999,19.139,18.688,18.332001,17.974001,17.355,17.030001,16.742001,16.655001,16.320999,15.898,15.707,15.38,15.154,14.894,14.613,14.423,14.03,13.737,13.161,12.534,12.074,11.601,11.088,10.598,10.185,9.58,8.938,8.243,7.285,6.584,6.011,5.339,5.015,4.675,4.387,4.065,3.899,3.728,3.589,3.416,3.234,3.115,2.989,2.849,2.761,2.679,2.6,2.524,2.486,2.434],[35.301998,35.301998,35.300999,35.300999,35.301998,35.298,35.300999,35.299,35.299,35.299999,35.299,35.299999,35.316002,35.369999,35.417999,35.467999,35.490002,35.505001,35.563,35.580002,35.598,35.608002,35.605,35.629002,35.624001,35.594002,35.581001,35.573002,35.578999,35.551998,35.526001,35.509998,35.481998,35.460999,35.437,35.410999,35.391998,35.352001,35.321999,35.249001,35.159,35.091999,35.023998,34.946999,34.877998,34.821999,34.737,34.665001,34.591999,34.515999,34.476002,34.449001,34.439999,34.444,34.451,34.481998,34.499001,34.516998,34.558998,34.582001,34.598,34.615002,34.625999,34.631001,34.639999,34.651001,34.664001,34.676998,34.692001,34.701,34.709]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_058","geolocation":{"type":"Point","coordinates":[59.031,-24.666]},"basin":3,"timestamp":"2011-07-30T14:19:59.002Z","date_updated_argovis":"2023-01-26T10:40:28.903Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_058.nc","date_updated":"2015-06-18T13:21:05.000Z"}],"cycle_number":58,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.9,19.4,29.4,40.200001,50,59.900002,70,80.300003,87.5,100.300003,109.099998,120,130.300003,140.100006,150,159.899994,170.100006,180.300003,189.899994,199.800003,208.300003,220.399994,229.800003,239.800003,249.699997,258.600006,270.299988,279.799988,290.100006,300.100006,309.899994,319.799988,330.200012,340.299988,349.600006,359.899994,379.5,399.600006,450,500,549.700012,600.200012,649.700012,700,750.099976,800.200012,849.299988,899.700012,950.299988,1000.099976,1050.300049,1099.900024,1149.800049,1200.099976,1249.699951,1300.099976,1349.400024,1399.900024,1449.699951,1499.5,1549.400024,1600.099976,1650.300049,1698.699951,1749.800049,1800.300049,1849.400024,1899.199951,1949.5],[23.143,23.146999,23.139999,23.132999,23.121,23.105,23.108999,23.159,23.159,23.17,23.188999,23.181999,22.069,22.021,21.833,21.537001,21.063999,20.481001,20.084999,19.907,19.669001,19.353001,18.837999,18.264,17.672001,17.409,17.273001,16.639999,16.565001,16.306999,16.106001,15.915,15.582,15.235,15.07,14.689,14.515,14.178,13.654,12.881,12.351,11.799,11.286,10.923,10.527,10.054,9.448,8.757,8.023,6.946,6.195,5.593,5.151,4.785,4.377,4.16,3.894,3.709,3.575,3.479,3.379,3.21,3.064,2.945,2.796,2.704,2.643,2.6,2.554,2.504],[35.231998,35.231998,35.229,35.229,35.224998,35.226002,35.235001,35.265999,35.265999,35.280998,35.299,35.300999,35.377998,35.431,35.460999,35.471001,35.469002,35.493999,35.547001,35.634998,35.662998,35.674999,35.686001,35.691002,35.662998,35.634998,35.672001,35.629002,35.624001,35.606998,35.585999,35.563,35.527,35.490002,35.469002,35.431,35.41,35.368999,35.311001,35.210999,35.132999,35.053001,34.974998,34.923,34.867001,34.799999,34.720001,34.643002,34.576,34.493999,34.456001,34.438999,34.436001,34.446999,34.467999,34.502998,34.519001,34.542999,34.569,34.594002,34.604,34.620998,34.633999,34.643002,34.655998,34.665001,34.675999,34.687,34.695999,34.705002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_057","geolocation":{"type":"Point","coordinates":[59.248,-24.407]},"basin":3,"timestamp":"2011-07-20T19:29:38.002Z","date_updated_argovis":"2023-01-26T10:40:27.100Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_057.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":57,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,19.6,29.9,39.900002,49.700001,60,69.400002,79.900002,89.699997,98.599998,110.400002,119.599998,130.100006,139.600006,148,159.899994,170,179.600006,189.699997,199.699997,209.399994,218.199997,229.699997,239.800003,250.300003,260.200012,269.600006,279.600006,289.700012,299.299988,310.200012,320,330,339.799988,349.700012,359.5,379.700012,400.100006,449.100006,499.799988,549.799988,600.099976,650,700.200012,749.5,800.200012,849.200012,899.799988,949.900024,1000.099976,1049.800049,1099.699951,1149.800049,1199.400024,1250,1299.400024,1349.900024,1400.099976,1450.099976,1499.199951,1550.099976,1600,1649.400024,1700.199951,1749.5,1799.599976,1849.300049,1899.800049,1949.800049,1998.699951],[23.306,23.302,23.285,23.271999,23.271,23.27,23.271,23.27,23.261999,23.250999,23.239,23.159,22.472,22.033001,21.167999,20.715,20.299999,20.094,19.764,19.389999,19.219,18.971001,18.676001,18.489,18.093,17.702,17.299,16.966999,16.542999,16.306999,16.165001,15.975,15.605,15.121,14.636,14.462,14.19,14.028,13.617,12.891,12.297,11.838,11.292,10.8,10.261,9.728,9.101,8.559,7.837,7.108,6.294,5.719,5.222,4.775,4.435,4.178,3.919,3.747,3.62,3.489,3.302,3.255,3.055,2.912,2.826,2.766,2.674,2.597,2.545,2.496,2.439],[35.191002,35.193001,35.191002,35.192001,35.193001,35.194,35.194,35.194,35.193001,35.191002,35.191002,35.215,35.368,35.452,35.442001,35.466999,35.507,35.541,35.595001,35.608002,35.643002,35.653,35.667999,35.698002,35.702999,35.681,35.647999,35.616001,35.568001,35.557999,35.551998,35.530998,35.501999,35.467999,35.423,35.400002,35.369999,35.351002,35.306,35.213001,35.126999,35.058998,34.978001,34.905998,34.832001,34.754002,34.679001,34.624001,34.558998,34.504002,34.458,34.442001,34.437,34.451,34.474998,34.499001,34.534,34.547001,34.556,34.585999,34.608002,34.616001,34.630001,34.639999,34.650002,34.658001,34.674,34.688999,34.698002,34.708,34.716]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_056","geolocation":{"type":"Point","coordinates":[59.647,-24.277]},"basin":3,"timestamp":"2011-07-10T06:19:47.999Z","date_updated_argovis":"2023-01-26T10:40:25.428Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_056.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":56,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.7,19.799999,29.9,39.200001,49.5,59.700001,70,80.199997,90.300003,99.300003,109.800003,117.699997,130.199997,140,150,160.199997,169.600006,179.399994,187.399994,200.199997,209.800003,219.899994,229.5,239.699997,250,259.899994,269.600006,279.399994,289.299988,297.5,309.600006,320,330,339.799988,349.700012,359.399994,379.899994,399.399994,450.200012,499.399994,549.200012,599.099976,649.900024,700.200012,749.900024,799.5,849.900024,899.900024,949.599976,999.799988,1049.599976,1100.199951,1149.5,1199.400024,1250.099976,1299.800049,1350.199951,1399.5,1449.599976,1499.300049,1549.699951,1599.5,1649.599976,1699.199951,1749.599976,1799.800049,1849.199951,1899,1949.800049],[23.875,23.875,23.860001,23.891001,23.857,23.931999,23.924,23.952,24,24.021,23.188999,22.486,22.103001,21.764999,21.398001,21.035,20.521,20.181,19.934999,19.778999,19.427,18.981001,18.766001,18.502001,18.271999,17.898001,17.388,17.191999,16.818001,16.482,16.205,15.863,15.64,15.331,14.959,14.774,14.636,14.002,13.813,12.877,12.228,11.695,11.218,10.755,10.265,9.707,9.262,8.779,8.017,7.209,6.522,5.845,5.077,4.721,4.397,4.133,3.985,3.759,3.613,3.441,3.282,3.149,2.98,2.928,2.846,2.773,2.693,2.629,2.552,2.489],[35.172001,35.172001,35.167,35.179001,35.164001,35.199001,35.199001,35.215,35.249001,35.291,35.351002,35.386002,35.415001,35.448002,35.485001,35.544998,35.598,35.636002,35.664001,35.679001,35.687,35.695,35.695999,35.699001,35.709999,35.703999,35.682999,35.675999,35.646999,35.618999,35.587002,35.554001,35.532001,35.501999,35.462002,35.444,35.424,35.353001,35.330002,35.209999,35.113998,35.033001,34.966,34.902,34.833,34.752998,34.696999,34.643002,34.575001,34.511002,34.469002,34.444,34.438999,34.448002,34.466,34.487,34.511002,34.542,34.563,34.584999,34.601002,34.620998,34.640999,34.648998,34.657001,34.666,34.676998,34.686001,34.695999,34.705002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_055","geolocation":{"type":"Point","coordinates":[59.971,-24.282]},"basin":3,"timestamp":"2011-06-30T01:37:42.999Z","date_updated_argovis":"2023-01-26T10:40:23.512Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_055.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":55,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10,20.200001,30.200001,40.200001,49.900002,60.299999,69.800003,80,89.5,100.400002,110.099998,120.199997,130,140.300003,150.100006,159.699997,168.699997,180,189.800003,200.300003,209.800003,219.699997,230.199997,240.199997,249.699997,260.299988,270,279.899994,289.899994,299.799988,309.700012,319.899994,329.600006,339.700012,349.899994,360.100006,380,399.399994,449.799988,500.200012,550.099976,600.099976,649.799988,699.700012,749.5,799.599976,850.200012,900.099976,950.200012,1000.200012,1050,1100.199951,1150.099976,1199.800049,1249.800049,1300.199951,1349.900024,1400.099976,1450.300049,1499.800049,1549.900024,1600.099976,1649.699951,1699.300049,1749.699951,1800,1849.800049,1899.699951,1949.300049,1998],[24.219,24.219,24.219,24.188999,24.240999,24.252001,24.289,24.368,24.381001,24.374001,23.091,22.488001,21.754,21.322001,20.816,20.528999,20.155001,19.780001,19.561001,19.351,18.922001,18.464001,18.129999,17.860001,17.584,17.326,17.254999,16.924999,16.475,16.004,15.69,15.51,15.153,14.768,14.573,14.156,13.935,13.608,13.348,12.725,12.217,11.78,11.335,10.829,10.376,9.888,9.504,8.868,7.914,7.078,6.274,5.522,5.025,4.682,4.444,4.161,3.918,3.716,3.585,3.427,3.313,3.175,3.074,2.941,2.875,2.761,2.682,2.622,2.59,2.503,2.438],[35.085999,35.087002,35.087002,35.106998,35.187,35.249001,35.301998,35.375,35.382,35.390999,35.305,35.325001,35.389999,35.415001,35.466,35.498001,35.522999,35.551998,35.605,35.616001,35.640999,35.653999,35.657001,35.672001,35.669998,35.667,35.66,35.643002,35.611,35.582001,35.549,35.521999,35.477001,35.432999,35.411999,35.366001,35.341,35.303001,35.271999,35.188,35.111,35.046001,34.981998,34.91,34.844002,34.780998,34.733002,34.657001,34.566002,34.502998,34.456001,34.438,34.436001,34.448002,34.459999,34.483002,34.511002,34.546001,34.563999,34.584,34.599998,34.615002,34.626999,34.641998,34.650002,34.665001,34.674999,34.683998,34.688999,34.702999,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_054","geolocation":{"type":"Point","coordinates":[60.516,-24.477]},"basin":3,"timestamp":"2011-06-19T22:10:17.001Z","date_updated_argovis":"2023-01-26T10:40:21.688Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_054.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.7,20,29,39.400002,50.099998,59.799999,66.800003,80.099998,89.699997,99.900002,109.800003,120,130.199997,140.100006,149.899994,159,170.300003,179.800003,190.100006,199.800003,210.199997,219.899994,229.899994,240.100006,249.800003,259.899994,270.299988,280.399994,290,300.100006,310,320,330.200012,339.600006,350.100006,359.399994,379.299988,399.799988,449.600006,499.5,549.799988,600,650.099976,700.099976,749.900024,799.900024,849.5,900.200012,949.5,999.599976,1049.599976,1099.900024,1149.599976,1199.900024,1250,1300,1348.699951,1399.699951,1450.099976,1500.099976,1549.800049,1599.599976,1649.199951,1700,1749.800049,1798.300049,1849.800049,1899.400024,1949.400024],[24.393,24.393999,24.386,24.392,24.396999,24.4,24.4,24.406,24.421,24.325001,23.235001,22.271,21.614,21.254,20.865,20.611,20.559999,20.268,19.844,19.438999,18.743999,18.559,18.166,17.566999,17.396999,17.280001,16.84,16.476999,15.998,15.682,15.339,15.176,14.94,14.759,14.644,14.502,14.391,13.975,13.712,13.267,12.632,12.06,11.583,11.162,10.703,10.071,9.385,8.832,7.821,7.266,6.414,5.657,4.987,4.625,4.418,4.15,3.879,3.704,3.529,3.375,3.234,3.083,3.031,2.902,2.835,2.718,2.676,2.609,2.512,2.473],[35.077999,35.077999,35.077,35.077999,35.077999,35.078999,35.077999,35.078999,35.096001,35.18,35.261002,35.301998,35.369999,35.397999,35.424999,35.445,35.48,35.567001,35.645,35.674,35.674,35.695,35.733002,35.639999,35.622002,35.666,35.610001,35.581001,35.526001,35.501999,35.473,35.459999,35.439999,35.423,35.411999,35.400002,35.389,35.348999,35.321999,35.273998,35.175999,35.091,35.02,34.960999,34.895,34.805,34.719002,34.655998,34.560001,34.514,34.463001,34.437,34.438,34.452999,34.464001,34.487,34.519001,34.542999,34.566002,34.587002,34.605999,34.624001,34.629002,34.646,34.653999,34.669998,34.674999,34.685001,34.701,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_053","geolocation":{"type":"Point","coordinates":[60.966,-24.552]},"basin":3,"timestamp":"2011-06-09T17:32:50.994Z","date_updated_argovis":"2023-01-26T10:40:19.698Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_053.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.3,19.4,30.200001,39.599998,49.799999,59.5,69.300003,80.400002,90.699997,100,110.199997,120,130.100006,139.800003,148.100006,160.399994,170.399994,180,189.800003,199.800003,210.199997,218.800003,230.399994,239.899994,250.100006,260.299988,267.299988,279.700012,290.399994,300,310.299988,319.799988,329.600006,339.600006,349.600006,359.799988,379.700012,399.799988,450.200012,500,549.700012,599.5,649.400024,700,750.099976,800.299988,850.299988,900,950.200012,1000,1049.5,1100,1149.800049,1199.699951,1250.400024,1299.900024,1350,1399.300049,1450.300049,1499.599976,1549.199951,1600.300049,1650.300049,1699.400024,1750.199951,1799.699951,1849.900024,1899.300049,1949.699951,1999.5],[25.179001,25.181,25.186001,25.188999,25.190001,25.191,25.191,25.194,25.184,24.045,22.783001,22.197001,21.985001,21.716,21.098,20.879999,20.708,20.445,19.83,19.607,19.136999,18.874001,18.427999,17.829,17.165001,16.829,16.450001,16.184,15.869,15.627,15.344,15.208,15.112,14.997,14.76,14.43,14.164,13.911,13.565,13.077,12.445,11.97,11.604,11.002,10.502,9.971,9.684,9.189,8.282,7.324,6.546,5.905,5.287,4.785,4.419,4.248,3.991,3.724,3.634,3.425,3.283,3.191,3.013,2.909,2.828,2.731,2.656,2.575,2.537,2.495,2.459],[35.174999,35.174999,35.174999,35.174999,35.174999,35.174999,35.174999,35.174999,35.178001,35.235001,35.306999,35.373001,35.396,35.421001,35.494999,35.550999,35.587002,35.608002,35.601002,35.625,35.631001,35.634998,35.618999,35.630001,35.594002,35.598999,35.563999,35.542,35.512001,35.495998,35.473999,35.463001,35.453999,35.442001,35.419998,35.389999,35.368999,35.345001,35.310001,35.245998,35.147999,35.077,35.023998,34.938999,34.866001,34.791,34.752998,34.692001,34.598999,34.52,34.469002,34.442001,34.432999,34.444,34.466,34.485001,34.507,34.542,34.553001,34.578999,34.598,34.611,34.632,34.646,34.655998,34.667,34.678001,34.691002,34.695999,34.702,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_052","geolocation":{"type":"Point","coordinates":[61.371,-24.571]},"basin":3,"timestamp":"2011-05-30T14:08:13.999Z","date_updated_argovis":"2023-01-26T10:40:17.814Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_052.nc","date_updated":"2015-06-18T13:21:04.000Z"}],"cycle_number":52,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.9,20.4,29.5,39.700001,50.599998,60.099998,69.699997,79.900002,88.900002,99.900002,110.099998,120.199997,130,140.300003,149.399994,159.899994,169.600006,179.899994,188.800003,200.399994,210.300003,219.800003,229.5,239.800003,250.100006,259.899994,268.399994,280,290.399994,300,309.700012,320.200012,330,339.899994,349.799988,360.200012,379.5,399.200012,450.200012,499.600006,549.900024,599.900024,648.799988,699.900024,749.900024,799.700012,850.299988,899.799988,949.700012,999.5,1049.699951,1100.099976,1149.599976,1199.800049,1250.099976,1300.099976,1349.400024,1400,1450.099976,1499.5,1549.800049,1600.199951,1649.900024,1699.800049,1750,1799.800049,1850,1899.199951,1949.599976],[25.701,25.702999,25.666,25.667,25.664,25.664,25.660999,25.129999,24.329,23.885,22.650999,22.125999,21.924999,21.635,21.524,21.334999,21.023001,20.584,19.972,19.690001,18.919001,18.719999,18.200001,18.018,17.757,17.375,16.934,16.601,16.282,15.986,15.645,15.308,15.155,14.967,14.599,14.493,14.303,13.926,13.731,13.03,12.477,11.99,11.555,11.01,10.48,10.012,9.525,8.713,7.912,7.067,6.108,5.523,5.086,4.779,4.508,4.222,3.939,3.767,3.602,3.406,3.249,3.13,3.025,2.925,2.837,2.757,2.678,2.611,2.541,2.482],[35.250999,35.250999,35.248001,35.250999,35.250999,35.251999,35.252998,35.264,35.266998,35.338001,35.368,35.379002,35.389,35.414001,35.424999,35.466999,35.506001,35.535999,35.581001,35.602001,35.620998,35.638,35.627998,35.632999,35.619999,35.645,35.618999,35.594002,35.568001,35.542,35.507,35.477001,35.462002,35.441002,35.409,35.397999,35.377998,35.344002,35.324001,35.237,35.153,35.078999,35.018002,34.941002,34.863998,34.798,34.735001,34.640999,34.563999,34.5,34.448002,34.435001,34.432999,34.443001,34.463001,34.486,34.515999,34.537998,34.560001,34.584999,34.604,34.618,34.632,34.645,34.653999,34.665001,34.675999,34.685001,34.695,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_051","geolocation":{"type":"Point","coordinates":[61.834,-24.696]},"basin":3,"timestamp":"2011-05-20T09:55:59.998Z","date_updated_argovis":"2023-01-26T10:40:15.926Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_051.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":51,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,10.4,20.299999,30.299999,40.299999,49.799999,60.299999,69.599998,80.400002,90.300003,100.300003,109.800003,118.099998,129.899994,139.800003,150.5,160,169.800003,179.899994,189.800003,200.300003,208.800003,220.300003,230.199997,239.899994,249.899994,259.700012,269.5,279.5,290.200012,300.299988,310.399994,319.899994,329.799988,340.100006,349.799988,359.600006,379.399994,399.899994,449.799988,500.399994,549.700012,600.099976,649.599976,697,749.799988,800.099976,850.200012,899.900024,950.099976,999.700012,1049.900024,1099.699951,1150.199951,1200.099976,1250,1299.800049,1349.599976,1400.199951,1449.699951,1500.099976,1549.699951,1600.300049,1649.599976,1700.099976,1749.900024,1799.800049,1849.800049,1899.5,1949.199951,1999.599976],[25.827999,25.820999,25.795,25.785,25.777,25.764,25.777,25.070999,24.186001,23.378,22.724001,22.32,21.978001,21.641001,21.188,20.728001,20.474001,20.188,19.854,19.663,19.263,18.808001,18.525999,18.091999,17.763,17.511999,17.006001,16.867001,16.843,16.568001,16.386,15.837,15.591,15.186,14.917,14.633,14.429,14.056,13.698,13.233,12.743,12.01,11.583,11.159,10.713,10.112,9.255,8.613,7.817,6.98,6.326,5.639,5.071,4.771,4.44,4.167,3.965,3.765,3.582,3.42,3.234,3.107,3.02,2.928,2.823,2.689,2.6,2.562,2.529,2.478,2.426],[35.196999,35.195999,35.195,35.196999,35.201,35.205002,35.229,35.363998,35.264,35.283001,35.314999,35.346001,35.375999,35.412998,35.466,35.512001,35.536999,35.571999,35.604,35.620998,35.645,35.647999,35.643002,35.655998,35.646,35.641998,35.624001,35.613998,35.608002,35.588001,35.571999,35.534,35.509998,35.465,35.435001,35.411999,35.394001,35.355999,35.324001,35.264,35.193001,35.081001,35.02,34.962002,34.897999,34.812,34.702999,34.632,34.556,34.493999,34.459,34.436001,34.438999,34.445,34.459,34.484001,34.506001,34.530998,34.556999,34.582001,34.610001,34.625,34.636002,34.646999,34.655998,34.672001,34.683998,34.691002,34.696999,34.703999,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_050","geolocation":{"type":"Point","coordinates":[62.08,-24.964]},"basin":3,"timestamp":"2011-05-10T06:21:07.000Z","date_updated_argovis":"2023-01-26T10:40:14.095Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_050.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":50,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.6,20.1,29.700001,38.400002,49.599998,59.900002,70.400002,80.300003,90,100.300003,110.199997,119.900002,128,140,150.5,160.399994,170.199997,179.699997,189.699997,200.199997,210.399994,220,230,240.300003,250.199997,259.600006,270.299988,280,290.200012,300.200012,309.600006,319.5,329.399994,340,349.600006,360.299988,380.100006,399.799988,449.5,499.5,549.599976,599.900024,649.799988,699.900024,749.5,799.900024,849.700012,900.400024,949.700012,999.599976,1049.900024,1099.800049,1149.599976,1199.599976,1250.099976,1299.199951,1349.599976,1400.300049,1450,1500.099976,1550.099976,1599.599976,1649.400024,1699.300049,1750.300049,1799.800049,1849.599976,1900.199951,1949.900024],[26.278,26.278,26.277,26.275999,26.275999,26.277,26.278,25.631001,24.006001,23.662001,23.357,23.08,22.673,22.364,21.625,21.159,20.893999,20.486,20.228001,19.714001,19.347,19.233,18.806,18.722,18.212,17.816999,17.655001,17.237,17.139,16.407,16.038,15.537,15.139,14.906,14.797,14.519,14.314,14.081,13.863,13.193,12.752,12.359,11.939,11.547,10.838,10.261,9.727,9.146,8.399,7.685,6.866,5.935,5.468,4.834,4.399,4.15,3.944,3.822,3.722,3.521,3.302,3.19,3.118,3.054,2.919,2.799,2.712,2.65,2.586,2.523],[35.181999,35.181,35.181999,35.181,35.181,35.181,35.182999,35.193001,35.215,35.237,35.244999,35.285,35.301998,35.338001,35.417,35.542999,35.563,35.583,35.588001,35.602001,35.644001,35.639999,35.643002,35.648998,35.648998,35.646999,35.647999,35.639999,35.643002,35.598999,35.555,35.494999,35.453999,35.435001,35.424999,35.398998,35.382,35.358002,35.338001,35.264,35.195,35.132999,35.071999,35.015999,34.914001,34.833,34.761002,34.689999,34.612,34.547001,34.486,34.443001,34.436001,34.445999,34.466999,34.487,34.507999,34.521999,34.534,34.564999,34.598999,34.612,34.622002,34.631001,34.646999,34.66,34.669998,34.678001,34.688,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_049","geolocation":{"type":"Point","coordinates":[62.127,-25.037]},"basin":3,"timestamp":"2011-04-30T01:42:45.000Z","date_updated_argovis":"2023-01-26T10:40:12.389Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_049.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":49,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,10,20,29.6,39.200001,49.5,59.900002,69.300003,80.099998,90,98.800003,109.699997,120.199997,130.5,140.199997,150.5,160.199997,169.600006,179.800003,189.100006,200.100006,209.800003,220.100006,229.899994,240,249.899994,259.5,269.600006,279.600006,289.600006,299.700012,310.200012,320,330.100006,340,349.700012,360.100006,379.899994,399.899994,449.899994,500,549.599976,599.400024,649.5,700.299988,750.200012,799.5,850.099976,899.700012,950.200012,999.299988,1049.599976,1099.699951,1149.900024,1200,1249.800049,1299.400024,1350.099976,1399.400024,1449.5,1500,1549.400024,1600.199951,1649.599976,1700.199951,1750.199951,1799.800049,1849.599976,1899.599976,1949.199951,1999.400024],[26.608,26.612,26.612,26.617001,26.618,26.628,26.577,26.558001,25.341,24.457001,23.631001,23.068001,22.534,21.948999,21.497,20.924,20.540001,20.158001,19.858999,19.386,19.256001,18.978001,18.694,18.370001,17.98,17.684,17.233999,16.819,16.725,16.635,16.368,16.143,15.719,15.381,15.114,14.709,14.275,13.987,13.79,13.175,12.73,12.254,11.762,11.322,10.8,10.292,9.764,9.137,8.33,7.717,6.707,5.81,5.392,4.899,4.558,4.252,4.021,3.878,3.737,3.6,3.445,3.303,3.133,3.042,2.915,2.799,2.695,2.636,2.551,2.508,2.472],[35.167999,35.167999,35.167999,35.167999,35.167999,35.203999,35.202999,35.242001,35.241001,35.235001,35.279999,35.292999,35.331001,35.382999,35.458,35.487999,35.534,35.575001,35.598999,35.651001,35.658001,35.673,35.685001,35.688,35.638,35.612,35.578999,35.561001,35.556,35.551998,35.557999,35.553001,35.514,35.491001,35.466999,35.418999,35.377998,35.352001,35.334,35.259998,35.192001,35.118,35.047001,34.983002,34.907001,34.834999,34.763,34.688999,34.605,34.554001,34.477001,34.442001,34.437,34.443001,34.462002,34.480999,34.502998,34.516998,34.530998,34.553001,34.577999,34.595001,34.618999,34.630001,34.646999,34.66,34.673,34.68,34.694,34.699001,34.705002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_048","geolocation":{"type":"Point","coordinates":[62.189,-25.125]},"basin":3,"timestamp":"2011-04-19T22:25:35.002Z","date_updated_argovis":"2023-01-26T10:40:10.521Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_048.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":48,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,9.2,19.6,30.1,37.5,49.599998,60,70,79.800003,89.599998,100.199997,109.900002,119.599998,130.199997,140,150.300003,160,170,179.699997,188.899994,200.199997,209.600006,219.5,229.800003,239.399994,249.5,260,269,279.899994,290,299.799988,309.899994,319.399994,329.5,339.5,349.600006,359.700012,379.200012,399.299988,449.700012,499.399994,549.700012,599.599976,649.799988,699.400024,749.799988,799.599976,849.799988,900.200012,949.900024,999.299988,1049.199951,1100,1149.800049,1199.599976,1250.099976,1300,1349.400024,1400.199951,1450.099976,1499.300049,1548.199951,1599.800049,1649.599976,1699.800049,1749.599976,1799.5,1849.599976,1899.900024,1949.400024],[26.634001,26.649,26.66,26.667,26.674,26.704,26.07,24.337999,23.612,22.905001,22.219999,21.892,21.611,21.222,20.903,20.74,20.107,19.650999,19.275999,18.872,18.409,18.007,17.740999,17.52,16.872,16.743,16.618999,16.363001,16.006001,15.573,15.534,15.148,15.005,14.834,14.616,14.488,14.219,13.942,13.676,13.086,12.594,12.178,11.698,11.02,10.54,9.921,9.382,8.622,7.898,7.096,6.569,5.812,5.202,4.718,4.412,4.245,4.06,3.845,3.634,3.417,3.321,3.212,3.102,2.975,2.832,2.771,2.695,2.649,2.562,2.511],[35.189999,35.188999,35.195999,35.199001,35.203999,35.235001,35.151001,35.122002,35.23,35.237999,35.311001,35.347,35.372002,35.404999,35.439999,35.470001,35.527,35.549999,35.567001,35.578999,35.585999,35.59,35.591,35.588001,35.568001,35.562,35.555,35.542,35.515999,35.483002,35.48,35.451,35.442001,35.431,35.409,35.396999,35.373001,35.344002,35.316002,35.243,35.169998,35.108002,35.036999,34.938,34.868999,34.785,34.717999,34.631001,34.567001,34.500999,34.469002,34.442001,34.438,34.452,34.469002,34.486,34.501999,34.523998,34.549,34.580002,34.592999,34.608002,34.625,34.638,34.653999,34.660999,34.672001,34.679001,34.694,34.702999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_047","geolocation":{"type":"Point","coordinates":[62.189,-25.03]},"basin":3,"timestamp":"2011-04-09T17:47:14.000Z","date_updated_argovis":"2023-01-26T10:40:08.589Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_047.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":47,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.5,9.7,19.299999,30,40.099998,50.099998,58.700001,70,79,89.699997,100,110.300003,120.199997,129.5,137.800003,149.899994,160.100006,169.899994,179.600006,188.5,199.899994,210,220,229.800003,240.199997,250.100006,259.299988,267.700012,280.100006,290.200012,300.200012,309.700012,319.5,329.899994,339.5,349.5,360,379.700012,399.799988,449.799988,499.799988,549.200012,599.299988,649.5,700.200012,749.5,799.5,849.799988,897.099976,949.599976,999.400024,1049.699951,1100,1149.599976,1199.099976,1249.699951,1299.400024,1349.699951,1400,1449.800049,1499.099976,1549.599976,1599.900024,1650,1699.5,1749.699951,1799.5,1849.400024,1899.400024,1949.400024,2000.199951],[27.063999,27.066,27.068001,27.058001,27.046,27.028999,26.163,24.361,23.582001,22.878,22.117001,21.705999,21.358999,20.858999,20.462999,19.954,19.753,19.615,19.003,18.801001,18.112,17.834,17.618,17.323999,17.063999,16.83,16.605,16.143,15.799,15.429,15.173,15.052,14.938,14.749,14.552,14.285,14.087,13.9,13.736,12.962,12.471,12.061,11.534,11.04,10.456,9.894,9.357,8.674,8.066,7.177,6.335,5.798,5.242,4.735,4.39,4.115,3.907,3.713,3.563,3.461,3.304,3.16,3.037,2.915,2.841,2.77,2.709,2.618,2.556,2.488,2.455],[35.212002,35.212002,35.212002,35.209,35.206001,35.209,35.167,35.173,35.215,35.256001,35.318001,35.347,35.412998,35.464001,35.505001,35.537998,35.549999,35.555,35.577999,35.584999,35.589001,35.59,35.588001,35.582001,35.570999,35.567001,35.555,35.529999,35.508999,35.48,35.459,35.448002,35.438,35.419998,35.401001,35.376999,35.359001,35.34,35.319,35.224998,35.152,35.09,35.013,34.943001,34.860001,34.782001,34.714001,34.636002,34.581001,34.514,34.453999,34.442001,34.438999,34.448002,34.466,34.493,34.509998,34.534,34.556999,34.575001,34.602001,34.618999,34.633999,34.645,34.653,34.660999,34.668999,34.681999,34.692001,34.702999,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_046","geolocation":{"type":"Point","coordinates":[62.176,-24.89]},"basin":3,"timestamp":"2011-03-30T14:21:39.996Z","date_updated_argovis":"2023-01-26T10:40:06.866Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_046.nc","date_updated":"2015-06-18T13:21:03.000Z"}],"cycle_number":46,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.7,19.799999,30.1,39.799999,50.099998,59.900002,69.699997,80.300003,90.099998,98.300003,110.199997,120,129.899994,139.899994,149.100006,159.699997,170,180.100006,189.800003,200.100006,209.899994,220.199997,229.600006,239.300003,249.399994,260,269.5,279.299988,289.899994,300.100006,309.799988,319.799988,329.700012,339.700012,349.600006,359.799988,379.299988,400,450.299988,499.600006,549.299988,599.299988,649.200012,699.799988,749.900024,799.599976,847.400024,899.900024,949.900024,999.400024,1050.199951,1099.5,1149.699951,1198.400024,1250,1299.5,1350.099976,1399.400024,1449.800049,1499.800049,1550.199951,1599.699951,1649.699951,1700,1749.5,1799.900024,1849.599976,1900,1949.599976],[26.853001,26.832001,26.768,26.725,26.639,26.573999,24.987,23.966999,23.115,22.282,21.909,21.194,20.638,20.410999,20.037001,19.922001,19.528999,19.103001,18.750999,18.437,18.039,17.608,17.316999,17.042,16.646,16.464001,16.216,15.838,15.544,15.395,15.239,15.081,14.605,14.364,14.179,14.083,13.925,13.802,13.513,12.94,12.436,11.823,11.381,10.897,10.262,9.869,9.185,8.379,7.626,7.012,6.053,5.694,5.143,4.594,4.326,4.014,3.855,3.706,3.565,3.407,3.28,3.16,3.078,2.953,2.814,2.728,2.607,2.557,2.513,2.478],[35.056999,35.055,35.050999,35.088001,35.084,35.139,35.182999,35.174,35.269001,35.310001,35.356998,35.429001,35.487,35.504002,35.535999,35.543999,35.564999,35.582001,35.592999,35.602001,35.599998,35.589001,35.582001,35.584999,35.564999,35.549999,35.535,35.507999,35.486,35.473999,35.464001,35.445999,35.407001,35.384998,35.368,35.359001,35.342999,35.332001,35.307999,35.220001,35.146999,35.057999,34.992001,34.923,34.833,34.778,34.692001,34.606998,34.546001,34.497002,34.444,34.438,34.436001,34.456001,34.473,34.495998,34.514,34.535999,34.557999,34.584999,34.603001,34.619999,34.630001,34.641998,34.655998,34.667,34.681999,34.689999,34.698002,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_045","geolocation":{"type":"Point","coordinates":[62.111,-24.77]},"basin":3,"timestamp":"2011-03-20T09:40:29.999Z","date_updated_argovis":"2023-01-26T10:40:05.079Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_045.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":45,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.3,19.6,27.200001,40.099998,50.099998,59.900002,69.800003,79.199997,90.199997,99.800003,110.199997,119.599998,129.5,139.899994,150,159.899994,170,180,190.399994,200,210.100006,219.600006,229.600006,240.199997,249.5,260.399994,270.200012,279.899994,289.799988,300.200012,310.100006,319.899994,330.100006,339.899994,349.899994,360.100006,380.100006,399.299988,449.200012,499.799988,550,599.200012,649.900024,698.299988,749.599976,800,849.5,898.799988,949.400024,999.299988,1049.400024,1099.699951,1149.900024,1199.5,1249.900024,1299.5,1349.5,1400.300049,1449.699951,1499.5,1550.199951,1599.900024,1649.599976,1699.300049,1749.599976,1799.5,1849.699951,1899.800049,1949.199951,1996.599976],[26.962,26.961,26.962,26.962999,26.948,24.860001,24.063999,23.51,22.875,22.493999,22.145,21.288,21.048,20.275,19.854,19.608999,19.268999,19.056999,18.826,18.018999,17.656,17.355,17.011,16.875999,16.243999,16.156,15.927,15.654,15.411,15.153,14.906,14.611,14.411,14.114,13.958,13.81,13.733,13.36,13.109,12.553,11.994,11.504,11.113,10.604,10.045,9.496,8.918,8.2,7.321,6.47,5.939,5.428,4.714,4.472,4.219,3.991,3.804,3.609,3.507,3.331,3.207,3.078,2.919,2.837,2.76,2.71,2.627,2.551,2.479,2.424,2.38],[35.231998,35.234001,35.234001,35.230999,35.247002,35.182999,35.210999,35.233002,35.265999,35.300999,35.327,35.418999,35.441002,35.518002,35.542,35.553001,35.571999,35.59,35.605999,35.612,35.606998,35.591999,35.580002,35.569,35.515999,35.542,35.540001,35.514,35.498001,35.477001,35.446999,35.418999,35.395,35.361,35.347,35.330002,35.323002,35.276001,35.243,35.164001,35.084,35.008999,34.955002,34.882,34.801998,34.73,34.660999,34.591,34.518002,34.465,34.443001,34.439999,34.441002,34.471001,34.479,34.499001,34.521999,34.551998,34.567001,34.596001,34.613998,34.626999,34.641998,34.651001,34.660999,34.667999,34.68,34.691002,34.702,34.709999,34.716]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_044","geolocation":{"type":"Point","coordinates":[61.876,-24.637]},"basin":3,"timestamp":"2011-03-10T06:30:48.000Z","date_updated_argovis":"2023-01-26T10:40:03.274Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_044.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":44,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10,20.1,29.700001,39.900002,50.5,60,70.300003,80,89.900002,100.199997,110.199997,120.199997,130.600006,139.899994,150.199997,159.899994,169.5,180.399994,189.800003,200.199997,210.199997,219.399994,230.300003,239.300003,249.699997,257,270,280.100006,289.700012,300.299988,310.100006,319.700012,329.399994,340.100006,350.299988,359.600006,379.799988,398.799988,450.299988,500,550.200012,599.5,646.799988,699.599976,750.299988,800.400024,849.700012,899.900024,949.700012,999.900024,1050.199951,1099.699951,1149.800049,1199.800049,1249.400024,1300.199951,1349.699951,1400.300049,1449.699951,1499.800049,1549.800049,1600.099976,1649.800049,1698.800049,1749.699951,1800,1849.900024,1899.199951,1949.900024],[27.412001,27.388,27.374001,27.365999,26.604,25.136,24.277,23.673,23.239,22.854,22.233999,21.916,21.41,20.653,20.193001,19.768999,19.26,18.812,18.298,17.708,17.422001,17.329,16.731001,16.497,16.237,15.882,15.818,15.57,15.368,15.187,14.998,14.914,14.743,14.514,14.403,14.193,13.939,13.525,13.137,12.625,12.062,11.378,10.959,10.317,9.762,9.294,8.819,7.914,6.999,6.432,5.843,5.215,4.693,4.398,4.206,3.984,3.846,3.627,3.402,3.301,3.144,3.02,2.906,2.797,2.728,2.652,2.586,2.52,2.494,2.466],[35.216999,35.216,35.216,35.216,35.166,35.126999,35.123001,35.193001,35.231998,35.261002,35.326,35.355999,35.417,35.481998,35.527,35.556999,35.580002,35.591,35.596001,35.589001,35.587002,35.583,35.551998,35.528,35.513,35.500999,35.498001,35.488998,35.473999,35.459999,35.444,35.437,35.421001,35.401001,35.388,35.368,35.341,35.292999,35.243999,35.171001,35.085999,34.986,34.925999,34.838001,34.759998,34.699001,34.644001,34.556999,34.492001,34.465,34.444,34.433998,34.445999,34.453999,34.471001,34.5,34.516998,34.549999,34.580002,34.591999,34.612999,34.626999,34.641998,34.655998,34.666,34.675999,34.686001,34.695999,34.699001,34.702]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_043","geolocation":{"type":"Point","coordinates":[61.556,-24.438]},"basin":3,"timestamp":"2011-02-28T02:21:22.000Z","date_updated_argovis":"2023-01-26T10:40:01.399Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_043.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":43,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,10.1,20,28.4,40.299999,50.099998,59.799999,70.5,80.300003,89.900002,100.400002,109.800003,120.199997,129.899994,140.100006,149.699997,159.800003,170.300003,180.100006,189.899994,200.100006,209.600006,220.199997,229.5,240.300003,250.300003,260.200012,270.100006,279.700012,290,299.700012,310.100006,319.5,330.299988,339.799988,349.799988,359.899994,380.200012,400.100006,450.100006,499.899994,550.099976,599.599976,650.200012,699.900024,750.099976,800.200012,849.599976,900.099976,950,998.599976,1050.300049,1099.800049,1150,1200.300049,1249.800049,1300.199951,1348.199951,1399.800049,1450,1500.199951,1550.099976,1600.199951,1650,1699.800049,1749.599976,1800.300049,1849.5,1899.5,1949.400024],[27.570999,27.570999,27.570999,27.570999,26.969999,24.642,23.511,23.351999,22.573999,22.049999,21.642,21.145,20.684,20.451,20.061001,20.028999,19.752001,19.556,19.253,19.114,18.816,18.347,17.965,17.657,17.318001,17.171,16.92,16.541,15.954,15.887,15.611,15.358,15.149,14.769,14.43,14.228,13.942,13.515,13.156,12.657,12.271,11.702,11.247,10.665,10.095,9.691,8.9,8.213,7.147,6.564,5.847,5.207,4.584,4.324,4.117,3.975,3.864,3.698,3.552,3.45,3.272,3.151,2.948,2.841,2.737,2.688,2.61,2.557,2.513,2.436],[35.205002,35.205002,35.205002,35.206001,35.182999,35.146,35.229,35.238998,35.286999,35.342999,35.384998,35.431999,35.483002,35.506001,35.534,35.618999,35.626999,35.651001,35.676998,35.679001,35.679001,35.671001,35.667,35.653999,35.650002,35.661999,35.673,35.667,35.569,35.554001,35.526001,35.508999,35.48,35.438,35.397999,35.373001,35.338001,35.292,35.248001,35.175999,35.118999,35.029999,34.967999,34.882999,34.803001,34.75,34.657001,34.584,34.5,34.470001,34.444,34.432999,34.442001,34.458,34.480999,34.507,34.519001,34.542999,34.563,34.576,34.598,34.612999,34.637001,34.651001,34.664001,34.671001,34.681999,34.689999,34.696999,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_042","geolocation":{"type":"Point","coordinates":[61.506,-24.291]},"basin":3,"timestamp":"2011-02-17T21:59:48.005Z","date_updated_argovis":"2023-01-26T10:39:59.667Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_042.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":42,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10,20.200001,30.4,40.599998,50,60.099998,69.699997,80.400002,90.099998,100.400002,110,118.800003,130,140.300003,150.5,160,170.300003,180,190,200.199997,210,220.100006,230,239.899994,249.899994,260.100006,270.100006,279.399994,290,299.399994,309.799988,320.399994,330.200012,340.299988,349.899994,360.299988,380.200012,399.200012,450.299988,500.299988,550,600,650.200012,699.799988,749.900024,800,849.599976,900,949.700012,1000.200012,1049.5,1100,1150.099976,1200,1249.900024,1300,1350,1400,1449.800049,1500.099976,1550,1599.900024,1650.400024,1700.300049,1750.199951,1799.699951,1849.699951,1899.5,1950,2000.900024],[27.413,27.412001,27.354,27.183001,27.041,26.563,24.98,23.884001,23.200001,22.747999,21.836,21.209999,20.76,20.542999,20.149,19.927,19.677,19.421,19.292999,19.188999,18.954,18.681999,18.131001,17.785999,17.608999,17.278999,17.000999,16.552999,16.302999,16.181,15.787,15.396,15.128,14.863,14.82,14.595,14.24,13.859,13.489,12.803,12.187,11.554,11.11,10.588,10.217,9.681,9.007,8.082,7.334,6.768,6.142,5.368,4.809,4.589,4.362,4.065,3.827,3.674,3.514,3.324,3.174,3.089,2.987,2.867,2.755,2.679,2.619,2.572,2.524,2.462,2.41],[35.223999,35.224998,35.223,35.278999,35.269001,35.255001,35.162998,35.202,35.243,35.286999,35.380001,35.435001,35.473999,35.479,35.513,35.560001,35.624001,35.654999,35.667,35.671001,35.686001,35.681,35.671001,35.673,35.682999,35.666,35.626999,35.59,35.577999,35.577,35.539001,35.505001,35.474998,35.445999,35.439999,35.415001,35.375999,35.338001,35.296001,35.201,35.113998,35.02,34.952,34.876999,34.821999,34.75,34.666,34.570999,34.514,34.479,34.453999,34.431999,34.433998,34.439999,34.459999,34.497002,34.528999,34.547001,34.569,34.591,34.609001,34.619999,34.632,34.646999,34.661999,34.672001,34.681,34.688,34.695999,34.705002,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_041","geolocation":{"type":"Point","coordinates":[61.563,-24.182]},"basin":3,"timestamp":"2011-02-07T18:19:17.996Z","date_updated_argovis":"2023-01-26T10:39:57.883Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_041.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.1,19.700001,30.299999,39.900002,50.099998,60.5,70.099998,79,90,99.800003,110.400002,119.900002,129.699997,139.899994,149.699997,160.100006,170.300003,179.899994,190.100006,200,207.899994,220.199997,229.800003,240.300003,249.899994,260.200012,270.100006,280.100006,289.799988,299.899994,309.899994,319.5,329.899994,340,350.299988,360.100006,380.100006,399.200012,450,499.799988,549.900024,599.900024,649.900024,699.400024,749.799988,799.900024,850.200012,899.900024,949.700012,999.700012,1050,1099.699951,1150,1199.900024,1249.699951,1299.699951,1350,1399.900024,1449.599976,1499.699951,1550.400024,1600,1649.5,1700,1749.800049,1800,1849.300049,1900.099976,1949.800049],[26.809999,26.812,26.815001,26.813999,26.813999,26.745001,23.997999,23.422001,22.131001,21.747,21.353001,20.797001,20.548,20.289,20.108,20.017,19.846001,19.764999,19.646,19.573,19.523001,19.469999,19.195999,18.85,18.408001,17.974001,17.787001,17.607,17.25,17.01,16.445,15.856,15.624,15.401,15.024,14.4,14.103,13.678,13.349,12.667,12.214,11.694,11.091,10.441,10.113,9.622,9.192,8.274,7.408,6.67,5.809,5.25,4.877,4.536,4.12,3.899,3.755,3.627,3.459,3.347,3.132,3.018,2.879,2.805,2.718,2.617,2.569,2.508,2.469,2.425],[35.284,35.284,35.284,35.284,35.283001,35.308998,35.280998,35.382,35.416,35.457001,35.535999,35.602001,35.629002,35.676998,35.702999,35.707001,35.723999,35.747002,35.763,35.769001,35.778,35.776001,35.761002,35.742001,35.726002,35.730999,35.722,35.724998,35.731998,35.709999,35.634998,35.548,35.521999,35.512001,35.469002,35.397999,35.368999,35.310001,35.271999,35.18,35.111,35.032001,34.946999,34.855,34.810001,34.740002,34.686001,34.588001,34.516998,34.476002,34.445999,34.433998,34.435001,34.444,34.478001,34.509998,34.535,34.551998,34.573002,34.585999,34.613998,34.627998,34.645,34.653999,34.666,34.68,34.688,34.698002,34.703999,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_040","geolocation":{"type":"Point","coordinates":[61.6,-24.29]},"basin":3,"timestamp":"2011-01-28T14:00:32.996Z","date_updated_argovis":"2023-01-26T10:39:56.094Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_040.nc","date_updated":"2015-06-18T13:21:02.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,9.8,19.700001,28.700001,40.5,50.400002,59.900002,70.400002,80.099998,90.099998,100.099998,108,120.099998,130.300003,140,149.800003,159.600006,170,179.300003,190.399994,200.399994,210.399994,220.100006,229.800003,239.399994,249.699997,258.600006,270.100006,280.100006,290.399994,300.100006,309.899994,320,330,339.799988,350,359.799988,379.899994,399.799988,449.399994,500.100006,550.200012,599.900024,649.799988,700.099976,749.700012,799.599976,849.400024,899.799988,950.099976,999.299988,1050,1099.5,1150.199951,1200.199951,1250.300049,1299.699951,1349.699951,1400,1449.900024,1500.099976,1549.900024,1600.099976,1649.400024,1699.199951,1750,1800.199951,1849.599976,1899.800049,1950.099976,2000],[27.112,27.114,27.1,27.013,26.955999,25.566999,23.193001,22.312,21.958,21.806,21.228001,21.007999,20.752001,20.280001,20.114,19.719,19.531,19.247,19.063,18.673,18.167,17.924,17.594999,17.264999,17.208,17.061001,16.792999,16.219999,15.631,15.363,15.14,14.824,14.611,14.385,14.235,13.942,13.829,13.596,13.291,12.78,12.188,11.707,11.177,10.726,10.338,9.88,9.265,8.267,7.458,6.761,5.965,5.375,4.729,4.476,4.166,3.921,3.745,3.646,3.468,3.275,3.12,3.027,2.943,2.859,2.75,2.67,2.605,2.519,2.466,2.414,2.389],[35.222,35.221001,35.223,35.221001,35.235001,35.166,35.284,35.308998,35.347,35.356998,35.419998,35.438999,35.470001,35.526001,35.544998,35.563999,35.613998,35.685001,35.688999,35.685001,35.681999,35.664001,35.664001,35.653,35.658001,35.671001,35.675999,35.604,35.514,35.488998,35.467999,35.437,35.414001,35.390999,35.373001,35.341,35.327999,35.300999,35.263,35.193001,35.104,35.030998,34.956001,34.891998,34.838001,34.773998,34.695,34.59,34.521,34.479,34.446999,34.435001,34.436001,34.445,34.471001,34.504002,34.529999,34.543999,34.570999,34.595001,34.615002,34.631001,34.638,34.646999,34.660999,34.672001,34.681999,34.694,34.702,34.709999,34.714001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_039","geolocation":{"type":"Point","coordinates":[61.785,-24.567]},"basin":3,"timestamp":"2011-01-18T10:20:58.999Z","date_updated_argovis":"2023-01-26T10:39:54.370Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_039.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,9.6,20.299999,30,40.099998,50.200001,59.900002,70.199997,79.800003,90.199997,100,109.900002,120,130.300003,139.800003,149.5,159.5,169.5,179.5,190.100006,200.300003,209.800003,220.100006,230.199997,239.899994,250.100006,259.700012,270.200012,279.899994,290.299988,300.299988,309.899994,320,329.600006,339.700012,350,359.600006,379.700012,400.100006,449.700012,499.600006,550.200012,599.299988,647.799988,700.200012,749.900024,800.200012,850.099976,899.799988,950.400024,999.900024,1050.099976,1100.199951,1149.599976,1199.699951,1250.300049,1299.400024,1350.199951,1399.900024,1449.599976,1499.699951,1550.199951,1599.5,1650.199951,1700.199951,1749.599976,1799.900024,1849.599976,1899.599976,1949.599976],[27.41,27.364,27.299,26.305,25.007,24.177,23.426001,23.205999,22.598,21.778,21.511999,21.1,20.643999,20.292999,20.042,19.784,19.624001,19.479,19.268999,18.610001,18.155001,17.886,17.617001,17.375999,17.079,16.903999,16.754999,16.304001,16.065001,15.762,15.538,15.184,14.818,14.486,14.19,13.844,13.668,13.414,13.122,12.445,12.027,11.511,11.096,10.564,10.065,9.682,9.217,8.591,7.775,6.863,6.008,5.45,4.873,4.45,4.133,3.991,3.826,3.627,3.46,3.32,3.163,3.095,2.978,2.842,2.763,2.712,2.603,2.528,2.471,2.423],[35.323002,35.324001,35.324001,35.235001,35.389,35.342999,35.320999,35.409,35.382,35.449001,35.507,35.547001,35.577,35.626999,35.634998,35.653,35.653999,35.688,35.691002,35.639999,35.629002,35.640999,35.618,35.612999,35.591,35.582001,35.595001,35.568001,35.548,35.526001,35.549,35.5,35.452,35.411999,35.368999,35.326,35.306999,35.278,35.243999,35.145,35.080002,35.005001,34.945,34.870998,34.798,34.749001,34.687,34.618999,34.549999,34.486,34.445,34.438999,34.442001,34.448002,34.473,34.493,34.514999,34.542999,34.568001,34.588001,34.609001,34.617001,34.632,34.650002,34.661999,34.669998,34.683998,34.693001,34.701,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_038","geolocation":{"type":"Point","coordinates":[62.133,-24.801]},"basin":3,"timestamp":"2011-01-08T06:11:32.998Z","date_updated_argovis":"2023-01-26T10:39:52.665Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_038.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":38,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,9.9,20.200001,30.6,39.799999,50.200001,59.799999,70.400002,80.699997,89.800003,100.199997,109.900002,120.300003,130.199997,140.100006,149.800003,159.800003,170,180.399994,189.800003,199.600006,210.199997,220.199997,230.100006,240.399994,250.300003,259.899994,270,279.799988,289.799988,300,310,319.899994,330.100006,339.600006,350,359.799988,380,400.299988,449.899994,499.899994,550.400024,600.099976,649.5,700.400024,750.099976,799.799988,849.700012,897.599976,949.799988,999.599976,1049.599976,1100.199951,1149.5,1199.300049,1249.400024,1300.099976,1349.900024,1399.800049,1450.199951,1500.099976,1550.300049,1600,1650.300049,1699.5,1749.699951,1800.199951,1850.099976,1899.400024,1949.300049,2000.300049],[27.334,27.139999,26.726999,26.056,24.797001,23.482,23.082001,22.664,22.243,21.466,21.1,20.77,20.341,19.732,19.417,19.257999,18.844999,18.629999,18.375,17.98,17.726999,17.146999,16.785,16.275999,15.658,15.525,15.108,14.89,14.775,14.412,14.278,14.068,13.862,13.751,13.504,13.377,13.196,12.938,12.704,12.219,11.898,11.378,10.908,10.357,9.778,9.305,8.751,8.361,7.506,6.655,5.884,5.194,4.831,4.52,4.344,4.024,3.765,3.603,3.465,3.361,3.191,3.038,2.938,2.864,2.764,2.638,2.584,2.539,2.516,2.45,2.402],[35.346001,35.354,35.394001,35.381001,35.388,35.268002,35.272999,35.306999,35.345001,35.415001,35.452999,35.487,35.525002,35.571999,35.611,35.672001,35.669998,35.678001,35.68,35.700001,35.695,35.646999,35.618999,35.577999,35.526001,35.512001,35.470001,35.446999,35.433998,35.387001,35.370998,35.349998,35.328999,35.316002,35.289001,35.273998,35.251999,35.219002,35.186001,35.110001,35.064999,34.987,34.922001,34.84,34.762001,34.698002,34.634998,34.597,34.523998,34.473,34.436001,34.439999,34.444,34.460999,34.477001,34.497002,34.528,34.549999,34.567001,34.582001,34.605,34.624001,34.633999,34.644001,34.658001,34.675999,34.685001,34.691002,34.695,34.703999,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_037","geolocation":{"type":"Point","coordinates":[62.706,-24.943]},"basin":3,"timestamp":"2010-12-29T02:25:27.000Z","date_updated_argovis":"2023-01-26T10:39:50.676Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_037.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":37,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.9,10.1,20,30.299999,39.5,50.400002,59.599998,69.5,80.099998,90.5,100.300003,109.699997,120,129.899994,139.699997,150.5,160.100006,169.800003,180.300003,189.5,200.199997,210.100006,219.800003,230,240,249.899994,260.399994,270.100006,279.5,290,300.200012,309.600006,320,329.399994,339.700012,349.399994,359.799988,379.600006,399.399994,450.100006,500.100006,550.299988,600.099976,650.099976,700.400024,750.200012,800,849.900024,899.099976,949.900024,999.599976,1050.199951,1100,1149.699951,1200,1249.800049,1299.800049,1350.199951,1399.900024,1449.699951,1499.699951,1549.300049,1599.800049,1649.900024,1699.300049,1749.900024,1799.900024,1849.900024,1899.400024,1949.300049],[25.52,25.525,24.813,24.344999,23.149,21.950001,21.113001,20.952,20.768999,20.294001,19.966999,19.683001,19.497,19.07,18.583,18.045,17.846001,17.421,16.927999,16.563999,16.204,15.969,15.856,15.54,15.205,14.869,14.657,14.391,14.164,14.07,13.938,13.903,13.726,13.599,13.391,13.251,13.068,12.728,12.513,11.852,11.448,11.013,10.616,10.15,9.817,9.158,8.512,7.753,6.809,6.001,5.396,4.893,4.602,4.268,4.046,3.848,3.662,3.428,3.33,3.239,3.109,3.012,2.88,2.805,2.703,2.646,2.578,2.511,2.474,2.439],[35.491001,35.493,35.439999,35.425999,35.384998,35.494999,35.505001,35.546001,35.570999,35.606998,35.633999,35.648998,35.685001,35.710999,35.696999,35.651001,35.660999,35.654999,35.591,35.577999,35.548,35.523998,35.512001,35.487,35.459999,35.43,35.41,35.383999,35.363998,35.352001,35.338001,35.334,35.313999,35.299,35.273998,35.256001,35.231998,35.188,35.160999,35.056999,34.997002,34.938,34.882999,34.814999,34.768002,34.681999,34.612,34.547001,34.483002,34.448002,34.438999,34.453999,34.464001,34.485001,34.499001,34.519001,34.543999,34.571999,34.584999,34.596001,34.612999,34.624001,34.640999,34.650002,34.665001,34.674,34.685001,34.695999,34.702999,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_036","geolocation":{"type":"Point","coordinates":[63.018,-25.16]},"basin":3,"timestamp":"2010-12-18T21:51:45.001Z","date_updated_argovis":"2023-01-26T10:39:48.792Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_036.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":36,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,8.8,20,30.1,39.900002,50.200001,59.799999,67.199997,80.400002,90.5,100.300003,110,119.5,130,139.600006,149.899994,158.399994,170,179.699997,189.600006,199.800003,210,220.199997,230,239.600006,249.600006,259.899994,268.700012,280.399994,290.200012,300.100006,309.799988,320.100006,330.200012,340,350.100006,359.799988,379.299988,399.899994,449.399994,500.399994,549.5,599.599976,650.299988,699.700012,749.900024,799.900024,849.400024,899.900024,949.700012,999.799988,1050.400024,1099.5,1149.599976,1199.699951,1249.800049,1300.199951,1350,1400,1450,1500.199951,1550.300049,1600.400024,1649.699951,1699.699951,1750,1799.699951,1849.599976,1899.800049,1949.300049,2000],[24.962999,24.965,24.966999,24.964001,23.421,22.469999,21.959,21.368999,21.08,20.503,20.167,20.021999,19.9,19.674,19.243999,18.947001,18.542,18.157,17.868999,17.672001,17.277,16.996,16.733999,16.273001,16.243,15.696,15.209,15.009,14.803,14.577,14.27,14.059,13.835,13.46,13.252,13.098,13.039,12.841,12.567,12.086,11.671,11.355,10.59,10.086,9.719,9.163,8.553,7.664,6.86,6.034,5.524,5.19,4.625,4.49,4.135,3.885,3.765,3.561,3.4,3.257,3.132,3.034,2.909,2.784,2.695,2.603,2.551,2.518,2.481,2.448,2.414],[35.411999,35.411999,35.412998,35.417,35.402,35.415001,35.421001,35.466,35.471001,35.523998,35.563,35.605999,35.655998,35.68,35.688,35.646999,35.692001,35.693001,35.696999,35.700001,35.688,35.666,35.666,35.597,35.589001,35.556,35.493,35.466999,35.441002,35.412998,35.379002,35.354,35.326,35.283001,35.259998,35.238998,35.229,35.201,35.16,35.088001,35.027,34.987,34.873001,34.806,34.757999,34.687,34.623001,34.544998,34.487999,34.445,34.431999,34.439999,34.445999,34.460999,34.490002,34.513,34.532001,34.553001,34.575001,34.592999,34.608002,34.619999,34.634998,34.650002,34.662998,34.676998,34.686001,34.691002,34.696999,34.702,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_035","geolocation":{"type":"Point","coordinates":[63.214,-25.281]},"basin":3,"timestamp":"2010-12-08T18:19:39.996Z","date_updated_argovis":"2023-01-26T10:39:46.874Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_035.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":35,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.4,19.9,30.299999,40.299999,49.900002,59.700001,69.900002,80.300003,90.300003,100.300003,110.199997,118.800003,130,139.899994,149.899994,160.399994,170.199997,180.199997,188.899994,200,210.300003,220,230.100006,240.100006,249.300003,260.100006,269.399994,280.299988,290.399994,300.299988,310.399994,320.299988,329.700012,340,349.5,360.200012,379.299988,400.299988,450.399994,500,549.5,599.299988,647.299988,700,749.599976,799.299988,849.099976,899.400024,950,999.599976,1049.599976,1100.099976,1149.599976,1199.5,1249.5,1299.5,1349.699951,1400.400024,1449.699951,1500.300049,1549.699951,1599.800049,1649.900024,1700.400024,1749.699951,1799.599976,1849.699951,1899.300049,1950],[24.778999,24.795,24.784,24.643,23.931,23.24,22.705999,22.398001,21.927999,21.635,21.396,21.219999,20.886999,20.518,20.343,20.141001,19.812,19.372,19.160999,18.561001,18.362,17.974001,17.486,17.172001,16.950001,16.729,16.500999,16.136,15.827,15.506,15.088,14.733,14.436,14.228,14.027,13.792,13.714,13.51,13.149,12.398,11.731,11.005,10.528,10.06,9.645,9.18,8.589,7.953,7.2,6.172,5.546,5.064,4.673,4.487,4.234,3.98,3.839,3.679,3.524,3.343,3.204,3.063,2.954,2.818,2.738,2.65,2.601,2.553,2.488,2.434],[35.27,35.271,35.269001,35.263,35.252998,35.269001,35.294998,35.316002,35.353001,35.383999,35.404999,35.432999,35.478001,35.532001,35.558998,35.584999,35.611,35.637001,35.644001,35.652,35.66,35.686001,35.648998,35.629002,35.66,35.641998,35.627998,35.588001,35.561001,35.528999,35.491001,35.452,35.416,35.393002,35.366001,35.337002,35.323002,35.304001,35.255001,35.147999,35.051998,34.943001,34.872002,34.799999,34.744999,34.682999,34.618,34.562,34.509998,34.449001,34.432999,34.444,34.456001,34.462002,34.487999,34.529999,34.542,34.558998,34.577,34.591999,34.611,34.618999,34.630001,34.646,34.657001,34.669998,34.678001,34.686001,34.696999,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_034","geolocation":{"type":"Point","coordinates":[63.423,-25.119]},"basin":3,"timestamp":"2010-11-28T13:45:01.997Z","date_updated_argovis":"2023-01-26T10:39:45.115Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_034.nc","date_updated":"2015-06-18T13:21:01.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,20.299999,29.700001,39.799999,49.5,60,70.199997,80.599998,89.900002,99.800003,110.300003,120.300003,130.199997,139.800003,149.899994,159.800003,169.699997,180,190.300003,197.600006,210.300003,219.699997,230.199997,240,249.399994,259.5,269.299988,279.100006,290.200012,300.100006,310.200012,319.799988,329.799988,339.799988,349.799988,359.5,380.100006,399.799988,449.899994,499.899994,549.799988,599.900024,650.299988,700,749.700012,799.700012,849.5,900.299988,949.700012,999.700012,1049.900024,1100.199951,1149.800049,1200,1249.599976,1299.599976,1350.099976,1400.300049,1450.199951,1500,1550.300049,1599.800049,1649.800049,1700,1749.5,1799.699951,1849.5,1899.699951,1950.099976,1998.099976],[24.67,24.417999,24.306999,24.132999,23.902,23.445999,22.778999,22.416,22.066,21.829,21.530001,21.152,20.962999,20.353001,20.201,20.087,19.729,19.518999,19.142,18.818001,18.459999,18.087999,17.718,17.274,17.174999,16.711,16.329,16.101999,15.867,15.435,15.156,14.738,14.57,14.311,14.107,13.987,13.71,13.389,12.989,12.194,11.527,10.842,10.316,9.775,9.327,8.815,8.308,7.664,6.795,6.091,5.431,4.931,4.529,4.326,4.164,4.083,3.923,3.738,3.586,3.425,3.279,3.129,3.037,2.895,2.772,2.731,2.666,2.597,2.537,2.495,2.438],[35.243,35.251999,35.262001,35.264999,35.269001,35.259998,35.263,35.306,35.345001,35.367001,35.391998,35.429001,35.449001,35.519001,35.542999,35.561001,35.608002,35.624001,35.638,35.650002,35.661999,35.657001,35.646,35.625,35.616001,35.592999,35.568001,35.578999,35.557999,35.523998,35.498001,35.449001,35.43,35.397999,35.374001,35.359001,35.321999,35.280998,35.23,35.123001,35.025002,34.921001,34.841,34.764,34.702,34.639,34.589001,34.542,34.483002,34.451,34.436001,34.448002,34.465,34.483002,34.511002,34.530998,34.546001,34.567001,34.583,34.599998,34.612,34.627998,34.634998,34.648998,34.664001,34.667,34.673,34.681999,34.692001,34.696999,34.706001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_033","geolocation":{"type":"Point","coordinates":[63.477,-24.93]},"basin":3,"timestamp":"2010-11-18T10:15:43.998Z","date_updated_argovis":"2023-01-26T10:39:43.293Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_033.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.7,20.299999,29.6,39.099998,50.200001,60.099998,70.199997,80,88.900002,100,110.199997,119.699997,129.699997,139,150.199997,160.100006,169.600006,180.100006,188.5,200,210.199997,219.899994,230.199997,239.899994,249.699997,259.5,267.5,280.200012,290,300.399994,310.299988,319.799988,329.600006,339.600006,350.200012,359.899994,379.799988,400,450.100006,499.5,549.900024,600.200012,650.400024,700.200012,750.099976,800.099976,850.200012,899.900024,949.599976,999.400024,1049.900024,1099.699951,1149.5,1200.099976,1249.800049,1299.599976,1349.5,1400.099976,1449.599976,1500.099976,1549.699951,1600,1650.099976,1698.300049,1750.199951,1800.099976,1849.900024,1900.199951,1950],[23.809999,23.648001,23.535999,23.377001,23.316999,23.25,22.834999,22.576,22.076,21.856001,21.618999,21.228001,21.082001,21,20.957001,20.632999,20.205999,19.92,19.357,19.209,18.945999,18.591999,18.219,17.908001,17.417,17.056,17.035,16.698999,16.431999,16.198,15.905,15.772,15.462,15.055,14.777,14.483,14.106,13.716,13.261,12.529,11.854,11.185,10.624,10.011,9.663,9.137,8.659,8.091,6.953,5.977,5.509,5.121,4.758,4.388,4.178,4.026,3.846,3.703,3.572,3.415,3.263,3.142,2.977,2.903,2.797,2.694,2.614,2.551,2.484,2.45],[35.293999,35.293999,35.296001,35.292,35.293999,35.297001,35.290001,35.299999,35.317001,35.342999,35.368999,35.400002,35.41,35.422001,35.438,35.486,35.549,35.577999,35.624001,35.632,35.641998,35.667,35.675999,35.672001,35.66,35.636002,35.632999,35.615002,35.612999,35.588001,35.555,35.560001,35.535,35.488998,35.458,35.419998,35.370998,35.320999,35.264,35.167999,35.073002,34.972,34.884998,34.792999,34.745998,34.678001,34.624001,34.575001,34.492001,34.446999,34.437,34.437,34.455002,34.485001,34.505001,34.522999,34.546001,34.567001,34.584999,34.605,34.619999,34.629002,34.640999,34.648998,34.659,34.668999,34.679001,34.688,34.699001,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_032","geolocation":{"type":"Point","coordinates":[63.665,-24.734]},"basin":3,"timestamp":"2010-11-08T05:58:50.001Z","date_updated_argovis":"2023-01-26T10:39:41.482Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_032.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.6,20.1,29.799999,40,50.200001,59.799999,69.599998,79,89.800003,99.699997,109.900002,119.599998,129.300003,139.899994,149.600006,160.300003,170,180.199997,190.100006,200.199997,210.199997,220.100006,230.100006,239.800003,250.199997,259.5,268.700012,280.100006,290.100006,299.700012,310.200012,320.100006,329.600006,340.100006,350.100006,359.700012,379.5,400.100006,449.899994,499.600006,549.700012,599.900024,649.599976,700,750.099976,799.400024,850,897.700012,950.299988,999.5,1050.099976,1099.699951,1149.699951,1200.099976,1249.699951,1299.900024,1348.199951,1399.800049,1450,1499.5,1550.099976,1599.900024,1650.099976,1699.699951,1750.099976,1800.199951,1850.099976,1900.099976,1949.599976,1998.800049],[23.997999,23.985001,23.983,23.982,23.964001,23.358,23.065001,22.790001,22.603001,22.441999,22.195,22.101999,21.971001,21.688999,21.594999,21.281,20.865999,20.308001,19.98,19.797001,19.566999,19.479,18.885,18.676001,18.441,18.052,17.778,17.475,17.038,16.583,16.235001,15.941,15.52,15.436,15.084,14.911,14.603,14.224,13.639,12.713,11.987,11.459,10.844,10.296,9.874,9.41,8.775,7.786,6.856,6.067,5.539,5.005,4.769,4.404,4.239,4.089,3.862,3.58,3.483,3.388,3.247,3.111,3.018,2.86,2.741,2.666,2.603,2.543,2.491,2.436,2.402],[35.126999,35.125999,35.125999,35.125999,35.127998,35.138,35.153999,35.174,35.208,35.244999,35.287998,35.310001,35.321999,35.374001,35.398998,35.452999,35.519001,35.57,35.594002,35.596001,35.625999,35.634998,35.682999,35.699001,35.710999,35.731998,35.724998,35.715,35.693001,35.613998,35.574001,35.585999,35.544998,35.534,35.498001,35.476002,35.441002,35.397999,35.32,35.189999,35.088001,35.009998,34.918999,34.839001,34.775002,34.710999,34.641998,34.549,34.486,34.450001,34.438,34.444,34.456001,34.490002,34.504002,34.52,34.543999,34.563,34.583,34.603001,34.610001,34.624001,34.630001,34.643002,34.658001,34.668999,34.678001,34.687,34.694,34.703999,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_031","geolocation":{"type":"Point","coordinates":[63.723,-24.708]},"basin":3,"timestamp":"2010-10-29T02:18:20.000Z","date_updated_argovis":"2023-01-26T10:39:39.695Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_031.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.9,19.9,29,39.900002,50.299999,60.299999,70.400002,80.099998,89.900002,99.800003,110.5,120,129.800003,140.199997,150.100006,160.600006,170.5,180.5,189.800003,199.600006,210.300003,220.100006,230.399994,239.899994,249.5,259.799988,268.799988,280,290.200012,299.899994,310.299988,319.700012,330.299988,340,349.799988,359.700012,379.700012,399.399994,450.200012,499.899994,549.700012,599.5,649.799988,700.400024,749.799988,799.700012,849.700012,899.900024,950.099976,999.400024,1050.199951,1100.400024,1149.800049,1200.400024,1250.400024,1300.300049,1349.800049,1399.900024,1449.699951,1500,1550.099976,1600,1649.800049,1700.099976,1750.099976,1799.800049,1849.699951,1899.400024,1949.5],[23.23,23.229,23.226,23.028,22.993,22.983999,22.891001,22.663,22.507,22.288,22.211,22.004999,21.768999,21.628,21.362,20.979,20.749001,20.283001,20.219999,20.027,19.742001,19.179001,18.743999,18.429001,18.006001,17.507,17.275,17.104,16.625,16.148001,15.796,15.57,15.363,15.118,14.909,14.689,14.368,14.061,13.643,12.773,12.099,11.577,10.895,10.368,10.028,9.426,8.908,8.391,7.562,6.757,5.918,5.373,4.953,4.598,4.387,4.131,3.993,3.825,3.585,3.424,3.268,3.129,3.008,2.903,2.813,2.724,2.605,2.506,2.458,2.437],[35.209,35.209999,35.209,35.223999,35.223999,35.223999,35.220001,35.223,35.243,35.264,35.286999,35.314999,35.356998,35.375999,35.407001,35.452999,35.48,35.536999,35.573002,35.595001,35.615002,35.637001,35.655998,35.666,35.666,35.653999,35.669998,35.661999,35.633999,35.591,35.555,35.526001,35.500999,35.471001,35.452,35.43,35.389999,35.354,35.301998,35.191002,35.098999,35.025002,34.926998,34.848999,34.794998,34.715,34.652,34.597,34.530998,34.481998,34.445999,34.438,34.444,34.469002,34.498001,34.527,34.535999,34.543999,34.562,34.578999,34.598,34.613998,34.629002,34.639999,34.647999,34.658001,34.674999,34.689999,34.698002,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_030","geolocation":{"type":"Point","coordinates":[63.706,-24.924]},"basin":3,"timestamp":"2010-10-18T21:49:17.999Z","date_updated_argovis":"2023-01-26T10:39:37.834Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_030.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.5,19.4,30,39.599998,50.200001,59.599998,69.599998,79.699997,89.5,99.5,110,119.900002,129.5,140,150.199997,159.899994,170.100006,180,189.5,199.300003,208.300003,220.300003,229.899994,240.100006,250.100006,259.799988,269.299988,280,290.100006,299.899994,309.5,319.700012,329.600006,339.899994,350.100006,359.700012,379.899994,399.700012,450.200012,499.299988,549.900024,599.400024,649.200012,699.5,749.900024,799.900024,849.799988,899.599976,950,1000,1048.900024,1099.699951,1149.300049,1199.400024,1249.800049,1299,1349.400024,1399.599976,1449.400024,1499.300049,1549.199951,1599.900024,1649.599976,1700.199951,1749.800049,1799.699951,1849.300049,1899.900024,1949.099976,1999.900024],[22.878,22.879,22.886999,22.874001,22.634001,22.622999,22.614,22.613001,22.587999,22.502001,22.348,22.216999,22.042,21.952999,21.382999,20.841,20.524,20.316999,19.820999,19.790001,19.43,19.289,18.908001,18.469,18.125,17.792,17.667,17.128,16.664,16.424999,16.221001,15.905,15.622,15.38,15.102,14.622,14.349,13.866,13.484,12.885,12.362,11.647,11.163,10.748,10.244,9.679,9.169,8.754,7.89,7.22,6.327,5.5,5.053,4.847,4.477,4.195,4.059,3.915,3.658,3.492,3.36,3.17,3.096,2.929,2.824,2.741,2.639,2.561,2.483,2.449,2.406],[35.214001,35.213001,35.212002,35.210999,35.212002,35.214001,35.216,35.216999,35.220001,35.230999,35.252998,35.27,35.306999,35.330002,35.405998,35.493,35.529999,35.550999,35.617001,35.623001,35.646,35.655998,35.666,35.655998,35.689999,35.700001,35.700001,35.654999,35.618999,35.616001,35.599998,35.563999,35.532001,35.502998,35.476002,35.417999,35.387001,35.326,35.278999,35.203999,35.131001,35.029999,34.962002,34.903999,34.830002,34.748001,34.681999,34.632999,34.556,34.507,34.457001,34.436001,34.438,34.449001,34.486,34.507,34.526001,34.537998,34.560001,34.574001,34.59,34.612,34.619999,34.637001,34.646999,34.658001,34.669998,34.681,34.695,34.700001,34.708]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_029","geolocation":{"type":"Point","coordinates":[63.388,-25.53]},"basin":3,"timestamp":"2010-10-08T18:17:12.999Z","date_updated_argovis":"2023-01-26T10:39:35.895Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_029.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":29,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.5,9.2,19.700001,29.5,39.799999,49.799999,59.700001,69.800003,79.599998,89.199997,99.099998,109.5,119.699997,130.100006,140,149.699997,160.100006,170.100006,179.699997,189.399994,199.199997,209.699997,219.600006,229.800003,240,249.300003,259.700012,269.299988,279.5,290,299.600006,309.600006,319.399994,329.799988,339.399994,349.299988,359.799988,379.100006,400.100006,450.100006,499.799988,549.200012,599.5,649,700,749.5,799.400024,849.700012,899.599976,949.400024,999.299988,1049.300049,1099.300049,1150,1200,1249.199951,1299.800049,1349.300049,1399.800049,1449.300049,1499.800049,1549.800049,1600,1649.800049,1699.099976,1749.800049,1799.300049,1849.699951,1899.800049,1949.400024],[22.75,22.752001,22.752001,22.752001,22.75,22.731001,22.562,22.516001,22.33,22.129,22.021999,21.868,21.580999,21.35,20.995001,20.674999,20.495001,20.372,20.018,19.784,19.434999,18.934,18.475,18.136999,17.875999,17.679001,17.226999,17.063999,16.857,16.517,16.229,15.857,15.648,15.338,15.059,14.769,14.464,14.224,13.899,12.973,12.1,11.6,10.955,10.388,10.061,9.54,9.038,8.388,7.764,6.993,6.313,5.729,5.342,4.774,4.523,4.314,4.091,3.869,3.672,3.482,3.334,3.2,3.111,2.931,2.763,2.672,2.643,2.592,2.537,2.478],[35.162998,35.164001,35.164001,35.164001,35.164001,35.164001,35.193001,35.207001,35.264999,35.305,35.324001,35.348999,35.375999,35.388,35.409,35.467999,35.543999,35.566002,35.606998,35.610001,35.616001,35.643002,35.625999,35.629002,35.634998,35.631001,35.618999,35.611,35.601002,35.580002,35.560001,35.532001,35.513,35.487,35.459999,35.429001,35.400002,35.374001,35.337002,35.219002,35.101002,35.028999,34.937,34.852001,34.803001,34.726002,34.666,34.598,34.543999,34.493999,34.459,34.442001,34.438999,34.458,34.481998,34.509998,34.534,34.543999,34.553001,34.570999,34.588001,34.605999,34.615002,34.634998,34.653999,34.666,34.671001,34.68,34.688,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_028","geolocation":{"type":"Point","coordinates":[63.012,-25.629]},"basin":3,"timestamp":"2010-09-28T13:28:34.999Z","date_updated_argovis":"2023-01-26T10:39:34.175Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_028.nc","date_updated":"2015-06-18T13:21:00.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10.3,19.9,30.299999,40.099998,49.599998,59.299999,69.900002,79.300003,90.099998,97.699997,110.199997,120.199997,130.300003,140.100006,149.899994,160.199997,168.600006,180,190.300003,200.300003,209.699997,220.199997,230.300003,240.199997,249.699997,260.200012,270,280.200012,289.700012,299.700012,310,320,330.399994,340.299988,349.5,359.399994,380,399.600006,449.799988,499.799988,550.099976,599.599976,649.599976,699.700012,750,799.799988,849.400024,899.5,950.200012,999.700012,1050.199951,1100.199951,1149.699951,1199.400024,1249.800049,1299.599976,1349.800049,1398.199951,1449.699951,1500,1550.199951,1599.900024,1649.599976,1700.099976,1749.800049,1800.099976,1850.199951,1899.599976,1949.300049,1998.5],[22.902,22.902,22.834999,22.816,22.806999,22.802,22.799999,22.799,22.796,22.773001,22.704,22.576,22.403,22.290001,21.983,21.738001,21.315001,20.868999,20.379999,19.806999,19.542999,19.247,19.007999,18.726,18.452,18.309,17.832001,17.084999,16.721001,16.356001,15.956,15.75,15.415,15.094,14.851,14.715,14.487,13.907,13.664,12.949,12.211,11.552,10.869,10.275,9.816,9.264,8.849,8.276,7.484,6.601,6.078,5.292,5.115,4.725,4.529,4.168,4.066,3.925,3.667,3.493,3.423,3.287,3.144,3,2.885,2.789,2.698,2.633,2.587,2.498,2.451],[35.141998,35.141998,35.140999,35.140999,35.143002,35.141998,35.141998,35.143002,35.144001,35.155998,35.181,35.209999,35.229,35.294998,35.334999,35.401001,35.464001,35.514999,35.556,35.602001,35.613998,35.636002,35.661999,35.679001,35.691002,35.688,35.660999,35.612,35.591999,35.567001,35.537998,35.519001,35.493999,35.466,35.443001,35.433998,35.415001,35.348,35.314999,35.222,35.123001,35.028999,34.926998,34.834999,34.765999,34.689999,34.643002,34.588001,34.523998,34.470001,34.450001,34.432999,34.436001,34.453999,34.473999,34.511002,34.533001,34.549999,34.566002,34.576,34.584999,34.601002,34.613998,34.630001,34.640999,34.653999,34.667,34.674999,34.681,34.695,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_027","geolocation":{"type":"Point","coordinates":[63.266,-25.129]},"basin":3,"timestamp":"2010-09-18T10:26:21.000Z","date_updated_argovis":"2023-01-26T10:39:32.319Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_027.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,9.8,19.4,29.5,40,49.799999,60,69.699997,79.800003,90.400002,100,109.900002,120.400002,130,140,150.199997,159.899994,170.300003,179.800003,189.800003,197.800003,210,219.800003,230.100006,240.199997,250.300003,260.100006,269.600006,280.200012,289.899994,300.200012,310,319.600006,329.799988,340.299988,350.100006,360.100006,379.799988,400.100006,447.899994,500.100006,550.099976,600.299988,648.299988,700.299988,749.900024,799.799988,849.900024,899.700012,950.200012,999.599976,1049.699951,1100.300049,1150.199951,1200.099976,1249.800049,1300.199951,1350.099976,1399.900024,1450.099976,1499.900024,1550.199951,1600.099976,1649.800049,1699.300049,1750,1799.800049,1849.699951,1899.900024,1949.900024],[22.819,22.792,22.767,22.731001,22.671,22.639999,22.566999,22.528999,22.473,22.434999,22.434,22.399,21.851,21.448999,20.837999,20.555,20.424,19.99,19.677999,19.35,19.042999,18.539,18.290001,17.849001,17.495001,17.371,16.836,16.493,16.275999,16.023001,15.938,15.664,15.429,15.376,15.102,14.904,14.683,14.219,13.849,12.918,12.152,11.693,11.118,10.471,10.002,9.557,9.058,8.529,7.567,6.877,6.146,5.508,5.132,4.725,4.516,4.29,4.103,3.846,3.705,3.496,3.32,3.166,3.048,2.923,2.83,2.76,2.679,2.599,2.527,2.473],[35.130001,35.131001,35.138,35.146,35.166,35.176998,35.186001,35.187,35.187,35.187,35.188,35.201,35.394001,35.437,35.5,35.519001,35.526001,35.558998,35.584,35.595001,35.606998,35.618999,35.631001,35.658001,35.659,35.653,35.624001,35.602001,35.589001,35.571999,35.563999,35.537998,35.516998,35.514,35.488998,35.469002,35.441002,35.387001,35.344002,35.214001,35.104,35.041,34.955002,34.858002,34.787998,34.729,34.666,34.610001,34.529999,34.487999,34.453999,34.443001,34.448002,34.459,34.477001,34.512001,34.530998,34.558998,34.571999,34.585999,34.598999,34.612999,34.623001,34.639,34.646999,34.657001,34.667999,34.681999,34.692001,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_026","geolocation":{"type":"Point","coordinates":[63.439,-24.793]},"basin":3,"timestamp":"2010-09-08T05:17:10.999Z","date_updated_argovis":"2023-01-26T10:39:30.534Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_026.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.7,20.4,30,39.5,50.200001,60.299999,70.400002,79.900002,89.900002,99.699997,110.199997,120.099998,130.600006,140.100006,150.399994,159.899994,170.399994,179.800003,189.800003,199.600006,210.300003,220.399994,230,240.199997,249.800003,259.399994,270.200012,278.200012,290.200012,299.899994,310.100006,320.200012,330.100006,339.799988,350.200012,360,380.200012,399.5,449.600006,500.299988,550.400024,599.700012,650.099976,700.299988,749.900024,800,850.299988,897.599976,949.900024,1000.099976,1049.599976,1100,1149.400024,1199.900024,1249.800049,1300.099976,1350.300049,1400.400024,1450.400024,1499.800049,1550.5,1600.199951,1649.900024,1700,1750.5,1799.800049,1850.199951,1900,1949.400024,1997.099976],[22.399,22.398001,22.396,22.396,22.396999,22.4,22.4,22.370001,22.348,22.284,22.006001,21.625999,21.57,21.355,20.722,20.202,20.034,19.740999,19.504999,19.105,18.611,18.41,17.945,17.538,17.309,17.131001,16.789,16.559,16.236,15.882,15.75,15.31,15.055,14.806,14.606,14.385,14.063,13.509,13.228,12.539,11.885,11.288,10.66,10.08,9.583,9.16,8.632,7.948,7.132,6.397,5.844,5.238,4.803,4.561,4.426,4.182,3.971,3.724,3.578,3.436,3.345,3.257,3.133,2.902,2.827,2.714,2.637,2.585,2.53,2.471,2.422],[35.179001,35.179001,35.178001,35.178001,35.178001,35.178001,35.178001,35.183998,35.199001,35.308998,35.369999,35.391998,35.405998,35.433998,35.507999,35.549,35.556999,35.575001,35.584999,35.591999,35.617001,35.619999,35.632999,35.659,35.646999,35.651001,35.626999,35.608002,35.584,35.550999,35.540001,35.501999,35.48,35.452999,35.431,35.403,35.367001,35.296001,35.256001,35.160999,35.071999,34.987,34.891998,34.805,34.735001,34.68,34.623001,34.557999,34.5,34.464001,34.448002,34.449001,34.465,34.494999,34.511002,34.528,34.544998,34.574001,34.584999,34.597,34.602001,34.608002,34.619999,34.643002,34.653,34.662998,34.672001,34.68,34.688,34.696999,34.706001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_025","geolocation":{"type":"Point","coordinates":[63.815,-24.733]},"basin":3,"timestamp":"2010-08-29T02:26:09.000Z","date_updated_argovis":"2023-01-26T10:39:28.770Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_025.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,9.8,20.5,30.299999,39.599998,50.299999,59.400002,69.699997,80.199997,90,99.300003,110,119.900002,130,140.199997,150.399994,160.5,170.199997,180.300003,190,200.100006,210,219.399994,230.199997,240.199997,250.399994,260.399994,270.100006,279.899994,289.899994,300.200012,310.299988,320.200012,330.100006,340.200012,350.200012,360,380.100006,399.799988,450.200012,499.700012,549.700012,599.5,650.099976,699.799988,749.900024,800,849.5,899.700012,950,1000.299988,1049.900024,1100,1150.400024,1200,1249.599976,1299.5,1349.900024,1399.900024,1450.099976,1500.099976,1549.800049,1599.900024,1649.599976,1700.199951,1749.599976,1800,1849.5,1899.300049,1950.099976],[22.164,22.16,22.162001,22.17,22.174,22.174999,22.177,22.187,22.187,22.184,22.191,21.924999,21.483999,21.063999,20.922001,20.853001,20.224001,19.981001,19.459999,19.080999,18.843,18.622,18.504999,18.152,17.858,17.313,16.882999,16.488001,16.219999,16.025,15.58,15.566,15.224,14.981,14.74,14.547,14.206,13.715,13.501,12.573,11.944,11.415,10.871,10.303,9.844,9.379,8.808,8.152,7.246,6.529,5.865,5.14,4.806,4.48,4.315,4.199,4.003,3.799,3.604,3.458,3.314,3.212,3.075,2.891,2.811,2.699,2.609,2.552,2.495,2.452],[35.275002,35.276001,35.276001,35.273998,35.273998,35.273998,35.275002,35.280998,35.278999,35.277,35.279999,35.400002,35.467999,35.511002,35.521,35.528,35.591999,35.613998,35.650002,35.661999,35.673,35.674999,35.675999,35.679001,35.672001,35.657001,35.625,35.601002,35.576,35.558998,35.518002,35.515999,35.485001,35.459999,35.441002,35.426998,35.382999,35.314999,35.285999,35.167,35.077999,35.002998,34.921001,34.835999,34.771,34.703999,34.638,34.577,34.506001,34.473,34.442001,34.448002,34.480999,34.492001,34.521999,34.533001,34.542,34.563,34.584999,34.601002,34.612,34.620998,34.629002,34.645,34.653,34.665001,34.676998,34.685001,34.692001,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_024","geolocation":{"type":"Point","coordinates":[64.122,-24.738]},"basin":3,"timestamp":"2010-08-18T21:44:03.004Z","date_updated_argovis":"2023-01-26T10:39:26.917Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_024.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":24,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.9,20.1,30,40.400002,50.099998,59.799999,69.800003,80,90.199997,99.900002,109.800003,118.300003,129.899994,140.199997,150.5,159.800003,170,180.199997,190.100006,199.399994,209.899994,220,230.399994,239.800003,249.800003,260.200012,268.700012,280.299988,289.899994,300.200012,309.700012,320.299988,329.5,339.600006,350,359.799988,380.200012,399.5,449.899994,499.600006,549.599976,599.599976,650.099976,699.799988,750,799.599976,850,898.599976,950.200012,1000.200012,1050.099976,1100.099976,1149.599976,1200,1250,1299.699951,1350.300049,1400.199951,1449.800049,1500,1549.5,1600.300049,1649.699951,1700.099976,1750.300049,1800.199951,1849.699951,1900,1949.599976,1997],[22.615999,22.620001,22.621,22.622999,22.625999,22.628,22.629999,22.631001,22.632999,22.627001,22.540001,22.475,22.294001,21.83,21.361,20.857,20.204,19.514,19.281,19.176001,19.056999,18.606001,18.302,17.468,17.011999,16.982,16.614,16.34,16.253,15.889,15.583,15.484,15.092,14.884,14.747,14.538,14.335,13.937,13.334,12.511,11.939,11.323,10.791,10.249,9.82,9.326,8.743,7.864,7.264,6.39,5.562,5.08,4.817,4.501,4.309,4.177,3.981,3.755,3.665,3.531,3.398,3.227,3.099,3.005,2.875,2.781,2.66,2.559,2.469,2.402,2.385],[35.182999,35.182999,35.183998,35.182999,35.182999,35.182999,35.182999,35.183998,35.183998,35.186001,35.209999,35.243999,35.348999,35.421001,35.478001,35.507999,35.560001,35.629002,35.652,35.664001,35.667,35.674999,35.675999,35.653,35.629002,35.627998,35.598999,35.583,35.576,35.543999,35.518002,35.507999,35.470001,35.452999,35.441002,35.418999,35.396999,35.348999,35.265999,35.155998,35.076,34.987999,34.910999,34.827,34.765999,34.700001,34.632,34.550999,34.507999,34.458,34.441002,34.452,34.471001,34.493,34.521999,34.535999,34.546001,34.570999,34.583,34.594002,34.605999,34.622002,34.631001,34.638,34.648998,34.658001,34.671001,34.682999,34.695999,34.705002,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_023","geolocation":{"type":"Point","coordinates":[64.195,-24.65]},"basin":3,"timestamp":"2010-08-08T18:17:33.001Z","date_updated_argovis":"2023-01-26T10:39:25.202Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_023.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":23,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.6,19.5,29.299999,39.5,49.5,60.200001,69.800003,79.699997,88.800003,100.300003,108.699997,120,130.199997,140.199997,150,159.899994,170,180.399994,190.300003,200,209.899994,220.100006,229.699997,239.5,248.199997,260.399994,270.200012,279.799988,290.100006,300,310.399994,320,329.700012,339.799988,350.100006,359.799988,379.299988,399.600006,450,499.700012,549.700012,600.099976,650,700.099976,750,800.200012,850.099976,899.900024,950,1000.099976,1049.400024,1100.099976,1149.900024,1199.900024,1249.800049,1300.199951,1349.699951,1399.800049,1449.5,1499.5,1549.5,1600.099976,1649.599976,1700,1750.099976,1799.900024,1849.599976,1899.699951,1949.699951],[22.936001,22.944,22.950001,22.945,22.951,22.950001,22.950001,22.955999,22.959,22.962999,22.959,22.945999,21.740999,21.152,20.672001,20.214001,19.548,19.301001,18.993999,18.690001,18.318001,17.848,17.403,16.907,16.656,16.469999,16.103001,15.962,15.757,15.429,15.174,14.799,14.552,14.254,13.872,13.626,13.411,13.127,13.001,12.35,11.791,11.379,10.904,10.44,9.999,9.325,8.769,8.005,7.121,6.243,5.759,5.276,4.85,4.53,4.32,4.183,3.926,3.787,3.632,3.501,3.288,3.164,3.061,2.962,2.792,2.668,2.599,2.524,2.498,2.432],[35.187,35.187,35.187,35.187,35.186001,35.186001,35.187,35.186001,35.186001,35.187,35.186001,35.188999,35.442001,35.494999,35.525002,35.537998,35.615002,35.626999,35.636002,35.647999,35.653999,35.665001,35.637001,35.612,35.591999,35.578999,35.555,35.542999,35.525002,35.502998,35.48,35.438999,35.408001,35.374001,35.330002,35.299,35.271,35.237999,35.216,35.132999,35.053001,34.995998,34.924999,34.856998,34.792,34.702999,34.634998,34.564999,34.506001,34.463001,34.441002,34.445999,34.476002,34.501999,34.512001,34.544998,34.543999,34.566002,34.584,34.598999,34.617001,34.626999,34.633999,34.641998,34.658001,34.669998,34.68,34.688,34.693001,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_022","geolocation":{"type":"Point","coordinates":[64.138,-24.35]},"basin":3,"timestamp":"2010-07-29T13:28:56.000Z","date_updated_argovis":"2023-01-26T10:39:23.501Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_022.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":22,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10.4,19.4,29.6,40.299999,50.200001,59.400002,67.599998,80.199997,90,100.400002,109.900002,120.300003,129.899994,140.100006,149.699997,159.5,169.399994,180,190.100006,200.300003,209.699997,220.100006,229.5,240,250.300003,260.399994,270.200012,280,290.100006,300.299988,310.100006,319.899994,330.299988,339.700012,349.5,359.799988,380,399.700012,449.5,499.899994,549.900024,599.400024,649.5,700,750.400024,800.299988,849.599976,900.299988,950.299988,1000.099976,1050,1100,1150,1199.099976,1250.300049,1300.400024,1349.900024,1400.199951,1449.5,1500.099976,1549.800049,1600.199951,1649.699951,1699.5,1749.900024,1800.300049,1849.800049,1900,1949.900024,1999.300049],[23.159,23.136,23.106001,23.101,23.099001,23.099001,23.101,23.106001,23.049999,22.691999,22.033001,21.202,20.722,20.197001,19.879999,19.488001,18.940001,18.653,18.150999,17.948999,17.608,17.296,16.660999,16.238001,15.78,15.488,15.116,14.915,14.751,14.516,14.318,14.11,13.925,13.725,13.559,13.355,13.178,13.006,12.71,12.187,11.706,11.144,10.662,10.125,9.647,9.133,8.66,7.911,7.135,6.292,5.907,4.955,4.694,4.539,4.375,4.092,3.912,3.73,3.603,3.42,3.228,3.134,2.972,2.839,2.717,2.625,2.581,2.537,2.47,2.426,2.378],[35.186001,35.186001,35.188,35.188999,35.188999,35.189999,35.189999,35.195,35.292,35.360001,35.424,35.505001,35.512001,35.549999,35.577,35.625,35.651001,35.653,35.651001,35.646,35.633999,35.622002,35.584999,35.562,35.535999,35.511002,35.473999,35.453999,35.438,35.411999,35.388,35.366001,35.342999,35.318001,35.296001,35.268002,35.244999,35.221001,35.182999,35.112,35.041,34.959999,34.887001,34.812,34.743,34.678001,34.625,34.557999,34.506001,34.463001,34.451,34.450001,34.474998,34.495998,34.525002,34.543999,34.563999,34.581001,34.588001,34.608002,34.616001,34.627998,34.641998,34.653999,34.666,34.678001,34.683998,34.691002,34.699001,34.703999,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_021","geolocation":{"type":"Point","coordinates":[64.205,-24.12]},"basin":3,"timestamp":"2010-07-19T10:22:57.999Z","date_updated_argovis":"2023-01-26T10:39:21.590Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_021.nc","date_updated":"2015-06-18T13:20:59.000Z"}],"cycle_number":21,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,10.1,20.5,30,40,49.400002,60.200001,69.800003,79.800003,90.5,100.5,109.699997,120.300003,127.099998,140.300003,149.5,160.199997,169.800003,180.100006,190,199.600006,210.199997,219.600006,227.600006,240.100006,249.699997,259.899994,269.899994,280.200012,289.799988,299.899994,310.200012,320.200012,329.5,340.200012,349.799988,360.200012,379.399994,400,450.299988,499.799988,549.700012,600.299988,650.200012,700.400024,749.799988,799.799988,849.299988,900.299988,949.599976,999.299988,1049.300049,1100.099976,1150.099976,1200.300049,1249.900024,1299.5,1349.300049,1399.699951,1450.199951,1499.699951,1549.699951,1600.099976,1649.5,1700,1749.699951,1800.199951,1850,1899.800049,1949.199951],[24.004,23.975,23.921,23.906,23.674999,23.638,23.594,23.511,23.493999,23.364,21.981001,21.184999,20.497999,19.986,19.313,18.917,18.576,18.285999,17.945999,17.552,17.021999,16.792,16.399,16.364,15.901,15.692,15.556,15.294,14.963,14.904,14.529,14.277,14.035,13.857,13.744,13.645,13.517,13.187,12.908,12.085,11.606,10.977,10.502,9.969,9.53,8.762,8.165,7.199,6.455,5.877,5.236,4.956,4.507,4.376,4.205,3.952,3.719,3.517,3.396,3.254,3.146,3.043,2.947,2.826,2.707,2.647,2.578,2.538,2.49,2.434],[35.005001,35.004002,35.005001,35.006001,35.051998,35.151001,35.166,35.160999,35.186001,35.237999,35.421001,35.483002,35.533001,35.573002,35.598999,35.640999,35.662998,35.660999,35.646999,35.644001,35.622002,35.613998,35.583,35.583,35.544998,35.528999,35.514,35.493,35.462002,35.462002,35.415001,35.391998,35.361,35.334,35.321999,35.306999,35.292,35.250999,35.213001,35.104,35.035999,34.942001,34.869999,34.791,34.73,34.639999,34.584,34.507,34.471001,34.451,34.443001,34.452999,34.484001,34.518002,34.536999,34.556999,34.574001,34.584999,34.596001,34.612999,34.625,34.640999,34.651001,34.662998,34.674,34.681,34.688,34.693001,34.698002,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_020","geolocation":{"type":"Point","coordinates":[64.287,-23.926]},"basin":3,"timestamp":"2010-07-09T05:42:45.000Z","date_updated_argovis":"2023-01-26T10:39:19.776Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_020.nc","date_updated":"2015-06-18T13:20:58.000Z"}],"cycle_number":20,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.1,19.6,30.200001,39.799999,50,59.900002,69.699997,79.599998,90.400002,100.199997,110.300003,120.300003,130.5,140.300003,149.600006,159.399994,168.600006,180.300003,190.100006,200.399994,210.100006,220.199997,230.300003,239.5,249,260.399994,270.399994,279.799988,290,299.899994,309.899994,319.600006,330.100006,340.100006,349.5,359.299988,380.200012,399.899994,450.100006,499.799988,550.299988,600.099976,649.700012,700.299988,750.200012,799.900024,850.200012,900,949.700012,999.599976,1049.900024,1100.300049,1149.900024,1200,1250,1300.199951,1349.900024,1400,1450.099976,1499.599976,1549.300049,1600,1649.900024,1699.400024,1749.800049,1799.400024,1849.800049,1899.800049,1949.699951,1998.800049],[23.455999,23.455999,23.458,23.459999,23.461,23.461,23.462999,23.464001,23.466999,23.469,22.995001,21.865999,20.909,20.455,20.038,19.570999,19.111,18.834999,18.313,18.059,17.577,17.341999,16.966,16.705,16.368,16.052,15.647,15.364,15.174,14.924,14.613,14.404,14.274,14.123,13.786,13.683,13.561,13.342,12.897,12.139,11.332,10.871,10.257,9.665,9.282,8.634,7.758,7.04,6.437,5.679,4.929,4.61,4.363,4.203,4.053,3.892,3.745,3.565,3.342,3.222,3.145,3.029,2.908,2.822,2.764,2.638,2.57,2.514,2.463,2.403,2.342],[35.215,35.215,35.216,35.216,35.216,35.216,35.216,35.216,35.216,35.221001,35.347,35.481998,35.541,35.598999,35.569,35.646,35.660999,35.664001,35.657001,35.653,35.627998,35.618999,35.604,35.591999,35.568001,35.551998,35.526001,35.502998,35.484001,35.470001,35.433998,35.400002,35.393002,35.375,35.332001,35.317001,35.304001,35.280998,35.219002,35.115002,34.995998,34.926998,34.834999,34.749001,34.696999,34.622002,34.547001,34.498001,34.471001,34.446999,34.452,34.473,34.507999,34.530998,34.544998,34.558998,34.574001,34.598,34.603001,34.616001,34.625999,34.639999,34.654999,34.665001,34.669998,34.681,34.688999,34.695,34.701,34.707001,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_019","geolocation":{"type":"Point","coordinates":[64.386,-23.816]},"basin":3,"timestamp":"2010-06-29T02:17:11.000Z","date_updated_argovis":"2023-01-26T10:39:17.941Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_019.nc","date_updated":"2015-06-18T13:20:58.000Z"}],"cycle_number":19,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.3,20,30.1,39,49.700001,59.400002,70.199997,80.300003,90.5,98.300003,110.400002,119.099998,130.199997,139.5,149.899994,160.199997,169,180.100006,190.300003,200.100006,210.300003,219.800003,229.899994,240.199997,250,260.100006,269.700012,280.200012,290.100006,299.799988,309.299988,319.299988,329.399994,339.600006,349.899994,360.100006,379.5,400,447.700012,500,549.799988,599.5,649.299988,700,750,799.900024,849.400024,899.599976,949.599976,1000.200012,1050,1099.900024,1150.199951,1200.199951,1249.5,1299.300049,1349.5,1399.699951,1449.900024,1499.400024,1550,1599.599976,1649.5,1699.199951,1748.5,1799.800049,1849.800049,1899.800049,1949.099976],[24.333,24.339001,24.346001,24.348,24.349001,24.349001,24.360001,24.216,24.124001,23.938999,23.219,21.542999,20.83,20.358999,19.672001,19.548,19.278999,18.955999,18.813,18.358999,18.027,17.76,17.361,16.954,16.743,16.450001,16.146999,15.869,15.67,15.394,15.129,14.904,14.743,14.477,14.223,14.048,13.94,13.546,13.081,12.129,11.252,10.519,9.992,9.592,9.147,8.265,7.644,7.059,6.291,5.661,5.136,4.822,4.549,4.291,4.179,3.892,3.783,3.611,3.429,3.18,3.086,2.998,2.87,2.84,2.739,2.666,2.549,2.484,2.429,2.379],[35.127998,35.127998,35.126999,35.127998,35.126999,35.127998,35.160999,35.236,35.250999,35.285,35.373001,35.472,35.514999,35.548,35.608002,35.629002,35.646,35.650002,35.652,35.634998,35.653,35.646999,35.640999,35.631001,35.632999,35.616001,35.601002,35.583,35.566002,35.535999,35.508999,35.486,35.469002,35.436001,35.403999,35.382,35.367001,35.314999,35.250999,35.115002,34.984001,34.875,34.797001,34.738998,34.678001,34.59,34.537998,34.500999,34.464001,34.441002,34.445,34.463001,34.486,34.521999,34.546001,34.544998,34.57,34.592999,34.609001,34.619999,34.630001,34.640999,34.653,34.66,34.671001,34.68,34.692001,34.698002,34.703999,34.709]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_018","geolocation":{"type":"Point","coordinates":[64.527,-23.671]},"basin":3,"timestamp":"2010-06-18T21:36:01.998Z","date_updated_argovis":"2023-01-26T10:39:16.099Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_018.nc","date_updated":"2015-06-18T13:20:58.000Z"}],"cycle_number":18,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,10.2,19.5,29,39.599998,50.099998,59.299999,70.099998,80.300003,90.400002,99.800003,110,119.900002,130.699997,140.300003,150.199997,160.100006,169.800003,179.600006,189.600006,200.100006,210.399994,219.800003,230.100006,239.899994,249.800003,259.799988,267.700012,280.200012,289.799988,299.899994,310.100006,320.399994,329.700012,339.799988,349.899994,360.299988,379.5,399.600006,450.200012,499.700012,550.200012,600,650.200012,699.5,749.400024,800.099976,849,899.799988,949.900024,1000,1049.699951,1100.199951,1149.5,1199.900024,1250,1299.800049,1349.5,1400.199951,1449.800049,1499.5,1550.099976,1599.599976,1649.800049,1699.699951,1750,1800.099976,1849.699951,1900,1949.400024,1999.699951],[24.448,24.451,24.455999,24.462999,24.462999,24.466999,24.469,24.468,24.459,24.15,23.391001,21.919001,21.138,20.875,20.159,19.716,19.42,19.212999,18.855,18.586,18.202,18.042,17.702999,17.288,16.945,16.813,16.452999,16.277,15.827,15.366,15.071,14.788,14.563,14.358,14.189,14.062,13.842,13.509,12.984,11.997,11.187,10.515,10.049,9.548,9.119,8.672,7.801,6.954,6.327,5.63,5.051,4.633,4.36,4.295,4.018,3.786,3.6,3.553,3.44,3.278,3.097,2.992,2.868,2.771,2.649,2.593,2.543,2.476,2.436,2.37,2.316],[35.215,35.214001,35.215,35.214001,35.215,35.215,35.215,35.215,35.219002,35.278,35.381001,35.453999,35.491001,35.505001,35.551998,35.583,35.604,35.622002,35.638,35.643002,35.643002,35.640999,35.634998,35.629002,35.620998,35.612999,35.597,35.599998,35.577999,35.523998,35.488998,35.455002,35.431,35.403999,35.383999,35.379002,35.355,35.306999,35.238998,35.096001,34.973999,34.874001,34.805,34.731998,34.675999,34.625,34.548,34.493999,34.464001,34.443001,34.446999,34.466,34.497002,34.547001,34.547001,34.555,34.577,34.601002,34.612,34.620998,34.630001,34.638,34.652,34.667999,34.676998,34.687,34.692001,34.700001,34.702999,34.708,34.714001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_017","geolocation":{"type":"Point","coordinates":[64.82,-23.621]},"basin":3,"timestamp":"2010-06-08T18:19:47.999Z","date_updated_argovis":"2023-01-26T10:39:14.197Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_017.nc","date_updated":"2015-06-18T13:20:58.000Z"}],"cycle_number":17,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.7,10,18.799999,30.1,40.400002,49.900002,60.200001,69.800003,79.800003,90.300003,100.300003,110.099998,120.199997,129.5,140.199997,148.800003,159.800003,170.399994,180.199997,190.100006,200.300003,210.300003,220,229.600006,239.800003,250.199997,259.700012,270.200012,280.399994,289.700012,300.200012,310.100006,320.100006,329.600006,340.100006,349.399994,360,380.100006,400.100006,450.200012,499.600006,549.700012,599.299988,649.799988,700.299988,749.799988,800.200012,847.5,900.200012,950.099976,999.400024,1050,1099.400024,1149.699951,1200,1249.5,1300,1349.900024,1400.199951,1450.300049,1500.199951,1549.800049,1600.300049,1650.099976,1699.900024,1750.099976,1800,1850.099976,1899.5,1949.599976],[24.938999,24.945,24.958,24.917999,24.898001,24.874001,24.860001,24.819,24.785999,24.777,23.222,22,21.568001,20.846001,20.434,20.236,19.862,19.65,19.101999,18.754999,18.365999,17.982,17.763,17.486,17.361,17.153,16.827,16.400999,15.839,15.57,15.39,15.297,15.084,14.677,14.483,14.274,14.056,13.572,13.098,11.873,11.242,10.536,10.065,9.596,9.013,8.492,7.609,6.917,6.066,5.445,4.984,4.646,4.484,4.371,4.044,3.89,3.748,3.525,3.439,3.345,3.177,3.028,2.795,2.703,2.61,2.574,2.503,2.455,2.407,2.354],[35.176998,35.18,35.215,35.251999,35.244999,35.244999,35.244999,35.240002,35.242001,35.244999,35.362999,35.414001,35.442001,35.498001,35.535,35.557999,35.583,35.601002,35.634998,35.665001,35.651001,35.646,35.634998,35.631001,35.625999,35.619999,35.604,35.575001,35.534,35.518002,35.514999,35.508999,35.488998,35.442001,35.425999,35.396,35.369999,35.313,35.25,35.078999,34.983002,34.876999,34.805,34.737,34.662998,34.606998,34.535,34.492001,34.457001,34.439999,34.453999,34.477001,34.505001,34.528999,34.542,34.566002,34.581001,34.598,34.613998,34.622002,34.626999,34.639,34.660999,34.671001,34.676998,34.683998,34.691002,34.700001,34.707001,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_016","geolocation":{"type":"Point","coordinates":[65.229,-23.259]},"basin":3,"timestamp":"2010-05-29T13:50:45.996Z","date_updated_argovis":"2023-01-26T10:39:12.386Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_016.nc","date_updated":"2015-06-18T13:20:58.000Z"}],"cycle_number":16,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.1,19.5,29.6,39.5,50.099998,60.099998,69.900002,80,89.900002,99.300003,109.900002,119.800003,130.100006,139.699997,149.800003,160,169.199997,179.899994,190,200.100006,209.600006,220,230.100006,239.199997,249.399994,259.799988,270.200012,280.100006,289.899994,299.799988,309.5,320,330.100006,340,349.899994,359.399994,379.899994,399.600006,450,499.799988,549.299988,600.099976,649.200012,700.099976,749.900024,799.900024,849.400024,899.400024,949.799988,999.099976,1049.599976,1099.5,1149.699951,1199.599976,1250,1299.300049,1349.199951,1399.400024,1449.699951,1499.599976,1549.800049,1599.699951,1649.599976,1699.300049,1749.599976,1799.599976,1849.800049,1899.699951,1949.199951,1998.699951],[25.233,25.236,25.238001,25.231001,25.205,25.198999,25.190001,23.535999,22.834,22.018999,21.858,21.393999,21.032,20.785999,20.554001,20.257999,19.934999,19.610001,19.291,18.999001,18.653999,18.351,18.018999,17.690001,17.344,17.216,16.895,16.527,16.341,15.878,15.581,15.38,15.135,14.916,14.518,14.26,13.985,13.394,12.878,12.02,11.198,10.541,9.966,9.463,9.084,8.435,7.889,7.16,6.205,5.42,5.004,4.775,4.531,4.356,4.121,3.991,3.691,3.542,3.392,3.209,3.092,3.012,2.861,2.756,2.668,2.577,2.515,2.437,2.416,2.349,2.306],[35.191002,35.191002,35.192001,35.216999,35.222,35.222,35.224998,35.344002,35.383999,35.445,35.448002,35.48,35.521999,35.551998,35.583,35.613998,35.627998,35.641998,35.644001,35.657001,35.674,35.691002,35.699001,35.685001,35.660999,35.666,35.676998,35.643002,35.626999,35.581001,35.560001,35.541,35.512001,35.480999,35.432999,35.394001,35.358002,35.280998,35.217999,35.099998,34.976002,34.876999,34.792,34.717999,34.669998,34.602001,34.554001,34.505001,34.459999,34.439999,34.443001,34.465,34.483002,34.521,34.556999,34.585999,34.576,34.599998,34.612999,34.625999,34.639999,34.650002,34.664001,34.669998,34.675999,34.685001,34.693001,34.702,34.706001,34.714001,34.717999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_015","geolocation":{"type":"Point","coordinates":[65.433,-22.776]},"basin":3,"timestamp":"2010-05-19T10:15:51.999Z","date_updated_argovis":"2023-01-26T10:39:10.505Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_015.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":15,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,10.4,20.200001,30.1,39.900002,50,59.799999,70.699997,80.699997,89.699997,100.400002,109.900002,120,130.300003,138.899994,150,160.100006,169.600006,179.5,189.199997,200.100006,209.899994,220.300003,230.300003,239.600006,250.199997,259.399994,269.600006,279.600006,290.200012,300.399994,309.799988,320.100006,329.899994,339.700012,350.100006,359.299988,380.200012,399.700012,450.200012,499.899994,549.799988,599.700012,649.799988,697,749.799988,799.599976,850.099976,900,949.700012,999.400024,1050.400024,1100,1149.300049,1199.800049,1249.900024,1299.599976,1349.900024,1400.099976,1449.099976,1499.5,1550.400024,1599.5,1649.699951,1699.300049,1750.199951,1799.5,1849.800049,1899.699951,1949.699951],[26.122999,26.131001,26.129999,26.129,26.094999,26.044001,26.056999,26.045,24.893,23.136999,22.348,21.753,21.468,21.146999,20.875,20.358,19.971001,19.704,19.242001,18.851,18.608999,18.426001,17.895,17.393999,16.959,16.665001,16.434999,16.291,16.164,15.641,15.267,14.968,14.804,14.54,14.161,13.892,13.714,13.387,13.042,12.088,11.515,10.974,10.408,9.769,9.209,8.518,7.951,7.045,6.145,5.388,5.035,4.53,4.391,4.113,3.928,3.809,3.691,3.516,3.328,3.195,3.094,3.007,2.861,2.767,2.639,2.585,2.538,2.452,2.388,2.351],[34.977001,34.976002,34.976002,34.979,35.009998,35.134998,35.144001,35.158001,35.292999,35.353001,35.401001,35.443001,35.466,35.493999,35.518002,35.563,35.612999,35.623001,35.641998,35.655998,35.669998,35.672001,35.660999,35.636002,35.616001,35.604,35.59,35.597,35.59,35.529999,35.486,35.459,35.442001,35.412998,35.369999,35.337002,35.314999,35.276001,35.23,35.099998,35.018002,34.937,34.851002,34.761002,34.687,34.610001,34.558998,34.5,34.459999,34.437,34.442001,34.462002,34.493999,34.527,34.550999,34.563999,34.585999,34.595001,34.613998,34.627998,34.644001,34.650002,34.661999,34.667999,34.68,34.686001,34.691002,34.701,34.709,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_014","geolocation":{"type":"Point","coordinates":[65.189,-22.226]},"basin":3,"timestamp":"2010-05-09T06:08:18.000Z","date_updated_argovis":"2023-01-26T10:39:08.702Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_014.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":14,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,9.9,19.6,29.6,39.299999,49.900002,59.900002,70.400002,80.599998,90.199997,98.5,110.300003,120.400002,129.600006,139.800003,149.899994,159.800003,170.300003,180.399994,189.899994,199.600006,209.399994,219.5,230.199997,239.800003,250.399994,259.899994,270,279.799988,289.799988,299.799988,310.200012,319.700012,330.100006,340,349.700012,359.899994,379.100006,399.299988,450,499.899994,549.400024,599.700012,649.200012,699.799988,749.700012,799.299988,849.5,900.299988,949.700012,1000.099976,1049.699951,1100.199951,1148.300049,1199.900024,1249.900024,1299.5,1349.300049,1400,1450.099976,1499.800049,1549.400024,1599.5,1649.599976,1699.900024,1748.5,1800.199951,1849.5,1899.199951,1949.400024],[26.74,26.737,26.73,26.664,26.577999,26.549,26.525,26.237,24.058001,22.976999,22.638,22.191,21.580999,21.160999,20.625999,20.49,20.221001,19.672001,19.381001,19.034,18.635,18.365999,18.080999,17.782,17.660999,17.332001,17.176001,16.827,16.377001,15.981,15.753,15.349,15.034,14.686,14.391,13.938,13.764,13.446,13.057,12.48,11.891,11.202,10.506,9.826,9.223,8.724,8.064,7.329,6.398,5.571,5.034,4.681,4.437,4.189,3.962,3.794,3.758,3.592,3.324,3.173,3.061,2.917,2.811,2.725,2.634,2.555,2.473,2.408,2.372,2.337],[35.035,35.035,35.042,35.153999,35.174999,35.176998,35.18,35.195,35.273998,35.339001,35.365002,35.382999,35.453999,35.506001,35.542,35.560001,35.585999,35.630001,35.686001,35.675999,35.657001,35.651001,35.646,35.641998,35.633999,35.626999,35.632,35.613998,35.589001,35.556999,35.541,35.500999,35.467999,35.425999,35.395,35.344002,35.323002,35.282001,35.229,35.148998,35.069,34.969002,34.865002,34.765999,34.682999,34.630001,34.569,34.516998,34.463001,34.438999,34.442001,34.456001,34.481998,34.516998,34.555,34.576,34.598999,34.611,34.617001,34.629002,34.638,34.651001,34.661999,34.671001,34.68,34.688999,34.699001,34.707001,34.709999,34.714001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_013","geolocation":{"type":"Point","coordinates":[64.706,-21.935]},"basin":3,"timestamp":"2010-04-29T02:05:24.000Z","date_updated_argovis":"2023-01-26T10:39:06.899Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_013.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":13,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.7,19.9,30.299999,40,49.799999,60.400002,70.199997,80,89.699997,98.800003,110.199997,120.099998,130.300003,140.300003,150.100006,160.199997,169.899994,179.5,190,200.199997,210,219.800003,230.399994,239.600006,249.699997,259.700012,269.700012,279.799988,287.899994,300.200012,310.299988,319.899994,329.799988,340.200012,349.5,359.700012,379.5,399.700012,449.899994,500.200012,550,600.099976,649.700012,699.900024,749.700012,799.900024,849.900024,900.099976,949.599976,999.400024,1050.099976,1100.300049,1149.599976,1200.199951,1250,1300.099976,1349.900024,1399.800049,1449.699951,1500.099976,1549.900024,1600.099976,1649.400024,1699.800049,1749.699951,1800.300049,1850.199951,1899.599976,1949.900024,2000.599976],[26.596001,26.598,26.606001,26.610001,26.607,26.606001,26.511999,24.353001,23.327,22.802999,22.549,21.993999,21.584999,21.243,20.707001,20.485001,20.195999,19.944,19.674,19.299999,18.922001,18.874001,18.591,18.216,17.605,17.341,16.962,16.589001,16.290001,16.046,15.688,15.409,15.128,14.849,14.589,14.441,14.173,13.581,13.215,12.457,11.602,10.867,10.246,9.544,8.838,8.315,7.657,6.839,6.123,5.384,5.008,4.63,4.353,4.143,3.977,3.7,3.678,3.616,3.413,3.15,3.04,2.867,2.813,2.654,2.557,2.518,2.467,2.414,2.349,2.299,2.256],[35.150002,35.151001,35.150002,35.150002,35.157001,35.159,35.141998,35.339001,35.361,35.382,35.404999,35.456001,35.493999,35.523998,35.562,35.581001,35.622002,35.646999,35.678001,35.698002,35.650002,35.731998,35.750999,35.744999,35.688,35.666,35.638,35.616001,35.591,35.566002,35.533001,35.504002,35.477001,35.445,35.422001,35.402,35.386002,35.293999,35.248001,35.151001,35.030998,34.923,34.830002,34.733002,34.643002,34.591999,34.535999,34.485001,34.452,34.437,34.452,34.473,34.495998,34.521,34.547001,34.581001,34.612,34.618999,34.629002,34.640999,34.654999,34.662998,34.666,34.679001,34.688,34.694,34.698002,34.703999,34.709999,34.714001,34.717999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_012","geolocation":{"type":"Point","coordinates":[64.522,-21.902]},"basin":3,"timestamp":"2010-04-18T21:43:51.000Z","date_updated_argovis":"2023-01-26T10:39:05.092Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_012.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":12,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.9,10.1,20.1,29.9,38.200001,50,60.099998,70.400002,80.199997,89.5,99.699997,110.199997,120,128.399994,140.100006,150.100006,159.5,170,180.300003,190.300003,200.100006,209.800003,219.399994,229.399994,240,249.699997,259.700012,270,279.700012,290.100006,299.899994,309.700012,320.100006,330,339.299988,349.600006,359.899994,379.100006,399.700012,449.600006,499.899994,549.700012,599.400024,650,699.700012,750,800,849.700012,899.900024,949.599976,999.299988,1049.599976,1099.599976,1149.5,1199.699951,1249.099976,1299.699951,1349.300049,1399.800049,1449.800049,1499.099976,1549.599976,1599,1649.599976,1699.5,1749.5,1799.300049,1849.199951,1899.400024,1949.900024,1999.699951],[26.908001,26.910999,26.916,26.919001,26.922001,26.908001,26.073999,24.129,22.974001,22.601999,22.195999,21.826,21.285999,20.993999,20.403999,19.881001,19.497,19.066,18.858999,18.414,18.048,17.98,17.9,17.862,17.429001,17.014999,16.846001,16.417999,15.979,15.67,15.384,14.974,14.53,14.148,13.804,13.577,13.531,13.304,12.993,12.194,11.616,11.125,10.521,9.669,9.064,8.447,7.765,6.567,6.167,5.501,4.935,4.682,4.426,4.095,3.929,3.87,3.757,3.545,3.337,3.206,3.114,3.014,2.836,2.686,2.56,2.514,2.459,2.421,2.357,2.334,2.282],[35.189999,35.189999,35.188999,35.189999,35.188999,35.193001,35.287998,35.333,35.383999,35.388,35.419998,35.470001,35.583,35.597,35.601002,35.612,35.629002,35.643002,35.639999,35.668999,35.699001,35.737,35.751999,35.749001,35.730999,35.691002,35.679001,35.639,35.591999,35.551998,35.514,35.465,35.415001,35.367001,35.326,35.296001,35.292,35.264999,35.223,35.112,35.028999,34.959,34.868,34.748001,34.667,34.613998,34.554001,34.474998,34.455002,34.435001,34.438999,34.455002,34.477001,34.523998,34.556,34.584,34.598999,34.625,34.632,34.646,34.651001,34.657001,34.667,34.675999,34.688,34.692001,34.699001,34.703999,34.709999,34.713001,34.716999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_011","geolocation":{"type":"Point","coordinates":[64.5,-21.967]},"basin":3,"timestamp":"2010-04-08T18:28:32.999Z","date_updated_argovis":"2023-01-26T10:39:03.397Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_011.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":11,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.5,19.799999,30.1,38.5,50.299999,59.900002,69.900002,80.199997,90.199997,100.300003,109.900002,120.400002,130,139.899994,150.300003,160,170.100006,180.199997,190.300003,199.800003,210,220.300003,229.300003,239.600006,250,258.299988,269.799988,280.200012,290.200012,299.799988,309.799988,319.600006,330,339.700012,349.600006,359.799988,379.5,399.299988,449.899994,500,549.700012,599.700012,650.200012,700.200012,750.099976,799.900024,847.400024,899.900024,950.200012,1000.299988,1050.199951,1100.199951,1149.5,1199.699951,1250.400024,1299.599976,1349.900024,1400.199951,1450,1500.099976,1550.400024,1599.599976,1649.699951,1699.800049,1750.199951,1799.900024,1850.300049,1900.099976,1949.800049],[27.025,27.027,27.025,27.006001,26.950001,26.899,25.209,23.354,22.67,22.114,21.789,21.697001,21.403999,21.181999,21.006001,20.294001,19.990999,19.641001,19.080999,18.693001,18.431,18.054001,17.719999,17.455999,17.086,16.549,16.118,15.69,15.274,15.067,14.807,14.275,14.114,13.904,13.723,13.631,13.401,13.313,12.873,12.207,11.695,11.124,10.75,10.293,9.833,9.102,8.147,7.013,6.301,5.628,5.012,4.758,4.427,4.178,3.986,3.837,3.678,3.56,3.443,3.275,3.109,2.919,2.802,2.746,2.631,2.536,2.47,2.397,2.34,2.301],[35.141998,35.141998,35.141998,35.140999,35.141998,35.151001,35.233002,35.324001,35.360001,35.421001,35.466,35.48,35.522999,35.549999,35.563999,35.598,35.608002,35.638,35.686001,35.707001,35.715,35.708,35.723,35.715,35.696999,35.639,35.595001,35.556,35.498001,35.473999,35.445,35.377998,35.355999,35.331001,35.310001,35.299999,35.273998,35.262001,35.207001,35.116001,35.043999,34.958,34.902,34.834,34.771,34.681,34.584,34.500999,34.460999,34.439999,34.435001,34.457001,34.480999,34.514,34.542999,34.563,34.597,34.623001,34.632,34.641998,34.646999,34.658001,34.671001,34.674999,34.682999,34.695,34.700001,34.707001,34.712002,34.716]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_010","geolocation":{"type":"Point","coordinates":[64.626,-22.143]},"basin":3,"timestamp":"2010-03-29T13:53:55.000Z","date_updated_argovis":"2023-01-26T10:39:01.432Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_010.nc","date_updated":"2015-06-18T13:20:57.000Z"}],"cycle_number":10,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.2,9.6,19.299999,29.6,39.799999,50.200001,60.200001,70.199997,80,90.400002,100.199997,110.5,120.300003,130,139.899994,150.600006,160.600006,170.399994,180.300003,189.699997,199.399994,209,220.399994,230.300003,239.800003,249.399994,260.100006,270.299988,279.600006,290.5,300.299988,309.899994,319.700012,330.299988,340,349.799988,360.399994,380.200012,400.399994,450.299988,500.100006,549.799988,599.599976,650.200012,699.700012,750.299988,800.200012,849.700012,900.299988,949.900024,1000.099976,1050.199951,1099.800049,1150.300049,1199.599976,1250.5,1299.800049,1350,1399.699951,1449.699951,1500.199951,1549.800049,1599.800049,1649.900024,1700.099976,1749.599976,1800,1850.199951,1899.699951,1950.199951,2000.5],[27.181999,27.166,27.139999,27.101,27.094999,27.087,24.746,23.649,23.087999,22.698999,22.284,21.608,21.171,20.757999,20.507,20.108999,19.957001,19.819,19.606001,19.448999,19.259001,19.025999,18.228001,17.649,17.062,16.740999,15.98,15.49,15.169,14.63,14.281,14.153,14.012,13.736,13.561,13.383,13.232,13.063,12.807,12.316,11.84,11.276,10.751,10.218,9.661,8.832,8.179,7.569,6.709,5.694,5.1,4.703,4.456,4.248,3.995,3.856,3.703,3.529,3.363,3.206,3.086,2.971,2.901,2.755,2.626,2.571,2.491,2.428,2.348,2.299,2.283],[35.087002,35.085999,35.083,35.083,35.083,35.09,35.265999,35.291,35.333,35.402,35.445,35.498001,35.540001,35.581001,35.591999,35.619999,35.648998,35.653999,35.681999,35.695,35.699001,35.714001,35.722,35.714001,35.651001,35.655998,35.542999,35.499001,35.464001,35.411999,35.375,35.362999,35.344002,35.313999,35.292,35.269001,35.249001,35.229,35.194,35.129002,35.064999,34.979,34.902,34.825001,34.749001,34.653999,34.589001,34.537998,34.480999,34.441002,34.438,34.466999,34.492001,34.515999,34.535,34.551998,34.573002,34.597,34.622002,34.634998,34.650002,34.66,34.664001,34.672001,34.681999,34.688999,34.696999,34.703999,34.710999,34.716,34.716999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_009","geolocation":{"type":"Point","coordinates":[64.759,-22.405]},"basin":3,"timestamp":"2010-03-19T10:24:36.997Z","date_updated_argovis":"2023-01-26T10:38:59.590Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_009.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.4,10,19.9,29.9,39.400002,49.099998,60.799999,69.800003,78.800003,90.400002,98.599998,110.300003,120.099998,130.5,140.199997,149.899994,160.199997,170,180.399994,188.199997,200.399994,210.100006,219.699997,229.899994,239.699997,249.600006,259.5,269.899994,280.100006,289.399994,300.100006,309.899994,319.700012,329.799988,340,349.700012,360.200012,380.399994,400.100006,450.299988,499.799988,549.599976,599.599976,650.299988,700.099976,749.700012,800.099976,850,900.299988,950.299988,1000.200012,1050,1100.099976,1149.5,1200.099976,1249.699951,1299.800049,1350.300049,1400,1450.099976,1500.400024,1549.900024,1599.699951,1650.199951,1700.300049,1750.099976,1800.099976,1849.800049,1900,1949.900024],[27.399,27.159,27.098,27.007,26.947001,26.875999,26.809,24.632999,23.947001,23.191999,22.504,21.792,21.565001,21.062,20.712,20.591999,20.433001,20.219,19.816,19.6,19.179001,18.871,18.447001,18.165001,17.851,17.686001,17.399,17.046,16.667,16.451,16.216999,15.969,15.453,15.257,14.587,14.359,14.133,13.507,13.124,12.628,12.008,11.528,10.949,10.392,9.741,9.169,8.458,7.839,7.077,6.278,5.658,5.058,4.769,4.469,4.159,3.97,3.867,3.671,3.449,3.256,3.171,3.028,2.894,2.82,2.706,2.639,2.54,2.454,2.425,2.359],[35.049999,35.047001,35.046001,35.046001,35.042999,35.042,35.043999,35.186001,35.215,35.292999,35.362,35.435001,35.463001,35.507,35.533001,35.542999,35.556,35.576,35.615002,35.626999,35.646,35.650002,35.667,35.662998,35.66,35.653999,35.646999,35.653999,35.625999,35.609001,35.594002,35.587002,35.540001,35.513,35.429001,35.401001,35.368999,35.291,35.241001,35.174999,35.085999,35.018002,34.931999,34.849998,34.758999,34.686001,34.612,34.556999,34.504002,34.460999,34.438,34.431999,34.439999,34.499001,34.515999,34.535,34.553001,34.578999,34.597,34.618999,34.625999,34.638,34.652,34.659,34.671001,34.678001,34.692001,34.702999,34.705002,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_008","geolocation":{"type":"Point","coordinates":[65.052,-22.766]},"basin":3,"timestamp":"2010-03-09T05:32:16.000Z","date_updated_argovis":"2023-01-26T10:38:57.727Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_008.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":8,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.8,9.8,20.299999,28.799999,40.099998,50.400002,59,70.400002,78.099998,90.199997,100.199997,110.599998,120.400002,129.699997,139.899994,149.899994,160.300003,170.100006,180,190.300003,199.399994,209.800003,219.399994,229,240.399994,250,259.799988,269.799988,279.899994,290.399994,300,310.299988,320.200012,329.899994,340,349.799988,359.799988,379.700012,400,450.200012,499.799988,549.900024,599.799988,649.799988,700.099976,750.299988,800.099976,850,900.099976,949.5,1000.200012,1049.699951,1100.300049,1150.199951,1200.099976,1249.900024,1299.5,1349.900024,1400.300049,1450.300049,1500.099976,1549.900024,1599.900024,1649.400024,1697.800049,1750.099976,1799.5,1849.800049,1900,1949.5,1999.199951],[28.152,28.152,28.15,28.155001,27.719,27.292,25.711,24.176001,23.650999,23.018,22.805,21.921,21.556999,21.271,20.875999,20.525999,20.156,19.989,19.729,19.406,19.113001,18.855,18.507,18.257999,18.167999,17.667,17.243,16.820999,16.327999,15.955,15.477,14.837,14.693,14.463,14.268,14.015,13.77,13.385,13.206,12.74,12.176,11.675,11.176,10.438,9.947,9.357,8.719,8.162,7.181,6.197,5.539,5.102,4.622,4.354,4.156,3.884,3.709,3.504,3.422,3.296,3.149,2.985,2.932,2.874,2.741,2.662,2.59,2.55,2.502,2.419,2.363],[34.984001,34.984001,34.984001,34.984001,34.958,34.991001,35.106998,35.223999,35.242001,35.292999,35.318001,35.404999,35.446999,35.477001,35.523998,35.560001,35.591999,35.618,35.66,35.659,35.688,35.687,35.692001,35.689999,35.688,35.675999,35.665001,35.646999,35.627998,35.589001,35.532001,35.451,35.432999,35.408001,35.383999,35.351002,35.319,35.272999,35.251999,35.189999,35.110001,35.040001,34.964001,34.856998,34.785999,34.710999,34.639,34.587002,34.511002,34.456001,34.433998,34.429001,34.441002,34.487,34.514999,34.548,34.567001,34.585999,34.59,34.615002,34.630001,34.639999,34.646,34.655998,34.672001,34.68,34.688,34.692001,34.696999,34.706001,34.712002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_007","geolocation":{"type":"Point","coordinates":[65.245,-23.203]},"basin":3,"timestamp":"2010-02-27T02:27:14.000Z","date_updated_argovis":"2023-01-26T10:38:55.968Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_007.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":7,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.6,8,19.799999,29.9,40.400002,50.700001,59.900002,70,77.599998,90,98.900002,110.099998,120,129.699997,139.5,149.899994,160.199997,170.100006,180,190,199.199997,210,220.100006,229.699997,240.100006,250.300003,259.600006,270,280.399994,290.200012,300.200012,310.299988,320.200012,330.200012,339.600006,350.200012,359.899994,380,399.399994,450,499.899994,550.099976,600.099976,650.5,699.700012,749.799988,800,850.099976,899.799988,949.700012,999.5,1049.699951,1099.5,1149.800049,1200.199951,1250.199951,1299.800049,1350.400024,1399.900024,1449.099976,1500.199951,1550.400024,1599.699951,1649.599976,1699.599976,1750.300049,1799.400024,1849.400024,1900.099976,1950],[27.587999,27.589001,27.593,27.586,27.33,26.159,25.004,24.169001,23.615999,22.818001,22.49,22.319,21.992001,21.756001,21.495001,21.391001,21.028999,20.517,20.313999,20.125,19.813,19.42,19.094,18.67,18.438999,18.125999,17.775,17.362,16.778999,16.302,15.964,15.707,15.297,15.111,14.899,14.645,14.369,13.766,13.46,12.88,12.287,11.771,11.205,10.558,10.024,9.594,9.018,8.324,7.325,6.496,5.612,5.085,4.667,4.373,4.124,3.89,3.704,3.573,3.458,3.326,3.197,3.116,2.993,2.861,2.763,2.632,2.558,2.518,2.482,2.422],[35.056999,35.057999,35.056999,35.064999,35.063,35.085999,35.148998,35.191002,35.214001,35.269001,35.305,35.330002,35.394001,35.450001,35.463001,35.487,35.505001,35.553001,35.598999,35.610001,35.651001,35.68,35.691002,35.694,35.695999,35.695,35.689999,35.662998,35.618,35.584999,35.554001,35.533001,35.492001,35.470001,35.449001,35.414001,35.384998,35.313999,35.278,35.205002,35.123001,35.050999,34.970001,34.870998,34.794998,34.737999,34.673,34.598,34.521,34.467999,34.433998,34.431,34.445,34.448002,34.471001,34.497002,34.529999,34.553001,34.577,34.596001,34.618,34.632,34.639,34.652,34.666,34.679001,34.688999,34.694,34.699001,34.706001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_006","geolocation":{"type":"Point","coordinates":[65.222,-23.52]},"basin":3,"timestamp":"2010-02-16T21:48:51.998Z","date_updated_argovis":"2023-01-26T10:38:54.272Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_006.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":6,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.6,9.1,19.799999,30,40.299999,50.200001,59.5,70,79.599998,90,99.900002,109.900002,119.800003,130.199997,139.5,150.199997,160.300003,169.699997,180.199997,189.600006,200.399994,209.899994,220.199997,229.300003,240.100006,249.699997,259.700012,269.899994,279.799988,289.600006,298.799988,309.899994,320.200012,329.899994,339.399994,349.5,360.100006,379.700012,399.200012,449.700012,499.299988,550,599.299988,649.799988,700.099976,749.5,800.099976,849.5,899.900024,950,999.400024,1049.099976,1099.800049,1150.099976,1199.900024,1249.900024,1300,1349.400024,1399.699951,1450,1499.900024,1550.199951,1599.599976,1649.300049,1700.199951,1750.099976,1800,1849.400024,1899.900024,1950,1998.800049],[27.968,27.969,27.968,27.833,26.504999,25.115999,24.556999,23.987,23.395,22.872999,22.462,22.027,21.705999,21.504,21.061001,20.781,20.559999,20.027,19.754,19.648001,19.094999,18.642,18.194,17.823,17.368,17.261,17.044001,16.773001,16.223,15.938,15.653,15.219,14.956,14.615,14.232,14.095,13.888,13.514,13.331,12.702,12.231,11.685,11.177,10.73,10.199,9.655,8.797,8.105,7.04,6.302,5.683,5.063,4.763,4.389,4.054,4.019,3.911,3.691,3.478,3.229,3.065,3.005,2.925,2.843,2.746,2.679,2.625,2.572,2.518,2.45,2.384],[34.950001,34.950001,34.952,34.965,35.073002,35.173,35.238998,35.265999,35.233002,35.314999,35.348,35.401001,35.436001,35.452999,35.527,35.596001,35.604,35.605,35.619999,35.626999,35.658001,35.646,35.637001,35.632,35.612,35.605,35.592999,35.595001,35.553001,35.539001,35.518002,35.478001,35.458,35.417,35.361,35.344002,35.320999,35.284,35.263,35.181999,35.117001,35.041,34.966,34.898998,34.823002,34.747002,34.646999,34.577999,34.500999,34.460999,34.436001,34.428001,34.437,34.452999,34.488998,34.543999,34.553001,34.568001,34.598999,34.606998,34.623001,34.633999,34.645,34.654999,34.667999,34.674999,34.681,34.688,34.695,34.702999,34.709999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_005","geolocation":{"type":"Point","coordinates":[65.051,-23.729]},"basin":3,"timestamp":"2010-02-06T18:17:42.003Z","date_updated_argovis":"2023-01-26T10:38:52.400Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_005.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":5,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.9,10.4,20.299999,30.200001,40.200001,50.299999,58.799999,70.400002,79.699997,90.5,100.199997,109.699997,120.199997,130.399994,140.199997,150,160.199997,170.300003,179.5,190.199997,199.300003,210.100006,219.800003,229.800003,240,249.399994,260.399994,269.899994,280.399994,290.399994,300,310.299988,320.299988,330.200012,339.600006,350.100006,360.100006,379.299988,400,450,499.700012,549.599976,600,650,700.299988,749.700012,799.599976,849.5,900.299988,950,999.5,1049.699951,1100.300049,1150.199951,1199.400024,1250,1300.300049,1349.900024,1400,1450.099976,1499.5,1549.900024,1600.099976,1649.900024,1700.199951,1750.099976,1800.300049,1849.699951,1899.800049,1949.300049],[28.035,27.878,27.468,26.709999,25.995001,25.261999,24.059999,23.357,22.778,22.393999,21.827999,21.546,21.176001,20.893999,20.437,20.129,19.82,19.305,18.902,18.613001,18.379999,17.996,17.648001,17.466,17.070999,16.671,16.337,16.15,15.889,15.484,15.141,14.919,14.426,14.137,13.981,13.728,13.507,13.287,13.042,12.627,12.24,11.707,11.264,10.636,10.151,9.561,8.919,8.079,7.066,6.574,5.968,5.341,4.789,4.691,4.469,4.106,3.915,3.727,3.561,3.447,3.283,3.193,3.018,2.884,2.778,2.711,2.613,2.559,2.494,2.436],[35.015999,35.014,35.013,35.040001,35.134998,35.213001,35.298,35.339001,35.368999,35.391998,35.437,35.460999,35.493999,35.515999,35.557999,35.584,35.623001,35.641998,35.632,35.613998,35.597,35.629002,35.597,35.598,35.591,35.575001,35.566002,35.555,35.535,35.500999,35.470001,35.443001,35.382,35.352001,35.334,35.306,35.284,35.258999,35.228001,35.169998,35.118,35.042999,34.979,34.884998,34.813999,34.735001,34.661999,34.580002,34.504002,34.473999,34.448002,34.433998,34.452,34.488998,34.506001,34.533001,34.556,34.582001,34.594002,34.606998,34.620998,34.629002,34.645,34.654999,34.667,34.674999,34.685001,34.692001,34.698002,34.705002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_004","geolocation":{"type":"Point","coordinates":[64.72,-23.65]},"basin":3,"timestamp":"2010-01-27T13:45:51.997Z","date_updated_argovis":"2023-01-26T10:38:50.677Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_004.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":4,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.3,9.8,20.4,30.299999,39.799999,50.5,58.700001,70.300003,79.699997,90.599998,100.400002,110.099998,119.900002,130.100006,140.5,149.899994,160.300003,170.300003,180.5,190,200.5,210.100006,220.5,230.399994,240,250.5,260.5,270.200012,280.200012,289.899994,299.799988,309.799988,320.399994,329.799988,340.100006,349.799988,359.899994,379.899994,399.600006,450.5,499.700012,549.799988,599.799988,650,700,750.099976,800.299988,849.799988,899.799988,950.299988,1000,1050.400024,1099.900024,1149.5,1200.300049,1250.300049,1300.300049,1350.300049,1400.199951,1450.099976,1500.199951,1550.099976,1600.400024,1649.900024,1699.5,1750.099976,1800.199951,1849.5,1899.400024,1950,2000.400024],[27.243,27.242001,27.198999,26.780001,26.086,24.532,23.469999,22.802,22.361,21.927999,21.731001,21.051001,20.686001,20.266001,20.080999,20.030001,19.610001,19.18,18.653999,18.216999,17.718,17.566999,17.216999,16.916,16.545,16.236,15.969,15.424,15.244,14.912,14.806,14.553,14.222,14.073,13.901,13.78,13.67,13.427,13.077,12.554,11.988,11.465,10.913,10.468,9.92,9.403,8.721,7.94,7.196,6.44,5.577,5.052,4.809,4.523,4.261,4.089,3.9,3.695,3.546,3.424,3.307,3.155,3.015,2.904,2.796,2.673,2.613,2.577,2.51,2.432,2.369],[35.16,35.158001,35.172001,35.233002,35.263,35.259998,35.247002,35.307999,35.362,35.435001,35.483002,35.48,35.494999,35.566002,35.692001,35.709,35.709999,35.687,35.662998,35.648998,35.639,35.623001,35.605999,35.604,35.577,35.557999,35.542,35.487999,35.467999,35.436001,35.423,35.394001,35.360001,35.341999,35.325001,35.313,35.303001,35.273998,35.231998,35.158001,35.083,35.009998,34.924999,34.861,34.783001,34.716,34.639999,34.567001,34.509998,34.466999,34.441002,34.449001,34.478001,34.5,34.525002,34.549,34.573002,34.592999,34.604,34.612,34.619999,34.632999,34.647999,34.657001,34.667,34.679001,34.686001,34.689999,34.696999,34.705002,34.710999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_003","geolocation":{"type":"Point","coordinates":[64.307,-23.386]},"basin":3,"timestamp":"2010-01-17T10:28:42.999Z","date_updated_argovis":"2023-01-26T10:38:48.965Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_003.nc","date_updated":"2015-06-18T13:20:56.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.5,9.9,20.5,30.1,40.599998,50.299999,60.599998,70.199997,80.400002,90,99.800003,110.400002,119.900002,130.5,140.600006,150.100006,160.5,168.600006,180.300003,190.199997,200.100006,210.100006,219.699997,230.300003,240.100006,250.199997,260.200012,269.899994,279.899994,289.799988,300.200012,310,320.100006,330.100006,339.899994,349.799988,359.700012,379,400.399994,449.899994,500,549.599976,599.700012,650.200012,700.299988,749.5,800,850.299988,897.799988,949.900024,1000.200012,1050.300049,1100.400024,1149.699951,1200.400024,1250.199951,1300.199951,1350.199951,1400.199951,1449.599976,1499.800049,1550.199951,1600.099976,1649.400024,1700.300049,1750.400024,1800.199951,1850.199951,1899.699951,1950.099976],[27.421,27.372,26.983,26.914,25.063,24.254,23.608,23.24,22.504,22.268,21.950001,21.471001,21.117001,20.74,20.492001,19.875,19.403999,19.226,18.757,18.584999,18.341999,17.907,17.422001,17.02,16.641001,16.434,15.994,15.765,15.203,14.885,14.481,14.325,14.082,13.748,13.737,13.597,13.443,13.127,13.05,12.593,12.02,11.39,10.857,10.388,9.945,9.426,8.784,7.93,6.846,6.115,5.635,5.078,4.736,4.484,4.285,4.106,3.919,3.719,3.614,3.436,3.254,3.093,2.979,2.875,2.808,2.726,2.635,2.582,2.526,2.404],[35.185001,35.192001,35.318001,35.324001,35.171001,35.188999,35.304001,35.324001,35.361,35.381001,35.414001,35.428001,35.478001,35.521,35.52,35.542999,35.564999,35.574001,35.632999,35.658001,35.646999,35.618999,35.612999,35.601002,35.578999,35.560001,35.536999,35.521999,35.456001,35.43,35.387001,35.370998,35.345001,35.311001,35.311001,35.297001,35.279999,35.240002,35.227001,35.162998,35.088001,34.994999,34.917999,34.848999,34.785999,34.716999,34.645,34.563,34.488998,34.456001,34.449001,34.455002,34.470001,34.497002,34.523998,34.544998,34.571999,34.594002,34.602001,34.611,34.625,34.637001,34.646999,34.657001,34.662998,34.673,34.681,34.688,34.694,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_002","geolocation":{"type":"Point","coordinates":[63.816,-23.309]},"basin":3,"timestamp":"2010-01-07T06:08:04.999Z","date_updated_argovis":"2023-01-26T10:38:47.183Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_002.nc","date_updated":"2015-06-18T13:20:55.000Z"}],"cycle_number":2,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6,10.2,17.4,30.1,40.700001,49.799999,58.599998,70.300003,79.800003,90.400002,100.099998,110.099998,120.099998,130.300003,140.399994,150.100006,160.100006,170.399994,180.5,189.800003,199.899994,210.199997,219.800003,229.800003,239.5,249.199997,259.700012,269.799988,279.100006,289.399994,300.100006,309.899994,319.899994,327,340.299988,350.200012,360.200012,380.399994,399.700012,450.100006,500.200012,549.400024,599.900024,649.5,700,750,799.599976,850.099976,900.400024,949.5,999.5,1050,1100.099976,1150.300049,1199.900024,1250.199951,1300.300049,1350,1399.800049,1450.099976,1500.099976,1550.300049,1599.599976,1649.699951,1699.800049,1749.800049,1799.900024,1850.099976,1900.099976,1950.199951],[27.023001,26.990999,26.969,26.584,26.184,24.795,24.315001,23.371,22.667,22.253,21.910999,21.632,21.184999,20.858,20.497999,20.165001,19.740999,19.396,18.913,18.457001,18.291,17.954,17.691999,17.153,16.912001,16.718,16.542999,16.305,16.059999,15.767,15.082,14.757,14.363,14.255,13.974,13.9,13.477,13.325,13.043,12.701,12.102,11.589,11.123,10.735,10.262,9.382,8.82,8.024,7.318,6.355,5.774,5.306,4.866,4.49,4.252,4.053,3.863,3.688,3.59,3.424,3.269,3.177,3.026,2.897,2.8,2.724,2.615,2.537,2.471,2.428],[35.220001,35.219002,35.219002,35.195999,35.188999,35.167999,35.196999,35.292999,35.339001,35.360001,35.386002,35.409,35.435001,35.450001,35.481998,35.563999,35.639,35.659,35.609001,35.623001,35.625,35.622002,35.617001,35.591999,35.582001,35.576,35.570999,35.563999,35.550999,35.530998,35.456001,35.419998,35.376999,35.366001,35.338001,35.330002,35.279999,35.262001,35.226002,35.187,35.098999,35.023998,34.956001,34.900002,34.830002,34.712002,34.647999,34.573002,34.518002,34.465,34.452,34.452,34.464001,34.480999,34.513,34.542,34.562,34.582001,34.594002,34.612999,34.626999,34.634998,34.648998,34.660999,34.667999,34.674999,34.686001,34.694,34.700001,34.705002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +, +{"_id":"1901393_001","geolocation":{"type":"Point","coordinates":[63.578,-23.454]},"basin":3,"timestamp":"2009-12-28T02:07:19.000Z","date_updated_argovis":"2023-01-26T10:38:45.478Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901393/profiles/D1901393_001.nc","date_updated":"2015-06-18T13:20:55.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[6.1,8,19.5,30,40.400002,49.599998,60.5,70.400002,79.900002,90.400002,100.400002,110.199997,119.800003,130.100006,139.600006,150,160.300003,168.5,179.899994,189.600006,199.5,210.300003,218.300003,230.399994,240.300003,250.300003,259.799988,270.399994,280.200012,290,300,310.100006,319.899994,330.100006,339.299988,349.399994,360.299988,380.100006,399.899994,449.700012,499.700012,549.5,599.299988,650.400024,700,750.200012,799.5,850.299988,899.700012,949.799988,1000.099976,1050.300049,1099.5,1150,1199.699951,1249.599976,1299.900024,1350,1399.400024,1449.199951,1500,1549.800049,1599.699951,1650.199951,1700,1749.400024,1800.099976,1850.199951,1899.800049],[26.469999,26.472,26.475,26.479,26.414,25.046,24.636999,23.711,23.372999,23.052999,22.663,22.202,21.719999,21.355,21.142,20.76,20.054001,19.648001,19.173,18.809999,18.596001,18.434999,18.087999,17.625999,17.275,17.059999,16.75,16.695999,16.281,15.853,15.698,15.155,15.053,14.812,14.696,14.38,14.04,13.67,13.33,12.782,12.232,11.779,11.08,10.537,9.835,9.446,8.794,8.06,7.201,6.435,5.754,5.089,4.695,4.436,4.299,4.005,3.842,3.699,3.497,3.372,3.282,3.093,2.998,2.873,2.771,2.697,2.659,2.607,2.545],[35.091999,35.091999,35.091999,35.091,35.099998,35.141998,35.153999,35.202,35.236,35.266998,35.303001,35.353001,35.417,35.459999,35.485001,35.521,35.554001,35.620998,35.632999,35.627998,35.630001,35.627998,35.630001,35.624001,35.615002,35.599998,35.594002,35.597,35.57,35.530998,35.511002,35.460999,35.449001,35.425999,35.414001,35.384998,35.352001,35.307999,35.268002,35.195,35.118,35.055,34.951,34.872002,34.769001,34.719002,34.644001,34.574001,34.507999,34.470001,34.446999,34.448002,34.474998,34.481998,34.498001,34.534,34.557999,34.581001,34.599998,34.618,34.627998,34.643002,34.653,34.661999,34.669998,34.676998,34.681,34.687,34.693001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901393_m0"]} +] diff --git a/argopy/tests/test_data/9932e6f6dcf682694b7577749050c91940946b8f2adea75046d31684bfd067e9.ncHeader b/argopy/tests/test_data/9932e6f6dcf682694b7577749050c91940946b8f2adea75046d31684bfd067e9.ncHeader new file mode 100644 index 00000000..e5b7350c --- /dev/null +++ b/argopy/tests/test_data/9932e6f6dcf682694b7577749050c91940946b8f2adea75046d31684bfd067e9.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_4234_d92b_4a12.nc { + dimensions: + row = 998; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=998); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 2, 15; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=998); + :_FillValue = 99999; // int + :actual_range = 24, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=998, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 10.54354f, 19.24935f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=998, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=998, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=998); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 56.16120216666666, 56.90258083333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=998); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.414445, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=998, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=998); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=998); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004083f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=998, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=998, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.598f, 34.762f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.598f, 34.769f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=998, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=998, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.918f, 3.395f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.918f, 3.395f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=998); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=998, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=998, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=998); + :_CoordinateAxisType = "Time"; + :actual_range = 1.673448594032E9, 1.68024025603E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=998); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.90258083333333; // double + :geospatial_lat_min = 56.16120216666666; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -53.414445; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:48:49Z (local files) +2024-09-24T12:48:49Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1673447040.0&time%3C=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.90258083333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 56.16120216666666; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-03-31T05:24:16Z"; + :time_coverage_start = "2023-01-11T14:49:54Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.414445; // double +} diff --git a/argopy/tests/test_data/99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054.nc b/argopy/tests/test_data/99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054.nc new file mode 100644 index 00000000..f42e77f6 Binary files /dev/null and b/argopy/tests/test_data/99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054.nc differ diff --git a/argopy/tests/test_data/9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b.nc b/argopy/tests/test_data/9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b.nc new file mode 100644 index 00000000..9e0aafc6 Binary files /dev/null and b/argopy/tests/test_data/9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b.nc differ diff --git a/argopy/tests/test_data/9b628fdfa706e7fefd0751123ff0608e5c20a57e62fdec8107d46b0ed6835566.nc b/argopy/tests/test_data/9b628fdfa706e7fefd0751123ff0608e5c20a57e62fdec8107d46b0ed6835566.nc new file mode 100644 index 00000000..f10f8c97 Binary files /dev/null and b/argopy/tests/test_data/9b628fdfa706e7fefd0751123ff0608e5c20a57e62fdec8107d46b0ed6835566.nc differ diff --git a/argopy/tests/test_data/9dda67ac1e3fca6a147791645bda5c5cbf0b4db4767be683ef94830cecedac68.nc b/argopy/tests/test_data/9dda67ac1e3fca6a147791645bda5c5cbf0b4db4767be683ef94830cecedac68.nc new file mode 100644 index 00000000..09cc9fbb Binary files /dev/null and b/argopy/tests/test_data/9dda67ac1e3fca6a147791645bda5c5cbf0b4db4767be683ef94830cecedac68.nc differ diff --git a/argopy/tests/test_data/9f048fe71f0edf2d136d419d278a72c0b5df167e945c36556c70802c82253264.js b/argopy/tests/test_data/9f048fe71f0edf2d136d419d278a72c0b5df167e945c36556c70802c82253264.js new file mode 100644 index 00000000..8f8b3e09 --- /dev/null +++ b/argopy/tests/test_data/9f048fe71f0edf2d136d419d278a72c0b5df167e945c36556c70802c82253264.js @@ -0,0 +1,43 @@ +[ +{"_id":"4901139_069","geolocation":{"type":"Point","coordinates":[-65.68800354003906,35.763999938964844]},"basin":1,"timestamp":"2012-02-29T17:31:59.999Z","date_updated_argovis":"2023-08-24T03:32:47.886Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/SD4901139_069.nc","date_updated":"2023-08-21T22:22:50.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/R4901139_069.nc","date_updated":"2017-02-28T16:29:03.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.1],[19.524],[36.548]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901139_m0"]} +, +{"_id":"1901465_032","geolocation":{"type":"Point","coordinates":[-69.539,35.752]},"basin":1,"timestamp":"2012-02-25T10:43:19.000Z","date_updated_argovis":"2023-01-26T19:19:57.900Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_032.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.299,20.297001],[36.527935,36.520931]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"4901139_068","geolocation":{"type":"Point","coordinates":[-65.5479965209961,35.24599838256836]},"basin":1,"timestamp":"2012-02-19T15:50:00.000Z","date_updated_argovis":"2023-08-24T03:32:46.756Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/SD4901139_068.nc","date_updated":"2023-08-21T22:22:38.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901139/profiles/R4901139_068.nc","date_updated":"2017-02-28T16:29:03.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.3,9.8],[19.76,19.764],[36.527,36.528999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901139_m0"]} +, +{"_id":"6900112_028","geolocation":{"type":"Point","coordinates":[-69.715,36.06]},"basin":1,"timestamp":"2012-02-15T23:18:17.002Z","date_updated_argovis":"2023-01-29T18:02:43.201Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_028.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[4.7],[19.905001],[36.563999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"1901465_031","geolocation":{"type":"Point","coordinates":[-69.263,36.279]},"basin":1,"timestamp":"2012-02-15T10:05:16.997Z","date_updated_argovis":"2023-01-26T19:19:56.175Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_031.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.294001,20.294001],[36.529995,36.53001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"6900112_027","geolocation":{"type":"Point","coordinates":[-69.227,36.213]},"basin":1,"timestamp":"2012-02-11T23:20:28.002Z","date_updated_argovis":"2023-01-29T18:02:41.501Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_027.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.1,9.8],[20.118999,20.122],[36.550999,36.550999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_157","geolocation":{"type":"Point","coordinates":[-66.658,38.199]},"basin":1,"timestamp":"2012-02-09T13:15:19.001Z","date_updated_argovis":"2023-01-28T00:12:48.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_157.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":157,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.5],[21.032],[36.096001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"6900112_026","geolocation":{"type":"Point","coordinates":[-68.564,36.821]},"basin":1,"timestamp":"2012-02-07T23:18:04.002Z","date_updated_argovis":"2023-01-29T18:02:39.708Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_026.nc","date_updated":"2018-10-23T18:56:49.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[20.294001],[36.515999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_156","geolocation":{"type":"Point","coordinates":[-67.768,37.896]},"basin":1,"timestamp":"2012-02-05T13:07:53.001Z","date_updated_argovis":"2023-01-28T00:12:46.080Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_156.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":156,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4,10],[18.388,18.351999],[35.977001,35.965]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"1901465_030","geolocation":{"type":"Point","coordinates":[-68.622,36.611]},"basin":1,"timestamp":"2012-02-05T11:29:06.000Z","date_updated_argovis":"2023-01-26T19:19:54.300Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901465/profiles/D1901465_030.nc","date_updated":"2021-06-15T12:01:20.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [data averaged with equal weights into irregular pressure bins","data":[[5,10],[20.231001,20.240999],[36.550808,36.549038]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901465_m0"]} +, +{"_id":"6900112_025","geolocation":{"type":"Point","coordinates":[-69.119,37.27]},"basin":1,"timestamp":"2012-02-03T23:22:33.002Z","date_updated_argovis":"2023-01-29T18:02:38.012Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/6900112/profiles/R6900112_025.nc","date_updated":"2018-10-23T18:56:48.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[21.348],[36.455002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["6900112_m0"]} +, +{"_id":"4901268_155","geolocation":{"type":"Point","coordinates":[-68.726,37.857]},"basin":1,"timestamp":"2012-02-01T13:12:10.001Z","date_updated_argovis":"2023-01-28T00:12:44.310Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_155.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":155,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.4],[16.441],[35.803001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"4901155_066","geolocation":{"type":"Point","coordinates":[-66.38400268554688,38.77399826049805]},"basin":1,"timestamp":"2012-01-30T23:14:00.000Z","date_updated_argovis":"2023-02-01T05:34:12.390Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_066.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.4],[15.474],[35.318001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"4901268_154","geolocation":{"type":"Point","coordinates":[-69.537,37.972]},"basin":1,"timestamp":"2012-01-28T13:13:31.001Z","date_updated_argovis":"2023-01-28T00:12:42.569Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/4901268/profiles/R4901268_154.nc","date_updated":"2018-10-22T23:20:09.000Z"}],"cycle_number":154,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete []","data":[[5.2],[18.705999],[35.868999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901268_m0"]} +, +{"_id":"4901155_065","geolocation":{"type":"Point","coordinates":[-66.10099792480469,39.189998626708984]},"basin":1,"timestamp":"2012-01-20T23:18:00.000Z","date_updated_argovis":"2023-02-01T05:34:10.681Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_065.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6],[13.898],[34.570999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"5903377_083","geolocation":{"type":"Point","coordinates":[-65.13,37.609]},"basin":1,"timestamp":"2012-01-12T15:34:23.999Z","date_updated_argovis":"2024-07-01T06:37:45.722Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_083.nc","date_updated":"2024-06-30T16:16:12.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_083.nc","date_updated":"2017-06-01T16:36:52.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.21,6.21,7.81,8.21],[22.329,22.325001,null,22.333],[36.467926,36.467926,null,36.467918]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +, +{"_id":"1901378_172","geolocation":{"type":"Point","coordinates":[-68.418,35.134]},"basin":1,"timestamp":"2012-01-11T23:31:40.995Z","date_updated_argovis":"2024-06-30T06:37:11.937Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/SD1901378_172.nc","date_updated":"2024-06-29T20:28:55.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/D1901378_172.nc","date_updated":"2019-05-22T11:13:01.000Z"}],"cycle_number":172,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.36,5.96,7.56,7.96,9.96],[20.482,20.483999,null,20.49,20.496],[36.493019,36.493023,null,36.492008,36.492012]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901378_m0"]} +, +{"_id":"4901155_064","geolocation":{"type":"Point","coordinates":[-66.0999984741211,39.37099838256836]},"basin":1,"timestamp":"2012-01-10T23:16:00.000Z","date_updated_argovis":"2023-02-01T05:34:08.989Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/meds/4901155/profiles/R4901155_064.nc","date_updated":"2018-02-20T14:54:22.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: discrete","data":[[6.6],[10.242],[32.966]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","A"],["degree_Celsius","A"],["psu","A"]]],"metadata":["4901155_m0"]} +, +{"_id":"5903377_082","geolocation":{"type":"Point","coordinates":[-66.901,37.254]},"basin":1,"timestamp":"2012-01-07T10:36:33.998Z","date_updated_argovis":"2024-07-01T06:37:44.627Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_082.nc","date_updated":"2024-06-30T16:16:03.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_082.nc","date_updated":"2017-06-01T16:36:51.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.4,6.2,7.900001,8.200001,10],[22.193001,22.191999,null,22.188999,22.188],[36.38596,36.38596,null,36.386978,36.386978]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +, +{"_id":"1901378_171","geolocation":{"type":"Point","coordinates":[-68.524,35.243]},"basin":1,"timestamp":"2012-01-06T20:08:44.998Z","date_updated_argovis":"2024-06-30T06:37:10.828Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/SD1901378_171.nc","date_updated":"2024-06-29T20:28:45.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/1901378/profiles/D1901378_171.nc","date_updated":"2019-05-22T11:13:01.000Z"}],"cycle_number":171,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.03,5.83,7.43,7.83,9.83],[20.583,20.580999,null,20.584999,20.587],[36.519054,36.51907,null,36.518066,36.518078]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1901378_m0"]} +, +{"_id":"5903377_081","geolocation":{"type":"Point","coordinates":[-68.436,38.157]},"basin":1,"timestamp":"2012-01-02T04:56:23.999Z","date_updated_argovis":"2024-07-01T06:37:43.477Z","source":[{"source":["argo_bgc"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/SD5903377_081.nc","date_updated":"2024-06-30T16:15:53.000Z"},{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/aoml/5903377/profiles/D5903377_081.nc","date_updated":"2017-06-01T16:36:51.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: mixed [deeper than nominal 985dbar: discrete; nominal 985dbar to surface: 2dbar-bin averaged]","data":[[4.33,6.03,7.73,8.13],[23.52,23.523001,null,23.523001],[36.252941,36.25396,null,36.25396]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["5903377_m0"]} +] diff --git a/argopy/tests/test_data/9f173587de223b11b550709a78a9876eb4bc1ba9616cd046a4647b704a7e84ae.nc b/argopy/tests/test_data/9f173587de223b11b550709a78a9876eb4bc1ba9616cd046a4647b704a7e84ae.nc new file mode 100644 index 00000000..93ca550c Binary files /dev/null and b/argopy/tests/test_data/9f173587de223b11b550709a78a9876eb4bc1ba9616cd046a4647b704a7e84ae.nc differ diff --git a/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html b/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html new file mode 100644 index 00000000..c61c30e9 --- /dev/null +++ b/argopy/tests/test_data/9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666.html @@ -0,0 +1,18 @@ + + + Processing BGC-Argo nitrate concentration at the DAC Level + + + + + + +

Processing BGC-Argo nitrate concentration at the DAC Level

The only method used to date to measure dissolved nitrate concentration (NITRATE) with sensors mounted on profiling floats is based on the absorption of light at ultraviolet wavelengths by nitrate ion (Johnson and Coletti, 2002; Johnson et al., 2010; 2013; D’Ortenzio et al., 2012). Nitrate has a modest UV absorption band with a peak near 210 nm, which overlaps with the stronger absorption band of bromide, which has a peak near 200 nm. In addition, there is a much weaker absorption due to dissolved organic matter and light scattering by particles (Ogura and Hanya, 1966). The UV spectrum thus consists of three components, bromide, nitrate and a background due to organics and particles. The background also includes thermal effects on the instrument and slow drift. All of these latter effects (organics, particles, thermal effects and drift) tend to be smooth spectra that combine to form an absorption spectrum that is linear in wavelength over relatively short wavelength spans. If the light absorption spectrum is measured in the wavelength range around 217 to 240 nm (the exact range is a bit of a decision by the operator), then the nitrate concentration can be determined. +Two different instruments based on the same optical principles are in use for this purpose. The In Situ Ultraviolet Spectrophotometer (ISUS) built at MBARI or at Satlantic has been mounted inside the pressure hull of a Teledyne/Webb Research APEX and NKE Provor profiling floats and the optics penetrate through the upper end cap into the water. The Satlantic Submersible Ultraviolet Nitrate Analyzer (SUNA) is placed on the outside of APEX, Provor, and Navis profiling floats in its own pressure housing and is connected to the float through an underwater cable that provides power and communications. Power, communications between the float controller and the sensor, and data processing requirements are essentially the same for both ISUS and SUNA. +There are several possible algorithms that can be used for the deconvolution of nitrate concentration from the observed UV absorption spectrum (Johnson and Coletti, 2002; Arai et al., 2008; Sakamoto et al., 2009; Zielinski et al., 2011). In addition, the default algorithm that is available in Satlantic sensors is a proprietary approach, but this is not generally used on profiling floats. There are some tradeoffs in every approach. To date almost all nitrate sensors on profiling floats have used the Temperature Compensated Salinity Subtracted (TCSS) algorithm developed by Sakamoto et al. (2009), and this document focuses on that method. +It is likely that there will be further algorithm development and it is necessary that the data systems clearly identify the algorithm that is used. It is also desirable that the data system allow for recalculation of prior data sets using new algorithms. To accomplish this, the float must report not just the computed nitrate, but the observed light intensity. +Then, the rule to obtain only one NITRATE parameter is, if the spectrum is present then, the NITRATE should be recalculated from the spectrum while the computation of nitrate concentration can also generate useful diagnostics of data quality.

Full Text

FilePagesSizeAccess
V1.2.2 (last version)
221 Mo
Previous obsolete versions
-4 Mo
How to cite
Johnson Kenneth S., Plant Joshua N., Sakamoto Carole, Maurer Tanya L., Pasqueron de Fommervault Orens, Serra Romain, D'Ortenzio Fabrizio, Schmechtig Catherine, Claustre Hervé, Poteau Antoine (2024). Processing BGC-Argo nitrate concentration at the DAC Level. Ref. Argo data management. Ifremer. https://doi.org/10.13155/46121

Copy this text

+ + + diff --git a/argopy/tests/test_data/a01ebcc88c67402bbed8ca2ca2a00984bf22eae43e284c46323b1784109b10a5.nc b/argopy/tests/test_data/a01ebcc88c67402bbed8ca2ca2a00984bf22eae43e284c46323b1784109b10a5.nc new file mode 100644 index 00000000..d4d5f576 Binary files /dev/null and b/argopy/tests/test_data/a01ebcc88c67402bbed8ca2ca2a00984bf22eae43e284c46323b1784109b10a5.nc differ diff --git a/argopy/tests/test_data/a3a5b8ce7905ecd25d2b89ebd3899a09ec93d44c0abcfaa341b810177e56a367.ncHeader b/argopy/tests/test_data/a3a5b8ce7905ecd25d2b89ebd3899a09ec93d44c0abcfaa341b810177e56a367.ncHeader new file mode 100644 index 00000000..7de424a9 --- /dev/null +++ b/argopy/tests/test_data/a3a5b8ce7905ecd25d2b89ebd3899a09ec93d44c0abcfaa341b810177e56a367.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_6e0c_3f56_d12e.nc { + dimensions: + row = 19550; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 209; + variables: + int config_mission_number(row=19550); + :_FillValue = 99999; // int + :actual_range = 1, 21; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=19550); + :_FillValue = 99999; // int + :actual_range = 0, 326; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=19550, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=19550, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=19550); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 3.2E-4, 0.9952266666666667; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=19550); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -19.996963333333333, -16.009000000000015; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=19550, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=19550, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=19550); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.3f, 100.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 0.3f, 100.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 2.001f, 5.0f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=19550, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=19550, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 18.426f, 36.8f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 18.3306f, 36.8f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.08984f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=19550, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=19550, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 14.222f, 30.476f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 14.222f, 30.476f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=19550); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=19550, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=19550, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=19550); + :_CoordinateAxisType = "Time"; + :actual_range = 1.073193E9, 1.725663563E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=19550, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=19550, vertical_sampling_scheme_strlen=209); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -16.009000000000015; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 0.9952266666666667; // double + :geospatial_lat_min = 3.2E-4; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -16.009000000000015; // double + :geospatial_lon_min = -19.996963333333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:48Z (local files) +2024-09-24T08:52:48Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-20&longitude%3C=-16.0&latitude%3E=0&latitude%3C=1&pres_adjusted%3E=0&pres_adjusted%3C=100.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 0.9952266666666667; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 3.2E-4; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2024-09-06T22:59:23Z"; + :time_coverage_start = "2004-01-04T05:10:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -19.996963333333333; // double +} diff --git a/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json b/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json new file mode 100644 index 00000000..cae9f717 --- /dev/null +++ b/argopy/tests/test_data/a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"2022-06-01T00:00:00","lat":2.155,"lon":-117.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-06-23T00:00:00","lat":35.6033,"lon":-125.0583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906445"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-17T15:52:00","lat":21.85,"lon":-114.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-14T21:19:00","lat":17.01,"lon":-107.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-01T02:39:00","lat":12.59,"lon":-92.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-05T08:18:00","lat":11.49,"lon":-94.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-08T07:29:00","lat":12.32,"lon":-100.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906483"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-14T20:56:00","lat":17.02,"lon":-107.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906484"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-11T13:59:00","lat":13.9,"lon":-103.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906485"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-02T20:28:00","lat":12.02,"lon":-94.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906486"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-02-04T18:26:00","lat":36.76,"lon":-122.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-30T00:29:00","lat":22.86,"lon":-157.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906529"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-26T06:10:00","lat":29.97,"lon":-145.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906520"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-03T16:40:00","lat":30.05,"lon":-170.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906521"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-18T09:05:00","lat":30.13,"lon":-158.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906514"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-07-09T12:47:00","lat":31.75,"lon":-119.74,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906517"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-07-03T08:00:00","lat":30.01,"lon":-131.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-28T21:23:00","lat":49.98,"lon":-144.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906531"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-30T19:23:00","lat":57.5,"lon":-147.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-29T21:17:00","lat":54.04,"lon":-146.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906533"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-30T05:44:00","lat":54.18,"lon":-158.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-06-15T03:04:00","lat":36.72,"lon":-138.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906530"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-18T15:02:00","lat":14.95,"lon":-132.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906547"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-19T21:44:00","lat":10.07,"lon":-136.24,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-11-17T08:34:00","lat":20.02,"lon":-128.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-10T00:00:00","lat":2.0333,"lon":-140.15,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903395"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-11T00:00:00","lat":14.0,"lon":-123.34,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-08T18:01:00","lat":19.9996,"lon":-121.436,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906798"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-09T00:00:00","lat":20.0,"lon":-121.37,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-12T01:44:00","lat":7.9667,"lon":-125.1,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-14T08:55:00","lat":2.0167,"lon":-125.167,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-25T05:14:00","lat":0.05,"lon":-140.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906795"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-10T04:10:00","lat":13.9935,"lon":-123.288,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906797"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-28T00:00:00","lat":5.0,"lon":-140.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906796"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-12T00:00:00","lat":11.0,"lon":-124.05,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903397"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-09T09:00:00","lat":16.9952,"lon":-122.364,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-14T00:00:00","lat":5.0,"lon":-125.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-13T10:03:00","lat":5.05,"lon":-124.867,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-16T00:00:00","lat":4.9833,"lon":-139.917,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906689"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-03-07T22:10:00","lat":22.9833,"lon":-120.467,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906690"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-15T22:33:00","lat":55.83,"lon":-151.59,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-22T09:09:00","lat":56.84,"lon":-146.88,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-21T00:52:00","lat":57.89,"lon":-146.79,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-03-28T11:00:00","lat":2.0,"lon":-166.54,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906765"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-03-28T21:00:00","lat":0.0,"lon":-167.43,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-22T16:07:00","lat":26.24,"lon":-153.38,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902273"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BGCSOLONOPP"},"ptfDepl":{"deplDate":"2022-02-04T23:00:00","lat":36.753,"lon":-122.512,"noSite":null},"ptfModel":{"nameShort":"SOLO_BGC"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903026"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-02-23T00:00:00","lat":47.0735,"lon":-138.019,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902583"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-09T21:29:00","lat":49.696,"lon":-140.664,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902567"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-05T00:00:00","lat":47.0,"lon":-141.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902586"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-09T11:23:00","lat":49.564,"lon":-138.681,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902566"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-14T00:00:00","lat":57.0,"lon":-144.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902588"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-02-27T00:00:00","lat":55.031,"lon":-138.078,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902584"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-15T00:00:00","lat":55.0,"lon":-144.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902587"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-11T02:20:00","lat":50.002,"lon":-144.997,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-16T18:00:00","lat":53.0681,"lon":-143.9553,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902585"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-03-11T02:31:00","lat":50.006,"lon":-144.991,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902559"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-14T06:55:00","lat":34.0017,"lon":-176.8067,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906799"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-09T00:20:00","lat":28.74,"lon":-161.5633,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-08T05:53:00","lat":25.9967,"lon":-160.22,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-13T19:04:00","lat":34.0,"lon":-173.9383,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906804"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-28T05:20:00","lat":24.1135,"lon":-149.8382,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906811"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-23T06:59:00","lat":28.9617,"lon":-151.7367,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906812"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-26T12:35:00","lat":27.35,"lon":-149.77,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906813"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-30T02:20:00","lat":21.145,"lon":-149.9383,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906814"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-21T15:29:00","lat":23.2478,"lon":-155.8725,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906815"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-17T22:50:00","lat":55.0258,"lon":-173.0347,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903495"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-20T17:30:00","lat":48.0472,"lon":-173.9068,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903493"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-09T22:30:00","lat":52.6105,"lon":-156.8533,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903494"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-19T21:05:00","lat":49.6263,"lon":-169.8778,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903496"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-07-02T07:37:00","lat":41.4578,"lon":-172.8857,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903607"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-07-09T01:51:00","lat":41.4753,"lon":-164.8502,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903608"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-07-11T17:09:00","lat":53.4747,"lon":-148.5927,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902612"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-06-22T05:42:00","lat":53.2345,"lon":-135.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902616"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-18T19:00:00","lat":42.8767,"lon":-125.8867,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903499"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-08-19T18:00:00","lat":38.9517,"lon":-124.8683,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903500"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-11T23:48:00","lat":7.9722,"lon":-179.8433,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906821"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-10-31T22:40:00","lat":46.0608,"lon":-178.3958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903609"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-27T19:07:00","lat":5.0033,"lon":-154.9973,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906822"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-26T08:32:00","lat":7.9823,"lon":-154.9663,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-10-27T12:17:00","lat":34.0443,"lon":-145.0028,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906826"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-29T01:30:00","lat":1.9935,"lon":-154.9568,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906825"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-29T19:50:00","lat":1.0E-4,"lon":-155.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":222} \ No newline at end of file diff --git a/argopy/tests/test_data/a4158168493b83985cd50812fc3830d2bc634a23d3e88773b7df57971786f8cb.nc b/argopy/tests/test_data/a4158168493b83985cd50812fc3830d2bc634a23d3e88773b7df57971786f8cb.nc new file mode 100644 index 00000000..f62d8084 Binary files /dev/null and b/argopy/tests/test_data/a4158168493b83985cd50812fc3830d2bc634a23d3e88773b7df57971786f8cb.nc differ diff --git a/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html b/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html new file mode 100644 index 00000000..7cb768ef --- /dev/null +++ b/argopy/tests/test_data/a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01.html @@ -0,0 +1,23 @@ + + + Argo quality control manual for dissolved oxygen concentration + + + + + + +

Argo quality control manual for dissolved oxygen concentration

This document is the Argo quality control manual for Dissolved oxygen concentration. It describes two levels of quality control:

+ +
    +
  • The first level is the real-time system that performs a set of agreed automatic checks. +
      +
    • Adjustment in real-time can also be performed and the real-time system can evaluate quality flags for adjusted fields.
    • +
    +
  • +
  • The second level is the delayed-mode quality control system.
  • +

Full Text

FilePagesSizeAccess
Version 1.1 28th September 2016
28396 Ko
Version 2.0 23th October 2018
331 Mo
Publisher's official version
351 Mo
How to cite
Thierry Virginie, Bittig Henry, The Argo-Bgc team (2021). Argo quality control manual for dissolved oxygen concentration. Argo-BGC group. https://doi.org/10.13155/46542

Copy this text

+ + + diff --git a/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json b/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json new file mode 100644 index 00000000..6e6bc0ae --- /dev/null +++ b/argopy/tests/test_data/a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda.json @@ -0,0 +1,400 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/1/" + }, + "pav:authoredOn": "2024-09-12 10:07:08.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/2/" + }, + "dce:identifier": "SDN:R01::BTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::BTRAJ", + "skos:altLabel": "BTRAJ", + "dc:date": "2024-09-12 10:07:08.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo trajectory" + }, + "dc:identifier": "SDN:R01::BTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/1/" + }, + "dce:identifier": "SDN:R01::TRAJ", + "pav:version": "1", + "skos:notation": "SDN:R01::TRAJ", + "skos:altLabel": "TRAJ", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory" + }, + "dc:identifier": "SDN:R01::TRAJ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/2/" + }, + "dce:identifier": "SDN:R01::MTRAJ", + "pav:version": "2", + "skos:notation": "SDN:R01::MTRAJ", + "skos:altLabel": "MTRAJ", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo trajectory merged" + }, + "dc:identifier": "SDN:R01::MTRAJ", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float trajectory file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all temporal sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/1/" + }, + "pav:authoredOn": "2023-10-06 12:38:32.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/2/" + }, + "dce:identifier": "SDN:R01::META", + "pav:version": "2", + "skos:notation": "SDN:R01::META", + "skos:altLabel": "META", + "dc:date": "2023-10-06 12:38:32.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo meta-data" + }, + "dc:identifier": "SDN:R01::META", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/1/" + }, + "pav:authoredOn": "2020-04-04 16:03:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/2/" + }, + "dce:identifier": "SDN:R01::MPROF", + "pav:version": "2", + "skos:notation": "SDN:R01::MPROF", + "skos:altLabel": "MPROF", + "dc:date": "2020-04-04 16:03:12.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile merged" + }, + "dc:identifier": "SDN:R01::MPROF", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), retaining all vertical sampling schemes." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/1/" + }, + "dce:identifier": "SDN:R01::SPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::SPROF", + "skos:altLabel": "SPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo synthetic profile" + }, + "dc:identifier": "SDN:R01::SPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity) and one or more biogeochemical (BGC) parameters data (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance), interpolated onto common pressure levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/1/" + }, + "dce:identifier": "SDN:R01::BPROF", + "pav:version": "1", + "skos:notation": "SDN:R01::BPROF", + "skos:altLabel": "BPROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "B-Argo profile" + }, + "dc:identifier": "SDN:R01::BPROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/1/" + }, + "dce:identifier": "SDN:R01::TECH", + "pav:version": "1", + "skos:notation": "SDN:R01::TECH", + "skos:altLabel": "TECH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo technical data" + }, + "dc:identifier": "SDN:R01::TECH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing technical information about an Argo float." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/1/" + }, + "dce:identifier": "SDN:R01::METAAUX", + "pav:version": "1", + "skos:notation": "SDN:R01::METAAUX", + "skos:altLabel": "", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo auxiliary meta-data" + }, + "dc:identifier": "SDN:R01::METAAUX", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "File containing descriptive information about an Argo float, for floats reporting non standard auxiliary features." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/1/" + }, + "dce:identifier": "SDN:R01::PROF", + "pav:version": "1", + "skos:notation": "SDN:R01::PROF", + "skos:altLabel": "PROF", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argo profile" + }, + "dc:identifier": "SDN:R01::PROF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argo float vertical profile file containing CTD sensors data (pressure, temperature, conductivity, salinity)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MTRAJ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/META/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/MPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/SPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/BPROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/TECH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/PROF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R01/current/METAAUX/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing the type of data contained in an Argo netCDF file. Argo netCDF variable DATA_TYPE is populated by R01 prefLabel.", + "dc:title": "Argo data type", + "skos:prefLabel": "Argo data type", + "owl:versionInfo": "4", + "dc:date": "2024-09-13 03:00:00.0", + "skos:altLabel": "DATA_TYPE", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DATA_TYPE", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R01" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/a75f8e8ffc8542ce9ebce8e09b29e1d6b2cf3993ff812726c5fcf7452fa999d4.nc b/argopy/tests/test_data/a75f8e8ffc8542ce9ebce8e09b29e1d6b2cf3993ff812726c5fcf7452fa999d4.nc new file mode 100644 index 00000000..c284e981 Binary files /dev/null and b/argopy/tests/test_data/a75f8e8ffc8542ce9ebce8e09b29e1d6b2cf3993ff812726c5fcf7452fa999d4.nc differ diff --git a/argopy/tests/test_data/a7dfc250e257f32e87de2fda119f7aa46da19cf75d44d97fc6f0043a3b63c5b9.nc b/argopy/tests/test_data/a7dfc250e257f32e87de2fda119f7aa46da19cf75d44d97fc6f0043a3b63c5b9.nc new file mode 100644 index 00000000..8e6b3890 Binary files /dev/null and b/argopy/tests/test_data/a7dfc250e257f32e87de2fda119f7aa46da19cf75d44d97fc6f0043a3b63c5b9.nc differ diff --git a/argopy/tests/test_data/a8eb77f4c5868560853170afecb82fd5f0345d0cf96dc688c5ce8bd6d20fafc3.nc b/argopy/tests/test_data/a8eb77f4c5868560853170afecb82fd5f0345d0cf96dc688c5ce8bd6d20fafc3.nc new file mode 100644 index 00000000..a9528274 Binary files /dev/null and b/argopy/tests/test_data/a8eb77f4c5868560853170afecb82fd5f0345d0cf96dc688c5ce8bd6d20fafc3.nc differ diff --git a/argopy/tests/test_data/aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94.json b/argopy/tests/test_data/aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94.json new file mode 100644 index 00000000..e0fb3a49 --- /dev/null +++ b/argopy/tests/test_data/aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94.json @@ -0,0 +1,150 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/1/" + }, + "dce:identifier": "SDN:R10::ARGOS", + "pav:version": "1", + "skos:notation": "SDN:R10::ARGOS", + "skos:altLabel": "ARGOS", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Argos transmission system" + }, + "dc:identifier": "SDN:R10::ARGOS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Argos transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/1/" + }, + "dce:identifier": "SDN:R10::ORBCOMM", + "pav:version": "1", + "skos:notation": "SDN:R10::ORBCOMM", + "skos:altLabel": "ORBCOMM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "dc:identifier": "SDN:R10::ORBCOMM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Orbcomm transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/1/" + }, + "dce:identifier": "SDN:R10::IRIDIUM", + "pav:version": "1", + "skos:notation": "SDN:R10::IRIDIUM", + "skos:altLabel": "IRIDIUM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "dc:identifier": "SDN:R10::IRIDIUM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Iridium transmission system" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ARGOS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/IRIDIUM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R10/current/ORBCOMM/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of telecommunication systems. Argo netCDF variable TRANS_SYSTEM is populated by R10 altLabel.", + "dc:title": "Argo transmission systems", + "skos:prefLabel": "Argo transmission systems", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "TRANS_SYSTEM", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "TRANS_SYSTEM", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R10" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/aff6cb12376bd9c0dd08ce1e157e61a914264daeccdd30916778dd029e52093b.ncHeader b/argopy/tests/test_data/aff6cb12376bd9c0dd08ce1e157e61a914264daeccdd30916778dd029e52093b.ncHeader new file mode 100644 index 00000000..3212320f --- /dev/null +++ b/argopy/tests/test_data/aff6cb12376bd9c0dd08ce1e157e61a914264daeccdd30916778dd029e52093b.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_9b21_3f2d_e4e5.nc { + dimensions: + row = 264; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=264); + :_FillValue = 99999; // int + :actual_range = 1, 2; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=264); + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=264, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=264, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=264); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 18.804, 20.13; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=264); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -60.173, -59.238; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=264, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=264, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=264); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2001.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2001.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=264, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=264, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 34.808f, 37.303f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 34.808f, 37.303f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01037f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=264, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=264, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.672f, 28.907f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 3.672f, 28.907f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=264); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=264, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=264, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=264); + :_CoordinateAxisType = "Time"; + :actual_range = 1.49935254E9, 1.50424878E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=264, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=264, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -59.238; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 20.13; // double + :geospatial_lat_min = 18.804; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -59.238; // double + :geospatial_lon_min = -60.173; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:47Z (local files) +2024-09-24T08:52:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%226902746%22&cycle_number=~%221%7C12%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 20.13; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 18.804; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2017-09-01T06:53:00Z"; + :time_coverage_start = "2017-07-06T14:49:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -60.173; // double +} diff --git a/argopy/tests/test_data/b3773588673ea9df44061f87f638145417061f4396e7fa6d1bd93dbbcc443910.ncHeader b/argopy/tests/test_data/b3773588673ea9df44061f87f638145417061f4396e7fa6d1bd93dbbcc443910.ncHeader new file mode 100644 index 00000000..9b2d286c --- /dev/null +++ b/argopy/tests/test_data/b3773588673ea9df44061f87f638145417061f4396e7fa6d1bd93dbbcc443910.ncHeader @@ -0,0 +1,242 @@ +netcdf ArgoFloats-synthetic-BGC_8991_e8d6_c310.nc { + dimensions: + row = 82888; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=82888); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=82888); + :_FillValue = 99999; // int + :actual_range = 1, 57; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=82888, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=82888); + :actual_range = 264.4146f, 99999.0f; // float + + float doxy_adjusted_error(row=82888); + :actual_range = 12.55041f, 99999.0f; // float + + char doxy_adjusted_qc(row=82888, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=82888); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.84967733333333, 57.650632166666675; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=82888); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.10385516666667, -43.740898; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=82888, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=82888); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.054f, 2003.352f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=82888, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.20806f, 34.93495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=82888, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=82888); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=82888, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=82888); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653888087E9, 1.701612697015E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=82888); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -43.740898; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 57.650632166666675; // double + :geospatial_lat_min = 55.84967733333333; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -43.740898; // double + :geospatial_lon_min = -53.10385516666667; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:52:14Z (local files) +2024-09-25T05:52:14Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%226904241%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 57.650632166666675; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.84967733333333; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-12-03T14:11:37Z"; + :time_coverage_start = "2022-05-30T05:21:27Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.10385516666667; // double +} diff --git a/argopy/tests/test_data/b387b63261a185e98eca228dcd8019b15ada0a5524f6cc160c7a158c98641ac6.ncHeader b/argopy/tests/test_data/b387b63261a185e98eca228dcd8019b15ada0a5524f6cc160c7a158c98641ac6.ncHeader new file mode 100644 index 00000000..d48dfed2 --- /dev/null +++ b/argopy/tests/test_data/b387b63261a185e98eca228dcd8019b15ada0a5524f6cc160c7a158c98641ac6.ncHeader @@ -0,0 +1,352 @@ +netcdf ArgoFloats-synthetic-BGC_98bd_b5bd_c9cd.nc { + dimensions: + row = 126044; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=126044); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=126044); + :_FillValue = 99999; // int + :actual_range = 1, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=126044, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 217.6861f, 341.608f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 231.0956f, 362.6511f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 12.56249f, 17.39042f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=126044, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=126044, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=126044); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 57.097543166666675, 63.18395183333334; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=126044); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -51.75795016666666, -30.635311333333334; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=126044, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=126044); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2011.203f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.181f, 2006.433f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=126044, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=126044, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.488f, 35.137f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.13953f, 35.1359f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=126044, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=126044, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.124f, 11.983f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.12f, 11.983f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=126044); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=126044, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=126044, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=126044); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653144082985E9, 1.726927792036E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=126044); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -30.635311333333334; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 63.18395183333334; // double + :geospatial_lat_min = 57.097543166666675; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -30.635311333333334; // double + :geospatial_lon_min = -51.75795016666666; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:42Z (local files) +2024-09-24T12:43:42Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904240%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 63.18395183333334; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 57.097543166666675; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2024-09-21T14:09:52Z"; + :time_coverage_start = "2022-05-21T14:41:22Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -51.75795016666666; // double +} diff --git a/argopy/tests/test_data/b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f.json b/argopy/tests/test_data/b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f.json new file mode 100644 index 00000000..9105f0bf --- /dev/null +++ b/argopy/tests/test_data/b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f.json @@ -0,0 +1,694 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/1/" + }, + "dce:identifier": "SDN:R24::UNKNOWN", + "pav:version": "1", + "skos:notation": "SDN:R24::UNKNOWN", + "skos:altLabel": "UNKNOWN", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Unknown platform maker" + }, + "dc:identifier": "SDN:R24::UNKNOWN", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Unknown platform maker. The platform maker should not be unknown, the use of this value should be exceptional" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/", + "pav:authoredOn": "2022-06-16 11:36:09.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/1/" + }, + "dce:identifier": "SDN:R24::QNLM", + "pav:version": "1", + "skos:notation": "SDN:R24::QNLM", + "skos:altLabel": "QNLM", + "dc:date": "2022-06-16 11:36:09.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology" + }, + "dc:identifier": "SDN:R24::QNLM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Qingdao National Laboratory for Marine Science and Technology" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/1/" + }, + "pav:authoredOn": "2023-10-05 14:42:22.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/2/" + }, + "dce:identifier": "SDN:R24::LaoshanL", + "pav:version": "2", + "skos:notation": "SDN:R24::LaoshanL", + "skos:altLabel": "LaoshanL", + "dc:date": "2023-10-05 14:42:22.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "LaoshanLaboratory" + }, + "dc:identifier": "SDN:R24::LaoshanL", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Laoshan Laboratory" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NINJA_D/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TSK", + "skos:prefLabel": { + "@language": "en", + "@value": "Tsurumi-Seiki Co., Ltd." + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TSK", + "skos:notation": "SDN:R24::TSK", + "pav:version": "1", + "dce:identifier": "SDN:R24::TSK", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_W/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ITP/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WHOI", + "skos:prefLabel": { + "@language": "en", + "@value": "Woods Hole Oceanographic Institution" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WHOI", + "skos:notation": "SDN:R24::WHOI", + "pav:version": "1", + "dce:identifier": "SDN:R24::WHOI", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NEMO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_NEMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Optimare" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::OPTIMARE", + "skos:prefLabel": { + "@language": "en", + "@value": "Optimare" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "OPTIMARE", + "skos:notation": "SDN:R24::OPTIMARE", + "pav:version": "1", + "dce:identifier": "SDN:R24::OPTIMARE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PALACE/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::WRC", + "skos:prefLabel": { + "@language": "en", + "@value": "Webb Research Corporation" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "WRC", + "skos:notation": "SDN:R24::WRC", + "pav:version": "1", + "dce:identifier": "SDN:R24::WRC" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/APEX_EM/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Teledyne Webb Research (formerly Webb Research Corporation)" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::TWR", + "skos:prefLabel": { + "@language": "en", + "@value": "Teledyne Webb Research" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "TWR", + "skos:notation": "SDN:R24::TWR", + "pav:version": "1", + "dce:identifier": "SDN:R24::TWR" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Martec" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MARTEC", + "skos:prefLabel": { + "@language": "en", + "@value": "Martec" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MARTEC", + "skos:notation": "SDN:R24::MARTEC", + "pav:version": "1", + "dce:identifier": "SDN:R24::MARTEC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NOVA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_MT/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Metocean" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::METOCEAN", + "skos:prefLabel": { + "@language": "en", + "@value": "Metocean" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "METOCEAN", + "skos:notation": "SDN:R24::METOCEAN", + "pav:version": "1", + "dce:identifier": "SDN:R24::METOCEAN", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/1/" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_II/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SIO_IDG", + "skos:prefLabel": { + "@language": "en", + "@value": "Scripps Institution of Oceanography - Instrument Development Group" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SIO_IDG", + "skos:notation": "SDN:R24::SIO_IDG", + "pav:version": "1", + "dce:identifier": "SDN:R24::SIO_IDG" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/1/" + }, + "dce:identifier": "SDN:R24::NKE", + "pav:version": "1", + "skos:notation": "SDN:R24::NKE", + "skos:altLabel": "NKE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_II/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/POPS_PROVOR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V_JUMBO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_V/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_III/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/PROVOR_IV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ARVOR_C/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "NKE Instrumentation" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::NKE" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/1/" + }, + "dce:identifier": "SDN:R24::HSOE", + "pav:version": "1", + "skos:notation": "SDN:R24::HSOE", + "skos:altLabel": "HSOE", + "dc:date": "2020-05-03 20:30:12.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "dc:identifier": "SDN:R24::HSOE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Qingdao Hisun Ocean Equipment Corporation Limited" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/HM2000/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/NAVIS_EBR/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::SBE", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea-Bird Scientific" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "SBE", + "skos:notation": "SDN:R24::SBE", + "pav:version": "1", + "dce:identifier": "SDN:R24::SBE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/", + "pav:authoredOn": "2020-05-03 20:30:12.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/1/" + }, + "dce:identifier": "SDN:R24::MRV", + "pav:version": "1", + "@type": "skos:Concept", + "skos:related": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALTO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2X/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/S2A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/SOLO_D_MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R23/current/ALAMO/" + } + ], + "skos:definition": { + "@language": "en", + "@value": "MRV Systems" + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R24::MRV", + "skos:prefLabel": { + "@language": "en", + "@value": "MRV Systems" + }, + "owl:versionInfo": "1", + "dc:date": "2020-05-03 20:30:12.0", + "skos:altLabel": "MRV", + "skos:notation": "SDN:R24::MRV" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/UNKNOWN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/QNLM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/LaoshanL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TSK/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WHOI/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/OPTIMARE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/WRC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/TWR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MARTEC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/METOCEAN/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SIO_IDG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/NKE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/HSOE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/MRV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R24/current/SBE/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of Argo float manufacturers. Argo netCDF variable PLATFORM_MAKER is populated by R24 altLabel.", + "dc:title": "Argo platform maker", + "skos:prefLabel": "Argo platform maker", + "owl:versionInfo": "4", + "dc:date": "2023-10-06 03:00:02.0", + "skos:altLabel": "PLATFORM_MAKER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PLATFORM_MAKER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R24" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/b50e6ad8b4eedb373b17a1bd3eb668d481efe190762b91dbe1e7041134abf167.ncHeader b/argopy/tests/test_data/b50e6ad8b4eedb373b17a1bd3eb668d481efe190762b91dbe1e7041134abf167.ncHeader new file mode 100644 index 00000000..17210137 --- /dev/null +++ b/argopy/tests/test_data/b50e6ad8b4eedb373b17a1bd3eb668d481efe190762b91dbe1e7041134abf167.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_7946_e619_0da5.nc { + dimensions: + row = 70; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=70); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=70); + :_FillValue = 99999; // int + :actual_range = 34, 34; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=70, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 160.4252f, 303.8724f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 175.2335f, 331.919f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.257005f, 9.957571f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=70, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=70, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=70); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.153, -57.153; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=70); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 161.893, 161.893; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=70, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=70); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=70); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.3f, 1999.6f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.2f, 1999.5f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=70, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=70, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.852f, 34.74f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.85463f, 34.7401f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=70, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=70, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.158f, 4.301f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.158f, 4.301f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=70); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=70, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=70, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=70); + :_CoordinateAxisType = "Time"; + :actual_range = 1.295420656E9, 1.295420656E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=70); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 161.893; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -57.153; // double + :geospatial_lat_min = -57.153; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 161.893; // double + :geospatial_lon_min = 161.893; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:36Z (local files) +2024-09-24T12:43:36Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%2234%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -57.153; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.153; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2011-01-19T07:04:16Z"; + :time_coverage_start = "2011-01-19T07:04:16Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 161.893; // double +} diff --git a/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json b/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json new file mode 100644 index 00000000..8814ef50 --- /dev/null +++ b/argopy/tests/test_data/b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-11-26T19:43:00","lat":-52.8463,"lon":-46.5725,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903639"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-12-20T19:22:00","lat":-59.0923,"lon":-64.2943,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903640"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-23T11:27:00","lat":-34.55,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906492"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-16T08:33:00","lat":-34.51,"lon":-39.72,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906489"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-20T14:56:00","lat":-34.6,"lon":-28.08,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906487"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-02T05:06:00","lat":-34.46,"lon":-5.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-02-13T07:46:00","lat":-34.48,"lon":-47.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906488"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-07-25T16:20:00","lat":-54.5132,"lon":-0.4253,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901942"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-13T01:17:00","lat":-45.973,"lon":-52.0526,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903791"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-01-16T15:37:00","lat":-59.5183,"lon":-66.5147,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904093"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-01-02T19:22:00","lat":-59.1633,"lon":-64.13,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904091"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-19T10:00:00","lat":-45.0833,"lon":-23.7666,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904090"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-17T05:02:00","lat":-66.037,"lon":-43.5072,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900971"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-13T06:00:00","lat":-62.0033,"lon":-28.2433,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904079"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-25T15:59:00","lat":-36.6924,"lon":-44.6454,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904127"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-13T20:19:00","lat":-59.8471,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904207"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-07T14:08:00","lat":-0.8603,"lon":-19.9225,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-08T05:06:00","lat":-0.969,"lon":-18.383,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-10T02:48:00","lat":-1.9855,"lon":-15.2477,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902326"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-10T19:46:00","lat":-2.4832,"lon":-13.6977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T13:09:00","lat":-7.0373,"lon":-5.996,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902393"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-11T07:57:00","lat":-2.9302,"lon":-12.1145,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-12T01:04:00","lat":-3.5682,"lon":-10.5588,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902420"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-13T21:36:00","lat":-6.1359,"lon":-7.0286,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902399"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-15T02:39:00","lat":-7.9552,"lon":-6.1275,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902402"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-12T16:13:00","lat":-3.9882,"lon":-9.0021,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902403"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-09T02:43:00","lat":-1.4405,"lon":-16.8265,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T02:05:00","lat":-10.9567,"lon":-6.139,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-15T21:11:00","lat":-8.9634,"lon":-6.0318,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902419"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T00:28:00","lat":-13.0034,"lon":-5.9635,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902405"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T13:11:00","lat":-10.0008,"lon":-5.9901,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902418"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T16:25:00","lat":-14.9999,"lon":-5.9957,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902433"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-17T16:25:00","lat":-11.981,"lon":-6.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902568"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-13T07:14:00","lat":-5.004,"lon":-7.944,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902571"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-28T18:49:00","lat":-16.2062,"lon":-5.7531,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902410"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T09:24:00","lat":-14.0287,"lon":-6.0029,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902422"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-28T23:54:00","lat":-17.0001,"lon":-5.6913,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-29T12:56:00","lat":-19.0203,"lon":-5.6059,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902421"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2022-01-23T14:37:00","lat":-53.99,"lon":-0.0371,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903128"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-09T02:30:00","lat":-42.0192,"lon":-5.9868,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904083"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-31T15:48:00","lat":-21.3478,"lon":-1.1237,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-30T22:26:00","lat":-20.876,"lon":-3.0015,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902416"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-29T20:33:00","lat":-19.9998,"lon":-5.598,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902423"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-01-29T05:48:00","lat":-18.001,"lon":-5.622,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-09T19:22:00","lat":-45.0,"lon":-10.0333,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904082"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-10T21:18:00","lat":-50.0,"lon":-35.6667,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904081"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-11T23:30:00","lat":-56.0,"lon":-25.9683,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904080"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-02-08T21:49:00","lat":-59.9967,"lon":-66.657,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904092"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-02-10T21:38:00","lat":-2.0881,"lon":-0.0465,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902411"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-12T09:20:00","lat":-57.0,"lon":-29.095,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902007"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-13T06:00:00","lat":-62.0003,"lon":-28.2433,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902009"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-17T04:35:00","lat":-34.5,"lon":-37.3833,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-02-13T07:15:00","lat":-34.5,"lon":-47.3833,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902322"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-04T17:44:00","lat":-56.365,"lon":-44.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901987"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-05T17:30:00","lat":-55.0833,"lon":-45.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901988"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-14T18:56:00","lat":-53.1167,"lon":-34.4333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901993"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-02-11T07:30:00","lat":-52.0012,"lon":-20.8283,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902008"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-24T17:53:00","lat":-37.0833,"lon":-16.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901990"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-03-30T17:37:00","lat":-28.8113,"lon":-77.5857,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902248"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-03-26T19:59:00","lat":-37.215,"lon":-11.5983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901991"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-04-04T14:33:00","lat":-21.8582,"lon":-88.0817,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902247"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-19T09:42:00","lat":-48.0003,"lon":-53.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901568"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-18T19:54:00","lat":-46.0008,"lon":-51.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901569"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-20T20:10:00","lat":-41.5012,"lon":-47.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901570"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-05-21T13:00:00","lat":-37.9983,"lon":-43.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901571"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-07-25T12:45:00","lat":-55.475,"lon":-0.624,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902083"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-23T23:36:00","lat":-36.0727,"lon":-2.9992,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902451"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-24T08:21:00","lat":-35.2815,"lon":-4.9951,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-29T00:37:00","lat":-39.5007,"lon":-10.506,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902452"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-29T03:01:00","lat":-40.0021,"lon":-10.1037,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902449"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-08-28T15:27:00","lat":-38.0092,"lon":-11.6935,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902450"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-13T16:25:00","lat":-1.9786,"lon":-22.9989,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903480"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T14:58:00","lat":-19.0167,"lon":-14.9983,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901576"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T12:00:00","lat":-18.8333,"lon":-14.215,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901575"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-07T03:25:00","lat":-19.495,"lon":-17.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-12-12T04:46:00","lat":-22.6538,"lon":-35.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901573"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-11-24T16:43:00","lat":-12.414,"lon":-8.6909,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-12-10T22:33:00","lat":-36.95,"lon":-45.5667,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-12-12T01:09:00","lat":-41.9883,"lon":-48.9267,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-12T07:00:00","lat":-62.2967,"lon":-63.2133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-11T01:58:00","lat":-58.6833,"lon":-63.5783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-20T15:52:00","lat":-63.3833,"lon":-88.305,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-11-11T15:09:00","lat":-60.41,"lon":-63.2317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906248"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-13T14:15:00","lat":-1.9992,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"4903460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-17T21:00:00","lat":-66.57,"lon":-0.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906496"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-04T23:51:00","lat":-69.04,"lon":-17.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906493"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-03-19T12:13:00","lat":-65.96,"lon":-12.14,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906494"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-17T21:00:00","lat":-65.4328,"lon":-44.6002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900972"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-18T12:38:00","lat":-64.7382,"lon":-43.5107,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900979"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-18T04:40:00","lat":-65.003,"lon":-43.9085,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900980"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T10:00:00","lat":-70.1336,"lon":-30.9983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900981"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T12:11:00","lat":-70.7476,"lon":-31.1762,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900982"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-15T12:32:00","lat":-65.0442,"lon":-41.1406,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900983"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-11T08:48:00","lat":-68.995,"lon":-31.9426,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900984"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T22:54:00","lat":-69.5538,"lon":-32.4705,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900985"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-23T20:30:31","lat":-70.4198,"lon":-9.8883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900986"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-16T17:20:00","lat":-66.3797,"lon":-41.3985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900987"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-08T06:12:00","lat":-69.959,"lon":-27.9483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900988"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T07:22:00","lat":-69.3748,"lon":-9.2657,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900990"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-02T21:40:17","lat":-70.6013,"lon":-12.2145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900991"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-03T17:33:58","lat":-69.7464,"lon":-15.2957,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900992"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-04T20:07:00","lat":-69.029,"lon":-17.4735,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900993"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-16T01:51:00","lat":-66.0815,"lon":-41.7635,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900994"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-02T23:17:41","lat":-70.4649,"lon":-12.8123,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900995"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-09T23:46:00","lat":-70.6338,"lon":-29.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900996"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-04-10T16:36:00","lat":-69.7669,"lon":-32.0227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900997"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T13:03:44","lat":-70.0591,"lon":-8.7277,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900998"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_AWI"},"ptfDepl":{"deplDate":"2022-03-20T12:27:15","lat":-70.047,"lon":-8.6591,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900999"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-15T09:00:00","lat":-59.5,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904130"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-13T22:10:00","lat":-64.0,"lon":-36.1917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901937"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-14T04:50:00","lat":-65.0217,"lon":-39.79,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901938"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-13T14:50:00","lat":-63.0,"lon":-32.45,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901936"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-14T10:50:00","lat":-66.0,"lon":-43.0183,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901939"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-12T22:51:00","lat":-66.6167,"lon":-27.2017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2022-04-14T16:31:00","lat":-65.675,"lon":-36.6867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906499"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":256} \ No newline at end of file diff --git a/argopy/tests/test_data/b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462.json b/argopy/tests/test_data/b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462.json new file mode 100644 index 00000000..78bd701a --- /dev/null +++ b/argopy/tests/test_data/b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462.json @@ -0,0 +1,524 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QC/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QC/1/" + }, + "dce:identifier": "SDN:R07::QC", + "pav:version": "1", + "skos:notation": "SDN:R07::QC", + "skos:altLabel": "QC", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Quality control" + }, + "dc:identifier": "SDN:R07::QC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Quality control performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/IP/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/IP/1/" + }, + "dce:identifier": "SDN:R07::IP", + "pav:version": "1", + "skos:notation": "SDN:R07::IP", + "skos:altLabel": "IP", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "History group for complete input record" + }, + "dc:identifier": "SDN:R07::IP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "This history group operates on the complete input record." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/DC/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/DC/1/" + }, + "dce:identifier": "SDN:R07::DC", + "pav:version": "1", + "skos:notation": "SDN:R07::DC", + "skos:altLabel": "DC", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Station check with duplicate checking software" + }, + "dc:identifier": "SDN:R07::DC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The station was checked using duplicate checking software." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/SV/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/SV/1/" + }, + "dce:identifier": "SDN:R07::SV", + "pav:version": "1", + "skos:notation": "SDN:R07::SV", + "skos:altLabel": "SV", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value set" + }, + "dc:identifier": "SDN:R07::SV", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Set a value." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/UP/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/UP/1/" + }, + "dce:identifier": "SDN:R07::UP", + "pav:version": "1", + "skos:notation": "SDN:R07::UP", + "skos:altLabel": "UP", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Station passed through the update program" + }, + "dc:identifier": "SDN:R07::UP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "The station passed through the update program." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CF/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CF/1/" + }, + "dce:identifier": "SDN:R07::CF", + "pav:version": "1", + "skos:notation": "SDN:R07::CF", + "skos:altLabel": "CF", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Quality flag change" + }, + "dc:identifier": "SDN:R07::CF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A quality flag was changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/PE/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/PE/1/" + }, + "dce:identifier": "SDN:R07::PE", + "pav:version": "1", + "skos:notation": "SDN:R07::PE", + "skos:altLabel": "PE", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Position error" + }, + "dc:identifier": "SDN:R07::PE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile position has been erroneously encoded, and has been corrected where possible." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/NG/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/NG/1/" + }, + "dce:identifier": "SDN:R07::NG", + "pav:version": "1", + "skos:notation": "SDN:R07::NG", + "skos:altLabel": "NG", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No good trace" + }, + "dc:identifier": "SDN:R07::NG", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No good trace." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/ED/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/ED/1/" + }, + "dce:identifier": "SDN:R07::ED", + "pav:version": "1", + "skos:notation": "SDN:R07::ED", + "skos:altLabel": "ED", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Parameter value edit" + }, + "dc:identifier": "SDN:R07::ED", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A parameter value was edited." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CR/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CR/1/" + }, + "dce:identifier": "SDN:R07::CR", + "pav:version": "1", + "skos:notation": "SDN:R07::CR", + "skos:altLabel": "CR", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Record creation" + }, + "dc:identifier": "SDN:R07::CR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A new record was created." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/TE/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/TE/1/" + }, + "dce:identifier": "SDN:R07::TE", + "pav:version": "1", + "skos:notation": "SDN:R07::TE", + "skos:altLabel": "TE", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Time error" + }, + "dc:identifier": "SDN:R07::TE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Profile date and/or time have been erroneously encoded, and have been corrected where possible." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CV/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CV/1/" + }, + "dce:identifier": "SDN:R07::CV", + "pav:version": "1", + "skos:notation": "SDN:R07::CV", + "skos:altLabel": "CV", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value change" + }, + "dc:identifier": "SDN:R07::CV", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "A value was changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCP/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCP/1/" + }, + "dce:identifier": "SDN:R07::QCP", + "pav:version": "1", + "skos:notation": "SDN:R07::QCP", + "skos:altLabel": "QCP$", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tests performed" + }, + "dc:identifier": "SDN:R07::QCP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Tests performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCF/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCF/1/" + }, + "dce:identifier": "SDN:R07::QCF", + "pav:version": "1", + "skos:notation": "SDN:R07::QCF", + "skos:altLabel": "QCF$", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Tests failed" + }, + "dc:identifier": "SDN:R07::QCF", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Tests failed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/IP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/DC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/SV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/UP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/PE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/NG/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/ED/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/TE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/CV/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCF/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R07/current/QCP/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Coded history information for each action performed on each profile by a data centre. Argo netCDF variable HISTORY_ACTION is populated by R07 altLabel.", + "dc:title": "Argo history action codes", + "skos:prefLabel": "Argo history action codes", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "HISTORY_ACTION", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "HISTORY_ACTION", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R07" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/ba00ca02d6838cd1acf58922b21a12e39319fbaff877b811419d9d21a98385f2.ncHeader b/argopy/tests/test_data/ba00ca02d6838cd1acf58922b21a12e39319fbaff877b811419d9d21a98385f2.ncHeader new file mode 100644 index 00000000..c0a501bb --- /dev/null +++ b/argopy/tests/test_data/ba00ca02d6838cd1acf58922b21a12e39319fbaff877b811419d9d21a98385f2.ncHeader @@ -0,0 +1,245 @@ +netcdf ArgoFloats-synthetic-BGC_1da9_7a94_d0af.nc { + dimensions: + row = 25861; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + int config_mission_number(row=25861); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=25861); + :_FillValue = 99999; // int + :actual_range = 1, 373; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=25861, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy_adjusted(row=25861); + :actual_range = 167.5023f, 99999.0f; // float + + float doxy_adjusted_error(row=25861); + :actual_range = 5.025068f, 99999.0f; // float + + char doxy_adjusted_qc(row=25861, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=25861); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -60.589, -44.943; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=25861); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -179.717, 179.96; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=25861, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=25861); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.3f, 2008.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=25861, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.66283f, 34.7961f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.0155498f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=25861, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.046f, 10.132f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=25861); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=25861, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=25861); + :_CoordinateAxisType = "Time"; + :actual_range = 1.266899783E9, 1.588319145E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=25861); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 179.96; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -44.943; // double + :geospatial_lat_min = -60.589; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 179.96; // double + :geospatial_lon_min = -179.717; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:44Z (local files) +2024-09-25T05:50:44Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%225903248%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -44.943; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -60.589; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2020-05-01T07:45:45Z"; + :time_coverage_start = "2010-02-23T04:36:23Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -179.717; // double +} diff --git a/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html b/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html new file mode 100644 index 00000000..4e52ec7e --- /dev/null +++ b/argopy/tests/test_data/ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777.html @@ -0,0 +1,14 @@ + + + Argo user’s manual + + + + + + +

Argo user’s manual

This document is the Argo data user’s manual. It contains the description of the formats and files produced by the Argo Data Assembly Centres (DACs).

Full Text

FilePagesSizeAccess
V3.3 (obsolete version)
1092 Mo
obsolete previous versions
-7 Mo
V3.4 (obsolete version)
1131 Mo
V3.41 (obsolete)
1111 Mo
Version 3.41.1 (last version)
1141 Mo
How to cite
Argo data management (2022). Argo user’s manual. Ifremer. https://doi.org/10.13155/29825

Copy this text

+ + + diff --git a/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json b/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json new file mode 100644 index 00000000..0955ddce --- /dev/null +++ b/argopy/tests/test_data/bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f.json @@ -0,0 +1,941 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/13/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/13/1/" + }, + "dce:identifier": "SDN:R11::13", + "pav:version": "1", + "skos:notation": "SDN:R11::13", + "skos:altLabel": "Test 13", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Stuck Value test" + }, + "dc:identifier": "SDN:R11::13", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Stuck Value test. Test binary ID = 8192" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/23/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/23/1/" + }, + "dce:identifier": "SDN:R11::23", + "pav:version": "1", + "skos:notation": "SDN:R11::23", + "skos:altLabel": "Test 23", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Interim rtqc flag scheme for data deeper than 2000 dbar" + }, + "dc:identifier": "SDN:R11::23", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interim rtqc flag scheme for data deeper than 2000 dbar. Test binary ID = 8388608" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/25/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/25/1/" + }, + "dce:identifier": "SDN:R11::25", + "pav:version": "1", + "skos:notation": "SDN:R11::25", + "skos:altLabel": "Test 25", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "MEDD test" + }, + "dc:identifier": "SDN:R11::25", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "MEDian with a Distance (MEDD) test. Test binary ID = 33554432" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/9/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/9/1/" + }, + "dce:identifier": "SDN:R11::9", + "pav:version": "1", + "skos:notation": "SDN:R11::9", + "skos:altLabel": "Test 9", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Spike test" + }, + "dc:identifier": "SDN:R11::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spike test. Test binary ID = 512" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/15/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/15/1/" + }, + "dce:identifier": "SDN:R11::15", + "pav:version": "1", + "skos:notation": "SDN:R11::15", + "skos:altLabel": "Test 15", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Grey List test" + }, + "dc:identifier": "SDN:R11::15", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Grey List test. Test binary ID = 32768" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/11/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/11/1/" + }, + "pav:authoredOn": "2020-04-07 23:03:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/11/2/" + }, + "dce:identifier": "SDN:R11::11", + "pav:version": "2", + "skos:notation": "SDN:R11::11", + "skos:altLabel": "Test 11", + "dc:date": "2020-04-07 23:03:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Gradient test" + }, + "dc:identifier": "SDN:R11::11", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Gradient test. Test binary ID = 2048" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/7/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/7/1/" + }, + "dce:identifier": "SDN:R11::7", + "pav:version": "1", + "skos:notation": "SDN:R11::7", + "skos:altLabel": "Test 7", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Regional Global Parameter test" + }, + "dc:identifier": "SDN:R11::7", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Regional Global Parameter test. Test binary ID = 128" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/2/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/2/1/" + }, + "dce:identifier": "SDN:R11::2", + "pav:version": "1", + "skos:notation": "SDN:R11::2", + "skos:altLabel": "Test 2", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Impossible Date test" + }, + "dc:identifier": "SDN:R11::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Impossible Date test. Test binary ID = 4" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/18/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/18/1/" + }, + "pav:authoredOn": "2022-06-07 14:36:14.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/18/2/" + }, + "dce:identifier": "SDN:R11::18", + "pav:version": "2", + "skos:notation": "SDN:R11::18", + "skos:altLabel": "Test 18", + "dc:date": "2022-06-07 14:36:14.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Frozen profile test" + }, + "dc:identifier": "SDN:R11::18", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Frozen profile test. Test binary ID = 261144" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/16/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/16/1/" + }, + "dce:identifier": "SDN:R11::16", + "pav:version": "1", + "skos:notation": "SDN:R11::16", + "skos:altLabel": "Test 16", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Gross Salinity or Temperature Sensor Drift test" + }, + "dc:identifier": "SDN:R11::16", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Gross Salinity or Temperature Sensor Drift test. Test binary ID = 65536" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/17/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/17/1/" + }, + "dce:identifier": "SDN:R11::17", + "pav:version": "1", + "skos:notation": "SDN:R11::17", + "skos:altLabel": "Test 17", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Visual QC test" + }, + "dc:identifier": "SDN:R11::17", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Visual QC test. Test binary ID = 131072" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/26/", + "pav:authoredOn": "2024-09-11 11:40:41.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/26/1/" + }, + "dce:identifier": "SDN:R11::26", + "pav:version": "1", + "skos:notation": "SDN:R11::26", + "skos:altLabel": "Test 26", + "dc:date": "2024-09-11 11:40:41.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "TEMP_CNDC test applied to RBRargo3 2K" + }, + "dc:identifier": "SDN:R11::26", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "TEMP_CNDC test applied to RBRargo3|2K, test added in July 2022. CTD data (< 2000 dbar) (TEMP_CNDC is used in the long timescale thermal inertia correction for RBR salinity data. This test aims to identify vertical profiles where TEMP_CNDC is of bad quality and thus unsuitable for use in the real-time adjustment of RBR salinity data.) Test 26 binary id = 67 108 864." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/3/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/3/1/" + }, + "dce:identifier": "SDN:R11::3", + "pav:version": "1", + "skos:notation": "SDN:R11::3", + "skos:altLabel": "Test 3", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Impossible Location test" + }, + "dc:identifier": "SDN:R11::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Impossible Location test. Test binary ID = 8" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/14/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/14/1/" + }, + "dce:identifier": "SDN:R11::14", + "pav:version": "1", + "skos:notation": "SDN:R11::14", + "skos:altLabel": "Test 14", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Density Inversion test" + }, + "dc:identifier": "SDN:R11::14", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Density Inversion test. Test binary ID = 16384" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/4/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/4/1/" + }, + "dce:identifier": "SDN:R11::4", + "pav:version": "1", + "skos:notation": "SDN:R11::4", + "skos:altLabel": "Test 4", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Position on Land test" + }, + "dc:identifier": "SDN:R11::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Position on Land test. Test binary ID = 16" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/24/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/24/1/" + }, + "dce:identifier": "SDN:R11::24", + "pav:version": "1", + "skos:notation": "SDN:R11::24", + "skos:altLabel": "Test 24", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Interim rtqc flag scheme for data from experimental sensors" + }, + "dc:identifier": "SDN:R11::24", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Interim rtqc flag scheme for data from experimental sensors. Test binary ID = 16777216" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/1/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/1/1/" + }, + "dce:identifier": "SDN:R11::1", + "pav:version": "1", + "skos:notation": "SDN:R11::1", + "skos:altLabel": "Test 1", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Platform Identification test" + }, + "dc:identifier": "SDN:R11::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Platform Identification test. Test binary ID = 2" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/12/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/12/1/" + }, + "dce:identifier": "SDN:R11::12", + "pav:version": "1", + "skos:notation": "SDN:R11::12", + "skos:altLabel": "Test 12", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Digit Rollover test" + }, + "dc:identifier": "SDN:R11::12", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Digit Rollover test. Test binary ID = 4096" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/5/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/5/1/" + }, + "dce:identifier": "SDN:R11::5", + "pav:version": "1", + "skos:notation": "SDN:R11::5", + "skos:altLabel": "Test 5", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Impossible Speed test" + }, + "dc:identifier": "SDN:R11::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Impossible Speed test. Test binary ID = 32" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/21/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/21/1/" + }, + "dce:identifier": "SDN:R11::21", + "pav:version": "1", + "skos:notation": "SDN:R11::21", + "skos:altLabel": "Test 21", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface unpumped CTD salinity test" + }, + "dc:identifier": "SDN:R11::21", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface unpumped CTD salinity test. Test binary ID = 2097152" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/10/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/10/1/" + }, + "pav:authoredOn": "2020-04-07 23:03:06.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/10/2/" + }, + "dce:identifier": "SDN:R11::10", + "pav:version": "2", + "skos:notation": "SDN:R11::10", + "skos:altLabel": "Test 10", + "dc:date": "2020-04-07 23:03:06.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Top and Bottom Spike test" + }, + "dc:identifier": "SDN:R11::10", + "skos:note": { + "@language": "en", + "@value": "deprecated" + }, + "owl:deprecated": "true", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Top and Bottom Spike test. Test binary ID = 1024" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/8/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/8/1/" + }, + "dce:identifier": "SDN:R11::8", + "pav:version": "1", + "skos:notation": "SDN:R11::8", + "skos:altLabel": "Test 8", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Pressure Increasing test" + }, + "dc:identifier": "SDN:R11::8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Pressure Increasing test. Test binary ID = 256" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/20/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/20/1/" + }, + "dce:identifier": "SDN:R11::20", + "pav:version": "1", + "skos:notation": "SDN:R11::20", + "skos:altLabel": "Test 20", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Questionable Argos position test" + }, + "dc:identifier": "SDN:R11::20", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Questionable Argos position test. Test binary ID = 1048576" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/6/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/6/1/" + }, + "dce:identifier": "SDN:R11::6", + "pav:version": "1", + "skos:notation": "SDN:R11::6", + "skos:altLabel": "Test 6", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Global Range test" + }, + "dc:identifier": "SDN:R11::6", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Global Range test. Test binary ID = 64" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/19/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/19/1/" + }, + "dce:identifier": "SDN:R11::19", + "pav:version": "1", + "skos:notation": "SDN:R11::19", + "skos:altLabel": "Test 19", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Deepest pressure test" + }, + "dc:identifier": "SDN:R11::19", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Deepest pressure test. Test binary ID = 524288" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/22/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/22/1/" + }, + "dce:identifier": "SDN:R11::22", + "pav:version": "1", + "skos:notation": "SDN:R11::22", + "skos:altLabel": "Test 22", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Near-surface mixed air/water test" + }, + "dc:identifier": "SDN:R11::22", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Near-surface mixed air/water test. Test binary ID = 4194304" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/13/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/23/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/25/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/15/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/11/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/7/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/18/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/16/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/17/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/26/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/14/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/24/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/1/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/12/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/21/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/10/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/20/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/6/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/22/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R11/current/19/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "List of real-time quality-control tests and corresponding binary identifiers, used as reference to populate the Argo netCDF HISTORY_QCTEST variable.", + "dc:title": "Argo real-time quality-control test identifiers", + "skos:prefLabel": "Argo real-time quality-control test identifiers", + "owl:versionInfo": "3", + "dc:date": "2024-09-12 03:00:00.0", + "skos:altLabel": "RTQC_TESTID", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "RTQC_TESTID", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R11" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/bd0945a7bf7f06db4f3bbfecdfc2c299b9b0b439187633803b866cc98495fbf7.nc b/argopy/tests/test_data/bd0945a7bf7f06db4f3bbfecdfc2c299b9b0b439187633803b866cc98495fbf7.nc new file mode 100644 index 00000000..255e87a6 Binary files /dev/null and b/argopy/tests/test_data/bd0945a7bf7f06db4f3bbfecdfc2c299b9b0b439187633803b866cc98495fbf7.nc differ diff --git a/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html b/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html new file mode 100644 index 00000000..894cf41b --- /dev/null +++ b/argopy/tests/test_data/bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb.html @@ -0,0 +1,16 @@ + + + Quality control for BGC-Argo radiometry + + + + + + +

Quality control for BGC-Argo radiometry

This document is the BGC-Argo quality control manual for radiometry observations.

+ +

This first version of the document is to apply an initial QC to all radiometry values. Except for data failing the following tests, all the other values will be flagged as probably good data (‘2’). Probably good data need to be validated (i.e., flagged as good “1”) in delay mode.

Keyword(s)

Argo, physical oceanography, in-situ marine data, profiling floats, radiometry, operational oceanography

Full Text

FilePagesSizeAccess
Publisher's official version
4533 Ko
How to cite
Poteau Antoine, Organelli Emanuele, Boss Emmanuel, Xing Xiaogang (2019). Quality control for BGC-Argo radiometry. Ifremer. https://doi.org/10.13155/62466

Copy this text

+ + + diff --git a/argopy/tests/test_data/c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d.html b/argopy/tests/test_data/c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d.html new file mode 100644 index 00000000..9356be62 --- /dev/null +++ b/argopy/tests/test_data/c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d.html @@ -0,0 +1,23 @@ + + + + Index of /dac + + +

Index of /dac

+ + + + + + + + + + + + + + +
[ICO]NameLast modifiedSizeDescription

[DIR]Parent Directory  -  
[DIR]aoml/20-Sep-2024 19:10 -  
[DIR]bodc/04-Sep-2024 16:11 -  
[DIR]coriolis/10-Sep-2024 17:35 -  
[DIR]csio/15-Sep-2024 13:12 -  
[DIR]csiro/12-Aug-2024 05:13 -  
[DIR]incois/10-Sep-2024 15:14 -  
[DIR]jma/13-Sep-2024 06:15 -  
[DIR]kma/18-Jul-2023 13:08 -  
[DIR]kordi/13-Dec-2023 02:17 -  
[DIR]meds/21-Sep-2024 11:18 -  
[DIR]nmdis/27-Mar-2019 10:09 -  

+ diff --git a/argopy/tests/test_data/c0770be1ac57c131636d8bc05976b1d135ee0e787671a64b4019fd1505710c20.ncHeader b/argopy/tests/test_data/c0770be1ac57c131636d8bc05976b1d135ee0e787671a64b4019fd1505710c20.ncHeader new file mode 100644 index 00000000..10056b73 --- /dev/null +++ b/argopy/tests/test_data/c0770be1ac57c131636d8bc05976b1d135ee0e787671a64b4019fd1505710c20.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_7761_c581_d6e1.nc { + dimensions: + row = 24126; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 149; + variables: + int config_mission_number(row=24126); + :_FillValue = 99999; // int + :actual_range = 1, 3; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=24126); + :_FillValue = 99999; // int + :actual_range = 0, 88; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=24126, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=24126, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=24126); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.083000000000006, -39.236000000000004; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=24126); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 0.0034000000000000002, 47.219; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=24126, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=24126, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=24126); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 11.0f, 2015.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 11.0f, 2015.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=24126, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=24126, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 33.553f, 35.5f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 33.553f, 35.5f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=24126, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=24126, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = -1.713f, 18.53f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = -1.713f, 18.53f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=24126); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=24126, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=24126, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=24126); + :_CoordinateAxisType = "Time"; + :actual_range = 1.10659992E9, 1.20725238E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=24126, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=24126, vertical_sampling_scheme_strlen=149); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 47.219; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -39.236000000000004; // double + :geospatial_lat_min = -57.083000000000006; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 47.219; // double + :geospatial_lon_min = 0.0034000000000000002; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:53:00Z (local files) +2024-09-24T08:53:00Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221900468%7C1900117%7C1900386%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = -39.236000000000004; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.083000000000006; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2008-04-03T19:53:00Z"; + :time_coverage_start = "2005-01-24T20:52:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = 0.0034000000000000002; // double +} diff --git a/argopy/tests/test_data/c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6.json b/argopy/tests/test_data/c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6.json new file mode 100644 index 00000000..cac75af4 --- /dev/null +++ b/argopy/tests/test_data/c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6.json @@ -0,0 +1,286 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/1/" + }, + "dce:identifier": "SDN:RP2::N", + "pav:version": "1", + "skos:notation": "SDN:RP2::N", + "skos:altLabel": "N", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RP2::N", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No quality control (QC) was performed on any of the profile levels." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/1/" + }, + "dce:identifier": "SDN:RP2::C", + "pav:version": "1", + "skos:notation": "SDN:RP2::C", + "skos:altLabel": "C", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "50% - 75% of profile good" + }, + "dc:identifier": "SDN:RP2::C", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 50% (included) and 75% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/1/" + }, + "dce:identifier": "SDN:RP2::E", + "pav:version": "1", + "skos:notation": "SDN:RP2::E", + "skos:altLabel": "E", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% - 25% of profile good" + }, + "dc:identifier": "SDN:RP2::E", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 0% (excluded) and 25% (excluded) of all levels in a given profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/1/" + }, + "dce:identifier": "SDN:RP2::D", + "pav:version": "1", + "skos:notation": "SDN:RP2::D", + "skos:altLabel": "D", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "25% - 50% of profile good" + }, + "dc:identifier": "SDN:RP2::D", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 25% (included) and 50% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/1/" + }, + "dce:identifier": "SDN:RP2::F", + "pav:version": "1", + "skos:notation": "SDN:RP2::F", + "skos:altLabel": "F", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "0% of profile good" + }, + "dc:identifier": "SDN:RP2::F", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "0% of all levels in the profile contain good data. This means that all levels are associated with quality control (QC) flags of 3, 4, 6 or 7. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/1/" + }, + "dce:identifier": "SDN:RP2::B", + "pav:version": "1", + "skos:notation": "SDN:RP2::B", + "skos:altLabel": "B", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "75% - 100% of profile good" + }, + "dc:identifier": "SDN:RP2::B", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Between 75% (included) and 100% (excluded) of all levels in the profile contain good data. Levels containing good data are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/1/" + }, + "dce:identifier": "SDN:RP2::A", + "pav:version": "1", + "skos:notation": "SDN:RP2::A", + "skos:altLabel": "A", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "100% of profile good" + }, + "dc:identifier": "SDN:RP2::A", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "100% of all levels in the profile contain good data. This means that all levels are associated with quality control flags (QC) flags of 1, 2, 5 or 8. Levels with QC flag values of 9 are excluded form the computation." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/N/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/C/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/E/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/D/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/F/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/A/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RP2/current/B/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality control flag scale for whole profiles. Argo netCDF variables PROFILE__QC are populated by RP2 altLabel.", + "dc:title": "Argo profile quality control flags", + "skos:prefLabel": "Argo profile quality control flags", + "owl:versionInfo": "0", + "dc:date": "2020-04-04 15:31:03.0", + "skos:altLabel": "PROF_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PROF_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/RP2" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/c3f134a69f38f36307f2db7ff94f9cc2dd48d323a614d9b32032eb55e7ce84aa.ncHeader b/argopy/tests/test_data/c3f134a69f38f36307f2db7ff94f9cc2dd48d323a614d9b32032eb55e7ce84aa.ncHeader new file mode 100644 index 00000000..9f6ac9a4 --- /dev/null +++ b/argopy/tests/test_data/c3f134a69f38f36307f2db7ff94f9cc2dd48d323a614d9b32032eb55e7ce84aa.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_e4e6_1087_133f.nc { + dimensions: + row = 33; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 89; + variables: + int config_mission_number(row=33); + :_FillValue = 99999; // int + :actual_range = 0, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=33); + :_FillValue = 99999; // int + :actual_range = 10, 37; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=33, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=33, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=33); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 40.20399856567383, 43.39500045776367; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=33); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -58.93600082397461, -55.21699905395508; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=33, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=33, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=33); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.5f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 4.3f, 20.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=33, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=33, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 31.719f, 36.15f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 31.71919f, 36.14999f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01038f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=33, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=33, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 14.579f, 26.732f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 14.579f, 26.732f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=33); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=33, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=33, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=33); + :_CoordinateAxisType = "Time"; + :actual_range = 1.18597716E9, 1.18857948E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=33, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=33, vertical_sampling_scheme_strlen=89); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -55.21699905395508; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 43.39500045776367; // double + :geospatial_lat_min = 40.20399856567383; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -55.21699905395508; // double + :geospatial_lon_min = -58.93600082397461; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:54:47Z (local files) +2024-09-24T08:54:47Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude%3E=-60&longitude%3C=-55&latitude%3E=40.0&latitude%3C=45.0&pres_adjusted%3E=0.0&pres_adjusted%3C=20.0&time%3E=1185926400.0&time%3C=1188604800.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 43.39500045776367; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 40.20399856567383; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2007-08-31T16:58:00Z"; + :time_coverage_start = "2007-08-01T14:06:00Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -58.93600082397461; // double +} diff --git a/argopy/tests/test_data/c5a369a1b1dc6fee88f431144bec5704fc3aca3f22e00963d77c75183018e718.nc b/argopy/tests/test_data/c5a369a1b1dc6fee88f431144bec5704fc3aca3f22e00963d77c75183018e718.nc new file mode 100644 index 00000000..ab50aa7d Binary files /dev/null and b/argopy/tests/test_data/c5a369a1b1dc6fee88f431144bec5704fc3aca3f22e00963d77c75183018e718.nc differ diff --git a/argopy/tests/test_data/c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090.nc b/argopy/tests/test_data/c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090.nc new file mode 100644 index 00000000..837b5ce8 Binary files /dev/null and b/argopy/tests/test_data/c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090.nc differ diff --git a/argopy/tests/test_data/c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513.json b/argopy/tests/test_data/c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513.json new file mode 100644 index 00000000..3784870b --- /dev/null +++ b/argopy/tests/test_data/c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513.json @@ -0,0 +1,354 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARDU/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARDU/1/" + }, + "dce:identifier": "SDN:R12::ARDU", + "pav:version": "1", + "skos:notation": "SDN:R12::ARDU", + "skos:altLabel": "ARDU", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Delayed-mode data archived locally and sent to GDACs" + }, + "dc:identifier": "SDN:R12::ARDU", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delayed-data have been archived locally and sent to the Global Data Assembly Centres (GDACs)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARGQ/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARGQ/1/" + }, + "dce:identifier": "SDN:R12::ARGQ", + "pav:version": "1", + "skos:notation": "SDN:R12::ARGQ", + "skos:altLabel": "ARGQ", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Automatic QC of real-time data performed" + }, + "dc:identifier": "SDN:R12::ARGQ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Automatic quality-control (QC) of data reported in real-time has been performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/IGO3/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/IGO3/1/" + }, + "dce:identifier": "SDN:R12::IGO3", + "pav:version": "1", + "skos:notation": "SDN:R12::IGO3", + "skos:altLabel": "IGO3", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Duplicates checking performed" + }, + "dc:identifier": "SDN:R12::IGO3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Checking for duplicates has been performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/COOA/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/COOA/1/" + }, + "dce:identifier": "SDN:R12::COOA", + "pav:version": "1", + "skos:notation": "SDN:R12::COOA", + "skos:altLabel": "COOA", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Coriolis objective analysis performed" + }, + "dc:identifier": "SDN:R12::COOA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Coriolis objective analysis performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARCA/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARCA/1/" + }, + "dce:identifier": "SDN:R12::ARCA", + "pav:version": "1", + "skos:notation": "SDN:R12::ARCA", + "skos:altLabel": "ARCA", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Calibration performed" + }, + "dc:identifier": "SDN:R12::ARCA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibration has been performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARFM/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARFM/1/" + }, + "dce:identifier": "SDN:R12::ARFM", + "pav:version": "1", + "skos:notation": "SDN:R12::ARFM", + "skos:altLabel": "ARFM", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw data converted to a processing format" + }, + "dc:identifier": "SDN:R12::ARFM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw data from telecommunications system has been converted to a processing format." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARUP/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARUP/1/" + }, + "dce:identifier": "SDN:R12::ARUP", + "pav:version": "1", + "skos:notation": "SDN:R12::ARUP", + "skos:altLabel": "ARUP", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Real-time data archived locally and sent to GDACs" + }, + "dc:identifier": "SDN:R12::ARUP", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Real-time data have been archived locally and sent to the Global Data Assembly Centres (GDACs)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/RFMT/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/RFMT/1/" + }, + "dce:identifier": "SDN:R12::RFMT", + "pav:version": "1", + "skos:notation": "SDN:R12::RFMT", + "skos:altLabel": "RFMT", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Hexadecimal format reported by the buoy converted to our standard format using reformat software" + }, + "dc:identifier": "SDN:R12::RFMT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Reformat software to convert hexadecimal format reported by the buoy to our standard format." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARSQ/", + "pav:authoredOn": "2020-04-07 22:59:46.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARSQ/1/" + }, + "dce:identifier": "SDN:R12::ARSQ", + "pav:version": "1", + "skos:notation": "SDN:R12::ARSQ", + "skos:altLabel": "ARSQ", + "dc:date": "2020-04-07 22:59:46.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Delayed-mode QC performed" + }, + "dc:identifier": "SDN:R12::ARSQ", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delayed-mode quality-control (QC) has been performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARDU/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARGQ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/IGO3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/COOA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARCA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARFM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARUP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/ARSQ/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R12/current/RFMT/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Data processing step codes for history record. Argo netCDF variable TRANS_SYSTEM is populated by R12 altLabel.", + "dc:title": "Argo history processing step codes", + "skos:prefLabel": "Argo history processing step codes", + "owl:versionInfo": "1", + "dc:date": "2020-04-08 03:00:04.0", + "skos:altLabel": "HISTORY_STEP", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "HISTORY_STEP", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R12" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/c9ad15c94f3e8d714e3c0423bc8611423c543ad02af12934e455b2f59e9dc543.ncHeader b/argopy/tests/test_data/c9ad15c94f3e8d714e3c0423bc8611423c543ad02af12934e455b2f59e9dc543.ncHeader new file mode 100644 index 00000000..f937e54c --- /dev/null +++ b/argopy/tests/test_data/c9ad15c94f3e8d714e3c0423bc8611423c543ad02af12934e455b2f59e9dc543.ncHeader @@ -0,0 +1,760 @@ +netcdf ArgoFloats-synthetic-BGC_1ae5_5fb7_6f50.nc { + dimensions: + row = 83615; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -9.164699E-4f, 0.05414488f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -9.164699E-4f, 0.05414488f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=83615, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=83615, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.880162f, 7.964f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=83615, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=83615, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.761025f, 13.45299f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01356583f, 3.577122f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=83615, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=83615, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=83615); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 0.0307578f, 37.92605f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=83615, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=83615, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=83615); + :_FillValue = 99999; // int + :actual_range = 1, 57; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=83615, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.484757E-4f, 0.7294909f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.455375E-5f, 0.7292956f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01458591f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=83615, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=83615, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.274848E-5f, 1.377052f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.610992E-5f, 1.376981f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02753962f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=83615, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=83615, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -8.524217E-5f, 1.843542f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.414902E-5f, 1.84358f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.0368716f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=83615, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=83615, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.4787728f, 2514.499f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.05009519f, 2514.08f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 125.704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=83615, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=83615, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 259.8413f, 344.439f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 264.4146f, 350.5012f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 12.55041f, 17.08033f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=83615, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=83615, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=83615); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.84967733333333, 57.650632166666675; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=83615); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.10385516666667, -43.740898; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 3.8049f, 21.64844f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=83615); + :actual_range = 0.9445617f, 99999.0f; // float + + float nitrate_adjusted_error(row=83615); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=83615, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=83615, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=83615); + :_FillValue = 99999.0f; // float + :actual_range = 7.010946f, 8.225677f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=83615); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=83615, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=83615, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=83615, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=83615); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=83615); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = -0.29f, 2005.056f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.054f, 2003.352f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=83615, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=83615, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 27.411f, 34.936f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.20806f, 34.93495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=83615, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=83615, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=83615); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=83615, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=83615, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=83615); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653827397E9, 1.701612697015E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=83615); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -43.740898; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 57.650632166666675; // double + :geospatial_lat_min = 55.84967733333333; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -43.740898; // double + :geospatial_lon_min = -53.10385516666667; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:25Z (local files) +2024-09-24T12:43:25Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%226904241%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 57.650632166666675; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.84967733333333; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-12-03T14:11:37Z"; + :time_coverage_start = "2022-05-29T12:29:57Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.10385516666667; // double +} diff --git a/argopy/tests/test_data/c9d0dfdf08ba58c96a7048e66a941090516edf2cc4c4823359ce8db2b1a2a1ac.ncHeader b/argopy/tests/test_data/c9d0dfdf08ba58c96a7048e66a941090516edf2cc4c4823359ce8db2b1a2a1ac.ncHeader new file mode 100644 index 00000000..abf57748 --- /dev/null +++ b/argopy/tests/test_data/c9d0dfdf08ba58c96a7048e66a941090516edf2cc4c4823359ce8db2b1a2a1ac.ncHeader @@ -0,0 +1,343 @@ +netcdf ArgoFloats_9895_837e_eedb.nc { + dimensions: + row = 38045; + data_mode_strlen = 1; + direction_strlen = 1; + platform_number_strlen = 7; + position_qc_strlen = 1; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + time_qc_strlen = 1; + vertical_sampling_scheme_strlen = 205; + variables: + int config_mission_number(row=38045); + :_FillValue = 99999; // int + :actual_range = 1, 3; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=38045); + :_FillValue = 99999; // int + :actual_range = 1, 367; // int + :cf_role = "profile_id"; + :colorBarMaximum = 200.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :ioos_category = "Statistics"; + :long_name = "Float cycle number"; + + char data_mode(row=38045, data_mode_strlen=1); + :_Encoding = "ISO-8859-1"; + :conventions = "R : real time; D : delayed mode; A : real time with adjustment"; + :ioos_category = "Time"; + :long_name = "Delayed mode or real time data"; + + char direction(row=38045, direction_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + double latitude(row=38045); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -49.526, 21.17; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=38045); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -77.428, 142.722; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=38045, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=38045, position_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=38045); + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2037.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 3.0f, 2037.0f; // float + :axis = "Z"; + :C_format = "%7.1f"; + :colorBarMaximum = 5000.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Sea Level"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%7.1f"; + :colorBarMaximum = 50.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F7.1"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "decibar"; + + char pres_adjusted_qc(row=38045, pres_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char pres_qc(row=38045, pres_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float psal(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 33.751f, 37.464f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 33.73227f, 37.464f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 37.0; // double + :colorBarMinimum = 32.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Salinity"; + :long_name = "Practical salinity"; + :standard_name = "sea_water_practical_salinity"; + :units = "PSU"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01422f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "psu"; + + char psal_adjusted_qc(row=38045, psal_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char psal_qc(row=38045, psal_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + float temp(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 29.895f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 2.256f, 29.895f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 32.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Temperature"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=38045); + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%9.3f"; + :colorBarMaximum = 1.0; // double + :colorBarMinimum = 0.0; // double + :FORTRAN_format = "F9.3"; + :ioos_category = "Statistics"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=38045, temp_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + char temp_qc(row=38045, temp_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "quality flag"; + + double time(row=38045); + :_CoordinateAxisType = "Time"; + :actual_range = 1.261966039E9, 1.583463689E9; // double + :axis = "T"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=38045, time_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :ioos_category = "Quality"; + :long_name = "Quality on date and time"; + + char vertical_sampling_scheme(row=38045, vertical_sampling_scheme_strlen=205); + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 16"; + :ioos_category = "Unknown"; + :long_name = "Vertical sampling scheme"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"; + :cdm_trajectory_variables = "platform_number, project_name, pi_name, platform_type, float_serial_no"; + :Conventions = "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"; + :creator_email = "support@argo.net"; + :creator_name = "Argo"; + :creator_url = "https://argo.ucsd.edu/"; + :defaultGraphQuery = "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 142.722; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 21.17; // double + :geospatial_lat_min = -49.526; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 142.722; // double + :geospatial_lon_min = -77.428; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T08:52:41Z (local files) +2024-09-24T08:52:41Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~%221901393%7C6902746%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "ArgoFloats"; + :infoUrl = "https://argo.ucsd.edu/"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "falsestandard]"; + :Northernmost_Northing = 21.17; // double + :references = "http://www.argodatamgt.org/Documentation"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -49.526; // double + :standard_name_vocabulary = "CF Standard Name Table v29"; + :summary = "Argo float vertical profiles from Coriolis Global Data Assembly Centres +(GDAC). Argo is an international collaboration that collects high-quality +temperature and salinity profiles from the upper 2000m of the ice-free +global ocean and currents from intermediate depths. The data come from +battery-powered autonomous floats that spend most of their life drifting +at depth where they are stabilised by being neutrally buoyant at the +\"parking depth\" pressure by having a density equal to the ambient pressure +and a compressibility that is less than that of sea water. At present there +are several models of profiling float used in Argo. All work in a similar +fashion but differ somewhat in their design characteristics. At typically +10-day intervals, the floats pump fluid into an external bladder and rise +to the surface over about 6 hours while measuring temperature and salinity. +Satellites or GPS determine the position of the floats when they surface, +and the floats transmit their data to the satellites. The bladder then +deflates and the float returns to its original density and sinks to drift +until the cycle is repeated. Floats are designed to make about 150 such +cycles. +Data Management URL: http://www.argodatamgt.org/Documentation"; + :time_coverage_end = "2020-03-06T03:01:29Z"; + :time_coverage_start = "2009-12-28T02:07:19Z"; + :title = "Argo Float Measurements"; + :user_manual_version = "3.1"; + :Westernmost_Easting = -77.428; // double +} diff --git a/argopy/tests/test_data/cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e.js b/argopy/tests/test_data/cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e.js new file mode 100644 index 00000000..741a7246 --- /dev/null +++ b/argopy/tests/test_data/cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e.js @@ -0,0 +1,3 @@ +[ +{"_id":"6902746_034","geolocation":{"type":"Point","coordinates":[-58.11900000000003,18.983]},"basin":1,"timestamp":"2017-12-20T06:58:00.000Z","date_updated_argovis":"2023-01-31T13:56:15.906Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_034.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,15,26,36,46,56,66,76,85,96,105,115,125,135,145,155,166,175,186,196,206,216,225,236,246,256,266,275,285,296,306,315,325,335,346,363,388,413,438,463,488,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1038,1063,1089,1113,1138,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1488,1514,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1964,1988,2007],[27.212,27.212,27.212999,27.212,27.214001,27.212,27.216,27.216,27.216999,27.219,27.228001,27.233999,27.25,27.266001,26.614,25.837999,25.334,25.042999,24.820999,24.533001,24.082001,23.830999,23.540001,23.038,22.361,21.820999,21.400999,20.996,20.554001,20.195999,19.638,19.35,19.091,18.902,18.707001,18.413,18.155001,17.885,17.627001,17.382999,17.054001,16.837,16.528999,15.904,15.37,14.917,14.48,13.899,13.157,12.211,11.929,11.424,11.225,10.642,9.792,9.194,8.83,8.369,7.98,7.676,7.463,7.148,6.879,6.674,6.521,6.383,6.225,6.063,5.968,5.901,5.837,5.783,5.73,5.658,5.593,5.511,5.427,5.322,5.217,5.124,5.042,4.992,4.912,4.809,4.745,4.673,4.601,4.539,4.472,4.431,4.387,4.352,4.306,4.238,4.185,4.135,4.072,4.015,3.966,3.92,3.867,3.828,3.786,3.741,3.71,3.718,3.698,3.668,3.644],[36.262001,36.262001,36.263,36.262001,36.262001,36.263,36.263,36.262001,36.262001,36.262001,36.275002,36.314999,36.375999,36.477001,37.16,37.408001,37.453999,37.463001,37.460999,37.435001,37.390999,37.362999,37.324001,37.234001,37.123001,37.049999,37.016998,36.963001,36.902,36.862999,36.778,36.734001,36.709999,36.681999,36.654999,36.612999,36.57,36.526001,36.483002,36.441002,36.384998,36.346001,36.296001,36.193001,36.105,36.030998,35.962002,35.872002,35.744999,35.556999,35.521999,35.465,35.471001,35.389999,35.251999,35.161999,35.130001,35.068001,35.02,34.984001,34.959999,34.929001,34.905998,34.890999,34.891998,34.889999,34.891998,34.890999,34.900002,34.917999,34.932999,34.949001,34.960999,34.974998,34.985001,34.995998,35.004002,35.011002,35.014999,35.018002,35.02,35.021,35.02,35.018002,35.014999,35.011002,35.008999,35.007,35.005001,35.004002,35.001999,35.000999,34.999001,34.994999,34.992001,34.990002,34.987,34.985001,34.983002,34.980999,34.979,34.978001,34.976002,34.974998,34.976002,34.980999,34.984001,34.983002,34.983002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +] diff --git a/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html b/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html new file mode 100644 index 00000000..c3effed2 --- /dev/null +++ b/argopy/tests/test_data/cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9.html @@ -0,0 +1,14 @@ + + + Processing Argo oxygen data at the DAC level + + + + + + +

Processing Argo oxygen data at the DAC level

This document does NOT address the issue of oxygen data quality control (either real-time or delayed mode). As a preliminary step towards that goal, this document seeks to ensure that all countries deploying floats equipped with oxygen sensors document the data and metadata related to these floats properly. We produced this document in response to action item 14 from the AST-10 meeting in Hangzhou (March 22-23, 2009). Action item 14: Denis Gilbert to work with Taiyo Kobayashi and Virginie Thierry to ensure DACs are processing oxygen data according to recommendations. If the recommendations contained herein are followed, we will end up with a more uniform set of oxygen data within the Argo data system, allowing users to begin analysing not only their own oxygen data, but also those of others, in the true spirit of Argo data sharing. Indications provided in this document are valid as of the date of writing this document. It is very likely that changes in sensors, calibrations and conversions equations will occur in the future. Please contact V. Thierry (vthierry@ifremer.fr) for any inconsistencies or missing information. A dedicated webpage on the Argo Data Management website (www) contains all information regarding Argo oxygen data management : current and previous version of this cookbook, oxygen sensor manuals, calibration sheet examples, examples of matlab code to process oxygen data, test data, etc..

Keyword(s)

argo, bio-argo, oxygen

Full Text

FilePagesSizeAccess
obsolete versions
-5 Mo
obsolete version 2.2
11691 Mo
obsolete version 2.3.1
1384 Mo
obsolete version 2.3.2
1373 Mo
Publisher's official version
1383 Mo
How to cite
Thierry Virginie, Bittig Henry, Gilbert Denis, Kobayashi Taiyo, Kanako Sato, Schmid Claudia (2022). Processing Argo oxygen data at the DAC level. Ifremer. https://doi.org/10.13155/39795

Copy this text

+ + + diff --git a/argopy/tests/test_data/cdbcc470470af9797f94119181c2b3df35d3e6effb3ef14b97b3f68438387703.nc b/argopy/tests/test_data/cdbcc470470af9797f94119181c2b3df35d3e6effb3ef14b97b3f68438387703.nc new file mode 100644 index 00000000..3dda5463 Binary files /dev/null and b/argopy/tests/test_data/cdbcc470470af9797f94119181c2b3df35d3e6effb3ef14b97b3f68438387703.nc differ diff --git a/argopy/tests/test_data/ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c.json b/argopy/tests/test_data/ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c.json new file mode 100644 index 00000000..10b13534 --- /dev/null +++ b/argopy/tests/test_data/ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c.json @@ -0,0 +1,335 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/1/" + }, + "dce:identifier": "SDN:RD2::8", + "pav:version": "1", + "skos:notation": "SDN:RD2::8", + "skos:altLabel": "8", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Estimated value" + }, + "dc:identifier": "SDN:RD2::8", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Estimated value (interpolated, extrapolated or other estimation)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/2/" + }, + "dce:identifier": "SDN:RD2::9", + "pav:version": "2", + "skos:notation": "SDN:RD2::9", + "skos:altLabel": "9", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Missing Value" + }, + "dc:identifier": "SDN:RD2::9", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Missing value. Data parameter will record FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/2/" + }, + "dce:identifier": "SDN:RD2::2", + "pav:version": "2", + "skos:notation": "SDN:RD2::2", + "skos:altLabel": "2", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably good data" + }, + "dc:identifier": "SDN:RD2::2", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Delayed-mode evaluation is based on insufficient information. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/2/" + }, + "dce:identifier": "SDN:RD2::3", + "pav:version": "2", + "skos:notation": "SDN:RD2::3", + "skos:altLabel": "3", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Probably bad data that are potentially adjustable" + }, + "dc:identifier": "SDN:RD2::3", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "An adjustment may (or may not) have been applied, but the value may still be bad. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/1/" + }, + "dce:identifier": "SDN:RD2::5", + "pav:version": "1", + "skos:notation": "SDN:RD2::5", + "skos:altLabel": "5", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Value changed" + }, + "dc:identifier": "SDN:RD2::5", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Value changed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/2/" + }, + "dce:identifier": "SDN:RD2::4", + "pav:version": "2", + "skos:notation": "SDN:RD2::4", + "skos:altLabel": "4", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Bad data" + }, + "dc:identifier": "SDN:RD2::4", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Not adjustable. Adjusted data are replaced by FillValue." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/1/" + }, + "pav:authoredOn": "2024-04-18 10:15:35.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/2/" + }, + "dce:identifier": "SDN:RD2::1", + "pav:version": "2", + "skos:notation": "SDN:RD2::1", + "skos:altLabel": "1", + "dc:date": "2024-04-18 10:15:35.0", + "owl:versionInfo": "2", + "skos:prefLabel": { + "@language": "en", + "@value": "Good data" + }, + "dc:identifier": "SDN:RD2::1", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No adjustment is needed, or the adjusted value is statistically consistent with good quality reference data. An error estimate is supplied." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/1/" + }, + "dce:identifier": "SDN:RD2::0", + "pav:version": "1", + "skos:notation": "SDN:RD2::0", + "skos:altLabel": "0", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "No QC" + }, + "dc:identifier": "SDN:RD2::0", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "No delayed-mode quality-control (QC) was performed." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/8/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/9/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/5/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/4/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/0/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RD2/current/1/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Quality flag scale for delayed-mode measurements. Argo netCDF variables _ADJUSTED_QC in 'D' mode are populated by RD2 altLabel.", + "dc:title": "Argo delayed-mode quality control measurement flags", + "skos:prefLabel": "Argo delayed-mode quality control measurement flags", + "owl:versionInfo": "1", + "dc:date": "2024-04-19 03:00:08.0", + "skos:altLabel": "DM_QC_FLAG", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "DM_QC_FLAG", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/RD2" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/cf9d23834fa5d1959c13788184086c40f66795ac295533f39b61bc9a93f6a8f7.ncHeader b/argopy/tests/test_data/cf9d23834fa5d1959c13788184086c40f66795ac295533f39b61bc9a93f6a8f7.ncHeader new file mode 100644 index 00000000..babad9a3 --- /dev/null +++ b/argopy/tests/test_data/cf9d23834fa5d1959c13788184086c40f66795ac295533f39b61bc9a93f6a8f7.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_e65c_2ec2_a7a4.nc { + dimensions: + row = 26107; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=26107); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=26107); + :_FillValue = 99999; // int + :actual_range = 1, 373; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=26107, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.358001f, 322.7896f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 167.5023f, 352.5889f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.025068f, 16.03393f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=26107, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=26107, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=26107); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -60.589, -44.943; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=26107); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -179.717, 179.96; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=26107, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=26107); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=26107); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 3.4f, 2009.7f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.3f, 2010.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=26107, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=26107, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.231f, 34.796f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.66283f, 34.7961f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.0155498f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=26107, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=26107, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.046f, 10.132f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.046f, 10.132f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=26107); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=26107, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=26107, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=26107); + :_CoordinateAxisType = "Time"; + :actual_range = 1.266899783E9, 1.588319145E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=26107); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 179.96; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -44.943; // double + :geospatial_lat_min = -60.589; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 179.96; // double + :geospatial_lon_min = -179.717; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:00Z (local files) +2024-09-24T12:43:00Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%225903248%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -44.943; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -60.589; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2020-05-01T07:45:45Z"; + :time_coverage_start = "2010-02-23T04:36:23Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -179.717; // double +} diff --git a/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc b/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc new file mode 100644 index 00000000..a90c8974 Binary files /dev/null and b/argopy/tests/test_data/d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8.nc differ diff --git a/argopy/tests/test_data/d0969db4b577d2c36a23af45e9fa73125ca91961bc440498342e16a6e3dae47a.nc b/argopy/tests/test_data/d0969db4b577d2c36a23af45e9fa73125ca91961bc440498342e16a6e3dae47a.nc new file mode 100644 index 00000000..526baab6 Binary files /dev/null and b/argopy/tests/test_data/d0969db4b577d2c36a23af45e9fa73125ca91961bc440498342e16a6e3dae47a.nc differ diff --git a/argopy/tests/test_data/d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a.js b/argopy/tests/test_data/d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a.js new file mode 100644 index 00000000..b7b2415e --- /dev/null +++ b/argopy/tests/test_data/d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a.js @@ -0,0 +1,3 @@ +[ +{"_id":"6902746_012","geolocation":{"type":"Point","coordinates":[-59.238,18.804]},"basin":1,"timestamp":"2017-09-01T06:53:00.000Z","date_updated_argovis":"2023-01-31T13:55:37.520Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/6902746/profiles/D6902746_012.nc","date_updated":"2022-03-04T15:56:59.000Z"}],"cycle_number":12,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 350 dbar; 10 sec sampling, 10 dbar average from 350 dbar to 10 dbar; 10 sec sampling, 1 dbar average from 10 dbar to 2.5 dbar]","data":[[3,4,5,6,7,8,9,10,16,26,35,45,55,66,75,86,95,105,115,126,135,146,155,165,176,186,195,206,216,226,236,245,255,266,276,285,295,306,316,326,336,346,363,388,413,438,463,488,513,538,563,588,613,639,663,688,713,738,763,788,813,838,864,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1213,1238,1264,1288,1313,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1914,1938,1963,1989],[28.898001,28.898001,28.896,28.893,28.892,28.896,28.902,28.900999,28.907,28.858999,28.882,28.374001,27.079,26.228001,25.722,25.299,25.033001,24.636999,24.198,23.351,22.698999,22.211,21.721001,21.035,20.636,20.278999,19.900999,19.518,19.278,19.031,18.702,18.544001,18.355,18.226,18.040001,17.91,17.677999,17.368,17.136999,16.955999,16.74,16.511,16.162001,15.58,15.029,14.405,13.713,13.163,11.876,11.537,11.03,10.53,10.135,9.876,9.278,9.161,8.985,8.427,7.927,7.663,7.271,6.801,6.623,6.442,6.344,6.208,5.921,5.869,5.792,5.774,5.748,5.727,5.707,5.653,5.563,5.404,5.374,5.332,5.259,5.203,5.134,5.116,5.075,4.993,4.912,4.824,4.746,4.679,4.619,4.548,4.481,4.437,4.388,4.312,4.255,4.203,4.149,4.095,4.055,4.003,3.957,3.925,3.876,3.838,3.802,3.771,3.734,3.693],[35.025002,35.026001,35.026001,35.025002,35.025002,35.027,35.025002,35.026001,35.027,35.549999,36.282001,36.972,37.098999,37.161999,37.213001,37.273998,37.285999,37.290001,37.25,37.140999,37.076,37.004002,36.924999,36.847,36.84,36.820999,36.772999,36.724998,36.706001,36.676998,36.625999,36.611,36.59,36.570999,36.544998,36.530998,36.491001,36.437,36.402,36.372002,36.34,36.299,36.242001,36.141998,36.049,35.948002,35.834,35.75,35.470001,35.437,35.353001,35.265999,35.226002,35.220001,35.132999,35.151001,35.140999,35.056999,34.980999,34.960999,34.918999,34.858002,34.847,34.847,34.852001,34.842999,34.817001,34.831001,34.839001,34.861,34.890999,34.922001,34.943001,34.964001,34.974998,34.964001,34.973999,34.986,34.993,34.998001,35.004002,35.009998,35.016998,35.016998,35.018002,35.015999,35.014999,35.014,35.013,35.011002,35.009998,35.008999,35.007999,35.005001,35.002998,35.000999,34.999001,34.997002,34.994999,34.993,34.992001,34.992001,34.991001,34.990002,34.988998,34.988998,34.987999,34.987999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["6902746_m0"]} +] diff --git a/argopy/tests/test_data/d14e2f7fbc74cb9c4d5e9fc2dcaf5ffeb25266ff6db8647abc930d1ddd052a2a.nc b/argopy/tests/test_data/d14e2f7fbc74cb9c4d5e9fc2dcaf5ffeb25266ff6db8647abc930d1ddd052a2a.nc new file mode 100644 index 00000000..33d4d308 Binary files /dev/null and b/argopy/tests/test_data/d14e2f7fbc74cb9c4d5e9fc2dcaf5ffeb25266ff6db8647abc930d1ddd052a2a.nc differ diff --git a/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json b/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json new file mode 100644 index 00000000..d9c18280 --- /dev/null +++ b/argopy/tests/test_data/d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58.json @@ -0,0 +1 @@ +[{"id":1791235,"cvNumber":40,"coordinate":{"lat":0.673,"lon":94.817},"level":0},{"id":1779670,"cvNumber":38,"coordinate":{"lat":1.239,"lon":94.346},"level":0},{"id":1665413,"cvNumber":27,"coordinate":{"lat":1.997,"lon":93.882},"level":0},{"id":1674829,"cvNumber":28,"coordinate":{"lat":2.047,"lon":93.754},"level":0},{"id":1730054,"cvNumber":32,"coordinate":{"lat":1.226,"lon":93.242},"level":0},{"id":1752714,"cvNumber":35,"coordinate":{"lat":0.553,"lon":93.405},"level":0},{"id":1759230,"cvNumber":36,"coordinate":{"lat":0.723,"lon":93.47},"level":0},{"id":1612770,"cvNumber":20,"coordinate":{"lat":1.214,"lon":93.174},"level":0},{"id":1610035,"cvNumber":19,"coordinate":{"lat":1.114,"lon":93.093},"level":0},{"id":1633129,"cvNumber":23,"coordinate":{"lat":1.216,"lon":94.194},"level":0},{"id":1640474,"cvNumber":24,"coordinate":{"lat":1.097,"lon":94.498},"level":0},{"id":1651057,"cvNumber":25,"coordinate":{"lat":1.177,"lon":94.944},"level":0},{"id":1784983,"cvNumber":39,"coordinate":{"lat":0.775,"lon":94.966},"level":0},{"id":1695450,"cvNumber":29,"coordinate":{"lat":1.924,"lon":93.486},"level":0},{"id":1737029,"cvNumber":33,"coordinate":{"lat":0.871,"lon":93.084},"level":0},{"id":1498793,"cvNumber":9,"coordinate":{"lat":0.513,"lon":89.552},"level":0},{"id":1581111,"cvNumber":17,"coordinate":{"lat":1.055,"lon":93.31},"level":0},{"id":1594230,"cvNumber":18,"coordinate":{"lat":1.294,"lon":93.291},"level":0},{"id":1524071,"cvNumber":11,"coordinate":{"lat":1.113,"lon":91.951},"level":0},{"id":1533692,"cvNumber":12,"coordinate":{"lat":1.335,"lon":92.747},"level":0},{"id":1459008,"cvNumber":6,"coordinate":{"lat":0.094,"lon":89.722},"level":0},{"id":1437868,"cvNumber":4,"coordinate":{"lat":-0.204,"lon":90.628},"level":0},{"id":1472368,"cvNumber":7,"coordinate":{"lat":0.097,"lon":89.226},"level":0},{"id":1813370,"cvNumber":44,"coordinate":{"lat":1.478,"lon":95.574},"level":0},{"id":1820720,"cvNumber":45,"coordinate":{"lat":1.411,"lon":95.803},"level":0},{"id":1850400,"cvNumber":49,"coordinate":{"lat":2.11,"lon":95.658},"level":0},{"id":1828090,"cvNumber":46,"coordinate":{"lat":1.619,"lon":95.646},"level":0},{"id":1860074,"cvNumber":50,"coordinate":{"lat":2.037,"lon":95.818},"level":0},{"id":1799971,"cvNumber":41,"coordinate":{"lat":0.618,"lon":95.269},"level":0},{"id":1804921,"cvNumber":42,"coordinate":{"lat":0.757,"lon":95.356},"level":0},{"id":1873749,"cvNumber":51,"coordinate":{"lat":2.064,"lon":96.036},"level":0},{"id":1720670,"cvNumber":31,"coordinate":{"lat":1.514,"lon":93.229},"level":0},{"id":1655510,"cvNumber":26,"coordinate":{"lat":1.621,"lon":94.402},"level":0},{"id":1983321,"cvNumber":62,"coordinate":{"lat":3.84,"lon":94.443},"level":0},{"id":1907530,"cvNumber":54,"coordinate":{"lat":2.518,"lon":95.628},"level":0},{"id":1935269,"cvNumber":57,"coordinate":{"lat":3.462,"lon":94.896},"level":0},{"id":1913042,"cvNumber":55,"coordinate":{"lat":3.031,"lon":94.958},"level":0},{"id":1967037,"cvNumber":60,"coordinate":{"lat":3.197,"lon":94.406},"level":0},{"id":1975240,"cvNumber":61,"coordinate":{"lat":3.554,"lon":94.604},"level":0},{"id":1961138,"cvNumber":59,"coordinate":{"lat":3.779,"lon":94.516},"level":0},{"id":1950550,"cvNumber":58,"coordinate":{"lat":3.502,"lon":94.753},"level":0},{"id":2010186,"cvNumber":65,"coordinate":{"lat":2.561,"lon":94.511},"level":0},{"id":1990669,"cvNumber":63,"coordinate":{"lat":3.46,"lon":94.114},"level":0},{"id":1998045,"cvNumber":64,"coordinate":{"lat":2.66,"lon":94.294},"level":0},{"id":2092118,"cvNumber":72,"coordinate":{"lat":4.092,"lon":93.308},"level":0},{"id":2055022,"cvNumber":69,"coordinate":{"lat":3.063,"lon":93.806},"level":0},{"id":2040900,"cvNumber":68,"coordinate":{"lat":2.881,"lon":93.671},"level":0},{"id":2027838,"cvNumber":66,"coordinate":{"lat":2.954,"lon":93.976},"level":0},{"id":2031061,"cvNumber":67,"coordinate":{"lat":3.001,"lon":93.72},"level":0},{"id":1920626,"cvNumber":56,"coordinate":{"lat":2.968,"lon":94.961},"level":0},{"id":2174692,"cvNumber":78,"coordinate":{"lat":3.877,"lon":93.283},"level":0},{"id":2080861,"cvNumber":71,"coordinate":{"lat":4.053,"lon":93.48},"level":0},{"id":2119807,"cvNumber":74,"coordinate":{"lat":3.693,"lon":93.051},"level":0},{"id":2147109,"cvNumber":76,"coordinate":{"lat":3.436,"lon":93.355},"level":0},{"id":2137885,"cvNumber":75,"coordinate":{"lat":3.626,"lon":93.182},"level":0},{"id":2161514,"cvNumber":77,"coordinate":{"lat":3.494,"lon":93.259},"level":0},{"id":2106778,"cvNumber":73,"coordinate":{"lat":3.845,"lon":93.163},"level":0},{"id":2076598,"cvNumber":70,"coordinate":{"lat":3.636,"lon":93.66},"level":0},{"id":2199101,"cvNumber":80,"coordinate":{"lat":3.796,"lon":93.691},"level":0},{"id":1891403,"cvNumber":53,"coordinate":{"lat":2.326,"lon":95.722},"level":0},{"id":1877289,"cvNumber":52,"coordinate":{"lat":2.221,"lon":95.81},"level":0},{"id":2305960,"cvNumber":87,"coordinate":{"lat":2.395,"lon":93.833},"level":0},{"id":2406542,"cvNumber":96,"coordinate":{"lat":3.388,"lon":94.766},"level":0},{"id":2391426,"cvNumber":95,"coordinate":{"lat":3.386,"lon":94.607},"level":0},{"id":2307782,"cvNumber":88,"coordinate":{"lat":3.107,"lon":93.943},"level":0},{"id":2269692,"cvNumber":84,"coordinate":{"lat":2.423,"lon":93.757},"level":0},{"id":2210780,"cvNumber":81,"coordinate":{"lat":3.064,"lon":93.535},"level":0},{"id":2187720,"cvNumber":79,"coordinate":{"lat":3.742,"lon":93.705},"level":0},{"id":2355581,"cvNumber":92,"coordinate":{"lat":3.513,"lon":94.264},"level":0},{"id":2351733,"cvNumber":91,"coordinate":{"lat":4.004,"lon":93.989},"level":0},{"id":2238118,"cvNumber":83,"coordinate":{"lat":2.343,"lon":93.847},"level":0},{"id":2335139,"cvNumber":90,"coordinate":{"lat":4.16,"lon":94.479},"level":0},{"id":2320858,"cvNumber":89,"coordinate":{"lat":4.11,"lon":94.244},"level":0},{"id":2276059,"cvNumber":85,"coordinate":{"lat":2.369,"lon":93.502},"level":0},{"id":2369041,"cvNumber":93,"coordinate":{"lat":4.071,"lon":94.576},"level":0},{"id":1439341,"cvNumber":3,"coordinate":{"lat":0.11,"lon":90.866},"level":0},{"id":1511551,"cvNumber":10,"coordinate":{"lat":0.893,"lon":90.579},"level":0},{"id":1427824,"cvNumber":2,"coordinate":{"lat":0.044,"lon":91.313},"level":0},{"id":1427823,"cvNumber":1,"coordinate":{"lat":-0.103,"lon":91.756},"level":0},{"id":1427822,"cvNumber":0,"coordinate":{"lat":0.012,"lon":92.284},"level":0},{"id":1446869,"cvNumber":5,"coordinate":{"lat":-0.278,"lon":90.459},"level":0},{"id":1623270,"cvNumber":22,"coordinate":{"lat":1.665,"lon":93.532},"level":0},{"id":1572071,"cvNumber":16,"coordinate":{"lat":1.107,"lon":92.5},"level":0},{"id":1553651,"cvNumber":14,"coordinate":{"lat":1.741,"lon":92.299},"level":0},{"id":1543950,"cvNumber":13,"coordinate":{"lat":1.982,"lon":92.419},"level":0},{"id":1711895,"cvNumber":30,"coordinate":{"lat":1.605,"lon":93.444},"level":0},{"id":1562730,"cvNumber":15,"coordinate":{"lat":1.132,"lon":92.193},"level":0},{"id":1486151,"cvNumber":8,"coordinate":{"lat":0.324,"lon":89.093},"level":0},{"id":1618347,"cvNumber":21,"coordinate":{"lat":1.635,"lon":93.123},"level":0},{"id":2220499,"cvNumber":82,"coordinate":{"lat":2.423,"lon":93.655},"level":0},{"id":2380130,"cvNumber":94,"coordinate":{"lat":3.622,"lon":94.374},"level":0},{"id":2296078,"cvNumber":86,"coordinate":{"lat":2.262,"lon":93.373},"level":0},{"id":1806933,"cvNumber":43,"coordinate":{"lat":0.942,"lon":95.524},"level":0},{"id":1843857,"cvNumber":48,"coordinate":{"lat":1.953,"lon":95.812},"level":0},{"id":1836832,"cvNumber":47,"coordinate":{"lat":1.949,"lon":95.854},"level":0},{"id":1776570,"cvNumber":37,"coordinate":{"lat":1.19,"lon":93.894},"level":0},{"id":1742887,"cvNumber":34,"coordinate":{"lat":0.671,"lon":93.018},"level":0}] \ No newline at end of file diff --git a/argopy/tests/test_data/d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2.js b/argopy/tests/test_data/d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2.js new file mode 100644 index 00000000..5d369a85 --- /dev/null +++ b/argopy/tests/test_data/d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2.js @@ -0,0 +1,181 @@ +[ +{"_id":"1900386_088","geolocation":{"type":"Point","coordinates":[45.421,-54.725]},"basin":10,"timestamp":"2007-07-04T01:53:00.000Z","date_updated_argovis":"2023-01-24T19:58:17.288Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_088.nc","date_updated":"2015-10-19T17:20:05.000Z"}],"cycle_number":88,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,105,115,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,376,385,395,405,415,425,435,446,456,465,475,485,495,512,537,562,588,612,638,662,687,712,737,763,788,812,837,862,888,913,938,963,987,1012,1037,1063,1088,1113,1137,1162,1188,1213,1238,1262,1287,1312,1337,1364,1387,1412,1438,1463,1488,1513,1538,1564,1587,1612,1638,1663,1688,1713,1738,1763,1788,1812,1838,1862,1887,1912,1937,1962,1986],[0.085,0.09,0.09,0.089,0.092,0.093,0.094,0.095,0.096,0.096,0.097,0.103,0.142,0.13,0.128,0.265,0.501,0.723,0.986,1.252,1.416,1.535,1.582,1.636,1.647,1.673,1.692,1.703,1.718,1.735,1.75,1.76,1.777,1.801,1.814,1.817,1.818,1.823,1.828,1.828,1.831,1.825,1.811,1.814,1.826,1.829,1.824,1.814,1.796,1.789,1.792,1.794,1.816,1.814,1.861,1.832,1.841,1.798,1.756,1.689,1.621,1.577,1.535,1.496,1.471,1.445,1.431,1.4,1.371,1.348,1.335,1.31,1.29,1.271,1.257,1.239,1.2,1.182,1.164,1.13,1.108,1.097,1.076,1.047,1.011,0.986,0.967,0.942,0.919,0.903,0.889,0.876,0.85,0.835,0.822,0.805,0.78,0.767,0.752,0.733,0.718,0.702,0.684,0.669,0.661,0.646,0.626,0.608,0.592],[33.849998,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.849998,33.907001,34.036999,34.112,34.213001,34.275002,34.320999,34.370998,34.429001,34.467999,34.499001,34.515999,34.537998,34.546001,34.553001,34.562,34.57,34.578999,34.589001,34.598,34.603001,34.611,34.622002,34.627998,34.632999,34.637001,34.641998,34.648998,34.652,34.655998,34.660999,34.662998,34.664001,34.668999,34.672001,34.674999,34.675999,34.676998,34.681,34.689999,34.695,34.702999,34.710999,34.721001,34.723,34.730999,34.730999,34.73,34.727001,34.723999,34.723999,34.726002,34.726002,34.726002,34.728001,34.729,34.728001,34.728001,34.728001,34.728001,34.727001,34.726002,34.726002,34.727001,34.727001,34.724998,34.723999,34.723999,34.722,34.721001,34.720001,34.719002,34.716999,34.715,34.713001,34.712002,34.710999,34.709,34.708,34.708,34.708,34.706001,34.705002,34.705002,34.703999,34.702999,34.702,34.702,34.701,34.699001,34.698002,34.696999,34.695999,34.695999,34.695,34.694,34.692001,34.691002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_087","geolocation":{"type":"Point","coordinates":[44.718,-54.883]},"basin":10,"timestamp":"2007-06-24T01:46:59.999Z","date_updated_argovis":"2023-01-24T19:58:15.394Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_087.nc","date_updated":"2015-10-19T17:20:04.000Z"}],"cycle_number":87,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,106,115,125,135,145,155,165,175,186,195,205,215,225,236,245,256,266,275,285,295,305,315,325,335,345,355,364,375,385,395,405,415,425,435,445,455,466,475,485,495,512,537,563,588,612,637,662,688,712,738,763,788,813,837,862,887,914,938,962,987,1013,1038,1063,1088,1113,1137,1163,1187,1212,1238,1263,1287,1312,1337,1363,1388,1412,1437,1462,1487,1513,1537,1562,1587,1612,1637,1663,1687,1713,1738,1763,1787,1813,1837,1862,1888,1912,1937,1962,1985],[0.194,0.198,0.196,0.196,0.199,0.198,0.21,0.221,0.242,0.272,0.201,0.186,0.272,0.474,0.623,0.786,0.849,1.044,1.139,1.183,1.275,1.371,1.446,1.494,1.545,1.568,1.585,1.625,1.649,1.703,1.773,1.81,1.819,1.821,1.817,1.817,1.818,1.807,1.812,1.827,1.842,1.837,1.833,1.848,1.849,1.86,1.852,1.843,1.842,1.816,1.809,1.807,1.813,1.823,1.827,1.826,1.779,1.749,1.677,1.658,1.626,1.593,1.557,1.517,1.493,1.45,1.44,1.412,1.38,1.363,1.333,1.304,1.292,1.288,1.268,1.261,1.237,1.21,1.181,1.154,1.112,1.089,1.072,1.045,1.02,0.999,0.976,0.963,0.949,0.927,0.909,0.888,0.848,0.831,0.819,0.81,0.793,0.777,0.761,0.747,0.73,0.707,0.683,0.668,0.656,0.64,0.618,0.602,0.592],[33.847,33.847,33.847,33.847,33.847,33.847,33.848,33.851002,33.855999,33.908001,34.007999,34.140999,34.205002,34.262001,34.296001,34.327999,34.341999,34.382,34.402,34.411999,34.437,34.465,34.492001,34.507,34.525002,34.533001,34.539001,34.553001,34.563,34.584,34.603001,34.612999,34.619999,34.626999,34.632,34.636002,34.640999,34.645,34.650002,34.653999,34.66,34.660999,34.661999,34.667,34.671001,34.674,34.674999,34.676998,34.678001,34.681999,34.688,34.695999,34.703999,34.712002,34.719002,34.723,34.720001,34.722,34.717999,34.719002,34.722,34.723999,34.724998,34.724998,34.724998,34.724998,34.727001,34.728001,34.726002,34.727001,34.727001,34.724998,34.726002,34.728001,34.727001,34.729,34.728001,34.726002,34.724998,34.723,34.720001,34.719002,34.717999,34.716999,34.716,34.715,34.713001,34.714001,34.713001,34.712002,34.710999,34.709,34.706001,34.705002,34.705002,34.705002,34.703999,34.702999,34.702,34.701,34.700001,34.698002,34.696999,34.695999,34.695999,34.695,34.693001,34.692001,34.691002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_086","geolocation":{"type":"Point","coordinates":[44.03,-54.979]},"basin":10,"timestamp":"2007-06-14T01:35:00.000Z","date_updated_argovis":"2023-01-24T19:58:13.524Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_086.nc","date_updated":"2015-10-19T17:20:03.000Z"}],"cycle_number":86,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,56,64,75,85,95,106,115,125,134,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,375,385,395,405,415,424,435,445,455,465,475,485,495,512,537,562,587,614,637,662,687,712,737,763,788,813,838,864,887,912,937,962,987,1012,1038,1064,1087,1112,1137,1163,1188,1212,1238,1263,1288,1313,1337,1362,1387,1412,1438,1462,1487,1513,1537,1562,1587,1613,1638,1663,1688,1712,1737,1762,1787,1812,1837,1863,1887,1912,1937,1962,1983],[0.285,0.286,0.287,0.287,0.286,0.287,0.291,0.291,0.305,0.313,0.271,0.005,0.006,0.238,0.439,0.662,1.009,1.227,1.265,1.335,1.477,1.565,1.626,1.691,1.717,1.688,1.711,1.731,1.732,1.803,1.825,1.824,1.802,1.787,1.746,1.746,1.754,1.757,1.766,1.78,1.809,1.829,1.845,1.847,1.847,1.849,1.853,1.857,1.853,1.861,1.871,1.898,1.921,1.928,1.907,1.899,1.844,1.72,1.655,1.635,1.614,1.589,1.564,1.545,1.525,1.514,1.484,1.459,1.441,1.42,1.393,1.348,1.294,1.268,1.244,1.214,1.197,1.177,1.153,1.13,1.109,1.098,1.083,1.064,1.049,1.021,1,0.991,0.967,0.929,0.912,0.891,0.87,0.853,0.83,0.807,0.787,0.766,0.741,0.722,0.707,0.695,0.685,0.664,0.652,0.638,0.627,0.611,0.597],[33.856998,33.856998,33.856998,33.856998,33.856998,33.856998,33.856998,33.856998,33.860001,33.866001,33.949001,34.117001,34.183998,34.237,34.285999,34.332001,34.381001,34.414001,34.431,34.452,34.48,34.502998,34.521,34.543999,34.557999,34.566002,34.575001,34.580002,34.588001,34.603001,34.612,34.619999,34.623001,34.626999,34.629002,34.632999,34.638,34.640999,34.646,34.651001,34.659,34.664001,34.668999,34.674999,34.68,34.681999,34.685001,34.688999,34.689999,34.695999,34.705002,34.716999,34.726002,34.730999,34.734001,34.737999,34.735001,34.723999,34.721001,34.722,34.723999,34.724998,34.726002,34.727001,34.728001,34.73,34.729,34.728001,34.729,34.729,34.729,34.726002,34.722,34.722,34.721001,34.720001,34.720001,34.719002,34.717999,34.716999,34.716,34.716,34.716,34.715,34.714001,34.713001,34.713001,34.713001,34.710999,34.709,34.708,34.707001,34.706001,34.705002,34.702999,34.702,34.701,34.700001,34.699001,34.698002,34.696999,34.695999,34.695999,34.695,34.694,34.693001,34.693001,34.692001,34.692001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_085","geolocation":{"type":"Point","coordinates":[43.658,-55.160000000000004]},"basin":10,"timestamp":"2007-06-04T01:36:00.000Z","date_updated_argovis":"2023-01-24T19:58:11.577Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_085.nc","date_updated":"2015-10-19T17:20:03.000Z"}],"cycle_number":85,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,56,66,75,85,95,105,115,125,135,145,155,165,174,185,195,205,215,225,235,245,256,264,275,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,514,537,562,587,613,638,662,687,712,738,763,788,813,838,862,887,912,937,963,988,1012,1037,1063,1087,1113,1138,1162,1187,1212,1237,1262,1288,1312,1337,1363,1387,1412,1438,1463,1487,1512,1537,1562,1587,1612,1637,1662,1688,1712,1738,1763,1788,1813,1838,1863,1888,1912,1937,1962,1980],[0.471,0.47,0.472,0.47,0.474,0.471,0.463,0.454,0.454,0.326,-0.085,-0.264,-0.045,0.213,0.349,0.441,0.62,0.837,1.096,1.265,1.346,1.416,1.462,1.573,1.644,1.669,1.717,1.732,1.759,1.798,1.812,1.819,1.822,1.811,1.813,1.868,1.884,1.882,1.874,1.868,1.848,1.848,1.858,1.87,1.864,1.857,1.861,1.871,1.868,1.844,1.854,1.892,1.916,1.907,1.892,1.823,1.792,1.766,1.752,1.72,1.681,1.645,1.622,1.599,1.562,1.525,1.495,1.481,1.471,1.455,1.419,1.394,1.382,1.364,1.325,1.287,1.26,1.237,1.207,1.169,1.137,1.106,1.072,1.041,1.021,1,0.981,0.958,0.928,0.907,0.887,0.875,0.847,0.837,0.818,0.795,0.769,0.748,0.729,0.716,0.7,0.687,0.675,0.665,0.655,0.633,0.61,0.594,0.59],[33.855,33.855,33.855,33.855,33.855,33.855,33.855999,33.856998,33.858002,33.91,34.067001,34.138,34.194,34.236,34.266998,34.293999,34.326,34.370998,34.423,34.458,34.479,34.493,34.505001,34.530998,34.544998,34.553001,34.564999,34.57,34.581001,34.592999,34.601002,34.605999,34.612,34.624001,34.632999,34.650002,34.654999,34.66,34.661999,34.666,34.668999,34.673,34.678001,34.682999,34.686001,34.688999,34.692001,34.695,34.698002,34.702,34.710999,34.722,34.728001,34.73,34.731998,34.727001,34.726002,34.726002,34.729,34.728001,34.726002,34.724998,34.724998,34.726002,34.726002,34.724998,34.724998,34.726002,34.728001,34.728001,34.728001,34.727001,34.728001,34.729,34.727001,34.724998,34.724998,34.723999,34.722,34.721001,34.719002,34.716999,34.715,34.714001,34.712002,34.710999,34.710999,34.709,34.707001,34.707001,34.705002,34.706001,34.703999,34.705002,34.703999,34.702,34.700001,34.699001,34.698002,34.696999,34.695999,34.695999,34.695,34.695,34.694,34.693001,34.692001,34.691002,34.691002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_084","geolocation":{"type":"Point","coordinates":[43.534,-55.416000000000004]},"basin":10,"timestamp":"2007-05-25T01:48:00.000Z","date_updated_argovis":"2023-01-24T19:58:09.771Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_084.nc","date_updated":"2015-10-19T17:20:02.000Z"}],"cycle_number":84,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,216,225,235,245,255,265,275,285,295,305,316,325,335,345,355,365,375,385,395,405,414,425,435,445,455,465,475,485,495,512,538,562,587,612,637,662,687,712,737,762,788,813,837,862,888,913,938,962,987,1012,1038,1063,1088,1113,1138,1162,1187,1212,1237,1263,1288,1312,1338,1363,1388,1414,1437,1463,1488,1513,1538,1563,1588,1612,1637,1663,1687,1713,1738,1763,1788,1813,1838,1862,1887,1912,1937,1962,1987],[0.597,0.596,0.597,0.596,0.598,0.598,0.596,0.587,0.564,0.511,0.109,0.019,0.12,0.2,0.285,0.486,0.673,0.818,0.929,1.032,1.165,1.249,1.353,1.395,1.482,1.552,1.529,1.542,1.542,1.609,1.633,1.642,1.647,1.685,1.735,1.741,1.758,1.777,1.782,1.805,1.812,1.825,1.826,1.827,1.814,1.804,1.815,1.797,1.786,1.795,1.815,1.862,1.874,1.849,1.856,1.887,1.887,1.873,1.807,1.707,1.668,1.643,1.607,1.563,1.537,1.511,1.487,1.459,1.433,1.422,1.42,1.4,1.383,1.326,1.29,1.267,1.232,1.203,1.179,1.137,1.113,1.104,1.087,1.047,1.03,1.01,0.991,0.971,0.958,0.943,0.918,0.895,0.879,0.866,0.851,0.84,0.82,0.796,0.778,0.762,0.747,0.728,0.708,0.684,0.665,0.642,0.618,0.603,0.59],[33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848999,33.848,33.847,33.852001,34.056999,34.153999,34.196999,34.233002,34.255001,34.290001,34.324001,34.348,34.369999,34.390999,34.419998,34.439999,34.464001,34.479,34.504002,34.523998,34.535,34.549,34.556,34.575001,34.585999,34.592999,34.598,34.608002,34.620998,34.630001,34.641998,34.650002,34.653999,34.66,34.661999,34.667,34.669998,34.672001,34.674,34.676998,34.681999,34.682999,34.685001,34.691002,34.700001,34.710999,34.716,34.716999,34.723,34.730999,34.736,34.740002,34.736,34.728001,34.727001,34.727001,34.727001,34.726002,34.726002,34.726002,34.726002,34.726002,34.727001,34.728001,34.730999,34.730999,34.730999,34.727001,34.726002,34.724998,34.723999,34.723,34.722,34.719002,34.717999,34.719002,34.719002,34.716,34.716,34.715,34.714001,34.713001,34.713001,34.712002,34.709999,34.709,34.708,34.708,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.701,34.700001,34.699001,34.698002,34.696999,34.695,34.693001,34.693001,34.692001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_083","geolocation":{"type":"Point","coordinates":[43.222,-55.688]},"basin":10,"timestamp":"2007-05-15T01:43:00.000Z","date_updated_argovis":"2023-01-24T19:58:07.897Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_083.nc","date_updated":"2015-10-19T17:20:02.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,75,85,95,105,115,125,135,146,155,165,176,186,195,205,216,225,235,245,255,265,276,285,295,305,315,325,335,345,355,366,375,385,395,405,415,425,435,444,455,465,475,485,496,513,538,562,587,612,637,662,688,713,738,762,787,813,838,862,887,913,938,962,988,1012,1038,1063,1088,1112,1137,1163,1188,1213,1237,1263,1288,1313,1337,1363,1388,1414,1437,1462,1487,1512,1537,1562,1589,1613,1637,1662,1687,1712,1738,1763,1788,1813,1838,1863,1888,1913,1938,1962,1986],[0.822,0.83,0.829,0.831,0.861,0.889,0.908,0.929,0.944,0.75,0.207,0.132,0.148,0.278,0.39,0.422,0.524,0.583,0.672,0.869,1.005,1.107,1.207,1.283,1.325,1.376,1.448,1.522,1.564,1.598,1.651,1.663,1.672,1.67,1.673,1.685,1.704,1.719,1.753,1.777,1.8,1.821,1.801,1.787,1.8,1.776,1.778,1.766,1.76,1.759,1.763,1.756,1.745,1.727,1.739,1.81,1.832,1.834,1.819,1.804,1.749,1.686,1.658,1.606,1.572,1.536,1.518,1.489,1.468,1.436,1.418,1.385,1.388,1.381,1.352,1.311,1.253,1.217,1.187,1.147,1.104,1.087,1.068,1.045,1.02,1.004,0.998,0.99,0.97,0.946,0.92,0.905,0.893,0.885,0.873,0.857,0.829,0.806,0.79,0.774,0.75,0.736,0.72,0.696,0.68,0.659,0.641,0.611,0.589],[33.848999,33.849998,33.849998,33.851002,33.853001,33.855999,33.859001,33.861,33.865002,33.948002,34.125999,34.155998,34.192001,34.220001,34.244999,34.261002,34.292,34.312,34.335999,34.377998,34.408001,34.431,34.459999,34.480999,34.497002,34.514999,34.536999,34.561001,34.577999,34.59,34.604,34.612999,34.619999,34.620998,34.625,34.630001,34.637001,34.641998,34.648998,34.654999,34.659,34.665001,34.666,34.667,34.674,34.675999,34.678001,34.681,34.685001,34.688,34.695999,34.701,34.705002,34.709999,34.716,34.729,34.735001,34.738998,34.741001,34.742001,34.737999,34.733002,34.730999,34.728001,34.727001,34.726002,34.726002,34.726002,34.726002,34.726002,34.727001,34.726002,34.729,34.730999,34.730999,34.727001,34.723,34.722,34.720001,34.719002,34.716999,34.716999,34.716,34.715,34.713001,34.713001,34.713001,34.713001,34.712002,34.709999,34.708,34.707001,34.706001,34.707001,34.707001,34.706001,34.703999,34.702999,34.702999,34.702,34.700001,34.700001,34.699001,34.698002,34.696999,34.695999,34.694,34.693001,34.692001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_082","geolocation":{"type":"Point","coordinates":[42.569,-56.012]},"basin":10,"timestamp":"2007-05-05T01:37:00.000Z","date_updated_argovis":"2023-01-24T19:58:06.067Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_082.nc","date_updated":"2015-10-19T17:20:01.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,44,55,64,75,85,95,105,115,125,135,144,154,165,175,185,195,206,215,225,235,245,255,265,275,286,295,305,315,324,335,345,354,365,375,385,395,404,415,426,435,445,455,465,475,485,495,513,538,562,588,612,637,662,687,714,737,762,787,813,837,863,888,913,937,963,987,1012,1037,1062,1087,1112,1138,1162,1188,1212,1238,1262,1287,1312,1338,1363,1388,1413,1438,1462,1488,1512,1537,1563,1588,1613,1637,1662,1687,1712,1738,1763,1787,1813,1837,1862,1888,1912,1937,1963,1982],[1.191,1.192,1.191,1.193,1.197,1.196,1.198,1.202,1.187,0.298,-0.04,-0.013,0.021,0.081,0.155,0.201,0.246,0.348,0.467,0.556,0.674,0.855,0.951,1.066,1.108,1.219,1.315,1.431,1.465,1.526,1.579,1.597,1.595,1.624,1.664,1.745,1.851,1.79,1.817,1.848,1.902,1.833,1.763,1.753,1.741,1.748,1.758,1.747,1.748,1.775,1.763,1.797,1.826,1.859,1.926,1.932,1.937,1.919,1.88,1.858,1.817,1.763,1.702,1.662,1.601,1.57,1.533,1.518,1.479,1.441,1.423,1.422,1.406,1.384,1.36,1.334,1.307,1.275,1.24,1.236,1.276,1.258,1.249,1.228,1.145,1.088,1.061,1.037,1.01,0.982,0.96,0.95,0.929,0.905,0.885,0.865,0.852,0.835,0.815,0.793,0.776,0.764,0.756,0.747,0.728,0.71,0.703,0.695,0.686],[33.867001,33.867001,33.867001,33.867001,33.867001,33.867001,33.867001,33.868,33.875,34.043999,34.124001,34.140999,34.16,34.181,34.202999,34.223999,34.245998,34.269001,34.296001,34.317001,34.344002,34.381001,34.400002,34.424999,34.444,34.472,34.495998,34.523998,34.542,34.562,34.577,34.585999,34.595001,34.604,34.615002,34.632999,34.647999,34.645,34.653,34.659,34.668999,34.662998,34.659,34.66,34.66,34.662998,34.666,34.667999,34.669998,34.676998,34.682999,34.695,34.707001,34.719002,34.730999,34.737,34.741001,34.742001,34.741001,34.742001,34.741001,34.737,34.733002,34.730999,34.727001,34.727001,34.726002,34.727001,34.726002,34.724998,34.726002,34.728001,34.728001,34.727001,34.726002,34.724998,34.723999,34.723,34.721001,34.723,34.73,34.729,34.729,34.728001,34.720001,34.714001,34.713001,34.712002,34.710999,34.709999,34.709,34.709999,34.709,34.707001,34.706001,34.705002,34.705002,34.703999,34.702,34.701,34.700001,34.699001,34.699001,34.699001,34.699001,34.698002,34.698002,34.698002,34.698002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_081","geolocation":{"type":"Point","coordinates":[41.88,-56.291000000000004]},"basin":10,"timestamp":"2007-04-25T01:43:00.000Z","date_updated_argovis":"2023-01-24T19:58:04.184Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_081.nc","date_updated":"2015-10-19T17:20:01.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,106,115,125,135,145,155,166,175,185,195,205,215,225,236,246,255,265,275,285,295,305,315,325,335,344,355,365,375,385,394,405,415,425,435,445,455,465,475,484,494,512,538,562,588,612,637,662,687,712,737,762,787,812,837,862,887,912,938,962,987,1012,1037,1062,1088,1112,1137,1162,1189,1212,1237,1262,1287,1312,1338,1364,1387,1412,1438,1462,1487,1512,1538,1562,1588,1613,1638,1663,1687,1712,1737,1763,1788,1813,1838,1863,1887,1912,1938,1963,1989],[1.243,1.247,1.258,1.253,1.261,1.265,1.267,1.28,1.284,1.282,1.068,0.06,-0.032,-0.139,0.073,0.236,0.433,0.648,0.771,0.888,1.006,1.196,1.362,1.494,1.489,1.547,1.585,1.624,1.673,1.722,1.756,1.776,1.811,1.816,1.816,1.8,1.816,1.815,1.786,1.778,1.789,1.816,1.848,1.855,1.873,1.878,1.875,1.878,1.873,1.881,1.915,1.952,1.99,2,2,1.993,1.988,1.964,1.915,1.832,1.76,1.716,1.692,1.647,1.573,1.558,1.515,1.473,1.432,1.411,1.385,1.376,1.361,1.322,1.294,1.272,1.245,1.21,1.184,1.205,1.223,1.211,1.182,1.144,1.12,1.108,1.067,1.049,1.022,0.974,0.953,0.936,0.919,0.904,0.894,0.877,0.858,0.838,0.822,0.809,0.789,0.769,0.749,0.738,0.717,0.7,0.671,0.648,0.631],[33.845001,33.845001,33.846001,33.845001,33.846001,33.847,33.846001,33.848,33.848999,33.853001,33.893002,34.068001,34.125999,34.158001,34.201,34.243999,34.282001,34.319,34.341999,34.368,34.396999,34.43,34.459999,34.485001,34.498001,34.515999,34.530998,34.544998,34.561001,34.576,34.587002,34.598,34.612,34.617001,34.622002,34.629002,34.639,34.644001,34.646999,34.648998,34.655998,34.661999,34.671001,34.673,34.679001,34.682999,34.683998,34.685001,34.686001,34.689999,34.701,34.712002,34.720001,34.726002,34.73,34.734001,34.737999,34.738998,34.737999,34.731998,34.729,34.729,34.730999,34.73,34.724998,34.727001,34.726002,34.724998,34.723999,34.723999,34.723999,34.723999,34.726002,34.724998,34.723,34.723,34.721001,34.719002,34.719002,34.723999,34.729,34.729,34.726002,34.723,34.721001,34.720001,34.717999,34.716,34.714001,34.709999,34.709,34.708,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.702,34.701,34.700001,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.693001,34.692001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_080","geolocation":{"type":"Point","coordinates":[40.94,-55.928000000000004]},"basin":10,"timestamp":"2007-04-15T01:38:00.000Z","date_updated_argovis":"2023-01-24T19:58:02.204Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_080.nc","date_updated":"2015-10-19T17:20:00.000Z"}],"cycle_number":80,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,74,85,95,105,115,125,135,144,155,165,175,185,196,205,216,226,235,245,255,266,275,285,295,306,315,325,335,345,355,365,375,384,395,406,416,425,434,445,455,465,475,486,495,512,537,562,587,612,637,663,688,714,738,763,788,813,837,862,887,912,937,962,988,1013,1038,1062,1087,1113,1138,1162,1189,1212,1237,1262,1288,1313,1338,1362,1387,1412,1438,1463,1488,1514,1537,1563,1587,1613,1638,1664,1687,1712,1738,1763,1789,1812,1837,1862,1888,1913,1938,1963,1983],[1.604,1.619,1.626,1.628,1.642,1.598,0.966,0.461,0.191,0.123,0.31,0.41,0.469,0.517,0.615,0.696,0.806,0.968,1.11,1.273,1.393,1.425,1.48,1.538,1.508,1.497,1.504,1.53,1.561,1.599,1.65,1.684,1.728,1.747,1.745,1.755,1.761,1.787,1.821,1.863,1.909,1.918,1.926,1.95,1.966,1.98,1.994,1.992,1.989,1.985,2.009,2.029,2.071,2.088,2.051,1.969,1.95,1.944,1.916,1.911,1.915,1.92,1.894,1.841,1.814,1.795,1.785,1.715,1.662,1.63,1.6,1.567,1.56,1.545,1.501,1.466,1.447,1.428,1.406,1.389,1.365,1.329,1.303,1.281,1.266,1.251,1.227,1.204,1.176,1.147,1.111,1.086,1.07,1.036,1,0.97,0.953,0.927,0.902,0.887,0.864,0.845,0.832,0.828,0.809,0.804,0.789,0.771,0.758],[33.875999,33.875999,33.877998,33.877998,33.880001,33.881001,33.983002,34.083,34.104,34.139,34.172001,34.195999,34.209,34.223,34.256001,34.272999,34.310001,34.342999,34.373001,34.407001,34.431999,34.441002,34.455002,34.469002,34.477001,34.480999,34.486,34.497002,34.506001,34.516998,34.528999,34.539001,34.551998,34.563999,34.570999,34.580002,34.584999,34.595001,34.605999,34.618,34.630001,34.633999,34.640999,34.652,34.659,34.662998,34.669998,34.672001,34.673,34.676998,34.689999,34.695,34.706001,34.715,34.715,34.710999,34.715,34.719002,34.720001,34.723,34.727001,34.731998,34.733002,34.733002,34.733002,34.733002,34.734001,34.728001,34.724998,34.723999,34.723999,34.723999,34.724998,34.724998,34.723999,34.723999,34.723999,34.724998,34.724998,34.724998,34.724998,34.723,34.722,34.721001,34.721001,34.721001,34.720001,34.720001,34.719002,34.716999,34.716,34.715,34.715,34.713001,34.710999,34.709999,34.709,34.707001,34.705002,34.702999,34.702,34.702,34.701,34.701,34.700001,34.699001,34.699001,34.698002,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_079","geolocation":{"type":"Point","coordinates":[37.937000000000005,-55.871]},"basin":10,"timestamp":"2007-04-05T01:32:00.000Z","date_updated_argovis":"2023-01-24T19:58:00.187Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_079.nc","date_updated":"2015-10-19T17:19:59.000Z"}],"cycle_number":79,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,146,156,165,175,186,195,205,215,225,235,245,256,266,276,285,296,306,316,326,335,345,355,365,375,385,394,405,415,425,435,445,455,465,475,485,495,513,538,563,588,613,638,662,687,713,737,762,788,813,838,863,888,913,938,963,988,1012,1038,1062,1087,1113,1138,1163,1187,1212,1237,1262,1287,1313,1338,1363,1389,1412,1437,1462,1487,1512,1537,1562,1589,1612,1637,1662,1687,1712,1737,1762,1788,1812,1838,1862,1887,1912,1937,1963,1989],[2.182,2.177,2.175,2.168,2.158,2.152,2.15,2.151,2.1,1.692,0.562,0.243,0.279,0.314,-0.083,0.285,0.463,0.552,0.592,0.656,0.634,0.78,0.794,0.823,1,1.137,1.275,1.591,1.727,1.854,1.884,1.869,1.776,1.72,1.774,1.868,1.94,2.007,2.009,1.976,1.994,2.022,2.001,1.982,1.978,1.999,2.014,2.021,2.042,2.005,2.016,2.008,1.967,1.967,1.984,1.977,1.957,1.949,1.936,1.891,1.86,1.853,1.821,1.81,1.8,1.784,1.745,1.728,1.711,1.693,1.669,1.566,1.471,1.439,1.43,1.448,1.43,1.388,1.342,1.285,1.279,1.276,1.259,1.223,1.197,1.19,1.17,1.139,1.109,1.091,1.075,1.051,1.023,0.998,0.973,0.95,0.933,0.919,0.911,0.887,0.849,0.828,0.819,0.795,0.782,0.765,0.745,0.729,0.707],[33.886002,33.888,33.889,33.889999,33.890999,33.890999,33.891998,33.893002,33.903,33.945999,34.048,34.103001,34.123001,34.145,34.140999,34.193001,34.230999,34.256001,34.275002,34.292,34.308998,34.332001,34.342999,34.358002,34.384998,34.418999,34.445999,34.485001,34.505001,34.530998,34.546001,34.556,34.553001,34.560001,34.576,34.596001,34.609001,34.622002,34.625999,34.625999,34.633999,34.641998,34.643002,34.643002,34.647999,34.653999,34.660999,34.667,34.673,34.674999,34.683998,34.692001,34.695999,34.702999,34.709999,34.715,34.717999,34.723,34.724998,34.724998,34.724998,34.73,34.73,34.733002,34.736,34.737,34.736,34.737,34.737999,34.738998,34.738998,34.728001,34.721001,34.722,34.722,34.728001,34.729,34.726002,34.722,34.719002,34.721001,34.723999,34.723,34.720001,34.719002,34.719002,34.717999,34.716,34.714001,34.714001,34.714001,34.713001,34.712002,34.710999,34.709,34.709,34.708,34.706001,34.707001,34.703999,34.701,34.700001,34.700001,34.700001,34.699001,34.698002,34.695999,34.695999,34.695]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_078","geolocation":{"type":"Point","coordinates":[36.497,-55.456]},"basin":10,"timestamp":"2007-03-26T01:33:00.000Z","date_updated_argovis":"2023-01-24T19:57:58.090Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_078.nc","date_updated":"2015-10-19T17:19:59.000Z"}],"cycle_number":78,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,26,34,45,55,65,74,84,95,104,115,125,135,146,155,164,175,185,195,205,216,225,235,245,255,265,275,285,294,305,315,325,335,345,355,365,375,386,395,405,415,425,435,445,455,465,475,485,495,513,537,562,587,612,637,663,688,714,738,762,787,812,837,862,888,912,938,962,987,1013,1038,1063,1087,1112,1138,1163,1188,1212,1237,1263,1287,1312,1337,1362,1387,1414,1437,1463,1488,1513,1538,1562,1588,1612,1637,1662,1687,1712,1738,1762,1787,1813,1838,1863,1887,1912,1938,1963,1983],[2.081,2.09,2.086,2.08,2.082,2.089,1.682,0.98,0.469,0.155,0.231,0.373,0.477,0.524,0.53,0.535,0.688,0.873,1.021,1.233,1.329,1.427,1.509,1.663,1.749,1.848,1.848,1.85,1.868,1.898,1.93,1.934,1.94,1.965,1.979,1.984,1.997,2.016,2.02,2.023,2.018,2.016,2.005,1.993,1.993,2.001,2.007,2.004,2.003,1.999,1.998,1.969,1.953,1.948,1.947,1.948,1.943,1.922,1.926,1.947,1.881,1.838,1.802,1.731,1.756,1.745,1.729,1.712,1.712,1.682,1.613,1.563,1.51,1.485,1.449,1.441,1.416,1.387,1.393,1.384,1.367,1.343,1.306,1.28,1.23,1.178,1.152,1.137,1.1,1.061,1.037,1.02,0.979,0.972,0.97,0.958,0.931,0.908,0.888,0.879,0.866,0.855,0.837,0.818,0.8,0.788,0.775,0.755,0.735],[33.868999,33.875,33.883999,33.888,33.894001,33.901001,33.915001,34.007999,34.076,34.099998,34.123001,34.160999,34.185001,34.209,34.219002,34.240002,34.278999,34.313,34.349998,34.383999,34.405998,34.428001,34.445999,34.470001,34.492001,34.512001,34.515999,34.522999,34.535,34.546001,34.558998,34.566002,34.575001,34.585999,34.595001,34.599998,34.605,34.615002,34.620998,34.625,34.627998,34.630001,34.632999,34.637001,34.643002,34.646999,34.653999,34.658001,34.661999,34.666,34.674999,34.68,34.688,34.694,34.701,34.708,34.713001,34.717999,34.724998,34.730999,34.728001,34.73,34.729,34.724998,34.734001,34.736,34.737999,34.738998,34.742001,34.741001,34.734001,34.73,34.727001,34.727001,34.726002,34.728001,34.729,34.728001,34.733002,34.734001,34.733002,34.730999,34.729,34.728001,34.723999,34.720001,34.717999,34.721001,34.717999,34.715,34.714001,34.713001,34.709999,34.709999,34.710999,34.710999,34.709999,34.708,34.707001,34.707001,34.706001,34.706001,34.705002,34.703999,34.703999,34.702999,34.702,34.701,34.700001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_077","geolocation":{"type":"Point","coordinates":[35.46,-55.277]},"basin":10,"timestamp":"2007-03-16T01:39:00.000Z","date_updated_argovis":"2023-01-24T19:57:56.091Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_077.nc","date_updated":"2015-10-19T17:19:58.000Z"}],"cycle_number":77,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,224,234,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,424,435,446,455,465,475,486,495,513,538,562,587,613,637,662,687,713,738,762,787,812,837,863,888,914,937,962,987,1012,1038,1063,1088,1112,1137,1163,1189,1213,1238,1263,1287,1312,1338,1363,1387,1412,1438,1463,1487,1512,1537,1563,1587,1613,1638,1663,1688,1713,1738,1762,1788,1813,1837,1863,1888,1912,1937,1962,1989,2001],[2.736,2.739,2.741,2.741,2.739,2.737,2.74,2.735,2.72,2.633,1.943,1.451,1.12,1.075,1.06,1.072,1.172,1.245,1.303,0.999,1.198,1.07,1.28,1.346,1.336,1.328,1.322,1.403,1.583,1.556,1.484,1.53,1.565,1.603,1.704,1.742,1.791,1.829,1.874,1.855,1.922,1.928,1.995,1.989,2.029,1.991,1.88,1.853,1.969,1.911,1.943,1.98,1.987,2.025,1.971,2.048,2.072,2.053,2.061,2.049,2.018,2.082,2.104,2.095,2.071,2.05,1.952,1.9,1.862,1.845,1.823,1.79,1.767,1.743,1.717,1.705,1.697,1.686,1.65,1.638,1.62,1.574,1.522,1.487,1.456,1.403,1.334,1.303,1.299,1.283,1.253,1.228,1.22,1.229,1.209,1.161,1.146,1.13,1.115,1.088,1.061,1.035,1.011,0.998,0.969,0.945,0.919,0.881,0.851,0.841],[33.963001,33.963001,33.963001,33.963001,33.963001,33.964001,33.963001,33.964001,33.966,33.971001,34.036999,34.085999,34.138,34.162998,34.191002,34.210999,34.241001,34.268002,34.293999,34.289001,34.313,34.320999,34.349998,34.362999,34.365002,34.370998,34.379002,34.398998,34.421001,34.423,34.423,34.437,34.445999,34.458,34.481998,34.493,34.506001,34.52,34.534,34.539001,34.554001,34.560001,34.576,34.578999,34.591,34.595001,34.589001,34.594002,34.613998,34.616001,34.629002,34.640999,34.647999,34.66,34.662998,34.681999,34.692001,34.698002,34.705002,34.709,34.710999,34.723999,34.730999,34.731998,34.734001,34.735001,34.726002,34.724998,34.724998,34.728001,34.729,34.73,34.730999,34.733002,34.733002,34.734001,34.737999,34.742001,34.741001,34.743,34.743,34.740002,34.736,34.734001,34.733002,34.729,34.723999,34.723,34.723999,34.723999,34.722,34.721001,34.721001,34.723999,34.723,34.719002,34.719002,34.719002,34.717999,34.716,34.714001,34.712002,34.709999,34.710999,34.709,34.707001,34.705002,34.702999,34.701,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_076","geolocation":{"type":"Point","coordinates":[34.37,-55.872]},"basin":10,"timestamp":"2007-03-06T01:45:00.000Z","date_updated_argovis":"2023-01-24T19:57:54.083Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_076.nc","date_updated":"2015-10-19T17:19:58.000Z"}],"cycle_number":76,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,66,75,85,95,105,115,125,135,145,155,164,175,186,195,205,215,225,235,245,255,265,275,285,295,305,315,326,335,345,355,366,375,385,395,405,416,425,435,445,455,465,475,485,495,513,538,563,587,612,637,663,687,713,738,763,787,812,837,862,887,912,937,963,988,1012,1037,1062,1087,1112,1137,1163,1187,1212,1238,1263,1288,1313,1337,1362,1387,1414,1437,1463,1488,1512,1537,1563,1587,1612,1637,1663,1687,1712,1738,1763,1788,1813,1837,1863,1887,1912,1938,1962,1983],[2.731,2.718,2.678,2.658,2.649,2.615,2.177,1.251,0.998,0.988,0.981,0.991,1.081,0.857,0.888,0.873,1.094,1.284,1.368,1.31,1.341,1.337,1.535,1.524,1.735,1.914,1.918,1.942,1.781,1.883,1.988,1.972,1.986,1.995,1.923,1.946,1.958,1.949,1.95,1.954,1.954,1.956,2.006,2.014,2.025,2.022,1.998,1.995,2.014,2.13,2.114,2.122,2.124,2.146,2.155,2.149,2.133,2.119,2.119,2.085,2.083,2.077,2.088,2.073,2.061,2.017,1.908,1.881,1.838,1.82,1.79,1.751,1.708,1.68,1.65,1.62,1.595,1.579,1.558,1.549,1.539,1.507,1.503,1.483,1.446,1.419,1.38,1.336,1.302,1.274,1.251,1.233,1.209,1.178,1.141,1.105,1.081,1.054,1.029,1.003,0.975,0.958,0.943,0.911,0.893,0.882,0.867,0.846,0.831],[33.963001,33.965,33.972,33.973999,33.974998,33.973999,34.005001,34.09,34.141998,34.157001,34.174,34.18,34.202,34.196999,34.213001,34.229,34.262001,34.296001,34.316002,34.327999,34.341,34.348,34.380001,34.397999,34.425999,34.455002,34.458,34.469002,34.459,34.480999,34.500999,34.506001,34.514999,34.521,34.526001,34.535999,34.546001,34.549999,34.556,34.563999,34.573002,34.577,34.589001,34.595001,34.604,34.610001,34.611,34.616001,34.626999,34.646,34.652,34.660999,34.672001,34.683998,34.693001,34.698002,34.701,34.703999,34.712002,34.714001,34.721001,34.726002,34.733002,34.737,34.740002,34.737,34.729,34.73,34.728001,34.731998,34.734001,34.733002,34.733002,34.734001,34.734001,34.735001,34.734001,34.734001,34.734001,34.735001,34.736,34.735001,34.737,34.736,34.734001,34.734001,34.730999,34.728001,34.726002,34.724998,34.723999,34.722,34.721001,34.719002,34.716999,34.715,34.714001,34.713001,34.710999,34.709,34.708,34.708,34.708,34.706001,34.706001,34.705002,34.703999,34.702999,34.702]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_075","geolocation":{"type":"Point","coordinates":[33.998000000000005,-56.022000000000006]},"basin":10,"timestamp":"2007-02-24T01:40:00.000Z","date_updated_argovis":"2023-01-24T19:57:52.193Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_075.nc","date_updated":"2015-10-19T17:19:57.000Z"}],"cycle_number":75,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,75,85,95,105,115,125,134,145,155,165,174,185,196,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,364,375,385,395,405,414,425,435,445,455,465,475,485,495,512,537,562,587,613,638,662,688,712,737,762,787,812,838,863,889,913,937,962,988,1012,1037,1062,1087,1112,1138,1164,1187,1212,1238,1263,1287,1312,1337,1362,1389,1412,1438,1462,1487,1512,1537,1562,1587,1612,1638,1662,1688,1713,1738,1763,1787,1813,1837,1863,1888,1913,1938,1963,1984],[2.658,2.659,2.659,2.628,2.481,1.84,0.961,0.791,0.707,0.684,0.706,0.78,0.929,1.066,1.172,1.249,1.188,1.134,1.185,1.308,1.593,1.664,1.745,1.763,1.78,1.731,1.675,1.683,1.773,1.957,2.003,2.007,2.03,2.048,2.048,2.034,2.023,2.031,2.03,2.033,2.042,2.077,2.113,2.134,2.134,2.132,2.133,2.142,2.148,2.153,2.157,2.166,2.168,2.172,2.173,2.165,2.154,2.148,2.129,2.124,2.123,2.121,2.115,2.085,2.017,1.984,1.931,1.895,1.855,1.838,1.829,1.805,1.789,1.759,1.717,1.69,1.658,1.635,1.605,1.575,1.546,1.531,1.515,1.486,1.451,1.432,1.405,1.384,1.35,1.318,1.291,1.249,1.223,1.21,1.181,1.153,1.11,1.089,1.069,1.046,1.006,0.959,0.933,0.919,0.91,0.892,0.877,0.857,0.842],[33.995998,33.995998,33.995998,33.997002,34.001999,34.037998,34.089001,34.108002,34.118999,34.139999,34.166,34.199001,34.227001,34.257999,34.276001,34.291,34.291,34.304001,34.32,34.339001,34.379002,34.394001,34.410999,34.421001,34.43,34.432999,34.435001,34.443001,34.466999,34.500999,34.514,34.522999,34.532001,34.540001,34.548,34.554001,34.561001,34.571999,34.577999,34.584,34.591999,34.603001,34.611,34.618999,34.623001,34.626999,34.633999,34.639,34.641998,34.646,34.655998,34.669998,34.679001,34.683998,34.689999,34.695999,34.702999,34.710999,34.716,34.721001,34.724998,34.729,34.731998,34.734001,34.73,34.73,34.727001,34.726002,34.726002,34.729,34.733002,34.734001,34.736,34.736,34.734001,34.734001,34.734001,34.734001,34.734001,34.735001,34.733002,34.734001,34.735001,34.734001,34.731998,34.731998,34.731998,34.730999,34.729,34.728001,34.727001,34.723,34.722,34.722,34.721001,34.721001,34.716999,34.716,34.716,34.715,34.712002,34.708,34.706001,34.706001,34.707001,34.706001,34.705002,34.703999,34.702999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_074","geolocation":{"type":"Point","coordinates":[33.53,-55.987]},"basin":10,"timestamp":"2007-02-14T01:46:00.000Z","date_updated_argovis":"2023-01-24T19:57:50.292Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_074.nc","date_updated":"2015-10-19T17:19:57.000Z"}],"cycle_number":74,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,44,55,65,75,85,95,105,115,125,135,145,155,166,175,185,195,205,215,225,235,245,255,265,275,285,296,305,315,325,335,345,355,365,375,385,396,405,415,425,435,445,455,465,476,486,495,513,538,562,587,612,638,663,687,712,737,762,788,812,837,863,889,912,937,963,988,1013,1038,1063,1088,1113,1139,1162,1187,1213,1238,1263,1288,1313,1338,1362,1388,1412,1437,1463,1488,1513,1538,1563,1587,1613,1638,1663,1687,1712,1737,1762,1788,1813,1838,1862,1888,1913,1938,1962,1985],[2.795,2.768,2.717,2.694,2.672,2.663,2.567,2.269,1.21,0.614,0.693,0.668,0.659,0.748,0.843,0.886,0.933,1.07,1.146,1.206,1.323,1.469,1.599,1.7,1.778,1.801,1.849,1.949,1.987,2.001,2.032,2.07,2.074,2.092,2.108,2.094,2.073,2.113,2.143,2.141,2.141,2.146,2.141,2.139,2.148,2.143,2.124,2.125,2.12,2.124,2.194,2.229,2.227,2.194,2.162,2.102,2.117,2.134,2.127,2.152,2.144,2.156,2.143,2.12,2.03,1.97,1.922,1.851,1.858,1.88,1.846,1.841,1.843,1.816,1.755,1.696,1.722,1.688,1.653,1.637,1.615,1.588,1.574,1.555,1.508,1.504,1.484,1.448,1.414,1.345,1.338,1.328,1.299,1.28,1.253,1.236,1.205,1.192,1.164,1.124,1.096,1.083,1.045,1.019,1.011,0.985,0.969,0.94,0.908],[33.978001,33.983002,33.987,33.987,33.988998,33.988998,33.993999,33.995998,34.033001,34.060001,34.089001,34.103001,34.120998,34.143002,34.172001,34.196999,34.214001,34.241001,34.258999,34.278,34.306,34.330002,34.355999,34.381001,34.396999,34.408001,34.429001,34.451,34.462002,34.471001,34.481998,34.493,34.500999,34.509998,34.519001,34.525002,34.528999,34.537998,34.548,34.555,34.564999,34.571999,34.577,34.583,34.589001,34.591999,34.597,34.605,34.609001,34.618,34.639999,34.653999,34.661999,34.665001,34.671001,34.672001,34.679001,34.688999,34.694,34.703999,34.709999,34.717999,34.721001,34.723,34.716999,34.714001,34.712002,34.709999,34.716,34.723999,34.723,34.729,34.733002,34.734001,34.729,34.724998,34.734001,34.733002,34.731998,34.734001,34.734001,34.734001,34.736,34.736,34.733002,34.736,34.736,34.734001,34.731998,34.726002,34.727001,34.728001,34.726002,34.726002,34.724998,34.724998,34.723,34.723999,34.722,34.717999,34.716,34.716,34.713001,34.710999,34.713001,34.710999,34.709999,34.708,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_073","geolocation":{"type":"Point","coordinates":[33.932,-56.58]},"basin":10,"timestamp":"2007-02-04T01:46:59.999Z","date_updated_argovis":"2023-01-24T19:57:48.408Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_073.nc","date_updated":"2015-10-19T17:19:56.000Z"}],"cycle_number":73,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,54,65,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,225,235,245,255,265,276,286,296,305,314,325,335,345,354,366,376,385,395,405,415,425,434,444,455,465,475,485,495,513,537,562,588,613,638,664,688,713,738,762,788,813,838,862,887,914,937,962,987,1013,1038,1063,1088,1113,1137,1163,1189,1213,1238,1262,1287,1312,1338,1362,1387,1413,1437,1462,1488,1513,1537,1562,1588,1612,1638,1662,1687,1712,1737,1762,1788,1814,1838,1863,1888,1913,1938,1963,1989],[2.768,2.767,2.766,2.768,2.769,2.767,2.713,1.794,1.173,0.963,0.862,0.801,0.527,0.477,0.541,0.77,0.896,1.041,1.184,1.261,1.389,1.435,1.555,1.648,1.518,1.703,1.618,1.409,1.505,1.546,1.577,1.617,1.657,1.708,1.744,1.801,1.854,1.951,2.042,2.104,2.108,2.056,2.123,2.111,2.131,2.08,2.006,2,2.002,1.997,2.028,2.025,2.02,2.015,2.061,2.082,2.051,1.949,2.011,2.053,2.027,2.01,1.966,1.929,1.897,1.951,1.982,1.941,1.945,1.87,1.746,1.733,1.724,1.673,1.648,1.614,1.597,1.578,1.547,1.548,1.544,1.55,1.518,1.502,1.475,1.473,1.439,1.409,1.374,1.315,1.284,1.242,1.214,1.2,1.17,1.146,1.131,1.116,1.098,1.075,1.048,1.024,1.008,0.977,0.953,0.932,0.911,0.885,0.867],[33.941002,33.941002,33.941002,33.941002,33.942001,33.944,33.945,33.993999,34.025002,34.054001,34.069,34.078999,34.077,34.098,34.126999,34.165001,34.193001,34.223,34.251999,34.272999,34.299,34.314999,34.347,34.368999,34.367001,34.401001,34.401001,34.396999,34.417999,34.431,34.445,34.456001,34.471001,34.488998,34.504002,34.521999,34.537998,34.558998,34.575001,34.588001,34.591999,34.591,34.602001,34.605,34.611,34.608002,34.604,34.606998,34.611,34.615002,34.630001,34.644001,34.653,34.661999,34.676998,34.687,34.688999,34.685001,34.701,34.713001,34.714001,34.717999,34.719002,34.719002,34.719002,34.731998,34.738998,34.738998,34.743,34.737999,34.727001,34.727001,34.73,34.727001,34.727001,34.727001,34.73,34.730999,34.73,34.733002,34.734001,34.737999,34.736,34.737,34.737,34.740002,34.738998,34.737999,34.736,34.73,34.728001,34.723999,34.723,34.722,34.720001,34.717999,34.717999,34.716999,34.716,34.714001,34.713001,34.712002,34.713001,34.709999,34.709,34.709,34.707001,34.705002,34.703999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_072","geolocation":{"type":"Point","coordinates":[33.2,-56.71]},"basin":10,"timestamp":"2007-01-25T01:46:59.999Z","date_updated_argovis":"2023-01-24T19:57:46.612Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_072.nc","date_updated":"2015-10-19T17:19:55.000Z"}],"cycle_number":72,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,304,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,476,485,495,513,537,563,588,612,637,663,689,713,738,763,788,813,838,862,887,912,937,962,987,1012,1037,1063,1088,1113,1137,1163,1189,1213,1238,1263,1288,1312,1337,1362,1387,1413,1438,1463,1488,1512,1537,1563,1587,1612,1638,1662,1687,1712,1737,1763,1788,1813,1837,1862,1888,1912,1937,1962,1988],[2.832,2.837,2.819,2.74,2.611,2.236,2.117,1.819,1.236,0.764,0.562,0.497,0.596,0.574,0.575,0.613,0.675,0.748,0.884,0.962,0.95,1.044,1.085,1.069,1.233,1.326,1.462,1.549,1.673,1.73,1.784,1.815,1.835,1.828,1.905,1.945,1.916,1.86,1.86,1.903,1.923,1.963,2.04,2.034,2.022,1.99,2.025,2.034,2.03,2.039,2.045,2.067,2.1,2.111,2.112,2.089,2.078,1.956,1.875,1.971,1.879,1.952,1.925,1.903,1.906,1.895,1.899,1.874,1.788,1.791,1.743,1.789,1.824,1.814,1.75,1.71,1.699,1.658,1.621,1.564,1.532,1.488,1.451,1.412,1.459,1.463,1.463,1.426,1.386,1.351,1.331,1.303,1.242,1.228,1.213,1.169,1.156,1.146,1.127,1.113,1.1,1.073,1.055,1.038,1.015,0.985,0.953,0.926,0.901],[33.978001,33.978001,33.977001,33.973999,33.970001,33.973999,33.974998,33.981998,34.007,34.026001,34.050999,34.068001,34.092999,34.106998,34.126999,34.145,34.162998,34.188999,34.220001,34.238998,34.252998,34.276001,34.292999,34.305,34.332001,34.354,34.377998,34.395,34.419998,34.438,34.452999,34.464001,34.470001,34.479,34.497002,34.512001,34.516998,34.521999,34.526001,34.535,34.543999,34.556999,34.573002,34.577,34.580002,34.583,34.592999,34.598999,34.605,34.616001,34.632999,34.647999,34.66,34.669998,34.68,34.685001,34.692001,34.682999,34.681999,34.700001,34.694,34.709,34.710999,34.713001,34.716999,34.721001,34.726002,34.727001,34.722,34.728001,34.728001,34.735001,34.743,34.744999,34.738998,34.737,34.738998,34.737,34.735001,34.73,34.729,34.726002,34.723999,34.723,34.731998,34.734001,34.737,34.735001,34.733002,34.730999,34.730999,34.729,34.723,34.723,34.723,34.720001,34.721001,34.722,34.721001,34.721001,34.720001,34.717999,34.717999,34.716999,34.715,34.713001,34.709999,34.708,34.707001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_071","geolocation":{"type":"Point","coordinates":[32.408,-56.713]},"basin":10,"timestamp":"2007-01-15T01:41:00.000Z","date_updated_argovis":"2023-01-24T19:57:44.801Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_071.nc","date_updated":"2015-10-19T17:19:55.000Z"}],"cycle_number":71,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,174,185,195,205,215,225,235,245,255,265,275,286,294,305,315,325,335,346,355,365,375,385,395,405,415,424,435,445,455,465,475,485,495,513,538,562,587,613,639,662,687,712,737,762,787,813,838,863,887,912,937,962,988,1013,1038,1063,1088,1114,1137,1162,1188,1213,1238,1262,1288,1313,1337,1363,1388,1412,1437,1462,1487,1512,1537,1562,1587,1613,1637,1663,1688,1712,1737,1763,1788,1812,1838,1863,1888,1912,1937,1963,1980],[1.707,1.707,1.711,1.591,1.169,1.516,1.471,1.159,0.975,0.819,0.67,0.562,0.618,0.612,1.042,1.206,0.747,0.998,1.347,1.176,1.398,1.149,1.335,1.498,1.788,1.906,1.752,1.725,1.604,1.845,1.959,2.035,2.106,2.166,2.177,2.142,2.208,2.11,2.137,2.154,2.142,2.09,2.145,2.179,2.201,2.256,2.228,2.218,2.198,2.165,2.183,2.187,2.186,2.195,2.18,2.16,2.098,2.048,1.987,1.961,1.899,1.881,1.925,1.888,1.873,1.886,1.853,1.74,1.658,1.679,1.656,1.597,1.62,1.506,1.612,1.631,1.597,1.55,1.506,1.469,1.43,1.405,1.421,1.372,1.33,1.321,1.294,1.255,1.211,1.198,1.184,1.153,1.115,1.09,1.067,1.049,1.029,1.009,0.981,0.947,0.925,0.906,0.874,0.848,0.823,0.799,0.777,0.756,0.747],[33.852001,33.851002,33.853001,33.858002,33.939999,34.070999,34.117001,34.138,34.159,34.181999,34.199001,34.215,34.241001,34.257999,34.319,34.327999,34.299,34.337002,34.372002,34.375999,34.396,34.395,34.418999,34.449001,34.488998,34.507,34.499001,34.504002,34.507,34.533001,34.555,34.568001,34.582001,34.596001,34.598999,34.602001,34.615002,34.612,34.620998,34.625999,34.626999,34.626999,34.638,34.646,34.654999,34.664001,34.664001,34.665001,34.667999,34.671001,34.682999,34.692001,34.700001,34.708,34.713001,34.717999,34.716,34.715,34.713001,34.717999,34.715,34.719002,34.73,34.73,34.731998,34.737999,34.736,34.724998,34.720001,34.727001,34.729,34.724998,34.731998,34.721001,34.737999,34.743999,34.743,34.737999,34.736,34.734001,34.730999,34.730999,34.736,34.730999,34.728001,34.729,34.729,34.724998,34.722,34.723,34.723999,34.721001,34.717999,34.716999,34.716,34.716,34.715,34.714001,34.712002,34.709,34.708,34.707001,34.703999,34.702999,34.701,34.700001,34.699001,34.698002,34.698002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_070","geolocation":{"type":"Point","coordinates":[32.87,-55.689]},"basin":10,"timestamp":"2007-01-05T01:42:00.000Z","date_updated_argovis":"2023-01-24T19:57:42.886Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_070.nc","date_updated":"2015-10-19T17:19:54.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,145,155,165,176,186,195,205,215,225,235,244,255,265,275,285,295,304,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,486,496,513,537,562,588,613,637,662,689,712,737,762,787,812,837,864,887,914,938,962,988,1013,1038,1062,1088,1112,1137,1162,1188,1212,1238,1263,1287,1312,1338,1364,1387,1412,1437,1462,1487,1512,1537,1562,1588,1612,1638,1662,1688,1713,1737,1762,1787,1813,1837,1862,1887,1912,1937,1963,1989,2001],[1.745,1.751,1.797,1.849,1.576,1.147,0.964,0.915,0.91,0.875,0.817,0.923,1.052,0.881,0.47,0.399,0.528,0.507,0.561,0.816,1.043,0.948,1.091,1.487,2.06,2.141,2.184,2.19,2.153,2.119,2.1,2.098,2.052,2.093,2.126,2.16,2.165,2.167,2.166,2.169,2.171,2.149,2.088,2.128,2.104,2.07,2.065,2.111,2.183,2.217,2.202,2.212,2.189,2.037,1.991,1.943,1.928,1.948,2.004,2.075,2.093,2.079,2.053,2.042,2.015,1.961,1.933,1.817,1.749,1.722,1.69,1.665,1.648,1.619,1.579,1.539,1.517,1.501,1.471,1.439,1.419,1.363,1.383,1.363,1.37,1.389,1.406,1.396,1.36,1.32,1.229,1.132,1.043,1.032,1.036,1.021,1.027,1.013,0.949,0.929,0.917,0.85,0.841,0.831,0.819,0.793,0.766,0.752,0.74,0.739],[33.916,33.918999,34.012001,34.081001,34.105,34.152,34.187,34.199001,34.208,34.221001,34.235001,34.251999,34.271999,34.263,34.250999,34.252998,34.276001,34.290001,34.301998,34.339001,34.368999,34.374001,34.400002,34.453999,34.522999,34.539001,34.550999,34.558998,34.563,34.570999,34.577999,34.583,34.583,34.592999,34.604,34.612,34.617001,34.622002,34.625999,34.631001,34.637001,34.636002,34.633999,34.643002,34.643002,34.644001,34.646999,34.655998,34.668999,34.681,34.687,34.695999,34.701,34.692001,34.694,34.694,34.699001,34.707001,34.721001,34.736,34.743999,34.745998,34.745998,34.75,34.75,34.748001,34.747002,34.735001,34.73,34.730999,34.730999,34.731998,34.733002,34.733002,34.730999,34.73,34.730999,34.731998,34.730999,34.73,34.73,34.724998,34.729,34.73,34.733002,34.738998,34.743,34.742001,34.740002,34.737999,34.726002,34.715,34.707001,34.709,34.712002,34.712002,34.716,34.714001,34.707001,34.706001,34.708,34.701,34.702,34.702,34.701,34.699001,34.698002,34.696999,34.696999,34.698002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_069","geolocation":{"type":"Point","coordinates":[31.139000000000003,-54.122]},"basin":10,"timestamp":"2006-12-26T01:48:00.000Z","date_updated_argovis":"2023-01-24T19:57:41.007Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_069.nc","date_updated":"2015-10-19T17:19:54.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,104,115,125,135,145,154,165,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,324,335,346,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,588,613,637,663,687,712,737,762,787,813,838,862,888,913,938,962,987,1012,1037,1062,1087,1113,1138,1163,1188,1213,1237,1262,1288,1313,1338,1363,1389,1413,1437,1462,1487,1512,1538,1562,1587,1612,1638,1662,1687,1713,1738,1763,1788,1812,1837,1862,1888,1912,1937,1963,1984],[2.201,2.201,1.813,1.547,1.495,1.39,1.075,0.955,0.973,0.836,0.78,0.797,0.794,0.751,0.767,0.662,0.714,0.851,1.075,1.375,1.726,1.795,1.933,1.965,1.989,2.153,2.234,2.275,2.261,2.268,2.286,2.304,2.313,2.31,2.295,2.297,2.283,2.288,2.23,2.179,2.289,2.332,2.308,2.312,2.311,2.314,2.308,2.294,2.268,2.222,2.2,2.259,2.229,2.207,2.18,2.157,2.149,2.138,2.138,2.133,2.122,2.089,2.071,2.051,1.993,1.907,1.875,1.943,1.917,1.735,1.624,1.586,1.609,1.65,1.634,1.59,1.531,1.519,1.474,1.474,1.456,1.408,1.395,1.389,1.383,1.361,1.332,1.298,1.268,1.238,1.203,1.155,1.126,1.123,1.09,1.051,1.024,1.01,0.983,0.965,0.935,0.902,0.889,0.858,0.831,0.811,0.79,0.777,0.768],[33.987,33.986,34.021,34.060001,34.062,34.067001,34.095001,34.144001,34.173,34.182999,34.198002,34.217999,34.23,34.240002,34.257,34.257,34.275002,34.303001,34.337002,34.379002,34.423,34.444,34.466,34.476002,34.488998,34.518002,34.540001,34.550999,34.556999,34.564999,34.575001,34.582001,34.59,34.596001,34.602001,34.609001,34.613998,34.618,34.612,34.612999,34.632999,34.640999,34.645,34.651001,34.655998,34.662998,34.668999,34.671001,34.674,34.679001,34.687,34.705002,34.709999,34.714001,34.717999,34.722,34.724998,34.73,34.735001,34.741001,34.744999,34.748001,34.751999,34.752998,34.75,34.743,34.743,34.757999,34.757,34.737,34.724998,34.723,34.73,34.738998,34.740002,34.737999,34.733002,34.735001,34.731998,34.735001,34.737,34.733002,34.733002,34.735001,34.736,34.735001,34.734001,34.730999,34.73,34.728001,34.726002,34.722,34.721001,34.723,34.720001,34.716999,34.716,34.715,34.713001,34.712002,34.710999,34.708,34.708,34.706001,34.703999,34.702999,34.702,34.701,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_068","geolocation":{"type":"Point","coordinates":[31.986,-53.294000000000004]},"basin":10,"timestamp":"2006-12-16T01:42:00.000Z","date_updated_argovis":"2023-01-24T19:57:39.081Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_068.nc","date_updated":"2015-10-19T17:19:53.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,75,85,95,105,116,125,135,146,155,165,175,185,195,205,214,225,236,245,255,265,275,285,295,305,316,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,590,613,638,662,687,713,737,762,788,813,839,863,888,913,938,962,988,1013,1038,1063,1087,1113,1137,1162,1188,1212,1238,1263,1287,1313,1338,1363,1388,1412,1437,1462,1487,1512,1538,1564,1587,1612,1637,1662,1688,1713,1737,1762,1788,1813,1837,1863,1887,1912,1937,1962,1983],[1.501,1.502,1.504,1.482,1.428,1.473,0.828,0.544,0.417,0.244,0.094,0.008,-0.02,0.172,0.203,0.186,0.345,0.502,0.64,0.702,0.73,0.803,0.905,0.944,1.045,1.081,1.289,1.4,1.529,1.591,1.713,1.739,1.774,1.778,1.781,1.831,1.777,1.787,1.799,1.797,1.832,1.829,1.83,1.831,1.832,1.843,1.851,1.869,1.875,1.874,1.871,1.874,1.853,1.857,1.876,1.884,1.882,1.88,1.873,1.863,1.849,1.829,1.811,1.8,1.784,1.772,1.753,1.735,1.715,1.696,1.669,1.648,1.627,1.614,1.599,1.58,1.559,1.537,1.522,1.506,1.482,1.446,1.403,1.363,1.335,1.311,1.275,1.257,1.239,1.233,1.217,1.19,1.161,1.136,1.136,1.114,1.086,1.065,1.048,1.034,1.006,0.988,0.968,0.929,0.895,0.883,0.869,0.854,0.834],[34.023998,34.023998,34.023998,34.021999,34.021,34.018002,34.009998,34.021,34.022999,34.030998,34.041,34.051998,34.075001,34.112999,34.129002,34.147999,34.173,34.191002,34.223,34.241001,34.251999,34.27,34.293999,34.308998,34.331001,34.351002,34.387001,34.411999,34.441002,34.462002,34.484001,34.493999,34.506001,34.511002,34.52,34.533001,34.532001,34.537998,34.543999,34.549999,34.560001,34.566002,34.571999,34.580002,34.587002,34.595001,34.601002,34.609001,34.613998,34.618999,34.626999,34.639,34.646999,34.653,34.665001,34.673,34.681,34.687,34.691002,34.698002,34.702999,34.707001,34.709,34.710999,34.715,34.716,34.719002,34.721001,34.722,34.722,34.723999,34.724998,34.726002,34.726002,34.727001,34.727001,34.727001,34.727001,34.727001,34.727001,34.726002,34.726002,34.723,34.722,34.721001,34.720001,34.719002,34.717999,34.716999,34.717999,34.717999,34.717999,34.716999,34.716,34.717999,34.716,34.714001,34.713001,34.712002,34.710999,34.709999,34.709999,34.709,34.706001,34.703999,34.703999,34.702999,34.702,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_067","geolocation":{"type":"Point","coordinates":[32.24,-53.160000000000004]},"basin":10,"timestamp":"2006-12-06T01:43:00.000Z","date_updated_argovis":"2023-01-24T19:57:37.189Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_067.nc","date_updated":"2015-10-19T17:19:52.000Z"}],"cycle_number":67,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,44,55,65,75,85,96,106,115,125,135,145,155,166,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,475,485,495,513,538,563,588,612,637,663,687,713,738,762,788,812,838,863,888,913,938,962,987,1013,1038,1062,1087,1113,1137,1163,1188,1213,1238,1263,1288,1312,1337,1363,1389,1412,1438,1463,1488,1513,1538,1563,1588,1612,1637,1662,1688,1713,1738,1762,1787,1813,1837,1862,1887,1912,1937,1963,1983],[1.517,1.514,1.511,1.504,1.496,1.448,1.29,1.019,0.919,0.856,0.682,0.543,0.504,0.407,0.271,0.26,0.501,0.598,0.645,0.755,0.918,1.011,1.048,1.119,1.273,1.391,1.52,1.675,1.727,1.774,1.796,1.806,1.739,1.728,1.785,1.764,1.813,1.794,1.778,1.789,1.804,1.815,1.821,1.822,1.832,1.848,1.864,1.868,1.845,1.816,1.835,1.886,1.864,1.829,1.835,1.867,1.858,1.845,1.834,1.824,1.803,1.779,1.759,1.736,1.749,1.74,1.709,1.69,1.689,1.669,1.627,1.57,1.548,1.499,1.513,1.496,1.481,1.459,1.431,1.418,1.389,1.369,1.343,1.311,1.275,1.247,1.215,1.194,1.161,1.136,1.124,1.1,1.064,1.038,1.015,0.989,0.969,0.941,0.919,0.902,0.885,0.857,0.837,0.81,0.799,0.773,0.766,0.757,0.751],[33.999001,34,34,34.001999,34.001999,34.005001,34.014999,34.028999,34.035999,34.043999,34.067001,34.097,34.110001,34.117001,34.120998,34.144001,34.175999,34.196999,34.219002,34.243,34.271999,34.292999,34.310001,34.332001,34.362999,34.387001,34.415001,34.442001,34.457001,34.473999,34.488998,34.5,34.505001,34.516998,34.529999,34.536999,34.551998,34.556,34.563999,34.571999,34.583,34.589001,34.596001,34.601002,34.605,34.611,34.618999,34.623001,34.625999,34.632,34.644001,34.66,34.665001,34.667999,34.676998,34.688,34.694,34.699001,34.702,34.706001,34.709,34.712002,34.714001,34.719002,34.728001,34.730999,34.730999,34.733002,34.737999,34.738998,34.736,34.733002,34.731998,34.729,34.733002,34.733002,34.733002,34.733002,34.731998,34.731998,34.730999,34.73,34.729,34.728001,34.726002,34.723999,34.723,34.722,34.720001,34.717999,34.717999,34.717999,34.715,34.714001,34.713001,34.710999,34.709999,34.709,34.708,34.707001,34.706001,34.703999,34.703999,34.702,34.702,34.700001,34.700001,34.700001,34.700001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_066","geolocation":{"type":"Point","coordinates":[31.994,-53.517]},"basin":10,"timestamp":"2006-11-26T01:43:00.000Z","date_updated_argovis":"2023-01-24T19:57:35.365Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_066.nc","date_updated":"2015-10-19T17:19:52.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,36,45,55,66,76,85,95,105,115,125,135,145,155,165,175,186,195,204,215,225,235,246,255,265,275,285,295,305,316,326,335,345,355,365,375,385,395,405,415,425,435,445,456,465,475,485,495,512,537,562,589,612,637,662,687,712,737,763,788,813,838,864,887,912,937,962,987,1013,1038,1062,1087,1112,1138,1163,1187,1212,1237,1262,1288,1312,1338,1363,1387,1412,1437,1462,1487,1512,1537,1563,1587,1612,1637,1662,1687,1712,1737,1762,1788,1812,1838,1863,1888,1912,1937,1963,1983],[0.569,0.57,0.57,0.568,0.568,0.568,0.568,0.57,0.566,0.524,0.386,0.245,0.114,0.022,0.032,0.031,0.089,0.174,0.376,0.474,0.591,0.759,1.06,1.185,1.297,1.427,1.487,1.517,1.563,1.6,1.637,1.662,1.674,1.71,1.755,1.754,1.774,1.796,1.81,1.826,1.835,1.856,1.879,1.896,1.884,1.892,1.894,1.897,1.891,1.916,1.905,1.903,1.894,1.89,1.888,1.885,1.877,1.863,1.84,1.814,1.804,1.781,1.815,1.801,1.764,1.712,1.671,1.642,1.619,1.681,1.66,1.59,1.542,1.487,1.464,1.447,1.383,1.34,1.324,1.317,1.315,1.294,1.26,1.215,1.193,1.174,1.155,1.146,1.125,1.105,1.086,1.061,1.04,1.018,0.981,0.954,0.935,0.911,0.887,0.866,0.846,0.834,0.825,0.81,0.796,0.773,0.754,0.737,0.724],[34.021999,34.021999,34.021999,34.021999,34.021999,34.021999,34.021999,34.021999,34.022999,34.023998,34.027,34.029999,34.040001,34.051998,34.060001,34.076,34.101002,34.127998,34.167999,34.188,34.217999,34.257,34.32,34.353001,34.381001,34.417,34.437,34.445999,34.463001,34.476002,34.493,34.507,34.515999,34.532001,34.548,34.554001,34.561001,34.57,34.577999,34.582001,34.588001,34.594002,34.602001,34.610001,34.615002,34.620998,34.625,34.632,34.634998,34.645,34.654999,34.664001,34.673,34.68,34.685001,34.689999,34.694,34.698002,34.702,34.706001,34.710999,34.715,34.724998,34.727001,34.726002,34.723999,34.723,34.723,34.724998,34.738998,34.738998,34.733002,34.730999,34.727001,34.728001,34.728001,34.722,34.721001,34.722,34.723,34.726002,34.724998,34.723999,34.720001,34.719002,34.719002,34.719002,34.719002,34.719002,34.717999,34.716999,34.715,34.714001,34.713001,34.709999,34.708,34.707001,34.707001,34.706001,34.703999,34.702999,34.702999,34.702,34.702,34.702,34.700001,34.699001,34.698002,34.698002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_065","geolocation":{"type":"Point","coordinates":[33.088,-53.925000000000004]},"basin":10,"timestamp":"2006-11-16T01:44:00.000Z","date_updated_argovis":"2023-01-24T19:57:33.471Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_065.nc","date_updated":"2015-10-19T17:19:51.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,254,265,275,284,295,306,315,325,335,345,354,365,375,385,395,406,415,425,435,445,455,465,475,485,495,512,537,562,588,612,637,663,687,712,737,762,787,812,838,864,888,912,938,963,987,1012,1038,1063,1088,1112,1138,1163,1188,1213,1237,1262,1287,1312,1338,1363,1387,1413,1438,1463,1487,1513,1538,1563,1587,1612,1637,1663,1688,1712,1737,1762,1787,1813,1837,1863,1887,1912,1938,1963,1977],[0.342,0.32,0.236,0.195,0.081,0.056,0.034,-0.016,-0.041,-0.054,-0.07,-0.091,-0.058,-0.014,0.045,0.184,0.274,0.347,0.509,0.854,1.045,1.182,1.406,1.466,1.579,1.626,1.68,1.72,1.757,1.767,1.756,1.785,1.794,1.778,1.791,1.797,1.804,1.839,1.877,1.866,1.842,1.853,1.915,1.911,1.912,1.901,1.896,1.863,1.869,1.844,1.831,1.832,1.848,1.854,1.844,1.845,1.836,1.826,1.81,1.789,1.774,1.753,1.733,1.713,1.687,1.654,1.635,1.613,1.579,1.549,1.519,1.483,1.459,1.43,1.412,1.383,1.36,1.328,1.305,1.282,1.244,1.221,1.202,1.188,1.171,1.164,1.148,1.123,1.084,1.061,1.034,1.014,0.994,0.975,0.964,0.943,0.927,0.906,0.896,0.877,0.858,0.838,0.823,0.8,0.779,0.765,0.753,0.738,0.73],[34.023998,34.027,34.029999,34.032001,34.039001,34.040001,34.040001,34.043999,34.044998,34.048,34.055,34.064999,34.076,34.087002,34.103001,34.139,34.171001,34.194,34.231998,34.304001,34.338001,34.367001,34.421001,34.438,34.462002,34.477001,34.491001,34.502998,34.516998,34.527,34.532001,34.544998,34.553001,34.562,34.567001,34.573002,34.578999,34.59,34.601002,34.604,34.605999,34.612999,34.625999,34.633999,34.639999,34.646,34.647999,34.648998,34.654999,34.659,34.666,34.673,34.681999,34.689999,34.694,34.699001,34.702,34.705002,34.709,34.712002,34.715,34.717999,34.719002,34.720001,34.721001,34.722,34.724998,34.726002,34.727001,34.727001,34.726002,34.724998,34.724998,34.723999,34.723999,34.722,34.722,34.721001,34.722,34.721001,34.719002,34.719002,34.720001,34.721001,34.721001,34.722,34.721001,34.720001,34.716999,34.715,34.714001,34.713001,34.710999,34.710999,34.709999,34.709,34.708,34.706001,34.705002,34.703999,34.703999,34.702999,34.702999,34.702,34.700001,34.700001,34.700001,34.699001,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_064","geolocation":{"type":"Point","coordinates":[33.162,-54.674]},"basin":10,"timestamp":"2006-11-06T01:50:00.000Z","date_updated_argovis":"2023-01-24T19:57:31.603Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_064.nc","date_updated":"2015-10-19T17:19:51.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,46,55,65,76,86,95,105,115,124,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,396,405,414,425,435,446,455,465,475,485,495,513,538,562,587,612,637,662,687,712,737,763,788,812,837,863,888,913,938,963,987,1012,1037,1062,1087,1113,1138,1162,1187,1213,1237,1263,1287,1313,1338,1363,1388,1412,1437,1462,1488,1513,1538,1563,1589,1612,1637,1662,1688,1712,1738,1764,1787,1812,1837,1862,1887,1912,1938,1963,1988,2000],[0.136,0.137,0.137,0.136,0.137,0.137,0.138,0.136,0.128,0.111,0.048,-0.105,-0.076,-0.114,-0.22,0.013,0.289,0.375,0.511,0.77,0.973,1.066,1.23,1.337,1.435,1.516,1.579,1.619,1.685,1.705,1.735,1.77,1.792,1.81,1.814,1.828,1.828,1.831,1.849,1.858,1.869,1.872,1.861,1.875,1.891,1.896,1.888,1.864,1.841,1.823,1.815,1.823,1.817,1.814,1.811,1.8,1.789,1.771,1.751,1.738,1.727,1.716,1.7,1.672,1.647,1.618,1.594,1.573,1.555,1.528,1.498,1.461,1.435,1.407,1.384,1.367,1.345,1.319,1.301,1.274,1.246,1.213,1.187,1.152,1.136,1.109,1.092,1.066,1.048,1.029,1,0.975,0.952,0.931,0.924,0.906,0.895,0.878,0.869,0.857,0.848,0.831,0.808,0.801,0.775,0.759,0.735,0.715,0.7,0.694],[34.037998,34.037998,34.036999,34.037998,34.037998,34.037998,34.037998,34.037998,34.039001,34.040001,34.046001,34.061001,34.080002,34.084,34.097,34.139,34.186001,34.199001,34.222,34.272999,34.314999,34.334,34.375999,34.404999,34.426998,34.451,34.473999,34.488998,34.513,34.521999,34.535999,34.551998,34.563999,34.571999,34.578999,34.585999,34.588001,34.59,34.598,34.604,34.609001,34.615002,34.619999,34.625999,34.632999,34.638,34.644001,34.645,34.646,34.655998,34.661999,34.671001,34.68,34.686001,34.689999,34.695,34.698002,34.702,34.705002,34.708,34.709999,34.712002,34.714001,34.717999,34.719002,34.721001,34.722,34.723999,34.723999,34.724998,34.724998,34.724998,34.723999,34.723999,34.723999,34.723999,34.723,34.723,34.723,34.722,34.722,34.720001,34.719002,34.716999,34.716999,34.716,34.716,34.714001,34.713001,34.712002,34.710999,34.709,34.708,34.707001,34.707001,34.706001,34.707001,34.706001,34.706001,34.706001,34.706001,34.705002,34.703999,34.703999,34.702,34.701,34.699001,34.698002,34.696999,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_063","geolocation":{"type":"Point","coordinates":[33.55,-53.882000000000005]},"basin":10,"timestamp":"2006-10-27T01:44:00.000Z","date_updated_argovis":"2023-01-24T19:57:29.699Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_063.nc","date_updated":"2015-10-19T17:19:50.000Z"}],"cycle_number":63,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,24,35,45,54,65,76,85,95,105,115,125,135,145,156,166,175,185,194,205,215,224,235,246,255,265,276,284,295,305,315,325,334,345,355,365,375,385,395,405,415,425,435,446,455,465,475,485,494,512,539,562,587,612,637,662,687,713,738,763,788,812,837,862,888,913,938,962,988,1012,1037,1063,1087,1112,1138,1163,1187,1212,1237,1263,1287,1312,1338,1362,1388,1413,1438,1463,1487,1513,1538,1562,1588,1613,1637,1662,1687,1712,1737,1762,1788,1814,1837,1862,1888,1912,1937,1962,1986],[0.018,0.017,0.017,-0.003,-0.039,-0.068,-0.111,-0.129,-0.132,-0.13,-0.134,-0.158,-0.192,-0.262,-0.299,-0.259,-0.085,0.166,0.603,0.92,1.073,1.299,1.428,1.52,1.583,1.622,1.638,1.658,1.704,1.732,1.748,1.788,1.816,1.828,1.846,1.852,1.861,1.864,1.877,1.886,1.892,1.897,1.899,1.902,1.901,1.898,1.884,1.862,1.85,1.839,1.844,1.848,1.85,1.832,1.839,1.84,1.832,1.815,1.798,1.786,1.769,1.731,1.719,1.695,1.672,1.662,1.636,1.61,1.604,1.573,1.537,1.504,1.458,1.429,1.402,1.378,1.352,1.323,1.29,1.25,1.229,1.201,1.181,1.171,1.16,1.148,1.12,1.11,1.082,1.056,1.025,0.996,0.969,0.942,0.91,0.895,0.891,0.878,0.864,0.843,0.833,0.823,0.806,0.789,0.782,0.772,0.752,0.739,0.728],[34.042999,34.042999,34.042999,34.046001,34.049999,34.051998,34.053001,34.054001,34.054001,34.054001,34.054001,34.055,34.056,34.061001,34.063999,34.082001,34.110001,34.159,34.244999,34.303001,34.334999,34.383999,34.412998,34.438999,34.459999,34.473,34.48,34.487999,34.507999,34.519001,34.526001,34.542,34.554001,34.562,34.571999,34.580002,34.585999,34.59,34.597,34.603001,34.608002,34.615002,34.618,34.624001,34.626999,34.627998,34.632999,34.634998,34.638,34.646999,34.66,34.664001,34.669998,34.674,34.681999,34.688,34.695999,34.700001,34.702999,34.706001,34.707001,34.710999,34.713001,34.717999,34.720001,34.722,34.723,34.723999,34.724998,34.726002,34.724998,34.724998,34.724998,34.726002,34.726002,34.726002,34.724998,34.723999,34.722,34.721001,34.720001,34.719002,34.719002,34.717999,34.719002,34.717999,34.716,34.716,34.715,34.714001,34.712002,34.709999,34.709,34.707001,34.706001,34.706001,34.706001,34.706001,34.705002,34.703999,34.702999,34.702999,34.702,34.701,34.701,34.701,34.700001,34.700001,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_062","geolocation":{"type":"Point","coordinates":[33.601,-54.667]},"basin":10,"timestamp":"2006-10-17T01:51:00.000Z","date_updated_argovis":"2023-01-24T19:57:27.704Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_062.nc","date_updated":"2015-10-19T17:19:50.000Z"}],"cycle_number":62,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,134,145,155,165,175,185,195,205,215,225,235,245,255,265,276,285,295,306,315,325,335,344,355,366,375,385,395,405,415,425,435,445,455,465,475,485,496,513,539,562,588,612,637,662,687,713,738,763,787,812,837,862,889,912,937,962,987,1012,1037,1062,1087,1112,1137,1162,1188,1212,1238,1262,1287,1313,1339,1362,1387,1412,1437,1462,1487,1513,1538,1563,1587,1612,1637,1662,1688,1713,1737,1763,1788,1813,1837,1862,1888,1913,1938,1962,1984],[-0.249,-0.247,-0.247,-0.248,-0.248,-0.247,-0.247,-0.247,-0.247,-0.246,-0.248,-0.247,-0.246,-0.241,-0.237,-0.208,-0.106,0.248,0.573,0.938,1.157,1.234,1.328,1.431,1.513,1.57,1.63,1.656,1.722,1.773,1.813,1.839,1.858,1.871,1.876,1.875,1.875,1.886,1.89,1.892,1.898,1.9,1.898,1.896,1.869,1.88,1.881,1.88,1.881,1.881,1.877,1.875,1.875,1.87,1.855,1.85,1.841,1.829,1.798,1.76,1.717,1.689,1.657,1.63,1.61,1.604,1.598,1.568,1.545,1.52,1.492,1.451,1.423,1.399,1.384,1.364,1.324,1.285,1.256,1.223,1.195,1.161,1.142,1.126,1.104,1.078,1.051,1.028,1.011,0.991,0.979,0.965,0.942,0.922,0.904,0.892,0.878,0.864,0.852,0.841,0.822,0.798,0.764,0.738,0.721,0.703,0.69,0.674,0.658],[34.063,34.062,34.062,34.062,34.063,34.063,34.063,34.063,34.063,34.063,34.063999,34.063999,34.063999,34.066002,34.066002,34.074001,34.103001,34.182999,34.243999,34.313,34.354,34.368999,34.391998,34.422001,34.444,34.462002,34.480999,34.488998,34.508999,34.523998,34.539001,34.555,34.567001,34.574001,34.581001,34.589001,34.594002,34.599998,34.608002,34.617001,34.624001,34.626999,34.632,34.637001,34.641998,34.646999,34.648998,34.652,34.655998,34.660999,34.672001,34.678001,34.683998,34.686001,34.692001,34.701,34.703999,34.707001,34.709,34.709999,34.714001,34.716,34.716999,34.717999,34.720001,34.723,34.724998,34.724998,34.724998,34.726002,34.726002,34.723999,34.723999,34.723999,34.724998,34.723999,34.722,34.720001,34.720001,34.720001,34.720001,34.717999,34.717999,34.717999,34.716999,34.715,34.714001,34.712002,34.710999,34.709999,34.709999,34.709999,34.709,34.708,34.707001,34.707001,34.706001,34.706001,34.705002,34.703999,34.702999,34.700001,34.695999,34.695,34.694,34.694,34.693001,34.693001,34.693001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_061","geolocation":{"type":"Point","coordinates":[33.747,-54.472]},"basin":10,"timestamp":"2006-10-07T01:33:00.000Z","date_updated_argovis":"2023-01-24T19:57:25.785Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_061.nc","date_updated":"2015-10-19T17:19:49.000Z"}],"cycle_number":61,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,45,55,65,75,85,95,104,115,125,134,145,155,165,175,185,195,205,215,225,236,245,255,265,275,285,295,305,315,325,335,345,355,365,374,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,588,613,637,663,688,713,738,762,787,812,837,862,888,912,937,962,988,1013,1037,1062,1087,1112,1138,1162,1187,1212,1238,1263,1287,1312,1337,1363,1387,1412,1437,1462,1487,1513,1539,1562,1587,1612,1637,1662,1687,1714,1738,1762,1787,1813,1838,1862,1887,1912,1939,1963,1984],[0.26,0.261,0.262,0.262,0.259,0.254,0.253,0.236,0.212,0.181,0.082,0.021,-0.127,-0.255,-0.175,-0.295,-0.049,0.211,0.591,0.909,1.176,1.422,1.448,1.504,1.549,1.563,1.58,1.614,1.619,1.67,1.73,1.75,1.743,1.786,1.857,1.874,1.879,1.894,1.899,1.893,1.876,1.873,1.863,1.87,1.889,1.878,1.836,1.829,1.83,1.842,1.828,1.818,1.817,1.813,1.807,1.808,1.801,1.787,1.773,1.743,1.736,1.723,1.698,1.677,1.668,1.662,1.65,1.614,1.553,1.504,1.505,1.504,1.466,1.416,1.373,1.342,1.297,1.28,1.261,1.23,1.209,1.189,1.173,1.163,1.131,1.097,1.078,1.066,1.077,1.074,1.064,1.026,0.982,0.954,0.931,0.912,0.898,0.885,0.877,0.87,0.864,0.85,0.828,0.812,0.795,0.779,0.763,0.746,0.741],[33.993,33.993,33.993,33.993999,33.993999,33.994999,33.994999,33.997002,34.004002,34.014,34.036999,34.042,34.043999,34.060001,34.082001,34.094002,34.140999,34.181,34.244999,34.299,34.348999,34.400002,34.405998,34.418999,34.438,34.450001,34.459,34.473,34.480999,34.500999,34.525002,34.535,34.540001,34.556,34.570999,34.578999,34.581001,34.589001,34.595001,34.597,34.599998,34.602001,34.604,34.609001,34.618999,34.623001,34.627998,34.631001,34.634998,34.645,34.653,34.66,34.671001,34.679001,34.681999,34.692001,34.696999,34.702,34.706001,34.708,34.714001,34.719002,34.719002,34.721001,34.724998,34.728001,34.729,34.728001,34.723999,34.723,34.728001,34.729,34.726002,34.723999,34.723999,34.723999,34.722,34.723,34.722,34.721001,34.721001,34.719002,34.720001,34.721001,34.719002,34.716999,34.716,34.716,34.717999,34.719002,34.719002,34.715,34.709999,34.708,34.707001,34.708,34.708,34.708,34.708,34.708,34.709,34.709,34.707001,34.706001,34.705002,34.703999,34.702999,34.701,34.701]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_060","geolocation":{"type":"Point","coordinates":[34.631,-54.587]},"basin":10,"timestamp":"2006-09-27T01:46:00.000Z","date_updated_argovis":"2023-01-24T19:57:23.890Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_060.nc","date_updated":"2015-10-19T17:19:48.000Z"}],"cycle_number":60,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,106,115,124,135,146,155,165,175,185,196,206,215,225,235,245,255,265,275,285,295,305,315,326,335,345,355,365,375,385,395,405,415,425,435,445,456,466,475,484,495,513,537,562,587,613,639,662,687,713,738,763,788,813,838,864,887,912,937,963,988,1013,1037,1063,1088,1114,1137,1162,1187,1212,1238,1263,1287,1313,1337,1362,1387,1413,1437,1462,1487,1512,1538,1563,1587,1613,1638,1663,1687,1712,1738,1763,1788,1813,1837,1862,1888,1913,1937,1963,1980],[-0.38,-0.379,-0.381,-0.38,-0.379,-0.376,-0.374,-0.373,-0.372,-0.374,-0.373,-0.375,-0.417,-0.537,-0.572,-0.564,-0.528,-0.479,-0.401,-0.253,0.132,0.434,0.73,0.884,1.054,1.183,1.28,1.346,1.402,1.461,1.502,1.552,1.596,1.617,1.65,1.678,1.716,1.704,1.728,1.76,1.765,1.747,1.782,1.787,1.761,1.76,1.812,1.839,1.833,1.829,1.798,1.789,1.782,1.801,1.798,1.792,1.783,1.764,1.76,1.756,1.748,1.708,1.661,1.623,1.613,1.596,1.582,1.565,1.525,1.481,1.46,1.448,1.421,1.394,1.376,1.355,1.325,1.304,1.253,1.224,1.215,1.195,1.184,1.169,1.159,1.148,1.142,1.114,1.083,1.068,1.078,1.068,1.037,1.022,0.999,0.981,0.949,0.927,0.909,0.886,0.87,0.847,0.825,0.811,0.786,0.759,0.742,0.728,0.72],[34.037998,34.036999,34.036999,34.036999,34.036999,34.037998,34.037998,34.037998,34.037998,34.039001,34.039001,34.037998,34.036999,34.037998,34.041,34.042999,34.049,34.057999,34.07,34.094002,34.159,34.210999,34.271,34.310001,34.362,34.400002,34.43,34.450001,34.469002,34.484001,34.494999,34.511002,34.525002,34.534,34.543999,34.549999,34.563,34.567001,34.576,34.589001,34.591999,34.595001,34.605,34.610001,34.615002,34.617001,34.626999,34.636002,34.637001,34.640999,34.651001,34.659,34.671001,34.68,34.685001,34.692001,34.695999,34.700001,34.706001,34.712002,34.717999,34.717999,34.716999,34.716999,34.719002,34.720001,34.722,34.723999,34.724998,34.723,34.723,34.723,34.722,34.722,34.721001,34.721001,34.721001,34.722,34.719002,34.717999,34.717999,34.717999,34.717999,34.717999,34.717999,34.719002,34.719002,34.717999,34.716,34.716,34.719002,34.719002,34.716999,34.716999,34.716,34.715,34.712002,34.710999,34.710999,34.709999,34.709,34.707001,34.706001,34.705002,34.702999,34.702,34.700001,34.700001,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_059","geolocation":{"type":"Point","coordinates":[34.524,-54.2]},"basin":10,"timestamp":"2006-09-17T01:46:00.000Z","date_updated_argovis":"2023-01-24T19:57:22.005Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_059.nc","date_updated":"2015-10-19T17:19:48.000Z"}],"cycle_number":59,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,55,65,75,86,95,105,115,125,135,146,155,165,175,185,195,205,215,225,235,245,255,264,275,285,295,305,315,325,335,346,356,365,375,385,395,405,414,425,435,445,455,465,475,485,495,512,538,562,588,613,638,663,688,712,737,762,788,813,838,863,887,912,937,962,988,1013,1037,1062,1087,1112,1138,1164,1187,1212,1237,1263,1287,1312,1338,1363,1389,1412,1437,1462,1487,1513,1538,1563,1588,1612,1638,1662,1687,1713,1738,1762,1788,1812,1837,1862,1888,1912,1937,1963,1986],[-0.305,-0.306,-0.307,-0.297,-0.29,-0.29,-0.289,-0.287,-0.287,-0.286,-0.285,-0.286,-0.285,-0.272,-0.206,0.107,0.283,0.356,0.41,0.458,0.49,0.692,0.76,1.032,1.134,1.325,1.445,1.361,1.361,1.35,1.349,1.359,1.424,1.506,1.574,1.637,1.663,1.686,1.703,1.722,1.73,1.735,1.731,1.727,1.742,1.761,1.773,1.803,1.809,1.817,1.827,1.825,1.82,1.817,1.79,1.777,1.772,1.755,1.736,1.721,1.713,1.726,1.735,1.721,1.687,1.679,1.65,1.635,1.616,1.596,1.558,1.509,1.471,1.445,1.404,1.365,1.335,1.309,1.291,1.269,1.247,1.218,1.184,1.16,1.134,1.1,1.076,1.057,1.034,1.011,0.999,0.984,0.966,0.934,0.915,0.916,0.904,0.891,0.854,0.833,0.805,0.79,0.774,0.76,0.743,0.735,0.725,0.716,0.713],[34.034,34.034,34.034,34.034,34.034,34.034,34.034,34.034,34.035,34.035,34.035,34.035,34.035999,34.037998,34.048,34.097,34.122002,34.143002,34.155998,34.174999,34.208,34.254002,34.277,34.338001,34.377998,34.421001,34.439999,34.443001,34.450001,34.459,34.467999,34.474998,34.499001,34.521,34.540001,34.556999,34.567001,34.575001,34.584,34.59,34.594002,34.598999,34.605,34.606998,34.612999,34.618999,34.624001,34.632999,34.636002,34.646,34.660999,34.667999,34.675999,34.683998,34.687,34.693001,34.700001,34.703999,34.706001,34.708,34.713001,34.716999,34.723,34.724998,34.723999,34.727001,34.729,34.730999,34.731998,34.731998,34.73,34.728001,34.726002,34.724998,34.723999,34.722,34.721001,34.721001,34.721001,34.720001,34.719002,34.717999,34.716999,34.716,34.714001,34.713001,34.712002,34.710999,34.709999,34.709,34.709,34.708,34.709,34.707001,34.706001,34.707001,34.707001,34.706001,34.702999,34.701,34.699001,34.698002,34.698002,34.696999,34.696999,34.696999,34.696999,34.696999,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_058","geolocation":{"type":"Point","coordinates":[33.759,-54.174]},"basin":10,"timestamp":"2006-09-07T01:40:00.000Z","date_updated_argovis":"2023-01-24T19:57:20.201Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_058.nc","date_updated":"2015-10-19T17:19:47.000Z"}],"cycle_number":58,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,116,125,135,145,155,165,175,185,194,205,215,225,235,245,255,265,276,286,295,305,316,325,335,345,356,365,375,385,395,405,416,425,435,445,455,465,475,485,494,512,537,562,587,613,637,662,687,713,738,763,787,812,838,862,888,913,937,963,988,1012,1037,1062,1088,1112,1137,1162,1188,1212,1238,1263,1288,1313,1338,1363,1387,1413,1438,1462,1487,1513,1537,1562,1587,1613,1639,1662,1688,1713,1738,1763,1788,1814,1838,1863,1888,1913,1937,1963,1981],[-0.225,-0.226,-0.224,-0.223,-0.221,-0.223,-0.229,-0.224,-0.222,-0.222,-0.222,-0.223,-0.235,-0.262,-0.296,-0.389,-0.45,-0.453,-0.35,0.035,0.467,0.821,0.948,1.128,1.26,1.272,1.383,1.409,1.419,1.422,1.434,1.494,1.54,1.561,1.594,1.628,1.653,1.68,1.693,1.703,1.71,1.714,1.723,1.727,1.722,1.74,1.756,1.769,1.771,1.819,1.876,1.839,1.796,1.738,1.727,1.721,1.743,1.7,1.643,1.622,1.607,1.601,1.57,1.604,1.614,1.601,1.62,1.596,1.524,1.497,1.47,1.446,1.435,1.423,1.384,1.364,1.339,1.315,1.307,1.288,1.273,1.255,1.215,1.209,1.224,1.207,1.169,1.121,1.07,1.052,1.035,1.027,1.006,0.993,0.969,0.95,0.932,0.915,0.894,0.883,0.87,0.841,0.828,0.807,0.782,0.769,0.749,0.731,0.722],[34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.015999,34.018002,34.027,34.035,34.046001,34.070999,34.120998,34.202999,34.271,34.306,34.346001,34.374001,34.402,34.432999,34.445999,34.458,34.473,34.486,34.507,34.523998,34.540001,34.553001,34.561001,34.570999,34.578999,34.583,34.587002,34.591999,34.596001,34.601002,34.605999,34.611,34.620998,34.629002,34.633999,34.634998,34.651001,34.666,34.669998,34.673,34.678001,34.685001,34.692001,34.701,34.701,34.700001,34.702,34.705002,34.709999,34.712002,34.719002,34.724998,34.728001,34.734001,34.733002,34.728001,34.728001,34.727001,34.726002,34.728001,34.729,34.727001,34.727001,34.724998,34.724998,34.724998,34.723999,34.723999,34.723999,34.721001,34.723,34.727001,34.728001,34.723999,34.720001,34.715,34.714001,34.714001,34.715,34.715,34.714001,34.713001,34.713001,34.712002,34.710999,34.709999,34.709999,34.709999,34.708,34.708,34.706001,34.705002,34.703999,34.702,34.701,34.700001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_057","geolocation":{"type":"Point","coordinates":[32.894,-53.955000000000005]},"basin":10,"timestamp":"2006-08-28T01:41:00.000Z","date_updated_argovis":"2023-01-24T19:57:18.380Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_057.nc","date_updated":"2015-10-19T17:19:47.000Z"}],"cycle_number":57,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,56,65,76,85,94,105,115,125,136,145,155,166,175,185,196,205,215,225,235,246,255,265,276,285,295,305,315,325,335,346,356,365,375,385,395,405,415,425,435,444,455,465,474,485,495,513,539,562,587,612,637,662,688,712,738,763,787,812,839,862,887,912,937,962,987,1012,1038,1062,1087,1113,1138,1162,1188,1212,1237,1263,1288,1313,1339,1362,1387,1413,1438,1463,1488,1512,1538,1563,1587,1612,1637,1663,1687,1712,1738,1764,1787,1812,1837,1863,1888,1912,1938,1963,1985],[-0.297,-0.3,-0.301,-0.302,-0.302,-0.303,-0.305,-0.305,-0.308,-0.308,-0.311,-0.311,-0.317,-0.326,-0.329,-0.332,-0.338,-0.319,-0.141,0.191,0.561,0.754,0.955,1.176,1.264,1.309,1.388,1.459,1.528,1.588,1.694,1.703,1.718,1.739,1.727,1.68,1.728,1.787,1.798,1.851,1.88,1.883,1.894,1.912,1.922,1.933,1.946,1.946,1.945,1.93,1.905,1.898,1.899,1.861,1.84,1.832,1.763,1.72,1.75,1.729,1.704,1.667,1.635,1.62,1.597,1.582,1.583,1.57,1.54,1.501,1.465,1.457,1.423,1.42,1.409,1.382,1.356,1.322,1.343,1.301,1.251,1.221,1.191,1.161,1.127,1.112,1.091,1.117,1.13,1.109,1.086,1.06,1.048,1.034,0.994,0.962,0.941,0.928,0.92,0.901,0.881,0.86,0.845,0.827,0.816,0.791,0.76,0.748,0.734],[33.999001,34,34,34,34.000999,34.000999,34.001999,34.001999,34.002998,34.002998,34.002998,34.002998,34.002998,34.004002,34.004002,34.004002,34.005001,34.014,34.049,34.138,34.237,34.292,34.341,34.395,34.417999,34.43,34.452,34.469002,34.487999,34.505001,34.529999,34.544998,34.558998,34.57,34.577,34.577,34.592999,34.603001,34.605999,34.616001,34.624001,34.625999,34.631001,34.636002,34.640999,34.646999,34.653,34.654999,34.659,34.665001,34.671001,34.674999,34.68,34.681999,34.687,34.695999,34.695,34.695,34.705002,34.709999,34.712002,34.712002,34.713001,34.716,34.716999,34.719002,34.723999,34.724998,34.724998,34.724998,34.724998,34.726002,34.724998,34.727001,34.727001,34.726002,34.724998,34.724998,34.730999,34.728001,34.723999,34.722,34.721001,34.719002,34.716,34.716999,34.716,34.721001,34.724998,34.723,34.721001,34.720001,34.719002,34.720001,34.716,34.713001,34.712002,34.710999,34.710999,34.709999,34.708,34.707001,34.706001,34.706001,34.706001,34.703999,34.701,34.700001,34.699001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_056","geolocation":{"type":"Point","coordinates":[31.754,-53.285000000000004]},"basin":10,"timestamp":"2006-08-18T01:46:59.999Z","date_updated_argovis":"2023-01-24T19:57:16.403Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_056.nc","date_updated":"2015-10-19T17:19:46.000Z"}],"cycle_number":56,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,55,65,74,85,96,105,115,125,135,145,155,165,175,185,195,204,215,225,234,245,255,265,275,285,295,305,315,325,335,346,355,365,375,385,395,405,415,425,435,445,455,465,474,485,495,513,537,562,588,613,637,662,687,712,737,763,788,812,839,862,887,913,938,963,987,1013,1038,1064,1087,1112,1138,1163,1188,1212,1238,1262,1287,1312,1338,1362,1387,1413,1437,1462,1487,1512,1538,1563,1588,1612,1637,1663,1688,1713,1737,1763,1787,1812,1837,1863,1888,1912,1937,1963,1985],[-0.077,-0.08,-0.08,-0.079,-0.079,-0.08,-0.082,-0.1,-0.167,-0.198,-0.253,-0.27,-0.277,-0.232,-0.198,-0.197,-0.105,-0.01,0.262,0.573,0.718,0.998,1.15,1.165,1.18,1.247,1.293,1.317,1.394,1.564,1.625,1.626,1.62,1.639,1.642,1.607,1.604,1.609,1.644,1.613,1.534,1.54,1.542,1.582,1.624,1.661,1.685,1.699,1.71,1.716,1.729,1.752,1.769,1.745,1.73,1.734,1.774,1.809,1.756,1.725,1.689,1.662,1.635,1.604,1.58,1.578,1.58,1.579,1.563,1.541,1.528,1.511,1.5,1.483,1.454,1.42,1.382,1.338,1.307,1.272,1.234,1.213,1.184,1.152,1.137,1.109,1.088,1.071,1.041,1.018,1,0.97,0.956,0.937,0.921,0.908,0.889,0.86,0.843,0.829,0.816,0.798,0.782,0.759,0.742,0.721,0.704,0.692,0.684],[33.987,33.987999,33.987999,33.987999,33.987999,33.988998,33.988998,33.990002,33.995998,33.999001,34.001999,34.005001,34.007,34.014999,34.02,34.027,34.043999,34.081001,34.151001,34.235001,34.276001,34.352001,34.389,34.397999,34.404999,34.422001,34.437,34.442001,34.457001,34.492001,34.508999,34.512001,34.521999,34.530998,34.536999,34.542,34.546001,34.551998,34.562,34.562,34.561001,34.570999,34.577999,34.589001,34.599998,34.611,34.618,34.623001,34.630001,34.637001,34.647999,34.660999,34.671001,34.675999,34.682999,34.692001,34.701,34.710999,34.713001,34.714001,34.713001,34.715,34.716,34.716,34.716999,34.719002,34.723,34.723999,34.727001,34.727001,34.727001,34.728001,34.728001,34.728001,34.727001,34.724998,34.723999,34.722,34.720001,34.717999,34.716999,34.716999,34.716999,34.716,34.715,34.714001,34.712002,34.712002,34.709999,34.709,34.709,34.708,34.707001,34.706001,34.705002,34.703999,34.703999,34.702,34.701,34.700001,34.700001,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.694,34.694]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_055","geolocation":{"type":"Point","coordinates":[31.318,-54.306000000000004]},"basin":10,"timestamp":"2006-08-08T01:42:00.000Z","date_updated_argovis":"2023-01-24T19:57:14.591Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_055.nc","date_updated":"2015-10-19T17:19:46.000Z"}],"cycle_number":55,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,66,76,86,95,105,115,125,135,145,155,165,175,186,195,205,215,225,235,245,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,414,425,435,445,455,465,475,485,495,512,537,562,588,613,637,662,687,712,737,762,787,814,838,863,888,912,937,962,987,1013,1038,1063,1088,1113,1137,1162,1188,1213,1237,1262,1287,1312,1339,1363,1388,1413,1437,1462,1488,1513,1538,1563,1587,1612,1638,1663,1688,1713,1738,1763,1788,1812,1837,1862,1887,1912,1938,1963,1979],[-0.442,-0.442,-0.441,-0.441,-0.442,-0.441,-0.441,-0.441,-0.441,-0.441,-0.441,-0.447,-0.449,-0.447,-0.447,-0.444,-0.439,-0.38,-0.028,0.349,0.579,0.771,0.904,1.007,1.138,1.215,1.317,1.382,1.469,1.547,1.629,1.647,1.642,1.655,1.632,1.666,1.716,1.698,1.695,1.701,1.708,1.729,1.726,1.72,1.708,1.703,1.71,1.708,1.772,1.813,1.82,1.819,1.803,1.794,1.775,1.744,1.712,1.696,1.709,1.654,1.678,1.669,1.659,1.651,1.628,1.552,1.536,1.529,1.495,1.46,1.435,1.386,1.343,1.322,1.326,1.346,1.315,1.292,1.26,1.201,1.165,1.148,1.122,1.095,1.077,1.059,1.039,1.016,0.993,0.966,0.935,0.913,0.898,0.891,0.871,0.85,0.826,0.808,0.79,0.772,0.755,0.739,0.723,0.699,0.683,0.668,0.659,0.644,0.638],[34.006001,34.006001,34.006001,34.006001,34.006001,34.006001,34.006001,34.006001,34.006001,34.007,34.006001,34.007999,34.009998,34.011002,34.011002,34.011002,34.012001,34.026001,34.118999,34.237999,34.306,34.365002,34.396,34.421001,34.448002,34.473,34.495998,34.509998,34.528,34.542,34.556,34.563999,34.569,34.575001,34.577,34.584999,34.594002,34.596001,34.602001,34.606998,34.612999,34.618,34.622002,34.625,34.627998,34.630001,34.636002,34.640999,34.653,34.664001,34.672001,34.681,34.688,34.694,34.699001,34.701,34.702999,34.706001,34.712002,34.709999,34.716999,34.719002,34.722,34.723999,34.723,34.716999,34.717999,34.720001,34.720001,34.719002,34.719002,34.716,34.715,34.716,34.719002,34.723999,34.723,34.723,34.720001,34.716,34.714001,34.714001,34.712002,34.710999,34.712002,34.710999,34.709999,34.709999,34.708,34.707001,34.705002,34.705002,34.703999,34.703999,34.702999,34.702,34.700001,34.699001,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.693001,34.692001,34.692001,34.691002,34.691002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_054","geolocation":{"type":"Point","coordinates":[31.496000000000002,-54.242000000000004]},"basin":10,"timestamp":"2006-07-29T01:48:00.000Z","date_updated_argovis":"2023-01-24T19:57:12.702Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_054.nc","date_updated":"2015-10-19T17:19:45.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,44,56,66,74,85,95,106,115,124,134,145,155,165,175,195,215,236,255,276,285,295,304,315,325,336,346,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,539,562,588,613,638,662,687,712,737,762,787,813,838,864,887,912,937,962,987,1012,1037,1063,1087,1114,1138,1163,1187,1212,1238,1263,1288,1312,1338,1362,1387,1412,1437,1462,1487,1512,1538,1563,1587,1613,1637,1662,1687,1712,1737,1764,1787,1812,1838,1863,1888,1914,1938,1963,1985],[-0.347,-0.345,-0.345,-0.346,-0.35,-0.364,-0.353,-0.35,-0.353,-0.366,-0.367,-0.36,-0.39,-0.403,-0.427,-0.223,-0.079,0.545,0.806,0.97,1.115,1.242,1.356,1.426,1.489,1.525,1.536,1.566,1.574,1.576,1.57,1.528,1.516,1.522,1.515,1.54,1.568,1.621,1.663,1.701,1.744,1.746,1.749,1.757,1.797,1.832,1.815,1.766,1.743,1.736,1.725,1.689,1.647,1.614,1.625,1.572,1.524,1.5,1.478,1.447,1.442,1.426,1.416,1.406,1.384,1.366,1.34,1.315,1.266,1.256,1.233,1.182,1.154,1.127,1.083,1.054,1.029,1.01,0.981,0.954,0.929,0.904,0.882,0.866,0.85,0.831,0.803,0.783,0.768,0.747,0.734,0.721,0.709,0.691,0.666,0.658,0.649,0.637,0.627,0.605,0.589,0.576,0.562,0.558],[33.998001,33.998001,33.998001,33.998001,33.998001,34,33.999001,33.998001,33.998001,34,33.999001,33.998001,34.001999,34.002998,34.009998,34.077999,34.119999,34.313,34.396999,34.441002,34.478001,34.518002,34.535999,34.549999,34.563999,34.575001,34.578999,34.591999,34.598,34.598999,34.601002,34.604,34.611,34.613998,34.618999,34.626999,34.634998,34.646,34.653999,34.660999,34.669998,34.671001,34.672001,34.678001,34.688999,34.700001,34.702999,34.702,34.702,34.706001,34.708,34.709999,34.710999,34.710999,34.715,34.712002,34.709999,34.709999,34.712002,34.713001,34.717999,34.720001,34.722,34.723999,34.723999,34.723,34.723,34.721001,34.717999,34.717999,34.717999,34.714001,34.714001,34.713001,34.710999,34.709999,34.709999,34.709,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.702,34.701,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.693001,34.692001,34.692001,34.691002,34.691002,34.691002,34.689999,34.688999,34.688999,34.688,34.688,34.688]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_053","geolocation":{"type":"Point","coordinates":[30.511000000000003,-54.655]},"basin":10,"timestamp":"2006-07-19T01:48:00.000Z","date_updated_argovis":"2023-01-24T19:57:10.975Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_053.nc","date_updated":"2015-10-19T17:19:45.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,105,115,125,135,145,155,166,176,185,195,205,215,225,235,245,255,265,274,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,475,485,495,513,538,563,588,613,638,663,688,713,738,763,788,813,837,862,888,912,937,963,988,1013,1037,1064,1087,1113,1138,1162,1187,1212,1237,1262,1287,1312,1338,1363,1388,1413,1437,1462,1487,1512,1538,1563,1588,1613,1638,1663,1688,1712,1737,1762,1787,1812,1837,1863,1887,1912,1937,1962,1988,2002],[-0.571,-0.558,-0.566,-0.554,-0.551,-0.556,-0.564,-0.555,-0.545,-0.538,-0.516,-0.438,-0.356,-0.17,0.142,0.377,0.623,0.698,0.748,0.806,0.84,0.845,0.953,1.069,1.122,1.167,1.202,1.227,1.277,1.333,1.372,1.588,1.622,1.583,1.543,1.612,1.608,1.615,1.646,1.621,1.631,1.677,1.674,1.668,1.702,1.691,1.707,1.719,1.76,1.742,1.801,1.847,1.852,1.845,1.812,1.71,1.736,1.702,1.577,1.561,1.587,1.572,1.515,1.456,1.399,1.376,1.348,1.327,1.294,1.273,1.255,1.227,1.206,1.176,1.149,1.138,1.124,1.108,1.084,1.061,1.028,1.008,0.999,0.984,0.942,0.908,0.871,0.835,0.815,0.797,0.769,0.753,0.74,0.728,0.711,0.693,0.678,0.658,0.648,0.64,0.622,0.61,0.604,0.591,0.577,0.559,0.553,0.537,0.525,0.523],[33.995998,33.997002,33.997002,33.998001,33.998001,33.998001,33.995998,33.997002,33.999001,33.999001,34.002998,34.016998,34.035999,34.084999,34.155998,34.212002,34.285,34.333,34.362,34.382,34.402,34.417,34.435001,34.457001,34.467999,34.48,34.490002,34.497002,34.509998,34.525002,34.535,34.564999,34.576,34.578999,34.585999,34.601002,34.606998,34.612,34.624001,34.632,34.641998,34.652,34.655998,34.658001,34.667,34.672001,34.678001,34.685001,34.692001,34.694,34.705002,34.716999,34.720001,34.722,34.722,34.715,34.723999,34.721001,34.710999,34.714001,34.721001,34.721001,34.723,34.720001,34.720001,34.720001,34.720001,34.719002,34.717999,34.717999,34.716999,34.716999,34.716,34.715,34.714001,34.713001,34.713001,34.712002,34.712002,34.710999,34.709999,34.709,34.709,34.709,34.706001,34.703999,34.702,34.700001,34.699001,34.698002,34.696999,34.695999,34.695999,34.695,34.695,34.694,34.694,34.693001,34.692001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.688,34.688,34.687,34.687,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_052","geolocation":{"type":"Point","coordinates":[32.441,-55.986000000000004]},"basin":10,"timestamp":"2006-07-09T01:54:59.999Z","date_updated_argovis":"2023-01-24T19:57:09.080Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_052.nc","date_updated":"2015-10-19T17:19:44.000Z"}],"cycle_number":52,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,95,105,115,125,135,146,155,165,175,185,195,205,214,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,375,385,395,404,415,425,435,446,455,465,475,485,496,513,538,562,587,613,638,664,687,712,737,763,789,812,838,863,888,913,938,963,987,1012,1037,1062,1087,1112,1137,1164,1188,1213,1238,1263,1288,1312,1337,1364,1387,1412,1438,1463,1488,1512,1538,1562,1588,1613,1637,1663,1688,1713,1738,1763,1788,1812,1838,1862,1887,1913,1938,1962,1984],[-0.577,-0.576,-0.575,-0.572,-0.573,-0.575,-0.574,-0.574,-0.573,-0.571,-0.566,-0.56,-0.548,-0.48,-0.163,0.21,0.361,0.396,0.389,0.392,0.405,0.435,0.548,0.712,0.857,0.951,1.033,1.124,1.266,1.341,1.401,1.477,1.519,1.546,1.564,1.581,1.589,1.596,1.609,1.619,1.629,1.633,1.637,1.677,1.688,1.69,1.678,1.725,1.725,1.719,1.706,1.682,1.659,1.632,1.624,1.603,1.59,1.564,1.548,1.522,1.514,1.499,1.474,1.468,1.48,1.44,1.402,1.38,1.373,1.351,1.344,1.303,1.261,1.206,1.173,1.143,1.116,1.091,1.073,1.051,1.024,1.011,0.997,0.951,0.927,0.908,0.883,0.869,0.855,0.838,0.812,0.795,0.777,0.76,0.751,0.719,0.704,0.689,0.672,0.655,0.642,0.631,0.616,0.6,0.584,0.573,0.56,0.55,0.534],[33.98,33.98,33.98,33.98,33.98,33.98,33.98,33.98,33.98,33.98,33.98,33.980999,33.983002,33.997002,34.063999,34.157001,34.203999,34.236,34.256001,34.272999,34.299,34.327999,34.365002,34.402,34.431,34.448002,34.466999,34.488998,34.52,34.537998,34.554001,34.574001,34.585999,34.594002,34.599998,34.605999,34.609001,34.611,34.618,34.625,34.632,34.633999,34.639999,34.648998,34.652,34.653999,34.655998,34.665001,34.667999,34.673,34.678001,34.681999,34.683998,34.688999,34.695999,34.699001,34.703999,34.708,34.709,34.712002,34.716,34.716999,34.715,34.716999,34.722,34.720001,34.717999,34.717999,34.719002,34.720001,34.723,34.721001,34.717999,34.714001,34.712002,34.712002,34.710999,34.709999,34.709999,34.709,34.709,34.709,34.708,34.706001,34.705002,34.703999,34.702999,34.702,34.702,34.701,34.699001,34.699001,34.698002,34.696999,34.696999,34.695,34.695,34.694,34.693001,34.693001,34.692001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.688,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_051","geolocation":{"type":"Point","coordinates":[30.831000000000003,-56.961000000000006]},"basin":10,"timestamp":"2006-06-29T01:49:00.000Z","date_updated_argovis":"2023-01-24T19:57:07.281Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_051.nc","date_updated":"2015-10-19T17:19:43.000Z"}],"cycle_number":51,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,75,85,95,105,115,125,135,145,155,165,175,185,195,204,215,225,235,245,255,266,275,285,295,304,315,325,335,345,355,365,375,385,395,405,416,425,435,445,455,465,475,485,495,512,538,562,587,614,637,662,687,713,738,763,788,813,837,864,887,912,937,962,987,1012,1037,1062,1088,1113,1139,1163,1188,1213,1238,1263,1287,1312,1337,1363,1387,1412,1437,1462,1487,1513,1538,1563,1588,1613,1637,1662,1688,1713,1738,1763,1788,1813,1837,1862,1887,1913,1938,1962,1986],[0.258,0.257,0.258,0.258,0.257,0.258,0.258,0.261,0.262,0.262,0.263,0.262,0.259,0.243,0.172,0.212,0.419,0.508,0.506,0.584,0.77,0.998,1.162,1.295,1.274,1.229,1.323,1.4,1.428,1.443,1.444,1.485,1.517,1.537,1.557,1.574,1.582,1.602,1.613,1.623,1.628,1.64,1.649,1.662,1.665,1.665,1.667,1.676,1.679,1.681,1.686,1.671,1.644,1.659,1.643,1.596,1.566,1.53,1.502,1.484,1.464,1.455,1.484,1.531,1.437,1.425,1.399,1.373,1.329,1.301,1.256,1.248,1.213,1.156,1.112,1.106,1.099,1.085,1.09,1.066,1.035,1.011,1.002,0.978,0.952,0.926,0.9,0.888,0.842,0.82,0.807,0.782,0.764,0.752,0.737,0.717,0.693,0.674,0.651,0.632,0.625,0.611,0.594,0.58,0.568,0.557,0.54,0.532,0.516],[33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,33.981998,34.004002,34.165001,34.257999,34.296001,34.321999,34.352001,34.388,34.425999,34.452999,34.476002,34.48,34.488998,34.508999,34.525002,34.535999,34.541,34.543999,34.551998,34.562,34.570999,34.578999,34.587002,34.595001,34.598999,34.605,34.612,34.616001,34.622002,34.630001,34.638,34.645,34.653,34.659,34.665001,34.667999,34.672001,34.679001,34.687,34.689999,34.699001,34.702,34.700001,34.702,34.702,34.702999,34.705002,34.707001,34.709,34.716999,34.726002,34.717999,34.719002,34.719002,34.719002,34.716999,34.716,34.714001,34.716,34.714001,34.709,34.707001,34.708,34.709999,34.709999,34.712002,34.712002,34.709999,34.709,34.709999,34.709,34.707001,34.706001,34.703999,34.703999,34.700001,34.699001,34.699001,34.698002,34.696999,34.695999,34.695999,34.695,34.694,34.693001,34.691002,34.689999,34.689999,34.689999,34.688999,34.688,34.688,34.687,34.687,34.687,34.686001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_050","geolocation":{"type":"Point","coordinates":[29.601000000000003,-55.779]},"basin":10,"timestamp":"2006-06-19T01:49:00.000Z","date_updated_argovis":"2023-01-24T19:57:05.370Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_050.nc","date_updated":"2015-10-19T17:19:43.000Z"}],"cycle_number":50,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,66,75,85,95,104,114,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,366,375,385,395,405,415,426,435,445,455,465,475,485,495,514,537,562,587,612,637,663,688,713,738,762,787,812,838,864,888,912,937,962,987,1013,1038,1064,1088,1113,1138,1163,1187,1212,1238,1263,1288,1312,1338,1362,1387,1413,1437,1463,1488,1512,1539,1563,1587,1612,1637,1663,1688,1712,1738,1763,1789,1813,1837,1862,1887,1913,1938,1963,1981],[0.05,0.053,0.049,0.045,0.015,-0.002,-0.031,-0.041,-0.04,-0.03,-0.074,-0.053,0.107,0.376,0.653,0.467,0.521,0.774,0.909,1.176,1.534,1.429,1.315,1.315,1.359,1.419,1.498,1.569,1.672,1.798,1.752,1.783,1.748,1.717,1.711,1.723,1.743,1.856,1.901,1.912,1.916,1.915,1.914,1.919,1.919,1.92,1.93,1.936,1.922,1.92,1.911,1.882,1.847,1.804,1.783,1.779,1.772,1.7,1.606,1.573,1.54,1.509,1.485,1.466,1.399,1.385,1.409,1.387,1.356,1.352,1.336,1.325,1.307,1.278,1.222,1.178,1.132,1.099,1.084,1.069,1.044,1.028,1.01,0.978,0.95,0.916,0.89,0.872,0.861,0.851,0.839,0.821,0.796,0.772,0.755,0.734,0.723,0.699,0.683,0.664,0.648,0.631,0.614,0.601,0.582,0.563,0.554,0.541,0.532],[33.951,33.952,33.951,33.950001,33.950001,33.950001,33.949001,33.950001,33.951,33.952,33.949001,33.958,33.997002,34.091,34.220001,34.256001,34.294998,34.34,34.373001,34.410999,34.449001,34.450001,34.459,34.471001,34.480999,34.498001,34.514999,34.528999,34.548,34.566002,34.569,34.578999,34.583,34.588001,34.595001,34.601002,34.615002,34.634998,34.646,34.653,34.658001,34.660999,34.662998,34.666,34.669998,34.675999,34.681999,34.685001,34.686001,34.692001,34.695999,34.699001,34.700001,34.702,34.703999,34.709,34.712002,34.709,34.702,34.707001,34.708,34.708,34.709,34.710999,34.707001,34.709999,34.715,34.716,34.716,34.717999,34.717999,34.719002,34.720001,34.720001,34.716,34.713001,34.709,34.708,34.709,34.708,34.708,34.708,34.708,34.706001,34.703999,34.702,34.701,34.701,34.701,34.701,34.701,34.700001,34.700001,34.699001,34.698002,34.695999,34.695999,34.695,34.694,34.693001,34.692001,34.692001,34.691002,34.689999,34.688999,34.688,34.688,34.687,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_049","geolocation":{"type":"Point","coordinates":[30.548000000000002,-55.452000000000005]},"basin":10,"timestamp":"2006-06-09T01:44:00.000Z","date_updated_argovis":"2023-01-24T19:57:03.486Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_049.nc","date_updated":"2015-10-19T17:19:42.000Z"}],"cycle_number":49,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,46,55,65,75,86,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,264,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,454,465,476,485,495,513,539,562,587,612,637,663,688,713,737,762,787,812,838,862,888,913,938,963,987,1012,1038,1062,1087,1112,1137,1163,1187,1213,1238,1263,1288,1312,1337,1362,1387,1412,1437,1463,1489,1513,1538,1563,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1838,1863,1888,1913,1938,1963,1979],[-0.049,-0.05,-0.048,-0.047,-0.048,-0.045,-0.046,-0.047,-0.05,-0.049,-0.038,-0.03,0.035,0.064,0.219,0.742,0.88,0.84,0.845,1.012,1.189,1.15,1.182,1.471,1.624,1.678,1.73,1.728,1.696,1.703,1.705,1.73,1.706,1.662,1.641,1.675,1.669,1.765,1.766,1.786,1.829,1.842,1.834,1.837,1.845,1.844,1.832,1.811,1.795,1.772,1.784,1.765,1.754,1.66,1.644,1.664,1.634,1.619,1.603,1.595,1.545,1.506,1.503,1.498,1.493,1.514,1.505,1.453,1.443,1.435,1.365,1.315,1.203,1.148,1.13,1.094,1.073,1.078,1.094,1.044,1.001,0.984,0.968,0.956,0.941,0.94,0.953,0.946,0.931,0.894,0.866,0.844,0.82,0.805,0.785,0.773,0.747,0.74,0.718,0.691,0.671,0.66,0.642,0.633,0.625,0.613,0.591,0.579,0.572],[33.950001,33.950001,33.950001,33.949001,33.949001,33.949001,33.949001,33.949001,33.949001,33.949001,33.950001,33.951,33.973999,33.990002,34.084999,34.280998,34.32,34.342999,34.360001,34.391998,34.417,34.417999,34.439999,34.48,34.506001,34.519001,34.541,34.550999,34.556999,34.563999,34.571999,34.580002,34.583,34.587002,34.591,34.604,34.610001,34.625999,34.627998,34.637001,34.646999,34.653999,34.655998,34.660999,34.665001,34.667,34.667,34.669998,34.669998,34.674,34.682999,34.688,34.689999,34.683998,34.687,34.694,34.695999,34.696999,34.700001,34.705002,34.702999,34.702,34.707001,34.710999,34.714001,34.720001,34.722,34.717999,34.721001,34.722,34.717999,34.715,34.706001,34.705002,34.705002,34.702999,34.702999,34.706001,34.709999,34.706001,34.702,34.702,34.702,34.702,34.702,34.703999,34.708,34.708,34.708,34.705002,34.702,34.701,34.699001,34.698002,34.696999,34.696999,34.695999,34.695999,34.694,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.689999,34.688999,34.688,34.688]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_048","geolocation":{"type":"Point","coordinates":[29.265,-57.083000000000006]},"basin":10,"timestamp":"2006-05-30T01:44:00.000Z","date_updated_argovis":"2023-01-24T19:57:01.688Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_048.nc","date_updated":"2015-10-19T17:19:42.000Z"}],"cycle_number":48,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,194,205,215,224,235,245,255,265,275,285,296,304,315,326,335,345,355,365,375,385,396,406,416,425,435,445,455,466,475,484,495,512,538,562,587,612,638,663,687,713,738,762,788,815,838,863,887,912,937,962,988,1013,1038,1062,1087,1112,1137,1162,1187,1213,1238,1262,1289,1312,1338,1362,1387,1413,1438,1462,1487,1512,1537,1564,1587,1613,1637,1662,1687,1712,1737,1763,1788,1812,1837,1862,1887,1912,1937,1963,1984],[0.003,0.003,0.005,0.006,0.027,0.025,0.034,0.034,0.053,0.085,0.122,0.247,0.269,0.101,-0.003,0.214,0.435,0.542,0.546,0.794,0.725,0.777,0.762,0.896,1.014,1.111,1.132,1.188,1.282,1.319,1.393,1.416,1.297,1.23,1.47,1.438,1.516,1.502,1.486,1.494,1.536,1.556,1.567,1.582,1.594,1.589,1.586,1.585,1.575,1.566,1.566,1.573,1.503,1.423,1.473,1.512,1.47,1.451,1.339,1.323,1.381,1.445,1.386,1.388,1.332,1.285,1.242,1.227,1.196,1.172,1.142,1.128,1.135,1.11,1.087,1.068,1.042,1.046,1.029,1.01,0.976,0.931,0.878,0.856,0.819,0.799,0.78,0.778,0.773,0.752,0.721,0.708,0.702,0.68,0.662,0.64,0.624,0.61,0.597,0.581,0.564,0.554,0.547,0.531,0.522,0.51,0.498,0.485,0.48],[33.901001,33.901001,33.901001,33.901001,33.903,33.903,33.903999,33.903999,33.907001,33.910999,33.916,33.931999,33.944,34.071999,34.202,34.255001,34.303001,34.327999,34.356998,34.381001,34.396,34.410999,34.428001,34.452999,34.477001,34.495998,34.505001,34.519001,34.537998,34.550999,34.568001,34.576,34.570999,34.574001,34.602001,34.608002,34.618999,34.625,34.631001,34.637001,34.644001,34.650002,34.653999,34.66,34.665001,34.667,34.669998,34.674,34.674999,34.681,34.688999,34.695999,34.694,34.691002,34.702,34.710999,34.710999,34.713001,34.702,34.705002,34.716,34.727001,34.723,34.726002,34.722,34.719002,34.716999,34.716999,34.716,34.716,34.715,34.715,34.717999,34.716,34.715,34.714001,34.713001,34.716,34.715,34.714001,34.712002,34.708,34.702999,34.702,34.699001,34.699001,34.698002,34.699001,34.700001,34.699001,34.696999,34.696999,34.696999,34.695,34.695,34.694,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.689999,34.688999,34.688,34.688,34.687,34.686001,34.686001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_047","geolocation":{"type":"Point","coordinates":[26.744,-56.835]},"basin":10,"timestamp":"2006-05-20T01:51:00.000Z","date_updated_argovis":"2023-01-24T19:56:59.970Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_047.nc","date_updated":"2015-10-19T17:19:41.000Z"}],"cycle_number":47,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,76,85,95,106,116,125,135,145,155,165,175,185,195,205,215,225,234,245,256,265,275,285,295,305,315,325,335,345,354,364,375,385,396,405,415,425,435,446,455,465,475,485,495,512,537,562,589,612,637,663,688,713,738,763,788,813,839,862,887,912,938,963,988,1013,1038,1063,1087,1112,1138,1163,1187,1212,1238,1263,1288,1312,1338,1363,1387,1412,1437,1463,1488,1513,1537,1563,1587,1613,1638,1662,1688,1713,1737,1763,1787,1813,1837,1862,1887,1912,1937,1962,1985],[0.957,0.958,0.958,0.959,0.959,0.958,0.955,0.949,0.935,0.931,0.784,0.517,0.348,0.326,0.379,0.477,0.627,0.869,0.988,1.11,1.053,1.23,1.276,1.278,1.335,1.518,1.513,1.486,1.475,1.52,1.554,1.581,1.618,1.61,1.607,1.631,1.66,1.689,1.701,1.723,1.711,1.736,1.74,1.726,1.78,1.774,1.818,1.824,1.867,1.831,1.735,1.679,1.633,1.591,1.607,1.566,1.537,1.555,1.529,1.508,1.47,1.431,1.418,1.376,1.362,1.383,1.378,1.379,1.357,1.329,1.29,1.246,1.224,1.219,1.176,1.147,1.119,1.079,1.053,1.037,1.016,1.009,0.99,0.965,0.94,0.924,0.883,0.847,0.824,0.798,0.776,0.765,0.748,0.73,0.706,0.693,0.686,0.67,0.661,0.653,0.647,0.636,0.622,0.61,0.589,0.571,0.56,0.548,0.534],[33.963001,33.963001,33.963001,33.964001,33.964001,33.965,33.965,33.965,33.966,33.972,34.018002,34.110001,34.192001,34.245998,34.277,34.299999,34.339001,34.382,34.405998,34.433998,34.438999,34.476002,34.493,34.500999,34.516998,34.542999,34.549,34.555,34.563,34.574001,34.584999,34.597,34.606998,34.610001,34.612999,34.620998,34.629002,34.636002,34.641998,34.650002,34.654999,34.661999,34.666,34.668999,34.679001,34.681999,34.689999,34.694,34.702,34.702,34.696999,34.698002,34.699001,34.700001,34.707001,34.705002,34.706001,34.712002,34.713001,34.715,34.713001,34.713001,34.714001,34.713001,34.715,34.720001,34.722,34.723999,34.723999,34.723999,34.723,34.720001,34.720001,34.721001,34.717999,34.716999,34.716,34.714001,34.713001,34.713001,34.712002,34.712002,34.712002,34.710999,34.709999,34.709,34.705002,34.702,34.701,34.699001,34.698002,34.698002,34.696999,34.696999,34.695,34.695,34.695,34.694,34.694,34.694,34.694,34.693001,34.692001,34.691002,34.688999,34.688,34.688,34.688,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_046","geolocation":{"type":"Point","coordinates":[25.808,-56.648]},"basin":10,"timestamp":"2006-05-10T01:51:00.000Z","date_updated_argovis":"2023-01-24T19:56:58.083Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_046.nc","date_updated":"2015-10-19T17:19:40.000Z"}],"cycle_number":46,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,46,55,65,75,85,95,105,115,125,135,145,155,164,175,185,195,205,215,225,235,245,256,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,475,485,495,512,538,563,587,612,637,662,687,712,738,762,787,812,838,864,887,912,937,963,988,1013,1038,1063,1088,1113,1137,1162,1187,1213,1238,1263,1288,1312,1338,1363,1388,1412,1438,1463,1487,1512,1537,1562,1588,1612,1637,1662,1688,1713,1738,1763,1787,1812,1837,1863,1888,1913,1937,1962,1981],[1.297,1.299,1.302,1.302,1.301,1.299,1.296,1.235,0.899,0.378,0.198,0.021,0.021,0.116,0.407,0.616,0.962,1.301,1.403,1.521,1.647,1.728,1.713,1.71,1.771,1.808,1.83,1.837,1.84,1.803,1.81,1.785,1.795,1.796,1.767,1.652,1.612,1.616,1.753,1.824,1.764,1.689,1.7,1.64,1.643,1.657,1.636,1.633,1.629,1.612,1.56,1.534,1.521,1.489,1.483,1.451,1.418,1.403,1.414,1.47,1.454,1.421,1.377,1.322,1.184,1.153,1.121,1.176,1.153,1.176,1.173,1.128,1.028,1.058,1.026,1.001,0.978,0.957,0.936,0.919,0.91,0.897,0.871,0.843,0.814,0.796,0.781,0.771,0.762,0.739,0.723,0.712,0.682,0.665,0.644,0.634,0.613,0.594,0.584,0.574,0.559,0.545,0.529,0.517,0.499,0.486,0.478,0.458,0.45],[33.939999,33.939999,33.938999,33.938999,33.939999,33.939999,33.941002,33.965,34.047001,34.113998,34.139999,34.181999,34.222,34.269001,34.313,34.353001,34.407001,34.455002,34.483002,34.506001,34.530998,34.554001,34.561001,34.57,34.584999,34.601002,34.608002,34.616001,34.623001,34.625,34.629002,34.631001,34.636002,34.639999,34.640999,34.634998,34.634998,34.640999,34.660999,34.673,34.668999,34.669998,34.675999,34.673,34.675999,34.681999,34.682999,34.683998,34.687,34.688999,34.691002,34.695,34.699001,34.699001,34.703999,34.706001,34.706001,34.709,34.715,34.723999,34.723999,34.722,34.720001,34.716,34.703999,34.705002,34.705002,34.715,34.715,34.721001,34.722,34.717999,34.708,34.715,34.713001,34.713001,34.712002,34.710999,34.710999,34.709,34.709,34.708,34.707001,34.705002,34.702999,34.702,34.701,34.701,34.700001,34.699001,34.698002,34.696999,34.695,34.695,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688999,34.687,34.687,34.686001,34.685001,34.685001,34.683998,34.683998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_045","geolocation":{"type":"Point","coordinates":[26.69,-55.965]},"basin":10,"timestamp":"2006-04-30T01:51:00.000Z","date_updated_argovis":"2023-01-24T19:56:56.296Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_045.nc","date_updated":"2015-10-19T17:19:40.000Z"}],"cycle_number":45,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,106,116,125,135,145,155,165,175,185,195,206,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,426,435,445,455,465,474,485,495,512,537,562,588,613,637,662,687,712,738,762,788,812,838,863,888,913,937,962,987,1012,1038,1063,1089,1113,1138,1163,1187,1212,1238,1263,1288,1314,1337,1363,1387,1413,1437,1462,1487,1512,1538,1562,1588,1612,1637,1662,1687,1713,1739,1762,1788,1812,1837,1862,1887,1912,1937,1963,1985],[1.593,1.592,1.591,1.533,1.477,1.472,1.467,1.465,1.466,1.28,0.519,0.253,0.029,-0.063,-0.013,0.006,0.189,0.301,0.414,0.532,0.579,0.721,0.935,1.051,1.189,1.32,1.38,1.428,1.433,1.443,1.318,1.417,1.486,1.537,1.694,1.73,1.729,1.637,1.604,1.693,1.878,1.864,1.849,1.846,1.837,1.828,1.814,1.815,1.793,1.781,1.767,1.72,1.682,1.608,1.59,1.588,1.469,1.414,1.388,1.37,1.344,1.346,1.312,1.264,1.226,1.195,1.162,1.128,1.189,1.199,1.112,1.165,1.133,1.142,1.139,1.128,1.03,0.998,0.964,0.967,0.964,0.922,0.891,0.875,0.864,0.824,0.801,0.797,0.77,0.742,0.746,0.73,0.719,0.697,0.675,0.663,0.649,0.636,0.629,0.624,0.622,0.608,0.591,0.568,0.545,0.535,0.528,0.514,0.508],[33.880001,33.881001,33.882,33.902,33.922001,33.924,33.924999,33.924999,33.925999,33.956001,34.057999,34.112,34.140999,34.183998,34.23,34.264999,34.300999,34.327999,34.351002,34.374001,34.384998,34.412998,34.453999,34.474998,34.5,34.525002,34.540001,34.557999,34.564999,34.570999,34.566002,34.583,34.594002,34.604,34.625999,34.632999,34.633999,34.630001,34.631001,34.646999,34.671001,34.672001,34.673,34.674999,34.678001,34.681,34.683998,34.687,34.687,34.692001,34.696999,34.698002,34.701,34.698002,34.702,34.706001,34.698002,34.695999,34.698002,34.700001,34.701,34.705002,34.703999,34.702,34.701,34.701,34.700001,34.700001,34.712002,34.715,34.708,34.716999,34.716,34.719002,34.719002,34.719002,34.709999,34.707001,34.705002,34.708,34.709999,34.706001,34.702999,34.703999,34.703999,34.700001,34.699001,34.700001,34.698002,34.695999,34.699001,34.698002,34.698002,34.696999,34.694,34.694,34.693001,34.692001,34.692001,34.693001,34.693001,34.692001,34.691002,34.689999,34.688,34.688,34.688,34.687,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_044","geolocation":{"type":"Point","coordinates":[27.664,-54.771]},"basin":10,"timestamp":"2006-04-20T01:40:00.000Z","date_updated_argovis":"2023-01-24T19:56:54.381Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_044.nc","date_updated":"2015-10-19T17:19:39.000Z"}],"cycle_number":44,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,46,55,65,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,226,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,386,395,405,415,425,435,445,455,465,475,485,495,513,538,562,587,612,637,662,688,713,738,763,788,812,837,862,888,913,937,962,987,1012,1037,1062,1088,1113,1137,1163,1188,1213,1237,1263,1288,1313,1338,1362,1387,1413,1438,1463,1487,1513,1539,1562,1588,1612,1637,1662,1687,1712,1738,1764,1787,1812,1837,1863,1888,1912,1937,1963],[1.874,1.863,1.784,1.623,1.501,1.434,1.435,1.432,1.412,1.4,1.374,1.295,0.85,0.234,0.027,-0.001,0.031,0.083,0.193,0.318,0.58,0.722,0.794,0.884,0.994,0.998,1.162,1.306,1.367,1.388,1.398,1.408,1.424,1.496,1.559,1.605,1.638,1.664,1.679,1.682,1.682,1.636,1.616,1.627,1.621,1.638,1.665,1.652,1.637,1.592,1.533,1.521,1.51,1.451,1.463,1.447,1.41,1.366,1.348,1.372,1.4,1.458,1.399,1.375,1.372,1.368,1.347,1.317,1.3,1.265,1.261,1.2,1.151,1.14,1.103,1.07,1.035,0.96,0.932,0.934,0.907,0.897,0.881,0.872,0.852,0.829,0.816,0.795,0.786,0.769,0.754,0.734,0.718,0.686,0.657,0.642,0.623,0.604,0.594,0.592,0.595,0.591,0.581,0.566,0.551,0.534,0.524,0.521],[33.893002,33.897999,33.924,33.963001,33.995998,34.018002,34.019001,34.02,34.027,34.032001,34.039001,34.049,34.071999,34.125999,34.165001,34.227001,34.243,34.256001,34.284,34.310001,34.356998,34.383999,34.407001,34.438999,34.456001,34.471001,34.502998,34.522999,34.535999,34.546001,34.556,34.567001,34.575001,34.589001,34.604,34.612999,34.623001,34.632,34.638,34.640999,34.641998,34.641998,34.645,34.647999,34.648998,34.654999,34.660999,34.662998,34.666,34.666,34.667999,34.678001,34.682999,34.685001,34.691002,34.693001,34.693001,34.693001,34.696999,34.702,34.710999,34.720001,34.716,34.716,34.719002,34.721001,34.722,34.722,34.722,34.721001,34.723999,34.719002,34.716,34.716999,34.715,34.714001,34.710999,34.705002,34.702999,34.705002,34.702999,34.703999,34.703999,34.702999,34.702,34.701,34.701,34.700001,34.700001,34.700001,34.699001,34.699001,34.698002,34.695,34.692001,34.691002,34.689999,34.688999,34.688999,34.689999,34.691002,34.691002,34.691002,34.689999,34.688999,34.688,34.688,34.688]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_043","geolocation":{"type":"Point","coordinates":[27.712,-53.766000000000005]},"basin":10,"timestamp":"2006-04-10T01:52:00.000Z","date_updated_argovis":"2023-01-24T19:56:52.388Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_043.nc","date_updated":"2015-10-19T17:19:39.000Z"}],"cycle_number":43,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,54,66,76,85,95,105,115,126,135,145,155,165,175,185,195,205,215,226,235,244,255,265,274,286,296,305,315,324,334,345,355,365,375,384,395,405,414,425,435,445,455,466,475,484,495,513,537,564,587,612,637,662,687,713,738,762,787,812,837,864,887,912,937,962,988,1013,1038,1062,1087,1112,1138,1163,1188,1213,1238,1263,1287,1313,1338,1363,1388,1412,1437,1463,1488,1512,1538,1564,1587,1612,1637,1663,1688,1713,1739,1763,1788,1813,1838,1863,1888,1913,1938,1962,1981],[1.631,1.631,1.628,1.632,1.635,1.63,1.63,1.578,1.042,0.388,-0.037,-0.12,-0.138,-0.116,-0.025,0.071,0.217,0.287,0.457,0.452,0.501,0.636,0.85,1.036,1.209,1.251,1.287,1.337,1.37,1.413,1.419,1.456,1.477,1.487,1.496,1.512,1.53,1.532,1.542,1.556,1.557,1.558,1.56,1.567,1.568,1.572,1.571,1.57,1.562,1.554,1.517,1.496,1.477,1.467,1.463,1.439,1.413,1.381,1.351,1.309,1.305,1.348,1.238,1.185,1.194,1.178,1.177,1.145,1.149,1.088,1.001,0.965,1.005,1.005,0.987,1,0.963,0.937,0.912,0.896,0.886,0.874,0.832,0.802,0.787,0.754,0.724,0.692,0.678,0.664,0.652,0.639,0.622,0.614,0.6,0.582,0.574,0.557,0.534,0.516,0.505,0.494,0.487,0.478,0.46,0.452,0.452,0.447,0.436],[34.002998,34.002998,34.002998,34.004002,34.004002,34.005001,34.004002,34.019001,34.056999,34.099998,34.146999,34.168999,34.193001,34.223999,34.252998,34.276001,34.313999,34.333,34.361,34.368,34.382999,34.414001,34.455002,34.486,34.516998,34.534,34.546001,34.562,34.570999,34.582001,34.587002,34.597,34.605,34.608002,34.612999,34.620998,34.629002,34.634998,34.641998,34.648998,34.652,34.653999,34.657001,34.660999,34.666,34.668999,34.669998,34.672001,34.674999,34.681,34.683998,34.686001,34.688999,34.691002,34.693001,34.696999,34.699001,34.699001,34.702,34.702,34.703999,34.713001,34.703999,34.702,34.707001,34.707001,34.710999,34.709,34.712002,34.707001,34.699001,34.696999,34.703999,34.706001,34.705002,34.708,34.705002,34.702999,34.701,34.701,34.702,34.702999,34.699001,34.698002,34.696999,34.695999,34.694,34.691002,34.691002,34.689999,34.689999,34.689999,34.688999,34.688999,34.688,34.687,34.687,34.685001,34.683998,34.682999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.68,34.68,34.68]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_042","geolocation":{"type":"Point","coordinates":[26.256,-53.217000000000006]},"basin":10,"timestamp":"2006-03-31T01:58:00.000Z","date_updated_argovis":"2023-01-24T19:56:50.466Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_042.nc","date_updated":"2015-10-19T17:19:38.000Z"}],"cycle_number":42,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,76,85,95,105,115,125,135,145,155,164,175,186,196,205,215,225,236,245,255,265,274,285,295,305,315,325,335,344,355,365,375,385,395,405,415,425,435,445,455,465,474,485,496,512,539,562,588,612,637,662,688,712,737,763,787,812,838,864,887,912,937,962,988,1013,1038,1063,1087,1112,1139,1162,1188,1213,1237,1262,1287,1312,1338,1362,1387,1412,1437,1462,1487,1513,1538,1562,1587,1612,1637,1662,1687,1712,1737,1763,1788,1813,1837,1863,1888,1913,1937,1963,1981],[1.583,1.585,1.584,1.584,1.581,1.538,0.87,-0.314,-0.626,-0.683,-0.682,-0.668,-0.681,-0.654,-0.593,-0.395,-0.188,0.029,0.127,0.254,0.464,0.574,0.702,0.889,0.951,1.049,1.1,1.184,1.257,1.296,1.345,1.362,1.391,1.395,1.395,1.348,1.33,1.334,1.339,1.338,1.333,1.331,1.335,1.329,1.323,1.314,1.309,1.314,1.315,1.316,1.306,1.268,1.225,1.158,1.148,1.123,1.08,1.049,1.027,1.013,0.977,0.965,0.986,0.954,0.913,0.871,0.842,0.824,0.806,0.808,0.785,0.757,0.75,0.742,0.722,0.701,0.681,0.661,0.65,0.636,0.619,0.604,0.595,0.582,0.567,0.555,0.539,0.531,0.513,0.506,0.499,0.466,0.443,0.435,0.43,0.421,0.412,0.401,0.392,0.38,0.374,0.364,0.355,0.346,0.337,0.324,0.31,0.307,0.304],[34.043999,34.044998,34.044998,34.044998,34.044998,34.042999,34.063,34.126999,34.166,34.188,34.198002,34.215,34.227001,34.247002,34.265999,34.303001,34.34,34.380001,34.398998,34.424,34.458,34.478001,34.504002,34.535,34.547001,34.569,34.581001,34.598999,34.615002,34.624001,34.637001,34.646,34.657001,34.661999,34.662998,34.662998,34.664001,34.667999,34.671001,34.674,34.675999,34.679001,34.681,34.681999,34.682999,34.683998,34.685001,34.687,34.689999,34.693001,34.694,34.692001,34.691002,34.688999,34.693001,34.693001,34.693001,34.692001,34.692001,34.692001,34.692001,34.694,34.696999,34.696999,34.694,34.691002,34.689999,34.689999,34.691002,34.693001,34.693001,34.691002,34.692001,34.693001,34.692001,34.692001,34.691002,34.691002,34.691002,34.691002,34.689999,34.689999,34.689999,34.688999,34.688999,34.688,34.687,34.687,34.686001,34.686001,34.686001,34.682999,34.681,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.675999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_041","geolocation":{"type":"Point","coordinates":[25.282,-52.712]},"basin":10,"timestamp":"2006-03-21T01:53:00.000Z","date_updated_argovis":"2023-01-24T19:56:48.581Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_041.nc","date_updated":"2015-10-19T17:19:37.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,86,95,104,115,125,135,145,155,165,175,185,195,205,215,226,235,245,255,264,275,285,295,306,316,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,613,638,662,687,712,737,762,787,813,837,862,888,913,938,962,987,1013,1038,1062,1087,1112,1137,1164,1187,1212,1237,1263,1287,1312,1339,1362,1388,1413,1437,1462,1487,1512,1537,1562,1587,1613,1637,1663,1688,1712,1737,1762,1787,1813,1838,1863,1887,1912,1937,1962,1988],[1.587,1.587,1.587,1.588,1.588,1.588,1.583,1.547,0.888,-0.19,-0.675,-0.756,-0.723,-0.619,-0.5,-0.223,-0.093,0.211,0.382,0.62,0.824,0.973,1.121,1.184,1.24,1.264,1.303,1.328,1.345,1.354,1.359,1.36,1.358,1.357,1.354,1.344,1.335,1.329,1.321,1.315,1.309,1.3,1.291,1.286,1.274,1.254,1.227,1.226,1.218,1.191,1.157,1.136,1.105,1.073,1.051,1.039,1.004,0.997,0.966,0.951,0.937,0.916,0.904,0.876,0.858,0.832,0.816,0.792,0.778,0.765,0.747,0.722,0.698,0.654,0.629,0.616,0.592,0.569,0.553,0.547,0.539,0.529,0.527,0.515,0.492,0.486,0.474,0.471,0.463,0.445,0.43,0.417,0.411,0.4,0.39,0.379,0.366,0.36,0.351,0.339,0.328,0.319,0.315,0.299,0.278,0.269,0.267,0.261,0.247],[34.040001,34.039001,34.039001,34.040001,34.040001,34.040001,34.040001,34.039001,34.077999,34.144001,34.175999,34.195,34.237999,34.265999,34.292,34.334999,34.355999,34.407001,34.431,34.474998,34.513,34.540001,34.571999,34.584999,34.599998,34.605999,34.619999,34.630001,34.639,34.644001,34.651001,34.652,34.655998,34.660999,34.662998,34.667,34.669998,34.672001,34.674999,34.675999,34.678001,34.679001,34.68,34.681,34.681999,34.682999,34.681999,34.682999,34.683998,34.686001,34.686001,34.688,34.688999,34.689999,34.691002,34.693001,34.692001,34.694,34.694,34.694,34.694,34.694,34.694,34.693001,34.693001,34.693001,34.694,34.694,34.693001,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.687,34.686001,34.686001,34.686001,34.686001,34.687,34.687,34.685001,34.685001,34.683998,34.685001,34.683998,34.682999,34.682999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.678001,34.678001,34.676998,34.674999,34.674999,34.674999,34.674,34.674]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_040","geolocation":{"type":"Point","coordinates":[24.924,-52.657000000000004]},"basin":10,"timestamp":"2006-03-11T01:53:00.000Z","date_updated_argovis":"2023-01-24T19:56:46.700Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_040.nc","date_updated":"2015-10-19T17:19:37.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,236,245,254,265,275,285,295,306,315,325,335,345,355,365,375,385,395,405,415,425,435,445,454,465,475,485,495,513,537,562,587,612,637,664,687,712,738,762,787,812,838,863,887,913,937,962,987,1012,1037,1063,1088,1113,1137,1162,1187,1212,1237,1262,1288,1313,1337,1363,1387,1413,1437,1463,1487,1513,1537,1563,1588,1612,1637,1662,1688,1712,1737,1762,1788,1814,1837,1862,1888,1913,1937,1962,1988],[1.656,1.66,1.659,1.659,1.654,1.647,0.989,-0.077,-0.736,-0.825,-0.818,-0.771,-0.738,-0.573,-0.471,-0.378,-0.085,0.15,0.373,0.493,0.611,0.651,0.744,0.869,0.935,0.99,1.085,1.148,1.209,1.246,1.251,1.257,1.269,1.274,1.274,1.268,1.263,1.278,1.296,1.299,1.292,1.268,1.271,1.268,1.252,1.243,1.234,1.23,1.227,1.198,1.156,1.135,1.097,1.075,1.057,1.017,0.985,0.958,0.939,0.908,0.886,0.87,0.85,0.824,0.802,0.782,0.771,0.744,0.726,0.703,0.689,0.679,0.667,0.647,0.615,0.593,0.574,0.562,0.556,0.544,0.537,0.533,0.526,0.519,0.511,0.505,0.485,0.459,0.447,0.441,0.434,0.428,0.42,0.412,0.402,0.391,0.383,0.366,0.357,0.342,0.334,0.323,0.312,0.304,0.295,0.289,0.278,0.267,0.26],[34.026001,34.026001,34.027,34.027,34.027,34.025002,34.039001,34.087002,34.137001,34.167,34.199001,34.221001,34.234001,34.272999,34.296001,34.317001,34.370998,34.416,34.455002,34.479,34.5,34.507999,34.527,34.549999,34.564999,34.577,34.598,34.612999,34.627998,34.639,34.640999,34.645,34.653,34.657001,34.661999,34.665001,34.667,34.671001,34.674999,34.676998,34.679001,34.678001,34.68,34.681,34.681999,34.683998,34.686001,34.686001,34.687,34.686001,34.685001,34.687,34.688999,34.693001,34.694,34.695,34.695,34.695,34.694,34.694,34.694,34.694,34.694,34.693001,34.693001,34.693001,34.694,34.694,34.693001,34.692001,34.692001,34.692001,34.692001,34.691002,34.688999,34.687,34.686001,34.685001,34.685001,34.685001,34.686001,34.687,34.687,34.687,34.687,34.687,34.686001,34.683998,34.682999,34.682999,34.682999,34.682999,34.682999,34.682999,34.681999,34.681,34.681,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999,34.674999,34.674]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_039","geolocation":{"type":"Point","coordinates":[24.826,-52.513000000000005]},"basin":10,"timestamp":"2006-03-01T01:54:00.000Z","date_updated_argovis":"2023-01-24T19:56:44.793Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_039.nc","date_updated":"2015-10-19T17:19:36.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,34,45,55,65,75,85,95,105,115,125,135,144,155,165,175,185,195,205,215,225,235,246,255,265,275,285,295,305,315,325,335,346,356,365,375,385,395,405,415,425,435,445,455,466,475,485,495,513,537,564,587,612,637,662,687,712,737,763,788,812,839,862,888,913,937,962,987,1013,1038,1062,1088,1113,1138,1163,1187,1212,1237,1262,1287,1314,1338,1363,1388,1412,1437,1462,1487,1513,1539,1562,1587,1613,1637,1663,1688,1713,1737,1763,1787,1812,1837,1863,1888,1913,1938,1963,1982],[2.066,2.036,1.923,1.871,1.84,1.612,1.171,0.041,-0.666,-0.78,-0.777,-0.707,-0.63,-0.486,-0.397,-0.208,-0.013,0.23,0.386,0.472,0.663,0.789,0.895,0.97,1.053,1.112,1.174,1.192,1.251,1.288,1.243,1.24,1.273,1.31,1.314,1.332,1.326,1.306,1.36,1.362,1.344,1.302,1.303,1.303,1.297,1.299,1.299,1.277,1.237,1.2,1.183,1.169,1.135,1.123,1.114,1.1,1.076,1.067,1.039,1.001,0.958,0.935,0.903,0.876,0.861,0.85,0.836,0.824,0.795,0.76,0.732,0.715,0.689,0.659,0.635,0.625,0.63,0.637,0.646,0.639,0.618,0.567,0.551,0.543,0.519,0.495,0.478,0.463,0.465,0.471,0.46,0.445,0.426,0.414,0.405,0.395,0.394,0.385,0.373,0.361,0.351,0.338,0.33,0.334,0.318,0.302,0.299,0.292,0.286],[34.005001,34.007,34.007,34.007999,34.007,34.014,34.026001,34.073002,34.118999,34.145,34.175999,34.205002,34.23,34.266998,34.289001,34.326,34.363998,34.407001,34.433998,34.452999,34.487,34.509998,34.527,34.543999,34.558998,34.571999,34.585999,34.591999,34.605,34.616001,34.617001,34.619999,34.626999,34.636002,34.644001,34.650002,34.652,34.653999,34.664001,34.668999,34.669998,34.671001,34.676998,34.681,34.682999,34.686001,34.688,34.688,34.687,34.688,34.689999,34.692001,34.693001,34.695999,34.698002,34.700001,34.700001,34.702,34.702,34.701,34.698002,34.698002,34.696999,34.695,34.695,34.695999,34.695999,34.695999,34.695,34.693001,34.692001,34.691002,34.689999,34.688999,34.688,34.688999,34.691002,34.694,34.695999,34.695999,34.694,34.689999,34.688999,34.688999,34.687,34.683998,34.683998,34.682999,34.683998,34.686001,34.685001,34.683998,34.681999,34.681,34.681,34.681,34.681999,34.681,34.68,34.679001,34.679001,34.678001,34.678001,34.68,34.678001,34.676998,34.676998,34.676998,34.675999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_038","geolocation":{"type":"Point","coordinates":[24.571,-52.462]},"basin":10,"timestamp":"2006-02-19T01:54:00.000Z","date_updated_argovis":"2023-01-24T19:56:42.889Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_038.nc","date_updated":"2015-10-19T17:19:36.000Z"}],"cycle_number":38,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,105,115,126,135,145,155,165,175,185,195,205,215,226,235,245,256,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,588,613,637,662,687,712,737,762,787,813,839,862,888,913,938,963,988,1013,1037,1062,1087,1113,1138,1162,1187,1213,1238,1263,1288,1313,1338,1362,1387,1412,1437,1462,1488,1512,1538,1563,1587,1612,1638,1663,1688,1712,1738,1763,1788,1812,1837,1862,1887,1913,1937,1963,1983],[1.987,1.988,1.987,1.985,1.975,1.656,0.31,-0.26,-0.549,-0.706,-0.822,-0.834,-0.793,-0.729,-0.488,-0.249,-0.048,0.183,0.357,0.482,0.644,0.732,0.883,0.999,1.125,1.171,1.213,1.283,1.315,1.348,1.378,1.413,1.433,1.44,1.435,1.425,1.417,1.409,1.396,1.39,1.371,1.312,1.303,1.295,1.279,1.281,1.288,1.271,1.273,1.27,1.228,1.229,1.191,1.128,1.096,1.066,1.055,1.087,1.062,1.038,0.998,0.96,0.928,0.91,0.896,0.861,0.828,0.816,0.795,0.778,0.761,0.729,0.703,0.659,0.638,0.626,0.607,0.593,0.589,0.588,0.567,0.544,0.53,0.523,0.509,0.497,0.484,0.473,0.466,0.478,0.466,0.445,0.443,0.425,0.415,0.405,0.399,0.393,0.385,0.385,0.371,0.359,0.364,0.363,0.347,0.341,0.327,0.321,0.315],[34.002998,34.001999,34.002998,34.002998,34.002998,34.005001,34.056,34.084999,34.109001,34.127998,34.166,34.188999,34.217999,34.237,34.292,34.333,34.370998,34.41,34.438999,34.463001,34.487999,34.508999,34.530998,34.550999,34.576,34.584999,34.592999,34.610001,34.618999,34.626999,34.633999,34.643002,34.650002,34.653999,34.657001,34.659,34.660999,34.661999,34.664001,34.667,34.667999,34.667999,34.669998,34.671001,34.673,34.675999,34.681,34.681999,34.685001,34.688,34.688999,34.695,34.694,34.693001,34.692001,34.693001,34.693001,34.700001,34.701,34.700001,34.699001,34.698002,34.698002,34.698002,34.698002,34.695999,34.694,34.694,34.694,34.694,34.693001,34.691002,34.689999,34.687,34.687,34.687,34.687,34.687,34.687,34.688,34.687,34.686001,34.685001,34.685001,34.683998,34.682999,34.682999,34.682999,34.683998,34.686001,34.686001,34.683998,34.683998,34.682999,34.681999,34.681999,34.681999,34.681999,34.681,34.681999,34.681,34.68,34.681,34.681,34.68,34.679001,34.679001,34.678001,34.678001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_037","geolocation":{"type":"Point","coordinates":[24.296000000000003,-52.418]},"basin":10,"timestamp":"2006-02-09T02:00:00.000Z","date_updated_argovis":"2023-01-24T19:56:40.897Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_037.nc","date_updated":"2015-10-19T17:19:35.000Z"}],"cycle_number":37,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,86,96,105,115,125,135,145,155,165,175,185,195,205,215,226,235,245,255,265,275,285,295,305,315,325,334,345,356,366,375,385,395,405,414,425,435,444,455,465,474,485,496,512,538,562,588,613,638,662,688,713,738,763,788,812,839,862,887,912,937,962,987,1013,1037,1063,1089,1113,1137,1162,1187,1212,1238,1263,1288,1314,1337,1362,1388,1412,1437,1462,1488,1513,1538,1562,1588,1612,1637,1663,1688,1714,1737,1762,1787,1812,1838,1863,1888,1912,1937,1963],[1.724,1.725,1.724,1.721,1.661,0.726,-0.509,-0.856,-0.943,-0.967,-0.967,-0.932,-0.83,-0.717,-0.666,-0.435,-0.18,0.061,0.286,0.427,0.64,0.848,0.928,1.067,1.231,1.391,1.419,1.424,1.412,1.41,1.416,1.374,1.392,1.339,1.278,1.279,1.305,1.342,1.33,1.309,1.312,1.308,1.308,1.303,1.299,1.285,1.261,1.249,1.23,1.204,1.193,1.182,1.202,1.175,1.136,1.08,1.037,1.001,0.98,0.945,0.928,0.914,0.901,0.895,0.876,0.841,0.824,0.797,0.762,0.73,0.698,0.674,0.66,0.65,0.63,0.649,0.637,0.623,0.61,0.598,0.567,0.565,0.553,0.542,0.535,0.532,0.517,0.499,0.482,0.474,0.462,0.432,0.416,0.427,0.416,0.409,0.414,0.399,0.386,0.375,0.366,0.357,0.35,0.342,0.334,0.328,0.321,0.313],[34.019001,34.019001,34.019001,34.019001,34.014,34.028,34.088001,34.115002,34.125,34.132999,34.146,34.164001,34.198002,34.223999,34.25,34.301998,34.351002,34.389,34.424,34.445999,34.485001,34.519001,34.536999,34.564999,34.596001,34.624001,34.632999,34.637001,34.640999,34.646,34.650002,34.652,34.660999,34.658001,34.658001,34.664001,34.669998,34.676998,34.678001,34.679001,34.681999,34.682999,34.682999,34.685001,34.687,34.688999,34.688999,34.689999,34.691002,34.689999,34.691002,34.693001,34.699001,34.699001,34.698002,34.695,34.694,34.695,34.695999,34.695,34.695,34.695,34.695999,34.698002,34.696999,34.695999,34.695999,34.695,34.693001,34.691002,34.688999,34.688,34.688999,34.688999,34.688999,34.692001,34.692001,34.692001,34.692001,34.692001,34.688999,34.691002,34.689999,34.689999,34.688999,34.688999,34.688999,34.688,34.687,34.687,34.686001,34.682999,34.681999,34.682999,34.682999,34.682999,34.683998,34.681999,34.681999,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.679001,34.678001,34.678001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_036","geolocation":{"type":"Point","coordinates":[24.45,-52.358000000000004]},"basin":10,"timestamp":"2006-01-30T01:54:59.999Z","date_updated_argovis":"2023-01-24T19:56:39.075Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_036.nc","date_updated":"2015-10-19T17:19:35.000Z"}],"cycle_number":36,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,538,562,588,612,637,662,688,712,737,763,788,813,837,864,887,912,937,962,987,1012,1037,1063,1088,1112,1137,1162,1187,1212,1238,1263,1288,1312,1338,1363,1388,1413,1438,1463,1488,1513,1538,1563,1588,1613,1638,1662,1687,1713,1737,1762,1787,1813,1837,1862,1887,1912,1938,1963,1979],[1.897,1.788,1.694,1.621,1.572,1.332,0.491,0.018,-0.58,-0.731,-0.734,-0.765,-0.797,-0.779,-0.611,-0.409,-0.192,-0.041,0.107,0.285,0.426,0.634,0.774,0.881,0.936,1.032,1.134,1.197,1.225,1.247,1.26,1.267,1.304,1.326,1.322,1.323,1.33,1.361,1.385,1.397,1.388,1.38,1.362,1.344,1.34,1.323,1.308,1.275,1.243,1.217,1.184,1.155,1.126,1.117,1.102,1.078,1.137,1.1,1.073,1.06,1.032,1.005,0.982,0.946,0.918,0.898,0.878,0.842,0.795,0.768,0.739,0.719,0.706,0.688,0.673,0.656,0.646,0.636,0.632,0.617,0.598,0.59,0.59,0.585,0.581,0.578,0.556,0.541,0.548,0.543,0.528,0.515,0.504,0.488,0.467,0.45,0.427,0.408,0.402,0.383,0.37,0.36,0.357,0.356,0.353,0.355,0.35,0.339,0.337],[34.001999,34.015999,34.026001,34.027,34.027,34.027,34.050999,34.058998,34.083,34.106998,34.131001,34.144001,34.171001,34.194,34.242001,34.285999,34.327999,34.355999,34.383999,34.415001,34.438999,34.473999,34.501999,34.526001,34.537998,34.560001,34.584999,34.603001,34.612999,34.620998,34.626999,34.631001,34.641998,34.647999,34.650002,34.654999,34.659,34.664001,34.668999,34.672001,34.673,34.674999,34.674999,34.674999,34.676998,34.68,34.68,34.681,34.681,34.681999,34.683998,34.686001,34.688999,34.689999,34.692001,34.693001,34.702,34.701,34.701,34.701,34.701,34.701,34.700001,34.698002,34.696999,34.695,34.695,34.693001,34.691002,34.689999,34.688999,34.688,34.688,34.687,34.687,34.687,34.688,34.688999,34.688999,34.688999,34.687,34.687,34.688,34.688999,34.689999,34.691002,34.688999,34.688,34.688999,34.689999,34.688,34.688,34.687,34.686001,34.683998,34.682999,34.681,34.68,34.68,34.679001,34.678001,34.678001,34.679001,34.679001,34.679001,34.68,34.68,34.68,34.68]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_035","geolocation":{"type":"Point","coordinates":[25.653000000000002,-52.096000000000004]},"basin":10,"timestamp":"2006-01-20T02:01:00.000Z","date_updated_argovis":"2023-01-24T19:56:37.009Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_035.nc","date_updated":"2015-10-19T17:19:34.000Z"}],"cycle_number":35,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,224,235,246,255,265,275,285,295,305,315,325,335,346,355,365,375,385,395,405,415,425,435,445,455,465,475,484,495,513,538,563,587,613,637,662,688,712,737,762,788,813,837,862,888,913,937,962,987,1012,1038,1063,1088,1113,1138,1162,1188,1212,1237,1262,1288,1312,1337,1363,1387,1413,1437,1462,1487,1512,1538,1563,1588,1613,1638,1663,1687,1712,1737,1763,1788,1812,1837,1862,1888,1912,1938,1962,1986],[2.243,2.239,2.149,1.886,1.383,0.915,0.322,0.094,0.337,0.571,0.846,1.092,1.265,1.43,1.629,1.749,1.776,1.869,1.921,1.945,1.966,1.974,1.984,1.997,2.029,2.048,2.072,2.084,2.081,2.061,2.032,2.028,2.028,2.025,2.049,2.05,2.052,2.045,2.041,2.025,1.99,2.003,2.019,2.013,2.01,2.009,1.976,1.963,1.969,1.949,1.887,1.864,1.846,1.864,1.899,1.877,1.84,1.84,1.816,1.789,1.726,1.679,1.644,1.606,1.577,1.54,1.519,1.664,1.633,1.685,1.678,1.672,1.629,1.571,1.369,1.288,1.206,1.207,1.212,1.208,1.19,1.164,1.135,1.104,1.06,1.022,0.988,0.886,0.8,0.77,0.75,0.739,0.749,0.777,0.746,0.732,0.695,0.687,0.686,0.668,0.633,0.625,0.606,0.584,0.55,0.548,0.542,0.553,0.553],[33.918999,33.919998,33.939999,33.960999,33.991001,34.006001,34.007,34.013,34.085999,34.130001,34.201,34.245998,34.265999,34.313999,34.344002,34.396,34.403999,34.436001,34.450001,34.463001,34.474998,34.486,34.5,34.52,34.542,34.556999,34.574001,34.581001,34.585999,34.603001,34.610001,34.616001,34.620998,34.627998,34.637001,34.646,34.648998,34.654999,34.658001,34.66,34.659,34.664001,34.668999,34.673,34.674999,34.68,34.681999,34.681999,34.687,34.692001,34.689999,34.692001,34.696999,34.706001,34.721001,34.723999,34.726002,34.73,34.731998,34.731998,34.73,34.73,34.730999,34.730999,34.730999,34.73,34.73,34.751999,34.752998,34.763,34.764999,34.764999,34.762001,34.756001,34.730999,34.724998,34.719002,34.722,34.724998,34.726002,34.724998,34.723999,34.721001,34.719002,34.716999,34.715,34.712002,34.700001,34.691002,34.689999,34.688999,34.688999,34.693001,34.698002,34.695,34.695,34.693001,34.693001,34.694,34.693001,34.689999,34.689999,34.688999,34.687,34.683998,34.685001,34.686001,34.688999,34.689999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_034","geolocation":{"type":"Point","coordinates":[26.977,-52.233000000000004]},"basin":10,"timestamp":"2006-01-10T02:01:00.000Z","date_updated_argovis":"2023-01-24T19:56:35.200Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_034.nc","date_updated":"2015-10-19T17:19:34.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,145,156,164,175,185,195,205,215,225,235,245,254,265,276,285,294,305,315,324,335,346,355,365,375,385,395,405,415,425,435,446,456,465,475,485,495,512,537,563,587,612,639,663,688,713,738,763,788,812,838,863,887,912,938,962,987,1012,1037,1062,1087,1113,1138,1163,1187,1212,1237,1263,1288,1313,1338,1363,1387,1413,1437,1463,1488,1512,1538,1563,1587,1612,1638,1662,1687,1712,1737,1762,1788,1813,1838,1863,1887,1912,1937,1962,1987,2013],[1.575,1.522,1.467,1.449,1.41,1.178,0.598,-0.152,-0.238,-0.427,-0.446,-0.528,-0.574,-0.556,-0.512,-0.46,-0.385,-0.282,-0.137,0.081,0.574,0.928,1.083,1.173,1.164,1.165,1.287,1.419,1.511,1.519,1.518,1.532,1.567,1.606,1.669,1.71,1.711,1.715,1.729,1.733,1.736,1.738,1.737,1.731,1.732,1.728,1.716,1.71,1.707,1.701,1.691,1.669,1.612,1.599,1.562,1.612,1.611,1.565,1.527,1.466,1.383,1.379,1.36,1.321,1.304,1.296,1.292,1.261,1.256,1.261,1.235,1.196,1.182,1.161,1.132,1.111,1.094,1.096,1.095,1.092,1.076,1.061,1.017,0.987,0.972,0.959,0.947,0.926,0.917,0.905,0.874,0.856,0.835,0.81,0.781,0.725,0.674,0.661,0.67,0.669,0.652,0.642,0.632,0.622,0.617,0.61,0.597,0.579,0.571,0.564],[33.987999,33.990002,33.987999,33.988998,33.987,33.984001,33.991001,34.027,34.057999,34.084,34.118,34.129002,34.143002,34.167,34.185001,34.201,34.223999,34.247002,34.278,34.325001,34.391998,34.439999,34.470001,34.487999,34.493,34.506001,34.530998,34.554001,34.568001,34.570999,34.573002,34.578999,34.589001,34.599998,34.613998,34.624001,34.629002,34.634998,34.640999,34.646,34.650002,34.653999,34.657001,34.66,34.662998,34.666,34.667999,34.669998,34.671001,34.678001,34.685001,34.688,34.686001,34.688,34.688,34.699001,34.703999,34.705002,34.706001,34.705002,34.700001,34.701,34.705002,34.705002,34.706001,34.708,34.709,34.709,34.712002,34.715,34.714001,34.712002,34.713001,34.712002,34.710999,34.709999,34.710999,34.714001,34.717999,34.719002,34.717999,34.716999,34.713001,34.709999,34.709,34.708,34.708,34.707001,34.707001,34.706001,34.703999,34.703999,34.702999,34.701,34.699001,34.694,34.689999,34.688999,34.693001,34.693001,34.692001,34.691002,34.692001,34.691002,34.692001,34.692001,34.691002,34.689999,34.689999,34.689999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_033","geolocation":{"type":"Point","coordinates":[26.788,-50.769000000000005]},"basin":10,"timestamp":"2005-12-31T02:02:00.000Z","date_updated_argovis":"2023-01-24T19:56:33.211Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_033.nc","date_updated":"2015-10-19T17:19:33.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,95,105,115,125,136,145,155,165,175,185,196,205,215,225,234,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,444,454,465,475,485,495,512,537,564,587,612,637,662,688,713,738,763,787,812,838,863,888,912,937,962,988,1013,1037,1063,1087,1112,1137,1164,1187,1212,1237,1262,1289,1313,1338,1363,1388,1412,1437,1463,1488,1512,1538,1563,1587,1612,1637,1663,1688,1712,1737,1762,1787,1813,1838,1864,1888,1912,1937,1962,1984],[1.152,1.154,1.167,1.167,0.402,-0.371,-0.546,-0.611,-0.626,-0.632,-0.622,-0.584,-0.532,-0.442,-0.341,-0.231,-0.053,0.243,0.356,0.537,0.769,0.868,1.016,1.149,1.282,1.373,1.461,1.539,1.572,1.59,1.619,1.613,1.608,1.61,1.616,1.603,1.574,1.569,1.558,1.535,1.533,1.528,1.524,1.52,1.517,1.514,1.509,1.498,1.486,1.462,1.432,1.414,1.4,1.381,1.382,1.386,1.393,1.374,1.337,1.334,1.316,1.306,1.285,1.253,1.207,1.171,1.145,1.103,1.077,1.058,1.024,1.002,0.978,0.959,0.941,0.915,0.9,0.887,0.87,0.852,0.832,0.803,0.773,0.745,0.735,0.728,0.728,0.718,0.709,0.708,0.703,0.693,0.683,0.673,0.648,0.633,0.619,0.597,0.582,0.567,0.551,0.532,0.513,0.5,0.493,0.479,0.469,0.454,0.439],[34.027,34.026001,34.027,34.023998,34.009998,34.034,34.064999,34.091999,34.112,34.133999,34.146,34.167,34.18,34.202999,34.228001,34.252998,34.291,34.351002,34.368999,34.401001,34.438999,34.456001,34.484001,34.507999,34.534,34.549999,34.569,34.591999,34.605,34.616001,34.627998,34.634998,34.639,34.643002,34.648998,34.653,34.654999,34.658001,34.659,34.659,34.66,34.665001,34.668999,34.672001,34.674,34.675999,34.678001,34.68,34.681999,34.686001,34.688999,34.692001,34.692001,34.695999,34.699001,34.702999,34.708,34.709999,34.709,34.710999,34.712002,34.712002,34.712002,34.710999,34.709,34.709,34.709,34.709,34.708,34.708,34.709,34.709,34.708,34.708,34.707001,34.706001,34.706001,34.705002,34.703999,34.703999,34.702999,34.702,34.699001,34.696999,34.696999,34.696999,34.698002,34.696999,34.696999,34.696999,34.696999,34.696999,34.696999,34.695999,34.695,34.694,34.693001,34.692001,34.691002,34.691002,34.688999,34.688,34.687,34.687,34.687,34.686001,34.685001,34.683998,34.682999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_032","geolocation":{"type":"Point","coordinates":[25.599,-51.806000000000004]},"basin":10,"timestamp":"2005-12-21T01:56:00.000Z","date_updated_argovis":"2023-01-24T19:56:31.291Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_032.nc","date_updated":"2015-10-19T17:19:33.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,44,55,65,76,85,95,105,115,125,135,145,155,166,175,185,195,205,214,225,236,245,255,265,275,286,296,305,315,325,334,345,355,364,375,385,395,405,415,425,435,445,455,465,475,485,495,513,539,562,588,613,638,663,688,713,738,763,788,813,838,862,887,913,937,962,987,1013,1038,1062,1088,1112,1138,1162,1187,1213,1238,1263,1287,1313,1338,1363,1388,1412,1437,1462,1487,1514,1538,1563,1587,1612,1638,1663,1687,1713,1738,1762,1788,1813,1837,1862,1887,1913,1938,1963,1982],[0.625,0.646,0.666,0.631,0.444,0.148,-0.215,-0.516,-0.593,-0.518,-0.374,-0.199,-0.04,0.095,0.213,0.292,0.402,0.564,0.753,0.979,1.181,1.352,1.395,1.487,1.568,1.603,1.635,1.671,1.694,1.703,1.716,1.731,1.737,1.75,1.739,1.731,1.729,1.725,1.728,1.733,1.723,1.701,1.697,1.7,1.701,1.701,1.704,1.701,1.693,1.682,1.671,1.624,1.598,1.59,1.584,1.577,1.552,1.542,1.525,1.483,1.461,1.424,1.351,1.313,1.306,1.297,1.265,1.241,1.233,1.19,1.174,1.135,1.094,1.064,1.033,1.018,1.013,1,0.986,0.976,0.962,0.936,0.906,0.883,0.856,0.83,0.788,0.771,0.763,0.757,0.717,0.702,0.676,0.66,0.649,0.639,0.636,0.628,0.622,0.614,0.608,0.603,0.59,0.575,0.569,0.562,0.558,0.544,0.528],[33.931999,33.938999,33.951,33.966,33.974998,33.983002,33.991001,34.023998,34.043999,34.112999,34.150002,34.188999,34.220001,34.247002,34.27,34.289001,34.316002,34.353001,34.390999,34.431999,34.472,34.507999,34.516998,34.542,34.562,34.571999,34.587002,34.603001,34.612,34.617001,34.619999,34.624001,34.632,34.639,34.646999,34.653,34.658001,34.661999,34.665001,34.669998,34.672001,34.673,34.674,34.675999,34.681,34.683998,34.687,34.688999,34.691002,34.693001,34.700001,34.701,34.702,34.705002,34.709,34.710999,34.710999,34.716,34.716999,34.716,34.716999,34.716999,34.716,34.716999,34.719002,34.721001,34.721001,34.720001,34.720001,34.717999,34.717999,34.715,34.713001,34.712002,34.709999,34.709,34.709,34.708,34.709,34.709,34.708,34.707001,34.706001,34.705002,34.703999,34.702,34.699001,34.698002,34.700001,34.700001,34.695999,34.695,34.694,34.693001,34.692001,34.691002,34.691002,34.691002,34.691002,34.689999,34.689999,34.688999,34.688999,34.688,34.688,34.688,34.688,34.688,34.687]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_031","geolocation":{"type":"Point","coordinates":[22.589000000000002,-51.405]},"basin":10,"timestamp":"2005-12-11T01:57:00.000Z","date_updated_argovis":"2023-01-24T19:56:29.387Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_031.nc","date_updated":"2015-10-19T17:19:32.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,104,115,125,135,145,155,165,175,185,195,205,215,226,236,245,255,265,275,285,296,306,315,325,334,345,355,365,375,385,396,405,414,425,435,445,455,465,475,486,495,513,538,563,588,613,637,662,688,712,738,763,788,812,837,863,887,912,937,962,987,1013,1038,1063,1087,1113,1138,1162,1188,1213,1237,1262,1287,1312,1337,1363,1388,1412,1438,1463,1487,1512,1537,1563,1588,1612,1637,1662,1687,1712,1737,1762,1789,1813,1838,1863,1887,1912,1937,1962,1986],[0.159,0.161,0.164,0.163,0.158,0.123,-0.067,-0.572,-0.58,-0.583,-0.55,-0.433,-0.373,-0.338,-0.387,-0.629,-0.422,-0.164,0.083,0.265,0.478,0.648,0.826,0.921,1.077,1.266,1.405,1.521,1.504,1.504,1.627,1.718,1.717,1.698,1.707,1.693,1.655,1.653,1.674,1.689,1.684,1.677,1.704,1.7,1.709,1.697,1.692,1.694,1.701,1.705,1.697,1.688,1.659,1.655,1.636,1.611,1.583,1.569,1.562,1.54,1.512,1.485,1.464,1.477,1.474,1.453,1.415,1.4,1.363,1.34,1.32,1.274,1.248,1.217,1.185,1.142,1.123,1.131,1.171,1.156,1.111,1.099,1.07,1.052,1.023,1.007,0.996,0.984,0.97,0.938,0.908,0.886,0.881,0.859,0.843,0.826,0.807,0.792,0.777,0.758,0.732,0.715,0.694,0.684,0.684,0.676,0.657,0.647,0.641],[33.896,33.896,33.896,33.896,33.896,33.897999,33.907001,33.966,33.981998,34,34.028999,34.058998,34.077999,34.106998,34.119999,34.125,34.167,34.209,34.245998,34.276001,34.311001,34.345001,34.382,34.403999,34.436001,34.467999,34.5,34.525002,34.532001,34.542,34.564999,34.583,34.585999,34.585999,34.592999,34.598999,34.602001,34.608002,34.616001,34.619999,34.622002,34.626999,34.634998,34.640999,34.645,34.646,34.647999,34.651001,34.654999,34.662998,34.667999,34.674,34.678001,34.682999,34.687,34.691002,34.695999,34.699001,34.702,34.703999,34.706001,34.707001,34.708,34.713001,34.717999,34.717999,34.716999,34.717999,34.716,34.716,34.716,34.714001,34.713001,34.710999,34.709,34.706001,34.706001,34.709999,34.716,34.716,34.713001,34.713001,34.710999,34.710999,34.709999,34.709999,34.710999,34.712002,34.710999,34.709999,34.708,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.701,34.700001,34.699001,34.696999,34.695999,34.695,34.695,34.696999,34.696999,34.695999,34.695,34.695]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_030","geolocation":{"type":"Point","coordinates":[21.53,-51.61]},"basin":10,"timestamp":"2005-12-01T02:09:00.000Z","date_updated_argovis":"2023-01-24T19:56:27.311Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_030.nc","date_updated":"2015-10-19T17:19:32.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,116,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,426,435,445,455,465,475,485,495,514,537,562,588,613,638,663,687,712,737,762,787,812,838,862,888,912,937,962,988,1013,1037,1062,1088,1113,1138,1162,1188,1213,1237,1262,1287,1312,1337,1362,1388,1412,1437,1462,1488,1512,1537,1563,1587,1613,1637,1663,1688,1712,1737,1763,1788,1813,1838,1863,1887,1912,1938,1963,1983],[0.294,0.276,0.255,0.199,0.169,0.102,-0.396,-0.584,-0.668,-0.709,-0.738,-0.76,-0.711,-0.65,-0.55,-0.327,-0.179,-0.071,-0.082,-0.054,0.113,0.046,0.155,0.437,0.558,0.643,0.827,1.185,1.393,1.597,1.682,1.71,1.755,1.79,1.763,1.701,1.714,1.744,1.754,1.749,1.732,1.751,1.755,1.754,1.757,1.76,1.769,1.773,1.772,1.76,1.784,1.789,1.835,1.855,1.837,1.761,1.688,1.694,1.623,1.572,1.544,1.518,1.488,1.456,1.447,1.466,1.475,1.458,1.397,1.346,1.308,1.362,1.361,1.338,1.341,1.303,1.283,1.216,1.233,1.215,1.173,1.152,1.143,1.115,1.079,1.047,1.024,0.975,0.963,0.947,0.938,0.934,0.921,0.92,0.895,0.873,0.83,0.805,0.798,0.782,0.752,0.735,0.732,0.733,0.724,0.702,0.681,0.665,0.655],[33.861,33.862999,33.862999,33.863998,33.865002,33.862999,33.883999,33.903,33.919998,33.933998,33.952,33.974998,33.999001,34.021,34.044998,34.080002,34.109001,34.144001,34.159,34.174999,34.212002,34.230999,34.264,34.314999,34.347,34.365002,34.395,34.445999,34.486,34.522999,34.540001,34.549999,34.563,34.577,34.582001,34.584,34.592999,34.603001,34.608002,34.612999,34.618999,34.624001,34.629002,34.632999,34.637001,34.639999,34.646,34.651001,34.652,34.655998,34.667999,34.674,34.683998,34.693001,34.696999,34.693001,34.692001,34.701,34.696999,34.695999,34.696999,34.699001,34.702,34.702999,34.705002,34.712002,34.716999,34.717999,34.712002,34.710999,34.709,34.717999,34.722,34.722,34.723,34.721001,34.722,34.715,34.721001,34.721001,34.719002,34.717999,34.719002,34.717999,34.715,34.713001,34.710999,34.707001,34.707001,34.706001,34.706001,34.706001,34.706001,34.707001,34.703999,34.702999,34.699001,34.698002,34.696999,34.696999,34.695,34.694,34.695,34.695,34.694,34.693001,34.692001,34.692001,34.692001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_029","geolocation":{"type":"Point","coordinates":[21.058,-52.03]},"basin":10,"timestamp":"2005-11-21T01:57:00.000Z","date_updated_argovis":"2023-01-24T19:56:25.412Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_029.nc","date_updated":"2015-10-19T17:19:31.000Z"}],"cycle_number":29,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,145,155,164,175,185,195,206,215,225,236,245,255,265,275,285,295,305,316,325,335,345,355,365,375,385,395,405,415,425,436,445,455,466,475,485,495,513,538,563,587,613,638,662,687,713,738,762,788,812,837,862,888,913,937,962,987,1012,1037,1062,1087,1113,1138,1163,1188,1213,1237,1263,1288,1313,1338,1363,1387,1412,1438,1463,1488,1513,1537,1564,1587,1613,1638,1663,1688,1713,1737,1763,1787,1812,1837,1863,1888,1913,1937,1963,1981],[-0.39,-0.391,-0.429,-0.543,-0.619,-0.779,-0.852,-0.871,-0.896,-0.909,-0.852,-0.845,-0.758,-0.614,-0.451,-0.49,-0.237,-0.159,0.104,0.245,0.09,0.472,0.81,1.058,1.115,1.163,1.289,1.386,1.443,1.498,1.538,1.572,1.587,1.62,1.647,1.662,1.678,1.705,1.715,1.724,1.73,1.732,1.73,1.729,1.73,1.73,1.73,1.73,1.728,1.72,1.704,1.682,1.662,1.635,1.624,1.619,1.588,1.585,1.567,1.558,1.522,1.486,1.452,1.411,1.395,1.377,1.349,1.321,1.303,1.307,1.268,1.261,1.233,1.199,1.195,1.144,1.134,1.129,1.103,1.069,1.032,0.994,0.967,0.952,0.938,0.921,0.913,0.896,0.882,0.877,0.873,0.852,0.839,0.82,0.795,0.769,0.753,0.742,0.729,0.716,0.704,0.697,0.689,0.668,0.657,0.636,0.628,0.624,0.614],[33.959,33.959999,33.959,33.966999,33.979,34.009998,34.021999,34.023998,34.026001,34.032001,34.043999,34.068001,34.102001,34.127998,34.151001,34.168999,34.212002,34.245998,34.305,34.324001,34.334,34.381001,34.425999,34.459,34.470001,34.481998,34.507,34.526001,34.539001,34.554001,34.564999,34.573002,34.583,34.595001,34.605,34.611,34.616001,34.625,34.631001,34.638,34.643002,34.648998,34.652,34.654999,34.658001,34.660999,34.661999,34.664001,34.667,34.673,34.678001,34.681999,34.685001,34.688999,34.693001,34.696999,34.699001,34.703999,34.706001,34.708,34.707001,34.706001,34.706001,34.705002,34.706001,34.706001,34.708,34.707001,34.707001,34.712002,34.709999,34.712002,34.712002,34.709999,34.712002,34.709,34.712002,34.713001,34.713001,34.710999,34.709,34.707001,34.707001,34.707001,34.707001,34.706001,34.706001,34.706001,34.705002,34.706001,34.706001,34.706001,34.705002,34.703999,34.702,34.700001,34.699001,34.698002,34.698002,34.696999,34.695999,34.695999,34.695999,34.694,34.694,34.692001,34.691002,34.692001,34.691002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_028","geolocation":{"type":"Point","coordinates":[20.619,-52.32]},"basin":10,"timestamp":"2005-11-11T02:10:00.000Z","date_updated_argovis":"2023-01-24T19:56:23.495Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_028.nc","date_updated":"2015-10-19T17:19:30.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,46,56,65,75,84,94,105,114,125,136,145,155,165,175,185,196,205,215,225,235,246,255,265,275,285,296,305,315,325,335,345,356,366,375,385,396,405,415,425,435,446,455,465,475,485,495,513,537,562,587,614,637,662,687,712,737,762,789,813,837,862,888,913,938,962,988,1013,1038,1062,1087,1112,1138,1162,1188,1213,1237,1262,1287,1312,1338,1363,1387,1413,1438,1463,1487,1512,1537,1563,1587,1612,1639,1662,1687,1712,1737,1763,1787,1812,1837,1862,1888,1914,1937,1963,1988,2000],[-0.864,-0.86,-0.861,-0.86,-0.866,-0.862,-0.871,-0.867,-0.915,-0.941,-0.972,-1.049,-1.057,-1.044,-0.955,-0.851,-0.664,-0.515,-0.199,0.012,0.182,0.548,0.805,1.044,1.136,1.265,1.352,1.414,1.492,1.537,1.558,1.562,1.57,1.601,1.641,1.656,1.672,1.69,1.703,1.709,1.714,1.718,1.728,1.735,1.738,1.742,1.747,1.752,1.753,1.758,1.75,1.737,1.76,1.723,1.658,1.646,1.634,1.613,1.591,1.564,1.535,1.504,1.488,1.443,1.397,1.372,1.349,1.319,1.269,1.232,1.212,1.209,1.112,1.048,1.042,1.016,1.001,0.989,0.971,0.973,0.96,0.928,0.902,0.881,0.846,0.804,0.776,0.752,0.726,0.703,0.693,0.681,0.672,0.658,0.651,0.628,0.608,0.565,0.556,0.549,0.542,0.54,0.538,0.539,0.539,0.538,0.54,0.541,0.536,0.53],[33.995998,33.994999,33.995998,33.995998,33.997002,33.995998,33.997002,33.995998,34.000999,34.007,34.011002,34.028,34.039001,34.044998,34.075001,34.141998,34.179001,34.203999,34.251999,34.283001,34.308998,34.344002,34.391998,34.431,34.451,34.483002,34.506001,34.525002,34.549,34.563999,34.570999,34.571999,34.574001,34.585999,34.601002,34.605999,34.612,34.618999,34.625,34.626999,34.627998,34.630001,34.634998,34.639999,34.640999,34.644001,34.648998,34.653999,34.655998,34.664001,34.672001,34.68,34.693001,34.698002,34.696999,34.700001,34.706001,34.707001,34.708,34.709999,34.709999,34.709,34.709,34.707001,34.707001,34.707001,34.708,34.708,34.707001,34.706001,34.707001,34.709999,34.702,34.698002,34.696999,34.696999,34.695999,34.695999,34.695999,34.695999,34.695999,34.695,34.694,34.694,34.693001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688999,34.688999,34.688,34.688,34.688,34.687,34.687,34.686001,34.686001,34.687,34.687,34.687,34.687,34.687,34.687,34.687,34.687,34.687,34.686001,34.686001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_027","geolocation":{"type":"Point","coordinates":[19.607,-52.679]},"basin":10,"timestamp":"2005-11-01T01:58:00.000Z","date_updated_argovis":"2023-01-24T19:56:21.389Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_027.nc","date_updated":"2015-10-19T17:19:30.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,86,96,105,115,125,135,145,155,166,176,185,194,204,215,225,235,245,254,265,275,285,295,305,315,325,335,345,355,365,375,385,396,405,415,425,434,444,455,466,475,486,495,512,537,563,588,614,637,662,688,712,737,762,787,812,838,863,888,912,937,962,987,1013,1038,1063,1087,1112,1137,1163,1188,1212,1237,1263,1287,1312,1337,1362,1389,1412,1437,1462,1487,1512,1539,1562,1587,1612,1637,1662,1687,1713,1738,1764,1788,1813,1837,1862,1888,1913,1937,1962,1987],[-1.004,-1.002,-1.005,-1.026,-1.104,-1.141,-1.141,-1.129,-1.064,-0.983,-0.874,-0.692,-0.583,-0.561,-0.476,-0.315,0.215,0.58,0.766,0.908,0.992,1.067,1.208,1.298,1.347,1.424,1.498,1.573,1.636,1.697,1.711,1.715,1.69,1.674,1.668,1.692,1.713,1.72,1.709,1.695,1.711,1.697,1.689,1.653,1.637,1.648,1.627,1.614,1.637,1.655,1.602,1.562,1.575,1.548,1.503,1.458,1.458,1.435,1.407,1.423,1.432,1.394,1.331,1.276,1.24,1.201,1.168,1.138,1.142,1.141,1.125,1.118,1.103,1.099,1.077,1.05,1.01,0.948,0.917,0.861,0.826,0.794,0.772,0.738,0.703,0.679,0.665,0.655,0.642,0.628,0.617,0.607,0.6,0.589,0.58,0.569,0.557,0.547,0.536,0.533,0.525,0.518,0.509,0.497,0.492,0.481,0.476,0.464,0.455],[33.914001,33.921001,33.93,33.945,33.979,33.995998,34.012001,34.021,34.041,34.056,34.084,34.120998,34.141998,34.160999,34.189999,34.222,34.306,34.351002,34.382999,34.411999,34.441002,34.462002,34.491001,34.512001,34.523998,34.544998,34.563999,34.583,34.599998,34.615002,34.622002,34.625999,34.627998,34.627998,34.630001,34.636002,34.640999,34.646,34.647999,34.650002,34.654999,34.655998,34.659,34.657001,34.657001,34.661999,34.664001,34.666,34.671001,34.675999,34.678001,34.685001,34.692001,34.693001,34.693001,34.693001,34.696999,34.700001,34.699001,34.703999,34.708,34.709,34.707001,34.705002,34.703999,34.702999,34.702999,34.702999,34.706001,34.708,34.708,34.708,34.707001,34.708,34.708,34.707001,34.705002,34.700001,34.698002,34.692001,34.691002,34.688999,34.688,34.686001,34.685001,34.685001,34.685001,34.685001,34.686001,34.686001,34.686001,34.685001,34.685001,34.683998,34.683998,34.682999,34.682999,34.682999,34.682999,34.682999,34.682999,34.682999,34.681999,34.681999,34.681999,34.681999,34.681,34.681,34.681]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_026","geolocation":{"type":"Point","coordinates":[17.592000000000002,-52.453]},"basin":10,"timestamp":"2005-10-22T02:04:00.000Z","date_updated_argovis":"2023-01-24T19:56:19.466Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_026.nc","date_updated":"2015-10-19T17:19:29.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,124,135,146,155,165,176,185,195,205,215,225,235,245,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,406,416,425,435,445,455,465,475,485,495,513,538,562,587,613,638,662,688,713,738,763,787,812,838,862,887,912,937,963,988,1013,1038,1062,1089,1112,1138,1162,1187,1212,1237,1263,1288,1312,1338,1363,1389,1412,1438,1463,1488,1513,1538,1563,1588,1613,1637,1663,1688,1712,1738,1762,1787,1812,1838,1862,1887,1912,1937,1962,1988,2006],[-1.016,-1.054,-1.143,-1.22,-1.267,-1.354,-1.407,-1.427,-1.478,-1.521,-1.509,-1.468,-1.394,-1.481,-1.46,-1.441,-1.305,-0.972,-0.686,-0.172,0.308,0.388,0.477,0.654,1.012,1.153,1.312,1.351,1.403,1.417,1.44,1.462,1.51,1.564,1.576,1.591,1.619,1.642,1.65,1.651,1.654,1.655,1.654,1.651,1.637,1.632,1.634,1.623,1.603,1.587,1.561,1.565,1.541,1.518,1.517,1.486,1.491,1.508,1.503,1.464,1.454,1.434,1.388,1.363,1.326,1.31,1.301,1.295,1.278,1.245,1.188,1.164,1.084,1.058,1.039,1.026,0.988,0.951,0.922,0.892,0.875,0.851,0.824,0.793,0.78,0.754,0.741,0.733,0.718,0.706,0.671,0.648,0.64,0.624,0.597,0.585,0.573,0.567,0.562,0.546,0.54,0.534,0.518,0.499,0.485,0.474,0.467,0.454,0.436,0.426],[33.91,33.919998,33.936001,33.945,33.946999,33.950001,33.952,33.962002,33.980999,34.005001,34.044998,34.083,34.119999,34.136002,34.141998,34.152,34.167,34.194,34.230999,34.297001,34.349998,34.366001,34.395,34.433998,34.479,34.499001,34.523998,34.542,34.556999,34.561001,34.567001,34.575001,34.584999,34.596001,34.601002,34.609001,34.617001,34.625,34.629002,34.632999,34.636002,34.640999,34.643002,34.643002,34.646,34.651001,34.655998,34.660999,34.661999,34.666,34.671001,34.676998,34.682999,34.688,34.692001,34.695999,34.701,34.707001,34.713001,34.712002,34.715,34.716999,34.714001,34.714001,34.714001,34.715,34.716,34.716999,34.716999,34.715,34.710999,34.709,34.703999,34.702999,34.705002,34.705002,34.702999,34.701,34.700001,34.699001,34.700001,34.698002,34.696999,34.695,34.695,34.694,34.694,34.694,34.693001,34.692001,34.689999,34.688,34.688,34.688,34.688,34.687,34.687,34.686001,34.686001,34.685001,34.685001,34.685001,34.683998,34.681999,34.681999,34.681999,34.681999,34.681,34.68,34.68]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_025","geolocation":{"type":"Point","coordinates":[16.894000000000002,-52.696000000000005]},"basin":10,"timestamp":"2005-10-12T01:59:00.000Z","date_updated_argovis":"2023-01-24T19:56:17.525Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_025.nc","date_updated":"2015-10-19T17:19:29.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,95,106,115,125,134,145,155,165,175,185,195,205,215,225,235,246,255,265,275,285,295,305,315,325,335,345,355,366,375,385,395,405,415,425,435,444,455,465,475,485,495,513,538,564,587,612,638,662,687,712,738,763,788,813,838,862,888,913,938,963,988,1013,1038,1063,1088,1113,1138,1163,1188,1212,1237,1263,1288,1314,1338,1362,1387,1412,1437,1463,1488,1514,1537,1562,1587,1613,1637,1662,1687,1712,1737,1764,1787,1812,1837,1862,1887,1912,1937,1963,1984],[-1.467,-1.502,-1.565,-1.617,-1.618,-1.567,-1.362,-1.081,-0.817,-0.474,-0.295,-0.058,0.165,0.627,0.945,1.071,1.203,1.256,1.341,1.439,1.53,1.586,1.607,1.615,1.62,1.654,1.7,1.709,1.703,1.685,1.681,1.683,1.709,1.726,1.729,1.721,1.721,1.711,1.699,1.692,1.678,1.672,1.686,1.694,1.707,1.708,1.708,1.726,1.717,1.725,1.628,1.6,1.551,1.521,1.577,1.559,1.463,1.411,1.4,1.379,1.366,1.341,1.315,1.292,1.225,1.205,1.163,1.151,1.156,1.122,1.081,1.035,1.006,0.979,0.929,0.902,0.9,0.867,0.835,0.818,0.789,0.755,0.739,0.722,0.714,0.69,0.691,0.67,0.646,0.618,0.603,0.593,0.58,0.575,0.558,0.542,0.533,0.523,0.513,0.503,0.495,0.491,0.486,0.481,0.471,0.465,0.458,0.445,0.437],[33.918999,33.931999,33.953999,33.977001,33.988998,34.013,34.049,34.088001,34.126999,34.186001,34.237999,34.271,34.304001,34.360001,34.404999,34.437,34.473,34.487,34.511002,34.539001,34.562,34.574001,34.582001,34.588001,34.596001,34.609001,34.622002,34.625999,34.630001,34.633999,34.637001,34.640999,34.646999,34.653,34.653999,34.658001,34.66,34.662998,34.667,34.669998,34.671001,34.674999,34.679001,34.682999,34.686001,34.688,34.692001,34.698002,34.698002,34.703999,34.701,34.705002,34.705002,34.707001,34.719002,34.721001,34.713001,34.713001,34.714001,34.714001,34.714001,34.714001,34.713001,34.714001,34.709999,34.709999,34.707001,34.707001,34.710999,34.709,34.707001,34.703999,34.703999,34.702,34.699001,34.700001,34.702,34.701,34.699001,34.698002,34.695999,34.693001,34.693001,34.692001,34.692001,34.691002,34.692001,34.691002,34.688999,34.688,34.688,34.687,34.687,34.687,34.686001,34.686001,34.685001,34.685001,34.685001,34.683998,34.683998,34.683998,34.683998,34.683998,34.682999,34.682999,34.682999,34.681999,34.681999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_024","geolocation":{"type":"Point","coordinates":[15.765,-52.643]},"basin":10,"timestamp":"2005-10-02T01:59:00.000Z","date_updated_argovis":"2023-01-24T19:56:15.614Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_024.nc","date_updated":"2015-10-19T17:19:28.000Z"}],"cycle_number":24,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,45,55,65,75,85,95,105,115,125,136,145,155,165,176,185,195,206,216,226,235,245,255,265,275,285,295,305,315,326,335,345,355,365,375,385,395,405,416,425,435,446,455,465,475,485,495,512,538,564,587,613,637,662,687,713,738,762,788,813,837,862,888,913,938,963,988,1013,1038,1062,1088,1112,1137,1162,1188,1213,1238,1263,1288,1313,1339,1362,1387,1412,1437,1462,1487,1512,1538,1562,1587,1613,1638,1663,1687,1712,1737,1763,1788,1813,1837,1862,1887,1913,1937,1962,1988,2004],[-1.352,-1.343,-1.343,-1.342,-1.371,-1.371,-1.339,-1.354,-1.133,-1.154,-1.09,-0.91,-0.823,-0.485,-0.387,0.004,0.275,0.446,0.964,1.216,1.288,1.407,1.517,1.593,1.64,1.66,1.663,1.659,1.698,1.697,1.682,1.677,1.679,1.679,1.681,1.683,1.687,1.69,1.691,1.692,1.691,1.694,1.688,1.661,1.655,1.644,1.649,1.646,1.622,1.611,1.575,1.543,1.53,1.518,1.509,1.532,1.534,1.569,1.657,1.621,1.578,1.516,1.454,1.45,1.487,1.475,1.423,1.371,1.338,1.3,1.265,1.256,1.226,1.196,1.156,1.125,1.091,1.06,1.03,1.008,0.974,0.924,0.897,0.867,0.857,0.827,0.81,0.786,0.769,0.745,0.728,0.715,0.692,0.67,0.634,0.59,0.584,0.581,0.574,0.569,0.565,0.556,0.55,0.531,0.525,0.513,0.494,0.479,0.469,0.455],[33.953999,33.952999,33.953999,33.952999,33.956001,33.977001,34.000999,34.014,34.048,34.07,34.095001,34.129002,34.152,34.194,34.210999,34.263,34.300999,34.333,34.403999,34.459,34.479,34.511002,34.537998,34.558998,34.574001,34.582001,34.594002,34.598999,34.613998,34.619999,34.622002,34.625,34.626999,34.632,34.634998,34.638,34.640999,34.644001,34.646,34.648998,34.653,34.658001,34.658001,34.659,34.661999,34.666,34.671001,34.673,34.674999,34.679001,34.683998,34.687,34.689999,34.693001,34.699001,34.703999,34.709,34.720001,34.734001,34.731998,34.729,34.723,34.717999,34.723,34.73,34.731998,34.730999,34.728001,34.726002,34.724998,34.723,34.723,34.722,34.720001,34.717999,34.716,34.713001,34.710999,34.709,34.708,34.707001,34.702999,34.702,34.700001,34.701,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.693001,34.692001,34.691002,34.689999,34.688,34.687,34.687,34.687,34.687,34.687,34.686001,34.686001,34.685001,34.685001,34.685001,34.683998,34.682999,34.682999,34.682999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_023","geolocation":{"type":"Point","coordinates":[15,-52.974000000000004]},"basin":10,"timestamp":"2005-09-22T01:54:00.000Z","date_updated_argovis":"2023-01-24T19:56:13.796Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_023.nc","date_updated":"2015-10-19T17:19:28.000Z"}],"cycle_number":23,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,66,75,85,95,105,114,125,135,145,155,166,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,404,415,425,435,445,455,465,475,485,495,512,539,562,588,612,637,662,687,712,738,763,788,813,838,863,888,913,937,963,987,1012,1037,1062,1088,1112,1137,1162,1188,1213,1237,1262,1287,1314,1337,1363,1387,1412,1437,1462,1487,1513,1537,1563,1587,1612,1638,1662,1687,1712,1739,1762,1788,1812,1837,1862,1888,1913,1938,1964,1976],[-1.003,-1.002,-1.013,-1.23,-0.804,-0.319,-0.144,0.073,0.302,0.401,0.613,0.78,0.789,0.794,0.837,0.964,1.037,1.175,1.342,1.415,1.49,1.553,1.577,1.611,1.671,1.68,1.683,1.693,1.711,1.73,1.742,1.73,1.727,1.711,1.702,1.694,1.687,1.68,1.683,1.706,1.715,1.718,1.706,1.703,1.702,1.704,1.709,1.711,1.71,1.69,1.648,1.639,1.727,1.763,1.754,1.732,1.71,1.681,1.634,1.524,1.385,1.351,1.296,1.27,1.245,1.22,1.188,1.124,1.1,1.093,1.071,1.028,0.985,0.987,0.97,0.939,0.913,0.91,0.905,0.889,0.866,0.851,0.831,0.814,0.769,0.753,0.725,0.705,0.678,0.642,0.627,0.616,0.606,0.599,0.59,0.578,0.571,0.563,0.557,0.548,0.542,0.537,0.522,0.516,0.51,0.509,0.505,0.504,0.504],[34,34,34,34.026001,34.095001,34.153,34.18,34.210999,34.248001,34.27,34.316002,34.360001,34.368,34.370998,34.381001,34.41,34.422001,34.451,34.493,34.514999,34.537998,34.562,34.573002,34.583,34.596001,34.599998,34.603001,34.608002,34.612999,34.620998,34.632999,34.637001,34.639,34.643002,34.646999,34.651001,34.653999,34.658001,34.660999,34.668999,34.674,34.681999,34.685001,34.686001,34.688999,34.693001,34.698002,34.698002,34.700001,34.702,34.702999,34.707001,34.723,34.731998,34.733002,34.734001,34.734001,34.734001,34.731998,34.721001,34.713001,34.714001,34.712002,34.712002,34.714001,34.715,34.714001,34.709,34.709999,34.710999,34.709,34.705002,34.702999,34.705002,34.705002,34.702999,34.701,34.702,34.702999,34.702999,34.702,34.702,34.700001,34.699001,34.695999,34.695,34.694,34.693001,34.691002,34.688,34.688,34.688,34.688,34.688,34.687,34.687,34.687,34.687,34.687,34.687,34.686001,34.686001,34.685001,34.685001,34.685001,34.685001,34.685001,34.685001,34.685001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_022","geolocation":{"type":"Point","coordinates":[14.306000000000001,-53.145]},"basin":10,"timestamp":"2005-09-12T02:00:00.000Z","date_updated_argovis":"2023-01-24T19:56:11.882Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_022.nc","date_updated":"2015-10-19T17:19:27.000Z"}],"cycle_number":22,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,44,55,65,75,85,94,105,116,125,135,145,155,164,175,185,195,206,215,225,235,246,256,264,275,286,295,305,315,325,334,345,356,366,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,612,637,662,688,713,737,762,788,814,837,862,887,913,938,963,988,1013,1038,1062,1088,1112,1137,1163,1187,1212,1237,1262,1288,1314,1338,1362,1388,1412,1438,1463,1488,1512,1538,1562,1588,1612,1638,1663,1688,1712,1738,1762,1787,1812,1837,1862,1887,1913,1938,1963,1983],[-1.676,-1.646,-1.646,-1.643,-1.653,-1.634,-1.621,-1.591,-1.529,-1.155,-0.837,-0.773,-0.567,-0.408,-0.16,-0.131,0.042,0.494,0.959,1.244,1.283,1.28,1.346,1.393,1.414,1.433,1.449,1.477,1.5,1.554,1.553,1.551,1.553,1.575,1.578,1.565,1.564,1.56,1.564,1.559,1.556,1.548,1.54,1.475,1.426,1.412,1.426,1.447,1.452,1.463,1.424,1.38,1.323,1.288,1.245,1.214,1.182,1.163,1.121,1.082,1.051,1.028,0.999,0.944,0.901,0.867,0.847,0.837,0.807,0.78,0.755,0.739,0.731,0.725,0.701,0.69,0.666,0.642,0.617,0.578,0.558,0.546,0.533,0.509,0.503,0.496,0.488,0.486,0.481,0.469,0.463,0.451,0.428,0.419,0.415,0.414,0.407,0.398,0.386,0.38,0.374,0.356,0.345,0.341,0.331,0.319,0.314,0.307,0.3],[34.085999,34.084999,34.088001,34.088001,34.088001,34.089001,34.108002,34.137001,34.147999,34.186001,34.217999,34.222,34.244999,34.272999,34.311001,34.334999,34.381001,34.451,34.512001,34.553001,34.563,34.570999,34.587002,34.598999,34.608002,34.619999,34.630001,34.637001,34.643002,34.655998,34.66,34.660999,34.664001,34.674999,34.678001,34.679001,34.68,34.682999,34.689999,34.691002,34.691002,34.692001,34.693001,34.688999,34.688,34.691002,34.694,34.696999,34.699001,34.701,34.702,34.702999,34.702,34.702,34.702,34.701,34.701,34.702,34.701,34.699001,34.696999,34.696999,34.695999,34.695,34.694,34.694,34.693001,34.693001,34.692001,34.691002,34.689999,34.688999,34.688999,34.689999,34.688999,34.688999,34.688,34.687,34.685001,34.683998,34.682999,34.682999,34.681999,34.681999,34.681999,34.681999,34.681,34.681,34.681,34.681,34.681,34.68,34.68,34.68,34.68,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.676998,34.676998,34.676998,34.675999,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_021","geolocation":{"type":"Point","coordinates":[12.43,-52.494]},"basin":10,"timestamp":"2005-09-02T02:06:00.000Z","date_updated_argovis":"2023-01-24T19:56:09.965Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_021.nc","date_updated":"2015-10-19T17:19:27.000Z"}],"cycle_number":21,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,106,115,125,135,145,155,165,175,185,195,205,215,225,235,246,256,265,275,285,294,305,316,326,335,345,355,365,375,386,395,405,415,425,435,445,455,465,475,485,495,512,538,562,588,612,637,662,688,713,738,762,788,812,838,862,887,912,938,963,988,1013,1038,1063,1088,1113,1138,1162,1187,1212,1237,1263,1288,1314,1337,1362,1388,1413,1438,1462,1487,1512,1537,1563,1588,1614,1637,1662,1688,1713,1737,1762,1788,1814,1837,1862,1887,1913,1938,1963,1989,2001],[-0.955,-0.97,-0.875,-0.937,-1.267,-1.372,-1.386,-1.423,-1.47,-1.53,-1.568,-1.682,-1.701,-1.713,-1.711,-1.688,-1.383,-0.729,0.145,0.757,1.059,1.162,1.214,1.299,1.363,1.369,1.409,1.435,1.438,1.438,1.449,1.468,1.482,1.488,1.487,1.5,1.514,1.513,1.512,1.517,1.52,1.523,1.526,1.52,1.513,1.5,1.497,1.506,1.515,1.508,1.48,1.478,1.455,1.413,1.375,1.311,1.278,1.239,1.209,1.185,1.163,1.13,1.103,1.076,1.071,1.059,1.028,0.986,0.966,0.916,0.88,0.86,0.83,0.8,0.794,0.775,0.758,0.751,0.743,0.727,0.711,0.686,0.675,0.664,0.64,0.627,0.614,0.591,0.587,0.577,0.576,0.571,0.556,0.546,0.538,0.534,0.522,0.484,0.459,0.445,0.43,0.409,0.394,0.385,0.376,0.374,0.364,0.35,0.318,0.305],[33.936001,33.956001,33.976002,34.000999,34.027,34.041,34.043999,34.056,34.063,34.081001,34.112,34.125999,34.129002,34.136002,34.137001,34.140999,34.172001,34.234001,34.333,34.41,34.470001,34.5,34.52,34.546001,34.562,34.569,34.582001,34.59,34.592999,34.594002,34.602001,34.612,34.619999,34.625999,34.631001,34.638,34.644001,34.647999,34.653,34.658001,34.658001,34.659,34.664001,34.667999,34.669998,34.673,34.675999,34.68,34.681999,34.683998,34.688,34.694,34.698002,34.696999,34.695999,34.693001,34.692001,34.692001,34.692001,34.692001,34.693001,34.694,34.694,34.695,34.695,34.695999,34.695999,34.695999,34.695999,34.693001,34.692001,34.691002,34.689999,34.688999,34.689999,34.689999,34.688999,34.688999,34.688999,34.688,34.688,34.687,34.687,34.687,34.686001,34.686001,34.685001,34.683998,34.685001,34.686001,34.686001,34.686001,34.685001,34.685001,34.685001,34.685001,34.685001,34.682999,34.681999,34.681999,34.681,34.68,34.679001,34.679001,34.679001,34.679001,34.678001,34.676998,34.675999,34.675999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_020","geolocation":{"type":"Point","coordinates":[11.491000000000001,-53.46]},"basin":10,"timestamp":"2005-08-23T01:54:59.999Z","date_updated_argovis":"2023-01-24T19:56:08.018Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_020.nc","date_updated":"2015-10-19T17:19:26.000Z"}],"cycle_number":20,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,64,75,85,95,105,116,125,135,145,156,165,175,185,195,205,215,226,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,446,456,464,475,485,495,513,538,562,587,612,638,663,687,712,738,763,788,813,837,863,888,913,938,963,988,1013,1038,1062,1087,1112,1138,1163,1188,1212,1237,1262,1289,1313,1338,1363,1387,1412,1438,1462,1487,1512,1537,1564,1587,1612,1638,1662,1687,1712,1737,1762,1787,1812,1837,1862,1887,1912,1937,1963,1977],[-1.047,-1.069,-1.128,-1.184,-1.195,-1.188,-1.133,-1.163,-1.199,-1.22,-1.212,-0.784,-0.123,0.297,0.636,0.674,0.715,0.9,1.045,1.106,1.155,1.231,1.281,1.301,1.317,1.35,1.425,1.478,1.483,1.487,1.492,1.501,1.515,1.523,1.534,1.543,1.55,1.554,1.551,1.54,1.529,1.504,1.493,1.478,1.464,1.459,1.455,1.448,1.436,1.418,1.392,1.374,1.355,1.329,1.31,1.291,1.271,1.282,1.275,1.264,1.234,1.206,1.179,1.15,1.116,1.08,1.038,0.978,0.949,0.929,0.895,0.886,0.867,0.838,0.829,0.811,0.792,0.775,0.766,0.745,0.726,0.712,0.688,0.671,0.651,0.625,0.611,0.601,0.589,0.57,0.554,0.541,0.529,0.516,0.502,0.485,0.47,0.456,0.442,0.429,0.414,0.405,0.396,0.385,0.38,0.37,0.36,0.351,0.329],[33.926998,33.931,33.944,33.958,33.962002,33.966,33.974998,34.030998,34.043999,34.050999,34.056999,34.113998,34.194,34.264,34.333,34.341,34.353001,34.400002,34.438,34.453999,34.466999,34.487999,34.500999,34.507999,34.513,34.525002,34.549,34.564999,34.568001,34.580002,34.589001,34.597,34.605,34.611,34.617001,34.624001,34.632999,34.639999,34.646999,34.652,34.654999,34.659,34.660999,34.664001,34.666,34.667999,34.668999,34.671001,34.672001,34.674999,34.676998,34.68,34.685001,34.688999,34.692001,34.694,34.698002,34.702999,34.703999,34.703999,34.703999,34.703999,34.702999,34.702,34.700001,34.699001,34.695999,34.693001,34.693001,34.693001,34.692001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.688,34.688,34.688,34.688,34.688,34.687,34.687,34.686001,34.685001,34.685001,34.685001,34.683998,34.682999,34.682999,34.681999,34.681999,34.681999,34.681999,34.681,34.68,34.68,34.68,34.679001,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.676998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_019","geolocation":{"type":"Point","coordinates":[9.43,-53.712]},"basin":10,"timestamp":"2005-08-13T02:07:00.000Z","date_updated_argovis":"2023-01-24T19:56:06.108Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_019.nc","date_updated":"2015-10-19T17:19:25.000Z"}],"cycle_number":19,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,186,195,205,215,226,235,245,255,265,275,285,295,305,315,325,334,344,355,365,375,385,395,405,415,425,434,445,455,465,475,485,495,512,537,563,588,612,637,662,688,712,738,764,787,812,838,863,888,913,938,963,988,1013,1037,1064,1087,1113,1137,1162,1187,1213,1238,1263,1288,1313,1337,1362,1387,1412,1437,1463,1487,1513,1538,1562,1587,1613,1638,1663,1688,1713,1739,1762,1787,1812,1837,1863,1888,1912,1937,1962,1978],[-1.045,-1.041,-1.055,-1.055,-1.065,-1.088,-1.106,-1.126,-1.164,-1.172,-1.163,-1.143,-0.848,-0.272,0.328,0.644,0.73,0.816,0.906,0.931,0.955,1.049,1.278,1.311,1.338,1.396,1.42,1.444,1.428,1.423,1.418,1.437,1.453,1.476,1.488,1.484,1.481,1.48,1.474,1.465,1.461,1.455,1.469,1.484,1.47,1.485,1.487,1.489,1.488,1.485,1.491,1.478,1.469,1.442,1.434,1.412,1.382,1.355,1.299,1.229,1.201,1.139,1.087,1.051,1.027,1.003,0.981,0.943,0.921,0.889,0.855,0.816,0.792,0.775,0.748,0.733,0.712,0.69,0.683,0.655,0.631,0.608,0.597,0.589,0.575,0.549,0.531,0.522,0.511,0.5,0.49,0.471,0.47,0.451,0.43,0.415,0.398,0.391,0.385,0.381,0.372,0.367,0.357,0.334,0.32,0.312,0.296,0.291,0.289],[33.966,33.965,33.969002,33.967999,33.970001,33.973999,33.977001,33.980999,33.992001,33.995998,34,34.005001,34.063999,34.167,34.289001,34.359001,34.381001,34.407001,34.433998,34.441002,34.446999,34.473,34.528999,34.542,34.556,34.573002,34.584,34.592999,34.598,34.601002,34.602001,34.608002,34.613998,34.626999,34.634998,34.640999,34.648998,34.655998,34.662998,34.667999,34.672001,34.674999,34.679001,34.682999,34.683998,34.691002,34.692001,34.694,34.695,34.695999,34.700001,34.702999,34.703999,34.706001,34.706001,34.707001,34.707001,34.706001,34.703999,34.701,34.700001,34.696999,34.695,34.694,34.694,34.693001,34.693001,34.693001,34.692001,34.692001,34.691002,34.689999,34.688999,34.688999,34.688,34.688,34.687,34.687,34.687,34.686001,34.686001,34.686001,34.685001,34.685001,34.685001,34.685001,34.683998,34.683998,34.683998,34.683998,34.682999,34.681999,34.681999,34.681999,34.681,34.68,34.679001,34.68,34.679001,34.679001,34.678001,34.679001,34.678001,34.676998,34.675999,34.675999,34.674999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_018","geolocation":{"type":"Point","coordinates":[8.344000000000001,-54.088]},"basin":10,"timestamp":"2005-08-03T02:01:00.000Z","date_updated_argovis":"2023-01-24T19:56:04.176Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_018.nc","date_updated":"2015-10-19T17:19:25.000Z"}],"cycle_number":18,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,76,85,95,105,115,125,135,146,156,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,464,475,485,495,513,538,562,588,613,638,662,688,712,737,762,788,812,838,863,887,912,937,962,988,1013,1037,1063,1088,1113,1137,1162,1187,1212,1237,1263,1288,1312,1337,1362,1388,1413,1438,1462,1488,1513,1537,1562,1587,1613,1637,1662,1687,1713,1738,1763,1788,1813,1838,1862,1888,1912,1937,1963],[-1.05,-1.089,-1.09,-1.096,-1.1,-1.101,-1.096,-1.092,-1.096,-1.06,-0.858,-0.125,0.546,0.682,0.791,0.982,1.197,1.351,1.363,1.408,1.431,1.447,1.473,1.481,1.495,1.513,1.514,1.526,1.539,1.535,1.548,1.557,1.555,1.548,1.535,1.528,1.519,1.513,1.502,1.498,1.494,1.488,1.48,1.47,1.454,1.442,1.432,1.426,1.417,1.405,1.393,1.379,1.347,1.327,1.314,1.28,1.243,1.212,1.179,1.138,1.089,1.061,1.034,1.003,0.954,0.919,0.885,0.856,0.828,0.8,0.782,0.762,0.748,0.731,0.711,0.7,0.675,0.664,0.647,0.632,0.621,0.604,0.588,0.578,0.565,0.541,0.521,0.509,0.496,0.479,0.468,0.456,0.439,0.432,0.426,0.406,0.396,0.387,0.38,0.371,0.349,0.343,0.338,0.328,0.315,0.31,0.306,0.299],[34.014999,34.016998,34.015999,34.014999,34.014999,34.014999,34.014999,34.014999,34.014999,34.021,34.061001,34.202,34.333,34.390999,34.423,34.466,34.512001,34.541,34.544998,34.558998,34.569,34.577999,34.589001,34.594002,34.599998,34.608002,34.613998,34.619999,34.627998,34.636002,34.646999,34.652,34.657001,34.659,34.661999,34.662998,34.665001,34.666,34.666,34.668999,34.671001,34.674,34.675999,34.675999,34.676998,34.678001,34.679001,34.679001,34.681,34.683998,34.687,34.689999,34.692001,34.693001,34.694,34.695,34.696999,34.696999,34.696999,34.695999,34.695,34.694,34.694,34.693001,34.693001,34.692001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688999,34.688,34.688,34.687,34.686001,34.686001,34.686001,34.685001,34.685001,34.685001,34.685001,34.683998,34.683998,34.682999,34.682999,34.681999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.676998,34.675999,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_017","geolocation":{"type":"Point","coordinates":[7.017,-53.678000000000004]},"basin":10,"timestamp":"2005-07-24T01:56:00.000Z","date_updated_argovis":"2023-01-24T19:56:02.193Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_017.nc","date_updated":"2015-10-19T17:19:24.000Z"}],"cycle_number":17,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,86,95,105,115,125,135,144,155,165,175,185,194,205,215,225,235,245,255,264,275,285,295,305,314,325,335,345,355,365,375,385,394,405,415,425,435,445,455,465,475,485,495,512,538,563,588,613,637,662,688,713,738,763,789,812,838,863,888,912,938,962,988,1012,1038,1062,1088,1112,1137,1162,1187,1212,1238,1263,1287,1312,1337,1362,1387,1412,1437,1462,1488,1513,1539,1563,1588,1613,1638,1663,1688,1713,1739,1762,1787,1813,1838,1863,1888,1913,1937,1964],[-0.893,-0.894,-0.893,-0.893,-0.893,-0.893,-0.894,-0.894,-0.898,-0.902,-0.909,-0.909,-0.861,-0.706,-0.286,-0.192,0.347,0.736,0.839,0.977,1.086,1.225,1.286,1.298,1.305,1.332,1.358,1.368,1.415,1.469,1.494,1.51,1.508,1.508,1.507,1.507,1.506,1.501,1.495,1.486,1.48,1.474,1.459,1.449,1.442,1.436,1.431,1.427,1.425,1.408,1.382,1.33,1.306,1.279,1.271,1.268,1.251,1.212,1.168,1.15,1.128,1.109,1.071,1.028,1.004,0.978,0.946,0.91,0.875,0.839,0.793,0.777,0.77,0.762,0.738,0.713,0.683,0.648,0.635,0.625,0.62,0.614,0.603,0.592,0.577,0.561,0.549,0.545,0.54,0.531,0.526,0.52,0.515,0.511,0.504,0.498,0.495,0.471,0.462,0.449,0.429,0.42,0.413,0.411,0.404,0.391,0.377,0.362],[33.938999,33.938999,33.938,33.938999,33.938999,33.938999,33.939999,33.939999,33.942001,33.943001,33.945999,33.949001,33.959,33.995998,34.097,34.120998,34.247002,34.361,34.391998,34.432999,34.462002,34.5,34.528999,34.535999,34.546001,34.561001,34.569,34.573002,34.589001,34.605,34.615002,34.623001,34.631001,34.632999,34.634998,34.637001,34.639,34.643002,34.647999,34.653999,34.658001,34.660999,34.667,34.673,34.675999,34.678001,34.679001,34.68,34.681999,34.685001,34.689999,34.689999,34.691002,34.693001,34.693001,34.693001,34.694,34.694,34.692001,34.693001,34.694,34.694,34.694,34.694,34.693001,34.693001,34.692001,34.689999,34.688999,34.688,34.687,34.687,34.686001,34.687,34.686001,34.686001,34.685001,34.683998,34.683998,34.683998,34.683998,34.682999,34.682999,34.682999,34.681999,34.681999,34.681999,34.681999,34.681999,34.681,34.681,34.681,34.681,34.681,34.68,34.68,34.68,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_016","geolocation":{"type":"Point","coordinates":[6.369000000000001,-54.001000000000005]},"basin":10,"timestamp":"2005-07-14T02:02:00.000Z","date_updated_argovis":"2023-01-24T19:56:00.307Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_016.nc","date_updated":"2015-10-19T17:19:24.000Z"}],"cycle_number":16,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,105,115,125,135,145,155,165,176,185,195,205,215,226,235,245,255,265,275,285,295,306,315,325,335,345,355,365,375,385,395,405,415,425,435,445,454,465,475,485,496,514,538,563,588,612,637,662,687,713,737,762,787,812,837,862,887,912,937,962,988,1012,1037,1064,1087,1112,1138,1163,1188,1213,1237,1262,1287,1313,1338,1363,1388,1412,1438,1463,1487,1512,1537,1562,1589,1612,1638,1663,1688,1713,1737,1762,1787,1812,1837,1863,1887,1912,1938,1962,1978],[-1.039,-1.024,-1.008,-0.991,-0.996,-0.998,-0.996,-0.997,-0.987,-0.983,-0.966,-0.91,-0.426,-0.055,0.081,0.251,0.483,0.82,0.972,1.029,1.106,1.171,1.235,1.267,1.296,1.319,1.328,1.337,1.35,1.36,1.35,1.344,1.339,1.359,1.365,1.362,1.348,1.333,1.326,1.318,1.311,1.297,1.289,1.282,1.275,1.252,1.242,1.246,1.254,1.234,1.207,1.183,1.163,1.146,1.126,1.07,1.017,0.984,0.951,0.933,0.909,0.874,0.852,0.836,0.82,0.792,0.775,0.73,0.689,0.658,0.636,0.62,0.592,0.58,0.564,0.54,0.514,0.478,0.461,0.452,0.442,0.43,0.425,0.416,0.407,0.405,0.4,0.395,0.376,0.35,0.343,0.336,0.325,0.311,0.308,0.304,0.296,0.283,0.282,0.282,0.282,0.277,0.265,0.264,0.263,0.261,0.262,0.259,0.258],[33.966,33.971001,33.973999,33.976002,33.976002,33.976002,33.976002,33.976002,33.977001,33.977001,33.98,33.993,34.101002,34.200001,34.241001,34.292,34.368999,34.466,34.504002,34.518002,34.537998,34.556999,34.573002,34.581001,34.591999,34.599998,34.603001,34.605999,34.612,34.620998,34.626999,34.634998,34.640999,34.648998,34.652,34.655998,34.658001,34.660999,34.665001,34.667,34.668999,34.675999,34.676998,34.678001,34.679001,34.681999,34.683998,34.685001,34.686001,34.688,34.688999,34.688999,34.691002,34.694,34.695,34.693001,34.691002,34.689999,34.689999,34.689999,34.689999,34.688999,34.688999,34.688999,34.688,34.688,34.688,34.687,34.686001,34.685001,34.685001,34.683998,34.682999,34.682999,34.681999,34.681999,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.678001,34.678001,34.676998,34.675999,34.675999,34.675999,34.674999,34.674999,34.674999,34.674,34.674,34.674,34.674,34.674,34.674,34.673,34.673,34.673,34.673,34.673,34.673,34.672001,34.672001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_015","geolocation":{"type":"Point","coordinates":[5.261,-54.521]},"basin":10,"timestamp":"2005-07-04T02:02:00.000Z","date_updated_argovis":"2023-01-24T19:55:58.377Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_015.nc","date_updated":"2015-10-19T17:19:23.000Z"}],"cycle_number":15,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,24,35,45,54,65,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,225,235,245,255,265,275,285,295,305,315,325,334,345,355,365,375,385,395,405,416,425,435,445,455,465,475,485,495,513,539,562,588,612,638,663,688,712,737,762,787,813,838,862,888,913,938,963,988,1013,1037,1063,1087,1112,1137,1162,1188,1212,1237,1262,1288,1312,1338,1363,1388,1412,1437,1462,1487,1512,1539,1563,1587,1612,1637,1663,1688,1712,1737,1763,1788,1812,1838,1863,1888,1912,1937,1962,1988],[-0.892,-0.893,-0.894,-0.892,-0.889,-0.889,-0.887,-0.887,-0.888,-0.886,-0.877,-0.851,-0.418,0.019,0.342,0.739,0.831,0.934,0.991,1.079,1.177,1.235,1.316,1.337,1.383,1.378,1.386,1.41,1.433,1.452,1.456,1.46,1.453,1.451,1.452,1.439,1.429,1.403,1.406,1.399,1.391,1.391,1.383,1.369,1.364,1.356,1.341,1.347,1.345,1.341,1.316,1.293,1.263,1.237,1.209,1.182,1.178,1.158,1.125,1.083,1.055,0.989,0.958,0.932,0.904,0.867,0.834,0.81,0.797,0.782,0.765,0.75,0.746,0.73,0.704,0.684,0.657,0.635,0.623,0.608,0.599,0.589,0.584,0.575,0.565,0.546,0.532,0.528,0.515,0.485,0.471,0.447,0.445,0.435,0.42,0.404,0.387,0.371,0.36,0.348,0.334,0.321,0.305,0.282,0.259,0.247,0.241,0.237,0.222],[33.917,33.917,33.917,33.917,33.917,33.917,33.917,33.917,33.917,33.917,33.921001,33.933998,34.069,34.192001,34.291,34.396,34.43,34.462002,34.486,34.507999,34.528,34.541,34.562,34.580002,34.588001,34.589001,34.597,34.609001,34.618,34.625999,34.631001,34.634998,34.637001,34.639,34.640999,34.646,34.647999,34.650002,34.654999,34.657001,34.659,34.66,34.662998,34.666,34.668999,34.669998,34.673,34.676998,34.68,34.681999,34.687,34.689999,34.693001,34.694,34.694,34.695,34.696999,34.696999,34.696999,34.695999,34.695,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.688,34.688,34.687,34.686001,34.687,34.687,34.687,34.686001,34.686001,34.685001,34.683998,34.683998,34.683998,34.683998,34.682999,34.682999,34.682999,34.681999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.675999,34.674999,34.674,34.674,34.673,34.672001,34.672001,34.672001,34.671001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_014","geolocation":{"type":"Point","coordinates":[4.269,-55.207]},"basin":10,"timestamp":"2005-06-24T01:57:00.000Z","date_updated_argovis":"2023-01-24T19:55:56.410Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_014.nc","date_updated":"2015-10-19T17:19:23.000Z"}],"cycle_number":14,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,54,65,75,85,94,104,115,126,135,145,155,165,175,185,195,205,215,224,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,424,435,445,455,465,475,485,495,512,538,563,588,613,637,662,687,712,738,762,787,812,838,863,888,913,938,963,988,1013,1038,1063,1088,1112,1137,1162,1187,1212,1237,1263,1289,1312,1337,1363,1388,1413,1437,1463,1488,1513,1538,1563,1589,1613,1637,1662,1687,1712,1737,1763,1788,1813,1838,1862,1887,1912,1937,1963,1989,2001],[-0.868,-0.863,-0.859,-0.859,-0.858,-0.847,-0.836,-0.821,-0.628,-0.204,0.238,0.406,0.477,0.551,0.688,0.779,0.931,1.046,1.149,1.193,1.136,1.157,1.235,1.271,1.301,1.329,1.368,1.395,1.441,1.487,1.486,1.472,1.497,1.506,1.504,1.495,1.504,1.545,1.551,1.585,1.6,1.593,1.549,1.538,1.444,1.499,1.504,1.481,1.461,1.453,1.391,1.389,1.337,1.296,1.313,1.317,1.281,1.266,1.228,1.2,1.152,1.121,1.096,1.081,1.047,0.989,0.958,0.949,0.94,0.919,0.869,0.832,0.804,0.778,0.763,0.749,0.729,0.703,0.691,0.668,0.652,0.639,0.628,0.616,0.599,0.583,0.565,0.546,0.531,0.518,0.499,0.486,0.47,0.454,0.438,0.423,0.404,0.387,0.379,0.373,0.363,0.352,0.344,0.336,0.327,0.314,0.299,0.288,0.281,0.276],[33.907001,33.907001,33.908001,33.908001,33.908001,33.909,33.911999,33.916,33.959,34.062,34.199001,34.257,34.285,34.314999,34.362,34.387001,34.419998,34.442001,34.469002,34.492001,34.505001,34.526001,34.547001,34.560001,34.569,34.582001,34.598,34.608002,34.618999,34.626999,34.632,34.639,34.646999,34.653,34.654999,34.657001,34.660999,34.671001,34.673,34.68,34.686001,34.688,34.688,34.689999,34.686001,34.694,34.695999,34.694,34.694,34.695,34.695,34.698002,34.695999,34.694,34.700001,34.703999,34.702999,34.703999,34.702999,34.702,34.699001,34.698002,34.698002,34.699001,34.698002,34.694,34.693001,34.694,34.695,34.694,34.692001,34.691002,34.689999,34.688999,34.688,34.688,34.687,34.686001,34.686001,34.685001,34.685001,34.683998,34.683998,34.683998,34.682999,34.682999,34.681999,34.681999,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999,34.674999,34.674,34.674,34.673,34.673]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_013","geolocation":{"type":"Point","coordinates":[4.001,-55.462]},"basin":10,"timestamp":"2005-06-14T01:57:00.000Z","date_updated_argovis":"2023-01-24T19:55:54.587Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_013.nc","date_updated":"2015-10-19T17:19:22.000Z"}],"cycle_number":13,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,46,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,204,215,225,235,245,255,265,275,285,294,305,315,325,335,345,355,365,375,385,395,405,414,425,435,445,455,466,475,485,495,513,538,564,587,613,638,663,688,713,738,764,787,812,837,862,887,913,938,963,988,1012,1038,1064,1087,1112,1138,1163,1188,1212,1237,1262,1287,1313,1338,1363,1387,1412,1438,1462,1487,1512,1537,1563,1587,1613,1638,1662,1688,1713,1737,1762,1787,1813,1837,1863,1888,1913,1938,1963,1980],[-0.684,-0.683,-0.684,-0.684,-0.684,-0.681,-0.676,-0.675,-0.659,-0.071,0.238,0.377,0.493,0.644,0.718,0.797,1.021,1.101,1.216,1.316,1.363,1.375,1.397,1.443,1.509,1.556,1.581,1.597,1.602,1.606,1.605,1.6,1.586,1.555,1.523,1.506,1.492,1.489,1.488,1.492,1.499,1.506,1.505,1.509,1.516,1.515,1.511,1.506,1.504,1.496,1.479,1.472,1.456,1.422,1.389,1.365,1.342,1.313,1.272,1.222,1.175,1.162,1.142,1.129,1.115,1.086,1.055,1.012,0.953,0.917,0.901,0.885,0.869,0.855,0.834,0.813,0.799,0.764,0.751,0.723,0.698,0.677,0.644,0.628,0.613,0.597,0.567,0.555,0.545,0.529,0.505,0.485,0.473,0.464,0.451,0.439,0.425,0.405,0.389,0.369,0.351,0.338,0.336,0.332,0.313,0.294,0.27,0.255,0.242],[33.84,33.84,33.841,33.84,33.841,33.841,33.841,33.841,33.847,34.041,34.183998,34.250999,34.296001,34.348,34.369999,34.394001,34.438999,34.460999,34.487,34.512001,34.530998,34.542,34.549,34.563,34.584,34.596001,34.609001,34.617001,34.624001,34.629002,34.632999,34.636002,34.639999,34.640999,34.639999,34.643002,34.646999,34.647999,34.654999,34.660999,34.665001,34.667999,34.669998,34.673,34.675999,34.676998,34.68,34.681,34.681,34.683998,34.688,34.692001,34.695999,34.700001,34.702,34.702,34.702,34.702999,34.702,34.700001,34.699001,34.700001,34.700001,34.700001,34.699001,34.698002,34.696999,34.695,34.693001,34.692001,34.692001,34.692001,34.692001,34.693001,34.692001,34.691002,34.691002,34.688999,34.688999,34.687,34.686001,34.685001,34.683998,34.683998,34.683998,34.682999,34.681999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.675999,34.674999,34.674,34.674,34.673,34.672001,34.672001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_012","geolocation":{"type":"Point","coordinates":[3.73,-55.616]},"basin":10,"timestamp":"2005-06-04T01:58:00.000Z","date_updated_argovis":"2023-01-24T19:55:52.711Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_012.nc","date_updated":"2015-10-19T17:19:22.000Z"}],"cycle_number":12,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,46,55,65,74,85,96,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,344,355,365,375,385,396,405,415,425,435,445,455,465,475,485,496,513,538,563,587,612,637,662,688,713,738,763,788,813,838,863,887,912,938,964,987,1013,1038,1063,1087,1112,1137,1163,1188,1212,1238,1263,1287,1312,1337,1362,1387,1412,1437,1463,1488,1512,1538,1562,1587,1613,1638,1663,1687,1712,1738,1762,1787,1813,1838,1862,1888,1913,1937,1962],[-0.478,-0.478,-0.478,-0.438,-0.412,-0.329,-0.154,-0.039,0.094,0.27,0.381,0.424,0.514,0.619,0.74,0.875,0.972,1.026,1.176,1.325,1.331,1.398,1.418,1.413,1.383,1.369,1.402,1.418,1.493,1.459,1.416,1.422,1.439,1.444,1.454,1.466,1.471,1.485,1.488,1.489,1.487,1.497,1.513,1.51,1.514,1.523,1.527,1.526,1.52,1.51,1.509,1.489,1.456,1.433,1.39,1.349,1.313,1.282,1.25,1.231,1.217,1.211,1.202,1.177,1.164,1.125,1.103,1.084,1.046,1.014,0.992,0.957,0.94,0.918,0.893,0.867,0.828,0.78,0.744,0.723,0.701,0.69,0.665,0.656,0.638,0.621,0.605,0.587,0.573,0.554,0.542,0.527,0.51,0.497,0.481,0.47,0.458,0.446,0.435,0.426,0.419,0.41,0.398,0.384,0.368,0.352,0.338,0.326],[33.768002,33.768002,33.768002,33.782001,33.799,33.841,33.938,34.001999,34.081001,34.175999,34.226002,34.244999,34.275002,34.307999,34.344002,34.382999,34.411999,34.431,34.471001,34.512001,34.534,34.554001,34.558998,34.564999,34.569,34.570999,34.582001,34.588001,34.603001,34.605,34.605999,34.617001,34.624001,34.625999,34.631001,34.639999,34.643002,34.646999,34.652,34.653999,34.655998,34.660999,34.665001,34.665001,34.667,34.671001,34.675999,34.679001,34.68,34.681,34.685001,34.688,34.689999,34.693001,34.694,34.695999,34.695999,34.696999,34.696999,34.696999,34.698002,34.699001,34.700001,34.699001,34.700001,34.699001,34.699001,34.699001,34.696999,34.695999,34.695,34.693001,34.693001,34.694,34.693001,34.693001,34.691002,34.688999,34.687,34.687,34.686001,34.685001,34.685001,34.683998,34.682999,34.682999,34.682999,34.681999,34.681999,34.681,34.681,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_011","geolocation":{"type":"Point","coordinates":[3.4450000000000003,-55.723000000000006]},"basin":10,"timestamp":"2005-05-25T02:04:00.000Z","date_updated_argovis":"2023-01-24T19:55:50.702Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_011.nc","date_updated":"2015-10-19T17:19:21.000Z"}],"cycle_number":11,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,95,105,114,125,135,145,155,164,175,185,195,205,214,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,415,425,435,446,455,465,475,486,496,513,538,563,588,613,638,662,687,712,738,762,787,812,838,863,888,912,937,963,987,1012,1037,1063,1087,1112,1137,1162,1187,1212,1237,1263,1288,1313,1337,1362,1387,1412,1437,1463,1488,1512,1538,1563,1588,1613,1637,1662,1688,1714,1737,1762,1788,1812,1837,1862,1888,1914,1937,1959],[-0.302,-0.3,-0.298,-0.297,-0.303,-0.321,-0.332,-0.341,-0.352,-0.29,-0.071,-0.042,-0.014,0.096,0.29,0.519,0.769,0.911,1.061,1.165,1.246,1.339,1.399,1.476,1.519,1.544,1.555,1.573,1.579,1.584,1.582,1.581,1.568,1.557,1.58,1.586,1.576,1.577,1.581,1.557,1.553,1.549,1.541,1.541,1.544,1.532,1.517,1.507,1.497,1.474,1.457,1.464,1.443,1.417,1.415,1.432,1.374,1.339,1.302,1.268,1.244,1.222,1.198,1.174,1.148,1.099,1.072,1.057,1.033,0.99,0.95,0.917,0.888,0.866,0.84,0.804,0.783,0.751,0.731,0.717,0.694,0.674,0.645,0.627,0.614,0.596,0.582,0.566,0.55,0.534,0.522,0.515,0.507,0.493,0.483,0.478,0.463,0.449,0.44,0.424,0.411,0.4,0.39,0.382,0.369,0.356,0.342,0.328],[33.757999,33.757999,33.758999,33.757999,33.762001,33.768002,33.769001,33.772999,33.785,33.808998,33.966999,34.049999,34.109001,34.191002,34.272999,34.328999,34.383999,34.417,34.456001,34.483002,34.501999,34.528999,34.549,34.564999,34.581001,34.591,34.601002,34.609001,34.613998,34.619999,34.623001,34.627998,34.632999,34.638,34.645,34.648998,34.653,34.659,34.660999,34.662998,34.664001,34.667,34.668999,34.672001,34.674,34.674999,34.678001,34.68,34.681999,34.686001,34.688999,34.692001,34.695,34.695999,34.701,34.706001,34.703999,34.703999,34.703999,34.703999,34.705002,34.705002,34.705002,34.705002,34.705002,34.702,34.701,34.701,34.700001,34.698002,34.695,34.694,34.693001,34.692001,34.691002,34.688999,34.688,34.687,34.687,34.687,34.686001,34.685001,34.683998,34.683998,34.683998,34.682999,34.682999,34.681999,34.681999,34.681,34.681,34.681,34.681,34.68,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_010","geolocation":{"type":"Point","coordinates":[3.06,-55.689]},"basin":10,"timestamp":"2005-05-15T02:04:00.000Z","date_updated_argovis":"2023-01-24T19:55:48.870Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_010.nc","date_updated":"2015-10-19T17:19:20.000Z"}],"cycle_number":10,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,66,76,85,95,104,115,125,135,145,155,165,175,184,195,205,215,226,235,245,255,264,275,285,295,305,315,325,335,345,356,365,375,385,395,405,415,425,435,445,455,466,475,485,495,512,537,563,588,613,638,663,688,713,737,762,787,812,837,862,888,913,938,962,988,1013,1039,1063,1088,1112,1137,1162,1188,1213,1237,1263,1288,1312,1338,1363,1387,1412,1438,1463,1487,1512,1538,1562,1588,1612,1637,1662,1687,1713,1737,1763,1788,1812,1837,1862,1888,1913,1938,1964,1988],[-0.038,-0.035,-0.03,-0.037,-0.003,0.041,0.075,0.103,0.074,0.125,0.184,0.282,0.407,0.633,0.821,0.989,1.15,1.236,1.323,1.359,1.436,1.497,1.52,1.544,1.557,1.545,1.524,1.546,1.561,1.578,1.587,1.587,1.581,1.599,1.611,1.584,1.579,1.579,1.6,1.622,1.656,1.652,1.643,1.639,1.644,1.633,1.631,1.631,1.62,1.607,1.578,1.547,1.546,1.532,1.512,1.488,1.46,1.428,1.402,1.378,1.35,1.308,1.265,1.231,1.207,1.174,1.139,1.103,1.079,1.054,1.026,0.997,0.962,0.932,0.906,0.87,0.843,0.801,0.768,0.75,0.729,0.696,0.668,0.647,0.636,0.616,0.603,0.586,0.567,0.553,0.551,0.544,0.532,0.518,0.507,0.497,0.487,0.474,0.463,0.448,0.435,0.421,0.405,0.393,0.38,0.369,0.358,0.347,0.335],[33.712002,33.716,33.729,33.735001,33.764999,33.785,33.827999,33.889,34.016998,34.152,34.209,34.254002,34.299,34.354,34.408001,34.444,34.476002,34.494999,34.514,34.528,34.544998,34.563999,34.573002,34.587002,34.594002,34.595001,34.597,34.606998,34.617001,34.625,34.632,34.636002,34.639,34.648998,34.653,34.652,34.654999,34.659,34.665001,34.671001,34.676998,34.68,34.681999,34.685001,34.688,34.691002,34.692001,34.693001,34.695,34.695999,34.696999,34.700001,34.706001,34.709,34.710999,34.712002,34.714001,34.715,34.714001,34.714001,34.713001,34.712002,34.710999,34.709999,34.709,34.707001,34.706001,34.703999,34.703999,34.702999,34.702,34.701,34.699001,34.698002,34.696999,34.694,34.692001,34.689999,34.688999,34.688,34.687,34.685001,34.683998,34.682999,34.682999,34.681999,34.681,34.681,34.681,34.681,34.681999,34.681999,34.681999,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_009","geolocation":{"type":"Point","coordinates":[2.831,-55.599000000000004]},"basin":10,"timestamp":"2005-05-05T02:05:00.000Z","date_updated_argovis":"2023-01-24T19:55:47.068Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_009.nc","date_updated":"2015-10-19T17:19:20.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,115,125,135,145,155,165,175,185,195,205,214,225,235,245,255,265,275,286,295,305,314,325,336,345,355,365,375,386,396,405,415,425,435,445,455,465,475,485,495,512,538,562,587,612,638,663,687,712,739,762,787,812,838,862,887,912,937,962,988,1012,1037,1063,1087,1113,1138,1162,1187,1212,1237,1264,1287,1312,1338,1363,1388,1413,1437,1463,1489,1513,1538,1563,1587,1612,1637,1663,1688,1713,1737,1762,1788,1812,1837,1862,1888,1913,1938,1962,1983],[0.273,0.278,0.28,0.281,0.286,0.19,0.059,0.041,0.055,0.09,0.185,0.341,0.472,0.655,0.846,1.006,1.054,1.144,1.201,1.377,1.451,1.48,1.515,1.534,1.541,1.546,1.573,1.609,1.634,1.601,1.591,1.598,1.594,1.588,1.583,1.609,1.605,1.65,1.659,1.666,1.645,1.563,1.614,1.615,1.601,1.603,1.611,1.607,1.597,1.51,1.503,1.477,1.408,1.343,1.372,1.384,1.366,1.358,1.327,1.307,1.281,1.253,1.226,1.188,1.168,1.133,1.1,1.072,1.037,1.008,0.984,0.955,0.924,0.901,0.883,0.856,0.822,0.804,0.792,0.772,0.744,0.714,0.689,0.657,0.637,0.609,0.582,0.576,0.563,0.556,0.549,0.539,0.522,0.513,0.504,0.493,0.471,0.455,0.441,0.429,0.414,0.398,0.375,0.365,0.348,0.336,0.318,0.3,0.295],[33.691002,33.692001,33.692001,33.693001,33.709,33.828999,33.993,34.074001,34.120998,34.16,34.212002,34.275002,34.325001,34.368,34.409,34.439999,34.460999,34.487999,34.507999,34.540001,34.556,34.563999,34.574001,34.577,34.578999,34.583,34.591999,34.604,34.613998,34.613998,34.618,34.625,34.629002,34.632,34.639,34.648998,34.654999,34.666,34.673,34.679001,34.679001,34.675999,34.685001,34.688,34.689999,34.693001,34.695999,34.696999,34.698002,34.693001,34.696999,34.696999,34.695,34.695,34.702999,34.708,34.709,34.710999,34.710999,34.712002,34.710999,34.709999,34.709,34.708,34.707001,34.706001,34.705002,34.703999,34.702,34.701,34.700001,34.699001,34.698002,34.696999,34.695999,34.695,34.693001,34.692001,34.692001,34.691002,34.689999,34.688,34.687,34.685001,34.683998,34.681999,34.681,34.681,34.681,34.681,34.681,34.681,34.68,34.679001,34.679001,34.679001,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674,34.674,34.673,34.673]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_008","geolocation":{"type":"Point","coordinates":[2.4970000000000003,-55.472]},"basin":10,"timestamp":"2005-04-25T02:05:00.000Z","date_updated_argovis":"2023-01-24T19:55:45.105Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_008.nc","date_updated":"2015-10-19T17:19:19.000Z"}],"cycle_number":8,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,46,54,65,75,85,95,105,116,125,135,145,155,165,175,185,195,205,215,224,235,245,255,265,276,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,538,563,587,612,638,662,687,713,738,762,788,814,838,863,887,913,938,963,988,1012,1037,1064,1088,1113,1138,1163,1188,1213,1238,1264,1287,1313,1337,1362,1387,1412,1438,1462,1488,1513,1537,1563,1588,1613,1638,1663,1688,1713,1738,1763,1789,1813,1838,1862,1887,1912,1937,1962,1988,2003],[0.333,0.334,0.334,0.334,0.333,0.33,0.149,-0.009,0.05,0.47,0.602,0.725,0.839,0.944,0.986,1.124,1.23,1.338,1.403,1.464,1.515,1.551,1.565,1.592,1.604,1.58,1.628,1.609,1.626,1.621,1.579,1.583,1.583,1.593,1.625,1.619,1.581,1.572,1.53,1.523,1.515,1.509,1.546,1.549,1.579,1.589,1.569,1.563,1.532,1.493,1.499,1.472,1.454,1.416,1.398,1.392,1.397,1.413,1.372,1.319,1.293,1.269,1.224,1.174,1.147,1.123,1.094,1.044,1.008,0.986,0.96,0.929,0.886,0.862,0.817,0.812,0.784,0.75,0.731,0.711,0.688,0.677,0.643,0.633,0.627,0.62,0.611,0.588,0.582,0.573,0.564,0.55,0.534,0.523,0.503,0.483,0.467,0.459,0.45,0.44,0.431,0.42,0.403,0.39,0.376,0.358,0.341,0.324,0.312,0.309],[33.703999,33.705002,33.705002,33.706001,33.707001,33.710999,33.869999,34.067001,34.179001,34.307999,34.338001,34.369999,34.396999,34.424999,34.439999,34.472,34.499001,34.523998,34.535999,34.548,34.561001,34.574001,34.580002,34.591,34.601002,34.606998,34.617001,34.620998,34.632,34.638,34.639999,34.645,34.646999,34.651001,34.658001,34.660999,34.659,34.661999,34.66,34.660999,34.664001,34.667,34.673,34.675999,34.682999,34.686001,34.686001,34.688,34.686001,34.687,34.694,34.695,34.698002,34.700001,34.702,34.705002,34.708,34.712002,34.709999,34.707001,34.706001,34.705002,34.702999,34.702,34.701,34.702,34.700001,34.696999,34.695999,34.696999,34.695999,34.695,34.692001,34.691002,34.688999,34.689999,34.688999,34.688,34.687,34.687,34.686001,34.686001,34.683998,34.682999,34.683998,34.683998,34.682999,34.681,34.681,34.681999,34.681999,34.681,34.681,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.678001,34.678001,34.676998,34.676998,34.675999,34.674999,34.674999,34.674,34.674,34.674]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_007","geolocation":{"type":"Point","coordinates":[1.93,-55.017]},"basin":10,"timestamp":"2005-04-15T02:17:00.000Z","date_updated_argovis":"2023-01-24T19:55:43.271Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_007.nc","date_updated":"2015-10-19T17:19:19.000Z"}],"cycle_number":7,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,56,65,75,84,95,105,115,125,135,145,155,166,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,512,538,563,588,612,637,662,688,712,738,763,787,812,838,863,887,912,937,962,988,1012,1038,1063,1088,1113,1138,1163,1188,1212,1237,1262,1288,1313,1337,1363,1388,1412,1437,1462,1488,1513,1537,1563,1587,1612,1637,1662,1687,1713,1738,1762,1788,1812,1838,1862,1888,1913,1938,1962,1984],[0.681,0.681,0.681,0.677,0.649,0.439,0.075,-0.003,0.046,0.094,0.139,0.312,0.592,0.973,1.089,1.228,1.335,1.377,1.431,1.46,1.509,1.534,1.537,1.544,1.588,1.616,1.622,1.633,1.643,1.646,1.649,1.65,1.655,1.661,1.666,1.663,1.659,1.659,1.658,1.659,1.658,1.658,1.658,1.633,1.586,1.568,1.554,1.532,1.527,1.44,1.425,1.386,1.248,1.248,1.16,1.132,1.125,1.114,1.184,1.271,1.25,1.202,1.159,1.123,1.083,1.073,1.059,1.013,0.972,0.971,0.946,0.905,0.897,0.873,0.843,0.836,0.82,0.795,0.753,0.738,0.721,0.698,0.663,0.651,0.632,0.618,0.606,0.59,0.568,0.547,0.539,0.537,0.523,0.506,0.489,0.478,0.468,0.455,0.435,0.417,0.404,0.387,0.367,0.361,0.353,0.339,0.323,0.316,0.312],[33.662998,33.662998,33.664001,33.665001,33.675999,33.757999,33.932999,34.066002,34.146999,34.176998,34.194,34.255001,34.324001,34.421001,34.451,34.487,34.512001,34.522999,34.537998,34.547001,34.563999,34.573002,34.574001,34.577,34.592999,34.605,34.606998,34.612,34.619999,34.623001,34.632999,34.641998,34.645,34.646999,34.651001,34.654999,34.657001,34.658001,34.661999,34.665001,34.667999,34.668999,34.668999,34.668999,34.667999,34.667999,34.667999,34.669998,34.669998,34.669998,34.678001,34.679001,34.674,34.678001,34.674999,34.675999,34.679001,34.681,34.693001,34.703999,34.703999,34.703999,34.702999,34.701,34.700001,34.699001,34.699001,34.695999,34.694,34.695999,34.695,34.693001,34.692001,34.691002,34.689999,34.689999,34.689999,34.689999,34.688,34.688,34.687,34.686001,34.683998,34.683998,34.683998,34.683998,34.683998,34.682999,34.681,34.681,34.681,34.681,34.681,34.681,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999,34.674,34.674,34.674]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_006","geolocation":{"type":"Point","coordinates":[1.756,-54.821000000000005]},"basin":10,"timestamp":"2005-04-05T02:06:00.000Z","date_updated_argovis":"2023-01-24T19:55:41.374Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_006.nc","date_updated":"2015-10-19T17:19:18.000Z"}],"cycle_number":6,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,125,135,145,155,165,175,186,195,206,216,225,235,245,255,265,275,285,295,305,315,325,336,345,355,365,376,385,395,406,415,425,435,445,455,465,475,485,495,512,538,563,588,613,638,662,687,713,738,763,787,812,837,862,887,912,937,962,987,1013,1037,1062,1087,1112,1138,1163,1188,1213,1238,1263,1288,1313,1337,1363,1388,1413,1438,1462,1488,1512,1538,1562,1587,1612,1637,1663,1688,1714,1737,1762,1787,1812,1838,1862,1888,1912,1938,1962,1988,2001],[0.746,0.751,0.752,0.75,0.657,0.2,0.089,-0.043,0.026,0.213,0.506,0.642,0.845,0.931,1.018,1.146,1.191,1.279,1.367,1.435,1.481,1.49,1.493,1.537,1.554,1.553,1.56,1.57,1.564,1.569,1.577,1.58,1.59,1.601,1.601,1.614,1.634,1.641,1.633,1.629,1.627,1.627,1.619,1.618,1.62,1.616,1.613,1.61,1.606,1.598,1.578,1.558,1.527,1.501,1.483,1.446,1.385,1.352,1.332,1.303,1.286,1.267,1.242,1.215,1.18,1.152,1.132,1.116,1.105,1.081,1.068,1.042,1.004,0.979,0.945,0.895,0.865,0.845,0.827,0.812,0.787,0.766,0.743,0.732,0.714,0.696,0.678,0.662,0.647,0.633,0.609,0.588,0.571,0.551,0.544,0.531,0.504,0.488,0.484,0.473,0.469,0.46,0.446,0.433,0.42,0.41,0.399,0.381,0.365,0.359],[33.665001,33.674,33.681,33.686001,33.695999,33.826,33.909,34.014999,34.125999,34.188999,34.257999,34.293999,34.345001,34.368999,34.394001,34.426998,34.442001,34.470001,34.493,34.514,34.530998,34.541,34.553001,34.566002,34.570999,34.577,34.584999,34.592999,34.595001,34.597,34.603001,34.609001,34.616001,34.619999,34.626999,34.633999,34.640999,34.643002,34.644001,34.646,34.650002,34.654999,34.659,34.661999,34.666,34.667999,34.669998,34.672001,34.674,34.676998,34.681999,34.683998,34.687,34.691002,34.695,34.695999,34.694,34.695,34.695,34.698002,34.701,34.702,34.702999,34.702999,34.702,34.701,34.701,34.700001,34.700001,34.699001,34.699001,34.698002,34.696999,34.695999,34.695,34.693001,34.692001,34.691002,34.691002,34.691002,34.689999,34.688999,34.688,34.688,34.687,34.687,34.686001,34.685001,34.685001,34.683998,34.682999,34.682999,34.681999,34.681,34.681,34.681,34.68,34.68,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.676998,34.676998,34.675999,34.675999,34.674999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_005","geolocation":{"type":"Point","coordinates":[1.18,-54.802]},"basin":10,"timestamp":"2005-03-26T02:06:00.000Z","date_updated_argovis":"2023-01-24T19:55:39.407Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_005.nc","date_updated":"2015-10-19T17:19:18.000Z"}],"cycle_number":5,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,104,115,125,135,145,155,165,175,185,195,205,215,225,236,245,255,265,275,285,295,305,315,325,335,345,355,365,375,386,395,405,415,425,434,445,456,465,475,486,495,512,537,562,588,613,638,663,688,712,738,763,787,812,838,862,887,913,937,962,988,1012,1038,1062,1087,1113,1138,1163,1188,1213,1238,1263,1287,1312,1337,1362,1388,1413,1438,1463,1488,1512,1538,1563,1588,1612,1638,1663,1688,1713,1738,1763,1787,1812,1838,1862,1888,1912,1937,1962,1985],[1.043,1.043,1.043,1.044,1.044,1.028,0.884,0.448,-0.205,-0.341,-0.197,0.002,0.176,0.267,0.445,0.688,0.858,0.945,1.11,1.246,1.357,1.426,1.461,1.54,1.563,1.582,1.581,1.599,1.609,1.63,1.633,1.603,1.58,1.587,1.587,1.579,1.588,1.617,1.616,1.62,1.633,1.633,1.631,1.629,1.62,1.616,1.613,1.613,1.612,1.578,1.54,1.572,1.558,1.532,1.544,1.471,1.392,1.355,1.327,1.304,1.28,1.244,1.218,1.181,1.151,1.126,1.104,1.077,1.052,1.021,0.983,0.962,0.931,0.911,0.897,0.866,0.833,0.822,0.815,0.811,0.802,0.791,0.779,0.769,0.761,0.745,0.731,0.712,0.709,0.685,0.665,0.657,0.644,0.618,0.595,0.578,0.556,0.538,0.518,0.491,0.472,0.466,0.448,0.431,0.409,0.393,0.385,0.37,0.353],[33.554001,33.553001,33.553001,33.553001,33.553001,33.555,33.576,33.688,33.882,33.995998,34.067001,34.139999,34.188999,34.214001,34.262001,34.319,34.356998,34.380001,34.426998,34.466999,34.493999,34.511002,34.527,34.551998,34.560001,34.567001,34.575001,34.584,34.588001,34.595001,34.597,34.598999,34.604,34.610001,34.617001,34.625999,34.633999,34.641998,34.644001,34.650002,34.653999,34.655998,34.659,34.662998,34.665001,34.667,34.669998,34.672001,34.674,34.674,34.678001,34.687,34.691002,34.693001,34.699001,34.695999,34.692001,34.694,34.695999,34.698002,34.699001,34.698002,34.696999,34.696999,34.696999,34.696999,34.696999,34.696999,34.696999,34.696999,34.695999,34.695999,34.695999,34.695,34.695,34.693001,34.692001,34.692001,34.691002,34.691002,34.691002,34.691002,34.689999,34.689999,34.689999,34.688999,34.688999,34.688,34.688,34.687,34.686001,34.686001,34.685001,34.683998,34.683998,34.683998,34.682999,34.681999,34.681,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.675999,34.675999,34.675999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_004","geolocation":{"type":"Point","coordinates":[0.499,-54.620000000000005]},"basin":10,"timestamp":"2005-03-16T02:12:00.000Z","date_updated_argovis":"2023-01-24T19:55:37.510Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_004.nc","date_updated":"2015-10-19T17:19:17.000Z"}],"cycle_number":4,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,56,65,75,85,95,105,115,125,135,145,155,164,175,185,195,205,216,225,235,245,255,265,275,284,295,305,316,325,335,345,355,366,375,385,395,405,416,425,435,445,455,465,475,485,495,512,537,563,588,612,638,663,687,712,737,763,787,812,838,862,887,913,938,963,988,1012,1038,1062,1087,1113,1137,1162,1187,1213,1238,1263,1288,1313,1337,1362,1388,1412,1438,1462,1487,1513,1539,1563,1588,1612,1637,1662,1687,1712,1738,1763,1788,1813,1838,1862,1887,1913,1938,1962,1982],[1.114,1.115,1.115,1.109,1.109,1.096,0.897,0.315,0,-0.234,-0.369,-0.261,-0.134,0.091,0.288,0.514,0.749,0.901,0.993,1.023,1.149,1.446,1.532,1.446,1.453,1.503,1.524,1.539,1.549,1.54,1.501,1.486,1.49,1.499,1.547,1.633,1.646,1.642,1.644,1.645,1.644,1.643,1.643,1.642,1.642,1.641,1.643,1.649,1.661,1.664,1.648,1.655,1.621,1.59,1.569,1.549,1.528,1.505,1.481,1.444,1.434,1.45,1.436,1.397,1.371,1.35,1.323,1.286,1.259,1.242,1.211,1.192,1.173,1.141,1.113,1.091,1.059,1.033,1.017,0.994,0.976,0.945,0.928,0.901,0.888,0.864,0.829,0.796,0.769,0.733,0.701,0.675,0.651,0.63,0.602,0.58,0.564,0.549,0.539,0.529,0.523,0.518,0.513,0.506,0.488,0.479,0.472,0.457,0.451],[33.561001,33.561001,33.562,33.563,33.562,33.563999,33.602001,33.721001,33.805,33.876999,33.980999,34.049999,34.095001,34.162998,34.237,34.285999,34.344002,34.382999,34.410999,34.423,34.446999,34.487,34.499001,34.497002,34.509998,34.522999,34.530998,34.539001,34.549999,34.554001,34.557999,34.562,34.567001,34.574001,34.587002,34.605999,34.616001,34.623001,34.630001,34.632999,34.633999,34.636002,34.639999,34.645,34.646999,34.651001,34.653999,34.655998,34.660999,34.668999,34.674,34.681,34.682999,34.685001,34.686001,34.689999,34.692001,34.695999,34.698002,34.698002,34.701,34.706001,34.707001,34.707001,34.707001,34.708,34.708,34.707001,34.706001,34.706001,34.705002,34.705002,34.703999,34.702999,34.702,34.701,34.700001,34.700001,34.699001,34.698002,34.696999,34.695999,34.695,34.694,34.694,34.693001,34.692001,34.691002,34.689999,34.688999,34.688,34.687,34.686001,34.685001,34.683998,34.683998,34.682999,34.682999,34.681999,34.681999,34.681999,34.681999,34.681,34.681,34.68,34.68,34.68,34.679001,34.679001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_003","geolocation":{"type":"Point","coordinates":[0.46900000000000003,-54.625]},"basin":10,"timestamp":"2005-03-06T02:13:00.000Z","date_updated_argovis":"2023-01-24T19:55:35.598Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_003.nc","date_updated":"2015-10-19T17:19:17.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,125,135,146,155,164,175,185,195,205,215,225,235,245,255,265,275,285,295,306,315,325,335,345,355,365,375,384,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,612,638,663,687,713,740,763,788,812,838,863,888,913,937,962,987,1013,1037,1063,1088,1113,1138,1162,1187,1212,1237,1262,1289,1313,1337,1363,1388,1413,1438,1463,1487,1513,1538,1563,1588,1613,1637,1662,1687,1712,1737,1763,1787,1812,1838,1862,1887,1912,1937,1963,1982],[0.962,0.961,0.961,0.962,0.962,0.963,0.557,-0.21,-0.387,-0.438,-0.301,-0.149,0.091,0.308,0.518,0.626,0.834,0.996,1.091,1.308,1.458,1.518,1.55,1.578,1.528,1.455,1.454,1.602,1.674,1.541,1.474,1.504,1.571,1.585,1.608,1.611,1.614,1.622,1.624,1.625,1.627,1.631,1.636,1.642,1.641,1.643,1.641,1.643,1.643,1.638,1.626,1.618,1.606,1.578,1.562,1.548,1.533,1.522,1.508,1.494,1.469,1.447,1.425,1.404,1.385,1.37,1.347,1.327,1.295,1.271,1.245,1.21,1.185,1.15,1.127,1.093,1.061,1.042,1.017,0.996,0.981,0.957,0.922,0.892,0.877,0.861,0.845,0.825,0.803,0.743,0.693,0.647,0.61,0.582,0.563,0.546,0.537,0.533,0.527,0.521,0.511,0.493,0.483,0.472,0.457,0.446,0.432,0.426,0.423],[33.560001,33.560001,33.560001,33.560001,33.560001,33.558998,33.632999,33.820999,33.897999,33.942001,34.008999,34.069,34.137001,34.194,34.243999,34.27,34.321999,34.356998,34.381001,34.432999,34.471001,34.485001,34.498001,34.512001,34.514999,34.515999,34.523998,34.547001,34.557999,34.553001,34.556999,34.569,34.580002,34.588001,34.597,34.602001,34.606998,34.612,34.616001,34.619999,34.624001,34.629002,34.633999,34.639,34.640999,34.646999,34.648998,34.653,34.655998,34.66,34.667,34.674,34.68,34.683998,34.688,34.692001,34.695,34.698002,34.701,34.702999,34.705002,34.706001,34.708,34.708,34.708,34.708,34.708,34.707001,34.707001,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.701,34.700001,34.699001,34.698002,34.696999,34.696999,34.695999,34.694,34.692001,34.692001,34.692001,34.691002,34.691002,34.689999,34.688,34.686001,34.685001,34.683998,34.682999,34.681999,34.681999,34.681,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.678001,34.678001,34.678001,34.676998,34.676998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_002","geolocation":{"type":"Point","coordinates":[0.5820000000000001,-54.856]},"basin":10,"timestamp":"2005-02-24T02:13:00.000Z","date_updated_argovis":"2023-01-24T19:55:33.674Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_002.nc","date_updated":"2015-10-19T17:19:15.000Z"}],"cycle_number":2,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,76,85,96,105,115,125,135,145,156,165,175,185,195,205,215,225,235,245,254,265,276,285,295,306,316,325,335,345,355,365,375,385,395,405,415,426,435,444,455,465,475,485,495,513,538,562,588,612,638,663,687,712,737,763,787,812,838,862,887,913,938,962,987,1012,1037,1063,1088,1113,1137,1164,1187,1213,1238,1263,1288,1313,1338,1362,1387,1412,1437,1462,1487,1512,1537,1563,1587,1612,1638,1662,1687,1713,1738,1763,1788,1813,1837,1862,1888,1913,1938,1962,1987,2012],[0.788,0.786,0.785,0.782,0.776,0.582,0.115,-0.315,-0.483,-0.493,-0.463,-0.366,-0.255,-0.121,0.059,0.32,0.507,0.564,0.817,1,1.087,1.132,1.213,1.251,1.368,1.438,1.491,1.531,1.56,1.573,1.581,1.604,1.635,1.653,1.676,1.679,1.674,1.665,1.663,1.66,1.655,1.649,1.624,1.611,1.605,1.597,1.59,1.592,1.591,1.586,1.541,1.561,1.639,1.621,1.548,1.529,1.504,1.496,1.462,1.422,1.397,1.424,1.384,1.36,1.32,1.301,1.282,1.252,1.223,1.194,1.172,1.15,1.117,1.091,1.059,1.023,0.991,0.977,0.957,0.932,0.902,0.868,0.846,0.823,0.808,0.794,0.776,0.753,0.724,0.702,0.691,0.671,0.659,0.646,0.627,0.611,0.598,0.578,0.557,0.542,0.528,0.502,0.476,0.466,0.458,0.442,0.425,0.413,0.384,0.363],[33.591,33.591,33.591999,33.592999,33.594002,33.629002,33.724998,33.817001,33.882,33.956001,34.001999,34.068001,34.139,34.188,34.227001,34.268002,34.312,34.327,34.380001,34.424999,34.446999,34.459,34.478001,34.488998,34.516998,34.535999,34.553001,34.563,34.57,34.575001,34.578999,34.588001,34.599998,34.610001,34.618,34.620998,34.622002,34.624001,34.627998,34.632,34.636002,34.640999,34.644001,34.646999,34.652,34.654999,34.657001,34.66,34.66,34.667999,34.673,34.682999,34.698002,34.699001,34.694,34.696999,34.700001,34.703999,34.702,34.702,34.702,34.708,34.707001,34.707001,34.706001,34.707001,34.708,34.707001,34.706001,34.705002,34.703999,34.702999,34.702,34.702,34.700001,34.700001,34.698002,34.698002,34.696999,34.695999,34.694,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.688999,34.688,34.687,34.686001,34.686001,34.686001,34.685001,34.683998,34.683998,34.683998,34.682999,34.681999,34.681999,34.681,34.68,34.679001,34.679001,34.679001,34.678001,34.678001,34.676998,34.675999,34.674999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_001","geolocation":{"type":"Point","coordinates":[0.59,-55.053000000000004]},"basin":10,"timestamp":"2005-02-14T02:08:00.000Z","date_updated_argovis":"2023-01-24T19:55:31.788Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_001.nc","date_updated":"2015-10-19T17:19:14.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,54,65,76,85,95,105,114,125,135,145,155,165,175,185,195,205,215,225,234,244,255,265,275,285,295,305,315,325,335,344,355,365,375,385,395,405,415,425,436,445,455,465,475,485,495,512,537,563,588,613,637,663,688,713,738,763,787,812,837,862,887,912,937,963,987,1012,1038,1062,1087,1112,1138,1163,1188,1212,1237,1264,1287,1312,1337,1362,1388,1413,1438,1462,1487,1514,1537,1563,1588,1613,1637,1662,1687,1712,1739,1762,1787,1813,1838,1862,1887,1912,1937,1964,1986],[0.68,0.678,0.675,0.647,-0.035,-0.728,-0.87,-0.84,-0.79,-0.747,-0.572,-0.488,-0.269,-0.007,0.195,0.247,0.32,0.457,0.561,0.827,1.11,1.216,1.29,1.304,1.353,1.396,1.482,1.514,1.546,1.567,1.57,1.587,1.607,1.617,1.623,1.626,1.631,1.633,1.632,1.628,1.631,1.627,1.617,1.607,1.606,1.591,1.588,1.594,1.586,1.581,1.577,1.576,1.566,1.561,1.571,1.523,1.506,1.483,1.468,1.45,1.443,1.436,1.406,1.376,1.335,1.312,1.309,1.28,1.263,1.233,1.179,1.154,1.113,1.082,1.056,1.043,1.005,0.981,0.96,0.932,0.911,0.885,0.865,0.844,0.829,0.823,0.81,0.786,0.763,0.722,0.7,0.679,0.654,0.655,0.64,0.611,0.585,0.574,0.551,0.542,0.538,0.528,0.517,0.495,0.48,0.463,0.444,0.433,0.418],[33.577,33.577,33.577,33.577999,33.674,33.817001,33.868999,33.916,33.942001,33.960999,34.021999,34.049999,34.108002,34.171001,34.216,34.244999,34.282001,34.310001,34.334,34.393002,34.448002,34.471001,34.488998,34.493,34.505001,34.516998,34.540001,34.551998,34.567001,34.581001,34.591999,34.603001,34.612,34.618,34.625,34.632999,34.637001,34.639,34.640999,34.641998,34.641998,34.643002,34.644001,34.647999,34.650002,34.653999,34.658001,34.659,34.661999,34.666,34.669998,34.676998,34.681999,34.686001,34.692001,34.693001,34.698002,34.698002,34.700001,34.701,34.702999,34.706001,34.703999,34.702999,34.701,34.702,34.703999,34.702999,34.702999,34.702,34.700001,34.700001,34.698002,34.698002,34.696999,34.698002,34.695999,34.695999,34.695,34.694,34.693001,34.693001,34.692001,34.691002,34.689999,34.689999,34.689999,34.688999,34.688,34.687,34.685001,34.685001,34.682999,34.685001,34.683998,34.682999,34.682999,34.681999,34.681,34.681,34.681,34.68,34.68,34.679001,34.679001,34.678001,34.676998,34.676998,34.676998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_000","geolocation":{"type":"Point","coordinates":[0.034,-54.984]},"basin":10,"timestamp":"2005-02-04T01:44:00.000Z","date_updated_argovis":"2023-01-24T19:55:27.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_000.nc","date_updated":"2015-10-19T17:19:13.000Z"}],"cycle_number":0,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,55,65,75,85,95,105,115,125,135,145,155,166,175,185,196,205,215,225,235,245,254,265,275,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,512,537,562,588,612,637,663,688,713,739,762,787,812,838,862,887,912,939,962,988,1012,1037,1062,1087,1112,1138,1163,1188,1213,1238,1262,1287,1312,1337,1362,1387,1412,1438,1463,1487,1513,1537,1562,1588,1613,1638,1663,1688,1713,1738],[0.804,0.81,0.819,0.819,0.562,-0.209,-0.475,-0.578,-0.696,-0.777,-0.847,-0.802,-0.667,-0.618,-0.522,-0.407,-0.14,0.18,0.472,0.568,0.653,0.744,0.9,0.965,1.084,1.146,1.211,1.344,1.372,1.39,1.457,1.513,1.543,1.575,1.58,1.577,1.578,1.591,1.594,1.598,1.6,1.591,1.579,1.583,1.592,1.619,1.65,1.653,1.646,1.658,1.66,1.64,1.63,1.627,1.606,1.593,1.584,1.562,1.535,1.515,1.44,1.368,1.314,1.287,1.275,1.259,1.232,1.216,1.207,1.187,1.154,1.111,1.092,1.08,1.071,1.054,1.037,1.014,0.988,0.967,0.951,0.938,0.899,0.863,0.844,0.824,0.81,0.791,0.762,0.739,0.725,0.701,0.685,0.662,0.639,0.62,0.603,0.575,0.555],[33.553001,33.554001,33.556,33.561001,33.631001,33.793999,33.896999,33.915001,33.923,33.931999,33.950001,33.970001,34.006001,34.056,34.084,34.110001,34.173,34.245998,34.319,34.341999,34.362999,34.384998,34.421001,34.435001,34.463001,34.48,34.499001,34.527,34.537998,34.547001,34.561001,34.575001,34.582001,34.594002,34.599998,34.605,34.608002,34.613998,34.616001,34.619999,34.624001,34.625,34.629002,34.632999,34.638,34.644001,34.653,34.658001,34.66,34.666,34.672001,34.675999,34.681999,34.687,34.689999,34.693001,34.694,34.696999,34.699001,34.702,34.699001,34.695999,34.695,34.695,34.695999,34.696999,34.696999,34.696999,34.698002,34.698002,34.696999,34.695999,34.695999,34.698002,34.698002,34.698002,34.698002,34.696999,34.695999,34.695,34.695,34.694,34.692001,34.691002,34.691002,34.689999,34.688999,34.688999,34.688,34.687,34.686001,34.685001,34.685001,34.683998,34.682999,34.682999,34.681999,34.681,34.68]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +, +{"_id":"1900386_000D","geolocation":{"type":"Point","coordinates":[0.0034000000000000002,-54.9]},"basin":10,"timestamp":"2005-02-01T00:56:00.000Z","date_updated_argovis":"2023-01-24T19:55:29.802Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900386/profiles/D1900386_000D.nc","date_updated":"2015-10-19T17:19:14.000Z"}],"cycle_number":0,"geolocation_argoqc":1,"profile_direction":"D","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 10 dbar average from surface to 500 dbar; 10 sec sampling, 25 dbar average from 500 dbar to 1000 dbar]","data":[[38,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,212,238,263,288,312,338,361,388,413,438,463,488,513,538,564,588,612,638,663,688,712,738,763,788,813,837,863,888,912,938,962,976],[0.962,0.962,0.96,0.677,0.405,0.099,-0.042,-0.297,-0.437,-0.519,-0.722,-0.708,-0.707,-0.62,-0.495,-0.321,-0.178,0.177,0.653,1.157,1.367,1.461,1.578,1.646,1.662,1.661,1.664,1.669,1.68,1.677,1.68,1.663,1.639,1.607,1.594,1.572,1.546,1.523,1.489,1.422,1.376,1.349,1.33,1.306,1.288,1.285,1.272,1.246,1.237],[33.610001,33.610001,33.612,33.674,33.757999,33.880001,33.902,33.938,33.931999,33.956001,33.962002,33.973,33.987,34.014,34.051998,34.109001,34.162998,34.251999,34.353001,34.444,34.509998,34.536999,34.568001,34.595001,34.612999,34.625999,34.636002,34.645,34.653,34.659,34.666,34.672001,34.68,34.688,34.692001,34.694,34.695999,34.698002,34.698002,34.695999,34.695999,34.695,34.694,34.694,34.695,34.695999,34.696999,34.696999,34.696999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900386_m0"]} +] diff --git a/argopy/tests/test_data/d6e43fb877b88d33b02763432ee4514fdd21f8feaaa234b3e4351b8cf00c7a9c.ncHeader b/argopy/tests/test_data/d6e43fb877b88d33b02763432ee4514fdd21f8feaaa234b3e4351b8cf00c7a9c.ncHeader new file mode 100644 index 00000000..669f1b34 --- /dev/null +++ b/argopy/tests/test_data/d6e43fb877b88d33b02763432ee4514fdd21f8feaaa234b3e4351b8cf00c7a9c.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_ca04_b1d5_e6fe.nc { + dimensions: + row = 141; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=141); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 1; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=141); + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=141, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 157.9978f, 306.8305f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 172.5826f, 335.1566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.177477f, 10.0547f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=141, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=141, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=141); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = -57.064, -55.979; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=141); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = 144.484, 149.71; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=141, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=141); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 4.6f, 2005.1f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 4.7f, 2005.1f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.4f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=141, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=141, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.715f, 34.745f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 33.72545f, 34.74495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01f, 0.01158624f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=141, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=141, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.576f, 4.475f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.576f, 4.475f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=141); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=141, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=141, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=141); + :_CoordinateAxisType = "Time"; + :actual_range = 1.266899783E9, 1.276412397E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=141); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = 149.71; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = -55.979; // double + :geospatial_lat_min = -57.064; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = 149.71; // double + :geospatial_lon_min = 144.484; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:43:39Z (local files) +2024-09-24T12:43:39Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~%225903248%22&cycle_number=~%221%7C12%22&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = -55.979; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = -57.064; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2010-06-13T06:59:57Z"; + :time_coverage_start = "2010-02-23T04:36:23Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = 144.484; // double +} diff --git a/argopy/tests/test_data/d852c53da273d758191fabae43d1643af4dff383f0adb91e49297cab388d64d2.ncHeader b/argopy/tests/test_data/d852c53da273d758191fabae43d1643af4dff383f0adb91e49297cab388d64d2.ncHeader new file mode 100644 index 00000000..54a4a167 --- /dev/null +++ b/argopy/tests/test_data/d852c53da273d758191fabae43d1643af4dff383f0adb91e49297cab388d64d2.ncHeader @@ -0,0 +1,355 @@ +netcdf ArgoFloats-synthetic-BGC_c31c_03da_fe9e.nc { + dimensions: + row = 5041; + direction_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + int config_mission_number(row=5041); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + int cycle_number(row=5041); + :_FillValue = 99999; // int + :actual_range = 1, 173; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=5041, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float doxy(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1526.135f, 11356.0f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1655.856f, 12321.26f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.415855f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=5041, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=5041, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=5041); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.99997; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=5041); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.119708333333335; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + char platform_number(row=5041, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=5041); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.649095E-7f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.4f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=5041, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=5041, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.767f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.01f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=5041, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=5041, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.884f, 11.566f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=5041); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=5041, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=5041, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=5041); + :_CoordinateAxisType = "Time"; + :actual_range = 1.65164493E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=5041); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.119708333333335; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.99997; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.119708333333335; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:45:57Z (local files) +2024-09-24T12:45:57Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1651363200.0&time%3C=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.99997; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2022-05-04T06:15:30Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/dcb0b1d7fcb97cca8a1c3ed4d0f97f449d88d6988e5e8b7549b152f4719a3a68.ncHeader b/argopy/tests/test_data/dcb0b1d7fcb97cca8a1c3ed4d0f97f449d88d6988e5e8b7549b152f4719a3a68.ncHeader new file mode 100644 index 00000000..0db88a77 --- /dev/null +++ b/argopy/tests/test_data/dcb0b1d7fcb97cca8a1c3ed4d0f97f449d88d6988e5e8b7549b152f4719a3a68.ncHeader @@ -0,0 +1,434 @@ +netcdf ArgoFloats-synthetic-BGC_8408_8f39_6a42.nc { + dimensions: + row = 82912; + bbp700_adjusted_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + variables: + float bbp700_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -9.164699E-4f, 0.05414488f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=82912, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.01356583f, 3.577122f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=82912, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=82912); + :_ChunkSizes = 106; // int + :_FillValue = 99999; // int + :actual_range = 1, 12; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660_adjusted(row=82912); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=82912); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=82912, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=82912); + :_FillValue = 99999; // int + :actual_range = 1, 57; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=82912, direction_strlen=1); + :_ChunkSizes = 106; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.455375E-5f, 0.7292956f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.01458591f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=82912, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -5.610992E-5f, 1.376981f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.02753962f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=82912, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.414902E-5f, 1.84358f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.5E-5f, 0.0368716f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=82912, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.05009519f, 2514.08f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03f, 125.704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=82912, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy_adjusted(row=82912); + :actual_range = 264.4146f, 99999.0f; // float + + float doxy_adjusted_error(row=82912); + :actual_range = 12.55041f, 99999.0f; // float + + char doxy_adjusted_qc(row=82912, doxy_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + double latitude(row=82912); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.84967733333333, 57.650632166666675; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=82912); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -53.10385516666667, -43.740898; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate_adjusted(row=82912); + :actual_range = 0.9445617f, 99999.0f; // float + + float nitrate_adjusted_error(row=82912); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=82912, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total_adjusted(row=82912); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=82912); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=82912, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=82912, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=82912); + :actual_range = "18"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = -4.054f, 2003.352f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=82912, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 34.20806f, 34.93495f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=82912, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp_adjusted(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.139f, 12.609f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=82912); + :_ChunkSizes = 106, 787; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=82912, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 106, 787; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=82912); + :_CoordinateAxisType = "Time"; + :actual_range = 1.653888087E9, 1.701612697015E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=82912); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -43.740898; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 57.650632166666675; // double + :geospatial_lat_min = 55.84967733333333; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -43.740898; // double + :geospatial_lon_min = -53.10385516666667; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-24T16:12:38Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-25T05:50:51Z (local files) +2024-09-25T05:50:51Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~%226904241%22&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres_adjusted%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 57.650632166666675; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.84967733333333; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-12-03T14:11:37Z"; + :time_coverage_start = "2022-05-30T05:21:27Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -53.10385516666667; // double +} diff --git a/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html b/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html new file mode 100644 index 00000000..174da8f8 --- /dev/null +++ b/argopy/tests/test_data/dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b.html @@ -0,0 +1,14 @@ + + + Argo DAC profile cookbook + + + + + + +

Argo DAC profile cookbook

This DAC cookbook is to include instructions for the DACs on how to calculate different variables for the Argo profile files. This is especially true for some of the additional sensors that are being added to Argo floats. The extra variables increase the complexity of the profile file and extra instructions may be necessary, depending on float and sensor type. It is separate from other data manuals because users do not need to understand all these details, but that it is important that all DACs to be calculating the variables in the same manner. There are instructions in this cookbook that apply to all floats and some that apply to only certain float types. Look through the table of contents for the specific float types included.

Full Text

FilePagesSizeAccess
obsolete version 1.0
25277 Ko
Publisher's official version
24923 Ko
How to cite
Scanderbeg Megan, Rannou Jean-Philippe, Wong Annie, Klein Birgit, Schmid Claudia, King Brian, Van Wijk Esmee (2019). Argo DAC profile cookbook. Ifremer. https://doi.org/10.13155/41151

Copy this text

+ + + diff --git a/argopy/tests/test_data/dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba.nc b/argopy/tests/test_data/dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba.nc new file mode 100644 index 00000000..a3cd8f8d Binary files /dev/null and b/argopy/tests/test_data/dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba.nc differ diff --git a/argopy/tests/test_data/df16c31e8ba4856676441c17ef6738c6fb34459a3a89511a9ad31369f71c0730.nc b/argopy/tests/test_data/df16c31e8ba4856676441c17ef6738c6fb34459a3a89511a9ad31369f71c0730.nc new file mode 100644 index 00000000..2ec659a5 Binary files /dev/null and b/argopy/tests/test_data/df16c31e8ba4856676441c17ef6738c6fb34459a3a89511a9ad31369f71c0730.nc differ diff --git a/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json b/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json new file mode 100644 index 00000000..fa6ab34b --- /dev/null +++ b/argopy/tests/test_data/dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-10T18:47:00","lat":42.0456,"lon":4.6818,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903632"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T09:31:00","lat":42.9671,"lon":8.3503,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904239"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"BULGARIA"},"nameShort":"BulArgo"},"ptfDepl":{"deplDate":"2022-11-03T04:54:00","lat":42.9337,"lon":28.859,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906866"},{"program":{"country":{"nameShort":"SAUDI ARABIA"},"nameShort":"Argo_SAUDI_ARABIA"},"ptfDepl":{"deplDate":"2022-03-29T13:19:00","lat":26.85,"lon":35.13,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906868"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-01T20:50:00","lat":74.505,"lon":15.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904242"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-05-31T01:00:00","lat":72.2545,"lon":19.6202,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901007"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T21:20:00","lat":69.8045,"lon":0.834,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902465"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T12:59:00","lat":69.903,"lon":3.499,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902464"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-06-05T19:23:00","lat":64.8,"lon":23.4833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904243"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-11T18:04:00","lat":14.992,"lon":133.6309,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902470"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-16T07:05:00","lat":17.0,"lon":132.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901012"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-10-13T09:49:00","lat":15.0,"lon":132.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906968"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-10-03T00:00:00","lat":78.0667,"lon":29.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990507"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2022-01-01T18:28:00","lat":29.51,"lon":177.54,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906506"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-04T13:14:00","lat":24.67,"lon":165.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906502"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-01-06T19:43:00","lat":19.59,"lon":155.02,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906503"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-06T21:58:00","lat":30.47,"lon":134.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906510"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-08T12:42:00","lat":30.15,"lon":138.46,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906511"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-03T08:49:00","lat":26.44,"lon":136.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-29T09:07:00","lat":30.08,"lon":179.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906516"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-14T10:58:00","lat":29.95,"lon":151.34,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906518"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-01T23:59:00","lat":21.02,"lon":140.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906519"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-10T07:15:00","lat":30.07,"lon":143.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906522"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-19T09:35:00","lat":30.03,"lon":160.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906515"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2022-05-24T04:58:00","lat":30.1,"lon":169.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906512"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-31T14:42:00","lat":57.1945,"lon":20.0199,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904226"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2022-11-16T12:04:00","lat":39.2717,"lon":1.987,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902467"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2022-07-20T10:46:00","lat":39.0,"lon":0.73,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903635"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-07T23:00:00","lat":16.78,"lon":150.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906764"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-07T12:00:00","lat":17.93,"lon":151.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906763"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-03T18:00:00","lat":26.16,"lon":168.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906761"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-05T16:00:00","lat":22.28,"lon":160.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-02T06:00:00","lat":28.69,"lon":175.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2022-01-02T23:00:00","lat":27.57,"lon":172.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-09-09T03:00:00","lat":2.0,"lon":180.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906829"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-01-15T14:50:00","lat":24.952,"lon":136.981,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903694"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-01-16T10:26:00","lat":27.949,"lon":137.001,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903695"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-02-09T14:55:00","lat":38.957,"lon":143.126,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903696"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-03T13:53:00","lat":40.7276,"lon":2.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903818"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-02-23T16:20:00","lat":40.5575,"lon":2.6215,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903816"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-04T09:33:00","lat":40.8882,"lon":2.7773,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903817"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-03-21T01:26:00","lat":33.056,"lon":138.815,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903697"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-03-17T10:17:00","lat":43.6778,"lon":14.2697,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903815"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-04-19T13:24:15","lat":11.508,"lon":86.0,"noSite":0},"ptfModel":{"nameShort":"HM2000"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902837"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-18T01:47:00","lat":34.3372,"lon":143.9438,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903703"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-04-19T00:44:00","lat":33.9988,"lon":149.0322,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903667"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-05-03T02:05:00","lat":29.015,"lon":176.1317,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903701"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T23:46:00","lat":39.668,"lon":147.8792,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903702"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T08:54:00","lat":41.3113,"lon":146.6777,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903698"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-04-25T14:15:00","lat":40.6647,"lon":147.1577,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903699"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-05-02T01:22:22","lat":46.9997,"lon":160.0413,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903700"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-21T18:49:00","lat":38.8915,"lon":13.2905,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903820"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-19T21:02:00","lat":40.5058,"lon":10.9962,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903819"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-05-25T07:57:00","lat":35.9032,"lon":14.1008,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903821"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-01T02:22:00","lat":32.2983,"lon":136.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903704"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-01T14:26:00","lat":29.3097,"lon":135.9917,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903705"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-06-01T11:41:00","lat":36.2643,"lon":20.5184,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903822"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-07-04T05:38:00","lat":42.398,"lon":152.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902857"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-12T05:53:00","lat":69.9,"lon":6.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903590"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-07-04T09:07:00","lat":40.6813,"lon":150.991,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-25T01:35:00","lat":48.9858,"lon":178.2178,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903492"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-06-30T09:06:00","lat":26.9886,"lon":133.9897,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-24T17:00:00","lat":16.9833,"lon":178.5,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-16T05:26:00","lat":29.2883,"lon":177.7783,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-15T08:27:00","lat":32.1617,"lon":179.6683,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-20T19:00:00","lat":24.09,"lon":177.51,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906805"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-25T07:03:00","lat":14.505,"lon":178.965,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906806"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-21T10:00:00","lat":21.4598,"lon":176.924,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906808"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-07-03T00:12:00","lat":44.3973,"lon":155.5742,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906816"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-27T00:56:00","lat":54.9608,"lon":175.1197,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-30T19:30:00","lat":48.1347,"lon":163.425,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-28T19:33:00","lat":50.1573,"lon":171.9137,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903490"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-26T19:10:00","lat":12.35,"lon":179.2333,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906809"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-07-20T18:58:00","lat":32.3342,"lon":135.6679,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903707"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-07-06T05:22:00","lat":37.01,"lon":129.92,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903636"},{"program":{"country":{"nameShort":"SOUTH KOREA"},"nameShort":"Argo_KIOST"},"ptfDepl":{"deplDate":"2022-07-06T05:22:00","lat":37.01,"lon":129.92,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903637"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-07-30T21:45:00","lat":17.9353,"lon":148.0512,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902013"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-08-11T22:45:00","lat":21.3222,"lon":149.8605,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902014"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2022-07-24T16:06:00","lat":20.16,"lon":130.51,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902880"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2022-08-13T23:10:00","lat":15.8428,"lon":143.3893,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902012"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-08-23T22:54:00","lat":27.9898,"lon":138.0549,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903710"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-08-22T14:50:00","lat":25.0097,"lon":133.0188,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903709"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-04T00:27:00","lat":9.9972,"lon":136.9808,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5905872"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-01T10:49:00","lat":28.4655,"lon":140.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903711"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-06T11:08:00","lat":25.9927,"lon":132.044,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-08-15T11:19:00","lat":19.283,"lon":155.7893,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906818"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-08-23T10:00:00","lat":10.0,"lon":164.9603,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906817"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-09-11T02:18:00","lat":20.0267,"lon":137.0565,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903708"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-08-31T07:00:00","lat":14.06,"lon":133.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906391"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-02T02:30:00","lat":18.05,"lon":132.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906392"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-04T04:15:00","lat":23.42,"lon":131.56,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906393"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-07T10:31:00","lat":27.963,"lon":137.001,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903712"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-09T06:37:00","lat":30.001,"lon":137.04,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903714"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-10-11T03:38:00","lat":31.995,"lon":137.024,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903716"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-09-12T01:08:00","lat":30.4133,"lon":173.3383,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903730"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_JAMSTEC"},"ptfDepl":{"deplDate":"2022-10-23T03:38:00","lat":39.2163,"lon":145.3983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903731"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"BULGARIA"},"nameShort":"BulArgo"},"ptfDepl":{"deplDate":"2022-11-03T08:05:00","lat":43.1216,"lon":29.1122,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902006"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_CHINA"},"ptfDepl":{"deplDate":"2022-11-14T04:27:00","lat":24.21,"lon":134.835,"noSite":null},"ptfModel":{"nameShort":"HM2000"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2902881"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-26T15:30:00","lat":39.75,"lon":24.15,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901017"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-11-21T08:42:00","lat":34.31,"lon":33.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-11-25T17:18:40","lat":33.9432,"lon":28.1062,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-05T16:38:00","lat":10.9438,"lon":62.0342,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903137"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-06T11:13:00","lat":8.3911,"lon":64.9986,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903140"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-04T19:35:00","lat":13.8739,"lon":58.5501,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903142"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-12-07T04:52:00","lat":5.8121,"lon":68.0403,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903138"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-12-11T00:50:00","lat":28.981,"lon":134.959,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903717"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-15T13:20:00","lat":34.8961,"lon":23.4967,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903826"},{"program":{"country":{"nameShort":"JAPAN"},"nameShort":"Argo_eq_JMA"},"ptfDepl":{"deplDate":"2022-12-16T22:08:00","lat":32.9961,"lon":139.3458,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903718"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-14T08:13:00","lat":41.4961,"lon":18.1179,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903825"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"Argo_eq_CHINA"},"ptfDepl":{"deplDate":"2022-07-01T08:10:00","lat":39.01,"lon":149.99,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2902878"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-18T05:18:00","lat":35.7674,"lon":22.2987,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903828"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-06-19T04:45:00","lat":26.4733,"lon":178.1817,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5906807"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2022-01-01T05:35:00","lat":3.4505,"lon":77.5037,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2022-12-16T21:10:00","lat":35.6,"lon":22.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903827"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2022-10-03T00:00:00","lat":78.0667,"lon":29.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906973"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-10-03T14:24:00","lat":81.0,"lon":15.88,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903641"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-07-16T00:00:00","lat":80.6791,"lon":15.3,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904222"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-04T20:50:00","lat":74.5022,"lon":0.9805,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-01T20:51:00","lat":82.2372,"lon":34.9264,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903143"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-01T20:33:00","lat":82.2509,"lon":34.9568,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903144"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-25T01:10:00","lat":82.2501,"lon":33.8817,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903145"},{"program":{"country":{"nameShort":"POLAND"},"nameShort":"Argo_POLAND"},"ptfDepl":{"deplDate":"2022-07-26T23:08:00","lat":76.5102,"lon":0.9225,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-07-16T05:00:00","lat":81.0,"lon":12.0385,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904221"}],"total":264} \ No newline at end of file diff --git a/argopy/tests/test_data/dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316.nc b/argopy/tests/test_data/dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316.nc new file mode 100644 index 00000000..58d6caee Binary files /dev/null and b/argopy/tests/test_data/dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316.nc differ diff --git a/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json b/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json new file mode 100644 index 00000000..56045010 --- /dev/null +++ b/argopy/tests/test_data/e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-15T00:00:00","lat":37.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900511"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-09-10T08:27:00","lat":56.9005,"lon":-31.0731,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900563"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-11T12:00:00","lat":48.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900583"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-Previmer"},"ptfDepl":{"deplDate":"2012-06-17T20:32:00","lat":46.897,"lon":-4.3367,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901421"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-16T23:14:00","lat":56.6108,"lon":-48.0125,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901417"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-20T23:26:00","lat":56.3731,"lon":-43.9359,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901418"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-24T05:24:00","lat":56.4918,"lon":-40.958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901419"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-15T12:00:00","lat":48.7112,"lon":-17.0953,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-20T02:15:00","lat":75.43,"lon":-6.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903887"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-20T00:00:00","lat":64.885,"lon":-30.0048,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900157"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-20T00:00:00","lat":63.5771,"lon":-29.9601,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900158"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-26T00:00:00","lat":58.7481,"lon":-27.249,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900156"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-27T00:00:00","lat":57.53,"lon":-23.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900154"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-29T00:00:00","lat":54.76,"lon":-30.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900161"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-01T00:00:00","lat":50.61,"lon":-29.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900159"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-02T00:00:00","lat":46.67,"lon":-28.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900160"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-04T00:00:00","lat":47.42,"lon":-22.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900152"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-08-06T00:00:00","lat":48.54,"lon":-15.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900153"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2003-07-01T00:00:00","lat":46.0,"lon":-30.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900210"},{"program":{"country":{"nameShort":"COSTA RICA"},"nameShort":"Argo_COSTA_RICA"},"ptfDepl":{"deplDate":"2005-12-07T00:00:00","lat":9.0,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":10.05,"lon":-26.1833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900704"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":4.9014,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-02T00:00:00","lat":19.9833,"lon":-20.9842,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900608"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-25T00:00:00","lat":44.5,"lon":-16.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900045"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-25T00:00:00","lat":43.02,"lon":-18.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900046"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":75.005,"lon":-0.081,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900072"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":75.31,"lon":-0.044,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900071"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2001-03-16T00:00:00","lat":74.992,"lon":-1.464,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-16T00:00:00","lat":1.004,"lon":-25.506,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900017"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-18T00:00:00","lat":2.022,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2000-01-18T00:00:00","lat":1.01,"lon":-23.001,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900010"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-27T00:00:00","lat":32.667,"lon":-71.282,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900150"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-27T00:00:00","lat":28.918,"lon":-70.148,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900151"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-28T00:00:00","lat":21.348,"lon":-67.175,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-28T00:00:00","lat":24.973,"lon":-68.572,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900149"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-09-06T00:00:00","lat":52.41,"lon":-18.04,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-08-29T00:00:00","lat":32.2,"lon":-64.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100951"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-12T00:00:00","lat":12.78,"lon":-50.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100952"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-12T00:00:00","lat":10.72,"lon":-46.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100953"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-13T00:00:00","lat":6.64,"lon":-40.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900043"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-14T00:00:00","lat":2.39,"lon":-33.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2000-12-15T00:00:00","lat":0.44,"lon":-30.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900041"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-23T00:00:00","lat":9.55,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900059"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-14T00:00:00","lat":43.05,"lon":-48.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900187"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-24T00:00:00","lat":48.83,"lon":-43.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900188"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-05-24T00:00:00","lat":48.79,"lon":-44.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900189"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-08T00:00:00","lat":52.96,"lon":-51.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900192"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-08T00:00:00","lat":53.12,"lon":-50.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900193"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-09T00:00:00","lat":53.03,"lon":-50.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900191"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2001-06-09T00:00:00","lat":53.08,"lon":-50.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900190"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-04-25T00:00:00","lat":43.5,"lon":-15.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-04-26T00:00:00","lat":40.5,"lon":-15.333,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900031"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-20T00:00:00","lat":39.0,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900034"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-22T00:00:00","lat":41.5,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900036"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2000-09-26T00:00:00","lat":44.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900040"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-04T00:00:00","lat":43.99,"lon":-21.335,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900042"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-05T00:00:00","lat":44.99,"lon":-18.669,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900043"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-04-21T00:00:00","lat":42.25,"lon":-17.666,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900044"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-15T00:00:00","lat":43.455,"lon":-57.528,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900882"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-02T00:00:00","lat":46.495,"lon":-27.834,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900022"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-02T00:00:00","lat":46.979,"lon":-29.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900023"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-06T00:00:00","lat":43.03,"lon":-31.395,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900024"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-06-05T00:00:00","lat":43.935,"lon":-32.985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900025"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-20T00:00:00","lat":45.842,"lon":-29.598,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900026"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-20T00:00:00","lat":45.336,"lon":-32.161,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900027"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2000-05-29T00:00:00","lat":44.618,"lon":-35.968,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900028"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-26T00:00:00","lat":48.048,"lon":-19.662,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900203"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-27T00:00:00","lat":47.893,"lon":-20.66,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900204"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-28T00:00:00","lat":47.383,"lon":-24.273,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900205"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-29T00:00:00","lat":47.223,"lon":-25.877,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900206"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":46.408,"lon":-29.908,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900207"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-06-03T00:00:00","lat":47.38,"lon":-24.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900209"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-04T00:00:00","lat":52.093,"lon":-28.816,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900019"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-05T00:00:00","lat":51.717,"lon":-35.049,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900020"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1999-07-01T00:00:00","lat":51.022,"lon":-24.672,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900021"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-19T00:00:00","lat":44.949,"lon":-34.575,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":45.885,"lon":-31.583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900057"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":46.405,"lon":-29.894,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900058"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-21T00:00:00","lat":46.503,"lon":-33.165,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900054"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2001-05-19T00:00:00","lat":45.313,"lon":-33.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900055"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"2002-06-02T00:00:00","lat":45.377,"lon":-33.502,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900208"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-11-17T00:00:00","lat":42.569,"lon":-49.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900134"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2001-11-22T00:00:00","lat":61.48,"lon":-37.416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900083"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2001-11-21T00:00:00","lat":60.65,"lon":-34.308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900082"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-01-01T00:00:00","lat":45.983,"lon":-17.032,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900211"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-01-01T00:00:00","lat":45.995,"lon":-17.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900212"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-06-08T00:00:00","lat":43.0,"lon":-31.817,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900213"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-06-06T00:00:00","lat":44.167,"lon":-32.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900214"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":45.417,"lon":-33.283,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900243"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-03T00:00:00","lat":45.6,"lon":-32.467,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900244"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":45.883,"lon":-31.667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900245"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-01T00:00:00","lat":46.0,"lon":-30.867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900246"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":46.4,"lon":-29.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900247"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":46.817,"lon":-27.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900248"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":47.25,"lon":-25.867,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900249"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2004-07-03T00:00:00","lat":47.417,"lon":-24.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900250"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":52.083,"lon":-49.167,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2007-02-11T00:00:00","lat":36.686,"lon":-66.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-11T16:37:00","lat":52.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2009-10-12T01:45:00","lat":31.667,"lon":-64.172,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-01-16T02:14:00","lat":25.84,"lon":-88.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902286"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-09-19T10:51:00","lat":27.66,"lon":-87.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902288"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2011-07-19T06:20:00","lat":25.65,"lon":-86.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_GOM-BOEM_eq"},"ptfDepl":{"deplDate":"2012-01-12T09:06:00","lat":27.5,"lon":-88.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902285"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2012-11-30T04:12:00","lat":31.6884,"lon":-64.1266,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903890"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-10-05T12:38:00","lat":31.6384,"lon":-64.1999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2010-11-12T02:56:00","lat":31.71,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903377"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2007-02-19T00:00:00","lat":37.893,"lon":-54.014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900480"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-20T05:16:00","lat":75.545,"lon":-6.6199,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903724"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-MBARI_eq"},"ptfDepl":{"deplDate":"2012-08-23T00:03:00","lat":31.705,"lon":-64.1633,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903892"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-22T23:57:00","lat":31.7034,"lon":-64.1633,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903889"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-29T16:10:00","lat":4.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-30T18:18:00","lat":18.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903283"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-28T16:41:00","lat":1.775,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-04-30T16:06:00","lat":8.07,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-30T09:02:00","lat":17.1167,"lon":-37.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903281"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-06-29T22:28:00","lat":15.0667,"lon":-35.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-12T03:39:00","lat":28.005,"lon":-43.3849,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904008"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-11T05:48:00","lat":30.0084,"lon":-47.0933,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904001"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-08T18:49:00","lat":36.7184,"lon":-58.9166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903997"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-08-30T18:22:00","lat":36.37,"lon":-58.2799,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903996"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-14T01:35:00","lat":24.2534,"lon":-37.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904017"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-13T23:29:00","lat":24.2584,"lon":-38.2566,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904015"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T02:05:00","lat":25.2601,"lon":-37.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904016"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T06:09:00","lat":25.2684,"lon":-38.7466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904006"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T05:15:00","lat":25.2534,"lon":-38.2666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-15T06:54:00","lat":24.7567,"lon":-38.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903998"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-15T04:27:00","lat":24.7534,"lon":-37.7483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903999"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-22T09:58:00","lat":25.3184,"lon":-37.0783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904013"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-18T01:03:00","lat":24.2601,"lon":-38.7466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904010"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T23:14:00","lat":23.7484,"lon":-38.7366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904007"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T19:54:00","lat":23.7434,"lon":-38.2383,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904012"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T16:16:00","lat":23.7467,"lon":-37.7483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904011"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T10:27:00","lat":24.2584,"lon":-37.2483,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904003"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T07:25:00","lat":24.7534,"lon":-37.2466,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904004"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-16T09:44:00","lat":24.7617,"lon":-38.7366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904009"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-08-28T14:35:00","lat":23.7417,"lon":-37.2516,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904005"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-07T03:49:00","lat":30.9967,"lon":-31.2116,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904000"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-06T17:36:00","lat":29.9734,"lon":-33.3233,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903995"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-06T05:58:00","lat":29.0101,"lon":-35.5133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-10-05T16:43:00","lat":26.9967,"lon":-36.9416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2012-09-30T12:33:00","lat":25.8051,"lon":-38.755,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904014"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SPURS__eq_"},"ptfDepl":{"deplDate":"2012-09-17T03:31:00","lat":25.2484,"lon":-37.2299,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904002"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-11T12:55:00","lat":58.0967,"lon":-23.2366,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904176"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-10T19:05:00","lat":56.8251,"lon":-28.145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904173"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-10T12:31:00","lat":56.2351,"lon":-30.6666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904175"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2014-02-08T13:37:00","lat":49.3284,"lon":-39.9433,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904174"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-06-01T00:00:00","lat":55.852,"lon":-53.408,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900537"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-09-18T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900621"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-09-20T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900622"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-01-01T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900202"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-21T16:04:00","lat":36.23,"lon":-12.382,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901237"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-01T06:10:00","lat":24.78,"lon":-19.57,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900764"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-01T00:00:00","lat":24.49,"lon":-49.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900774"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-27T03:45:00","lat":24.49,"lon":-61.76,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900777"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-04T10:32:00","lat":24.501,"lon":-24.708,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900769"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-07T18:50:00","lat":24.501,"lon":-29.583,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900770"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-10T12:22:00","lat":24.501,"lon":-37.584,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900771"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-23T09:00:00","lat":24.501,"lon":-55.26,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900775"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-26T20:30:00","lat":24.49,"lon":-58.629,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900776"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-28T19:45:00","lat":24.505,"lon":-63.833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900778"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-03-02T09:45:00","lat":24.497,"lon":-66.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900779"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-15T04:37:00","lat":24.501,"lon":-40.387,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900773"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2011-02-03T05:15:00","lat":24.825,"lon":-22.47,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900765"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-24T12:20:00","lat":20.28,"lon":-24.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900767"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-26T12:45:00","lat":12.51,"lon":-26.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900768"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-12-16T12:35:00","lat":35.2,"lon":-9.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900766"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-13T12:53:00","lat":29.1,"lon":-15.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900789"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2012-12-10T00:04:00","lat":27.655,"lon":-17.914,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901241"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-24T00:00:00","lat":22.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900277"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-01T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902697"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-01T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902706"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-11-15T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902707"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-04-15T12:00:00","lat":58.55,"lon":-30.19,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902695"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-04-15T00:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902709"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-11-15T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902684"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-02-01T10:00:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902708"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-02-01T10:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902696"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-12-03T00:00:00","lat":47.0,"lon":-43.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900504"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-26T00:00:00","lat":0.01,"lon":-19.97,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901744"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-17T00:00:00","lat":58.91,"lon":-31.91,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901751"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-20T00:00:00","lat":60.8317,"lon":-21.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901752"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":57.5866,"lon":-28.4368,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901595"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-10T23:20:00","lat":59.17,"lon":-34.47,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901754"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T00:00:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901602"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T13:31:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901758"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-07-03T13:32:00","lat":52.7313,"lon":-35.0803,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901759"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":57.97,"lon":-29.28,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901594"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-19T07:15:00","lat":10.877,"lon":-22.671,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-13T10:10:00","lat":0.2602,"lon":-26.764,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901706"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-04-15T08:15:00","lat":3.7305,"lon":-25.2352,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901703"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2012-09-04T00:00:00","lat":74.99,"lon":-3.337,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901903"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2012-09-01T12:00:00","lat":74.999,"lon":-1.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901904"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T17:28:00","lat":46.0336,"lon":-7.42,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901031"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":24.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":60.297,"lon":-48.585,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900880"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-12T00:00:00","lat":42.527,"lon":-61.415,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900881"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-25T00:00:00","lat":64.8333,"lon":-6.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900334"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-25T00:00:00","lat":65.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900335"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":45.0,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900048"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-06T00:00:00","lat":22.5364,"lon":-67.7858,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900590"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-20T00:00:00","lat":21.2667,"lon":-58.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900746"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-22T00:00:00","lat":17.9167,"lon":-52.0117,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900747"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-06-26T00:00:00","lat":44.498,"lon":-55.423,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900136"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-04-20T15:15:00","lat":27.52,"lon":-14.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901240"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-27T00:00:00","lat":46.067,"lon":-31.141,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900016"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-25T00:00:00","lat":46.485,"lon":-29.805,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900017"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_BSH"},"ptfDepl":{"deplDate":"1998-05-26T00:00:00","lat":45.346,"lon":-32.736,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900018"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-27T00:00:00","lat":43.7354,"lon":-55.8087,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902100"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-02T00:00:00","lat":42.2381,"lon":-61.1828,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902102"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-26T18:12:00","lat":24.5,"lon":-64.02,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901183"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-28T14:52:00","lat":24.5,"lon":-60.35,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901182"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-12-28T00:00:00","lat":24.4992,"lon":-60.3498,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901188"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-26T19:12:00","lat":23.515,"lon":-51.9938,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901284"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-06-06T11:35:00","lat":28.1972,"lon":-50.2787,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901285"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-06-10T15:59:00","lat":28.4361,"lon":-62.4935,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901289"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-09-27T05:55:00","lat":43.7833,"lon":-57.8137,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901760"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-09-26T18:23:00","lat":43.4714,"lon":-57.5198,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901761"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-10-02T09:42:00","lat":44.2436,"lon":-55.8574,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901757"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-10-02T02:50:00","lat":43.7247,"lon":-55.8144,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901758"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-22T14:33:00","lat":34.6733,"lon":-64.195,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901216"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-01-15T23:53:00","lat":24.5,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901187"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-28T10:38:00","lat":26.1124,"lon":-45.0678,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901117"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-23T12:10:00","lat":40.34,"lon":-12.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901631"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-31T00:00:00","lat":46.52,"lon":-19.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901632"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-21T00:00:00","lat":22.0016,"lon":-25.5035,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900275"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-01T00:00:00","lat":41.9311,"lon":-64.4649,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901081"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":60.317,"lon":-48.586,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900422"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-30T00:00:00","lat":59.39,"lon":-49.31,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900421"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":59.711,"lon":-49.126,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900408"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.8495,"lon":-6.0001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900358"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.998,"lon":-6.503,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900359"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-13T00:00:00","lat":45.9995,"lon":-7.234,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900360"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":43.934,"lon":-9.1705,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900361"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T05:35:00","lat":40.6347,"lon":-60.152,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901755"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T08:02:00","lat":57.5955,"lon":-51.5633,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901754"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-15T06:04:00","lat":58.5453,"lon":-50.3971,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901746"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T14:04:00","lat":57.3935,"lon":-51.7782,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901752"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-20T07:43:00","lat":59.4909,"lon":-49.484,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901157"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":45.9295,"lon":-7.0315,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900133"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":45.9305,"lon":-7.0277,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":45.0048,"lon":-7.9048,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":45.0019,"lon":-7.9117,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900136"},{"program":{"country":{"nameShort":"COSTA RICA"},"nameShort":"Argo_COSTA_RICA"},"ptfDepl":{"deplDate":"2005-12-07T00:00:00","lat":10.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900379"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-07-29T00:00:00","lat":50.162,"lon":-48.472,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900628"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-03T00:00:00","lat":55.42,"lon":-53.983,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-08T00:00:00","lat":60.297,"lon":-48.582,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900129"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-06T00:00:00","lat":42.35,"lon":-43.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900261"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-04T00:00:00","lat":43.861,"lon":-38.563,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900258"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-07T00:00:00","lat":41.656,"lon":-45.028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900262"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-05T00:00:00","lat":43.37,"lon":-40.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900259"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":54.392,"lon":-47.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900297"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":55.957,"lon":-46.022,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900298"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-14T00:00:00","lat":39.773,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900221"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-08T00:00:00","lat":54.503,"lon":-16.178,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900184"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-10T00:00:00","lat":58.894,"lon":-20.148,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900185"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-08-12T00:00:00","lat":60.927,"lon":-22.098,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900186"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-10T00:00:00","lat":58.292,"lon":-43.301,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900299"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-19T00:00:00","lat":62.633,"lon":-34.695,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900183"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-12T00:00:00","lat":59.517,"lon":-37.618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900300"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-23T00:00:00","lat":43.524,"lon":-18.072,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-25T00:00:00","lat":41.8153,"lon":-63.5012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900249"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-10-30T00:00:00","lat":41.8205,"lon":-63.4972,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900133"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-07-10T19:32:00","lat":46.967,"lon":-43.251,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901104"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-06T00:00:00","lat":0.041,"lon":-9.916,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900207"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-07T00:00:00","lat":2.008,"lon":-8.283,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900208"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-03T00:00:00","lat":3.0,"lon":-11.7,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900205"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2003-05-03T00:00:00","lat":1.514,"lon":-10.802,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900206"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-10-13T00:00:00","lat":0.7505,"lon":-1.996,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900119"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-10-12T00:00:00","lat":1.7521,"lon":-0.0507,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900118"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900618"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900616"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":46.25,"lon":-4.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900620"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":51.22,"lon":-19.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900170"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-07-01T00:00:00","lat":44.074,"lon":-17.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900179"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-13T00:00:00","lat":49.99,"lon":-15.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900169"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-07-07T00:00:00","lat":41.082,"lon":-13.496,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900180"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-18T00:00:00","lat":59.394,"lon":-41.144,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900225"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":49.9,"lon":-22.31,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900177"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":59.02,"lon":-39.995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900224"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":48.034,"lon":-20.845,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900178"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-26T00:00:00","lat":51.767,"lon":-23.782,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900176"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":54.17,"lon":-26.49,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900173"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-15T00:00:00","lat":55.117,"lon":-28.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900174"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":57.627,"lon":-36.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900223"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-17T00:00:00","lat":58.317,"lon":-38.007,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900222"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-16T00:00:00","lat":56.022,"lon":-31.543,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900175"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":53.21,"lon":-24.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900172"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-24T00:00:00","lat":55.147,"lon":-26.422,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900182"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-10T00:00:00","lat":35.25,"lon":-20.5133,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900181"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-22T00:00:00","lat":32.161,"lon":-34.768,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900079"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-15T00:00:00","lat":34.33,"lon":-28.583,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900078"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-29T00:00:00","lat":43.498,"lon":-12.003,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900132"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-11T00:00:00","lat":33.957,"lon":-23.165,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900076"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-11T00:00:00","lat":33.01,"lon":-25.0375,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900081"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2002-09-12T00:00:00","lat":30.88,"lon":-26.195,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900108"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-09-12T00:00:00","lat":30.9035,"lon":-26.187,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900077"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-06T00:00:00","lat":39.175,"lon":-13.801,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900163"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":39.328,"lon":-17.308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900166"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":39.339,"lon":-20.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900167"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-10T00:00:00","lat":39.0,"lon":-35.449,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900168"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-11T00:00:00","lat":38.726,"lon":-37.297,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900214"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":38.089,"lon":-40.922,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900216"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":37.731,"lon":-42.723,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900217"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-12T00:00:00","lat":37.353,"lon":-44.505,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900218"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-13T00:00:00","lat":36.939,"lon":-46.261,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900219"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-14T00:00:00","lat":38.139,"lon":-49.011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900220"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-05-11T00:00:00","lat":38.419,"lon":-39.12,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-21T00:00:00","lat":57.373,"lon":-51.762,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900526"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-27T00:00:00","lat":60.308,"lon":-48.618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900495"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-22T00:00:00","lat":55.871,"lon":-53.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900528"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-06-30T00:00:00","lat":48.7032,"lon":-46.8417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900234"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-06T00:00:00","lat":44.333,"lon":-3.781,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900366"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.044,"lon":-10.486,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900367"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.0428,"lon":-10.4895,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900369"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-19T00:00:00","lat":40.0422,"lon":-10.4912,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900371"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900368"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.037,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900370"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":38.3,"lon":-10.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900372"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-09T00:00:00","lat":45.2251,"lon":-4.382,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900364"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-09T00:00:00","lat":45.2248,"lon":-4.3822,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900365"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":41.686,"lon":-14.275,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900402"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-05-28T00:00:00","lat":40.3348,"lon":-11.7785,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900399"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-06-19T00:00:00","lat":1.501,"lon":-9.998,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900544"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-06-20T00:00:00","lat":2.5,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900553"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-15T00:00:00","lat":59.4219,"lon":-37.0385,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900239"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-16T00:00:00","lat":59.1585,"lon":-34.4858,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900240"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-18T00:00:00","lat":57.741,"lon":-28.8542,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-20T00:00:00","lat":55.1386,"lon":-26.3933,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900242"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":52.9997,"lon":-20.0011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900273"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":61.6623,"lon":-15.497,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900450"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-24T00:00:00","lat":61.999,"lon":-34.993,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900451"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":62.318,"lon":-16.1785,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900452"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-04T00:00:00","lat":48.422,"lon":-20.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900403"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":45.795,"lon":-19.089,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900400"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-13T00:00:00","lat":59.112,"lon":-33.855,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900395"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":55.15,"lon":-26.41,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900401"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":57.005,"lon":-27.881,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900405"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-11T00:00:00","lat":57.97,"lon":-29.276,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900449"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-08T00:00:00","lat":53.828,"lon":-25.388,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900396"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-06T00:00:00","lat":51.028,"lon":-23.1947,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900397"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":52.519,"lon":-24.3645,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900398"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":51.7728,"lon":-23.777,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900406"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2006-06-01T00:00:00","lat":43.473,"lon":-16.64,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900404"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.097,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900624"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.098,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.097,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-05-10T00:00:00","lat":44.568,"lon":-7.096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900617"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T08:13:00","lat":56.1514,"lon":-53.1302,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901751"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T11:12:00","lat":41.0264,"lon":-60.4287,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901756"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-09-16T00:00:00","lat":2.0,"lon":-2.007,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900557"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-14T00:00:00","lat":59.7217,"lon":-40.2583,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900274"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-06-27T00:00:00","lat":44.377,"lon":-17.8172,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900272"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-14T00:00:00","lat":56.52,"lon":-52.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901075"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-15T00:00:00","lat":58.25,"lon":-50.959,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901076"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-17T00:00:00","lat":60.259,"lon":-48.701,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901077"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":42.243,"lon":-61.198,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901080"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-31T00:00:00","lat":41.932,"lon":-64.475,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900507"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-27T00:00:00","lat":55.611,"lon":-53.632,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900682"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":57.375,"lon":-51.795,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900876"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-22T00:00:00","lat":43.491,"lon":-57.455,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900627"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-10-24T00:00:00","lat":42.543,"lon":-61.399,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900506"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-12T00:00:00","lat":42.5431,"lon":-61.4062,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901082"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-16T14:12:00","lat":50.752,"lon":-45.5205,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901090"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-27T09:04:00","lat":57.3791,"lon":-51.7962,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901092"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-18T13:00:00","lat":55.4118,"lon":-53.7815,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901091"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-06-01T16:01:00","lat":41.7873,"lon":-60.8948,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901102"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-06-02T18:39:00","lat":42.5572,"lon":-61.3995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901101"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T22:24:00","lat":56.9761,"lon":-52.2581,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901744"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-24T13:12:00","lat":39.7422,"lon":-59.536,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901745"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-13T01:05:00","lat":55.8331,"lon":-53.4603,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901759"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-14T16:55:00","lat":57.8067,"lon":-51.3235,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901753"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-18T15:22:00","lat":57.9959,"lon":-51.0893,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901747"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-19T02:37:00","lat":57.1672,"lon":-52.002,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901750"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-23T11:49:00","lat":60.1772,"lon":-48.7495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901094"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-23T19:58:00","lat":60.3243,"lon":-48.7145,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901095"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-17T11:36:00","lat":57.8052,"lon":-51.3741,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901156"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-25T23:49:00","lat":41.796,"lon":-60.941,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901749"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-07T00:00:00","lat":42.206,"lon":-60.317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901084"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-19T02:01:00","lat":60.3322,"lon":-48.6085,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901158"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-18T03:50:00","lat":58.644,"lon":-50.4113,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901150"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-15T00:13:00","lat":58.2524,"lon":-50.7994,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901748"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-17T20:05:00","lat":58.2458,"lon":-50.8772,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901142"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":53.696,"lon":-48.703,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900683"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-20T00:00:00","lat":50.5,"lon":-45.486,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900677"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-21T00:00:00","lat":50.499,"lon":-42.031,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900678"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-21T00:00:00","lat":50.498,"lon":-43.951,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900679"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-05T00:00:00","lat":24.498,"lon":-22.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900072"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-09T00:00:00","lat":24.51,"lon":-29.996,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900067"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-03T00:00:00","lat":25.993,"lon":-18.133,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900063"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-08T00:00:00","lat":24.509,"lon":-27.002,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900066"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-10T00:00:00","lat":24.505,"lon":-33.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900073"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-05T00:00:00","lat":24.009,"lon":-20.768,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900064"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-17T00:00:00","lat":45.7151,"lon":-6.9071,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-06-17T00:00:00","lat":45.7153,"lon":-6.9097,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900138"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-11-13T00:00:00","lat":46.9987,"lon":-43.223,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900248"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-12-06T03:01:00","lat":42.589,"lon":-49.682,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901103"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-13T00:00:00","lat":36.4998,"lon":-47.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900233"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-01-10T00:00:00","lat":24.4968,"lon":-32.365,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901186"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-12-25T00:00:00","lat":24.5022,"lon":-66.9537,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901185"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-12-29T00:00:00","lat":24.4993,"lon":-58.1503,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-09-26T00:00:00","lat":74.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900609"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-10-13T00:00:00","lat":43.128,"lon":-13.49,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900162"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-20T00:00:00","lat":40.668,"lon":-18.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900129"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-12T00:00:00","lat":24.523,"lon":-39.166,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900208"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-14T00:00:00","lat":24.506,"lon":-42.013,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900209"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-16T00:00:00","lat":30.308,"lon":-41.975,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900210"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-17T00:00:00","lat":29.999,"lon":-38.981,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900211"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-19T00:00:00","lat":30.498,"lon":-34.513,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900212"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-15T00:00:00","lat":27.509,"lon":-41.994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900213"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-20T00:00:00","lat":29.998,"lon":-30.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900074"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-21T00:00:00","lat":30.0,"lon":-24.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900075"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-21T00:00:00","lat":30.005,"lon":-27.039,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900068"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":30.0,"lon":-21.005,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900070"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-22T00:00:00","lat":30.0,"lon":-17.997,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900071"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-11T00:00:00","lat":24.503,"lon":-36.011,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900207"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-10-13T00:00:00","lat":43.47,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901083"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":6.002,"lon":-20.717,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-27T00:00:00","lat":3.01,"lon":-21.859,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900520"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":0.013,"lon":-23.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900521"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":0.013,"lon":-23.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900522"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-01T00:00:00","lat":4.1122,"lon":-16.997,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900523"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-01T00:00:00","lat":4.4236,"lon":-14.991,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900524"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-06-02T00:00:00","lat":4.3352,"lon":-12.999,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900517"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2005-05-31T00:00:00","lat":2.0972,"lon":-20.005,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900518"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-11T00:00:00","lat":4.99,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900650"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-03T00:00:00","lat":5.04,"lon":-22.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900652"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":0.057,"lon":-35.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900653"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-06T00:00:00","lat":13.001,"lon":-23.008,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900655"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-07-02T00:00:00","lat":2.99,"lon":-22.993,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-12T00:00:00","lat":2.0,"lon":-32.501,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900658"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-24T00:00:00","lat":0.004,"lon":-14.009,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900662"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":0.026,"lon":-9.976,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900663"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-07T00:00:00","lat":48.5,"lon":-32.538,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900267"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-05T00:00:00","lat":45.0,"lon":-24.724,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900265"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-08T00:00:00","lat":50.5,"lon":-34.331,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900268"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-08T00:00:00","lat":51.427,"lon":-35.433,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900269"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-08-06T00:00:00","lat":47.0,"lon":-29.534,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900266"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-05T00:00:00","lat":60.4996,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901177"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-07T00:00:00","lat":59.3339,"lon":-18.1623,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901176"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-26T00:00:00","lat":58.0036,"lon":-23.994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2015-06-24T00:00:00","lat":58.0003,"lon":-20.9999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901178"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-11T00:00:00","lat":46.963,"lon":-9.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900323"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-11T00:00:00","lat":46.118,"lon":-10.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900324"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-10T00:00:00","lat":44.5,"lon":-14.72,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900325"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-09T00:00:00","lat":42.5,"lon":-19.633,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900326"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2006-09-09T00:00:00","lat":41.467,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900327"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-05-25T00:17:00","lat":59.974,"lon":-48.9262,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901093"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-03-06T00:00:00","lat":24.512,"lon":-24.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900065"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-06T00:00:00","lat":50.809,"lon":-45.715,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900875"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-17T00:00:00","lat":50.0022,"lon":-49.0033,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-17T00:00:00","lat":50.1556,"lon":-48.4761,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-08T00:00:00","lat":50.3411,"lon":-47.9556,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900603"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2013-10-14T13:36:00","lat":30.37,"lon":-23.16,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901152"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2013-10-14T13:15:00","lat":30.37,"lon":-23.26,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901151"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-11-01T00:00:00","lat":43.4616,"lon":-57.4859,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900135"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-08T00:00:00","lat":51.8167,"lon":-25.8333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900444"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-06T00:00:00","lat":51.5667,"lon":-39.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900445"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2011-03-07T00:00:00","lat":51.7333,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900658"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-30T01:06:00","lat":0.0667,"lon":-29.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901500"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-12T00:00:00","lat":2.17,"lon":-12.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900139"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-12T00:00:00","lat":3.5,"lon":-13.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900138"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":4.84,"lon":-15.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900140"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":6.33,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900142"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2003-02-14T00:00:00","lat":8.0,"lon":-16.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900141"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T08:18:00","lat":58.364,"lon":-52.2213,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901153"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T04:10:00","lat":58.6027,"lon":-52.2901,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901154"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-15T00:00:00","lat":43.001,"lon":-52.0005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900236"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":51.83,"lon":-48.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900345"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-06-28T00:00:00","lat":31.71,"lon":-64.08,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900356"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T12:27:00","lat":58.1459,"lon":-52.2114,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901159"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-11-14T00:00:00","lat":56.6,"lon":-36.9,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900197"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-11T00:00:00","lat":45.0,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900626"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-26T09:38:00","lat":38.554,"lon":-69.0359,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901291"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-06-01T00:00:00","lat":67.0,"lon":-0.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900194"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-05-30T00:00:00","lat":65.4,"lon":-3.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900193"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-20T00:00:00","lat":49.6242,"lon":-13.223,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900275"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-18T19:40:00","lat":43.8107,"lon":-57.8055,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901139"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-20T02:47:00","lat":43.4761,"lon":-57.5225,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901155"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-03T05:59:00","lat":44.124,"lon":-55.892,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901140"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-03T08:48:00","lat":44.356,"lon":-56.014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901149"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-04-27T08:08:00","lat":43.4413,"lon":-57.5144,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901110"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-08-03T00:00:00","lat":51.972,"lon":-50.279,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900503"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":42.546,"lon":-61.418,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900423"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-17T00:00:00","lat":44.659,"lon":-54.963,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900414"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-07T00:00:00","lat":58.64,"lon":-50.417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-07-28T00:00:00","lat":46.996,"lon":-43.227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900877"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-26T00:00:00","lat":43.4638,"lon":-57.5222,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900227"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-27T00:00:00","lat":57.501,"lon":-47.889,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900531"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-25T00:00:00","lat":59.762,"lon":-40.109,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900494"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-07-05T00:00:00","lat":56.953,"lon":-52.185,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900101"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-18T09:39:00","lat":59.0645,"lon":-49.908,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901141"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2008-10-18T08:15:00","lat":43.469,"lon":-57.532,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901078"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-22T00:00:00","lat":47.002,"lon":-43.217,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-12-09T00:00:00","lat":50.222,"lon":-48.333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900676"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-10-21T00:00:00","lat":41.9402,"lon":-60.928,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900250"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-19T00:00:00","lat":49.687,"lon":-46.267,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900635"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-06T00:00:00","lat":44.406,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900409"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2002-05-15T00:00:00","lat":41.3997,"lon":-51.0005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900235"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.893,"lon":-45.207,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900418"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.166,"lon":-46.818,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900535"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-25T00:00:00","lat":58.582,"lon":-50.407,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900534"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-28T00:00:00","lat":54.995,"lon":-46.701,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-09T00:00:00","lat":25.0103,"lon":-36.7083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900840"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-06T23:43:00","lat":52.88,"lon":-26.65,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901457"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-14T00:00:00","lat":52.22,"lon":-21.498,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900171"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901360"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2001-10-21T00:00:00","lat":42.5318,"lon":-61.371,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900132"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-22T00:00:00","lat":20.0024,"lon":-23.5219,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900276"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2002-05-03T00:00:00","lat":60.5,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900199"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-12-04T00:00:00","lat":61.4,"lon":-39.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900198"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-14T00:00:00","lat":56.6001,"lon":-35.6326,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901750"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2015-06-08T00:00:00","lat":52.1048,"lon":-18.406,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901757"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2001-07-22T00:00:00","lat":60.7815,"lon":-21.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900155"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-07-27T00:00:00","lat":58.221,"lon":-50.896,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900407"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-12T00:00:00","lat":45.01,"lon":-11.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900127"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-02T00:00:00","lat":34.1912,"lon":-18.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900041"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-04T00:00:00","lat":26.3083,"lon":-73.6666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2014-02-09T13:48:00","lat":52.8233,"lon":-34.9833,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-04T14:28:05","lat":2.0022,"lon":-15.0059,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901528"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-24T06:58:45","lat":28.3944,"lon":-65.1403,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-28T04:34:46","lat":22.2749,"lon":-45.1902,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-07T12:14:46","lat":4.9548,"lon":-22.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-06T15:11:46","lat":8.0992,"lon":-23.0032,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-05T07:14:46","lat":12.6255,"lon":-22.9033,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-02T09:10:46","lat":20.3417,"lon":-26.7859,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901537"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-11T23:55:00","lat":33.0,"lon":-62.2213,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901584"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-07T06:05:00","lat":13.0025,"lon":-36.4553,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901587"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-04T22:20:00","lat":2.8334,"lon":-24.3383,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901588"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-04-11T21:59:00","lat":39.4707,"lon":-70.8286,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901298"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-07-12T19:56:00","lat":31.6191,"lon":-64.2393,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-07-15T08:44:00","lat":34.6432,"lon":-64.1662,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901299"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-08-21T16:20:00","lat":34.7277,"lon":-66.5771,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901450"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-09-28T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-07-22T00:00:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901402"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-03-06T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901407"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2009-03-06T19:55:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901405"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-12-28T06:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901449"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-12-28T06:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-06-03T09:07:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901446"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-03-22T12:00:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901404"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2008-02-04T00:58:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2007-12-08T04:05:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901406"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-12T13:00:00","lat":34.85,"lon":-65.7666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901453"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-11T17:40:00","lat":31.0167,"lon":-61.4666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901451"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-10T23:00:00","lat":27.0,"lon":-57.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901452"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-01-09T10:06:00","lat":19.2334,"lon":-48.6166,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901454"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-10T20:11:00","lat":14.6892,"lon":-55.0556,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901670"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-10T03:02:00","lat":12.9255,"lon":-52.0287,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901673"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-07T18:50:00","lat":6.9935,"lon":-42.0035,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901674"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-04T22:20:00","lat":4.91,"lon":-29.9883,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901671"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-02-09T10:25:00","lat":11.168,"lon":-49.0358,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901672"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-24T23:25:00","lat":6.975,"lon":-27.9466,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-23T18:46:00","lat":1.9617,"lon":-22.0666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-26T02:55:00","lat":12.0084,"lon":-33.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-27T06:06:00","lat":16.9767,"lon":-38.908,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-28T23:27:00","lat":24.0067,"lon":-47.7433,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T11:51:00","lat":29.9884,"lon":-55.8533,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-22T20:05:00","lat":32.5032,"lon":-19.6833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901688"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-19T09:10:00","lat":34.6034,"lon":-20.7926,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901682"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-27T20:02:00","lat":0.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-27T01:41:00","lat":1.0,"lon":-25.0073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-26T10:01:00","lat":1.9836,"lon":-25.0111,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-24T12:59:00","lat":4.9552,"lon":-25.9782,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901689"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-23T08:04:00","lat":6.9949,"lon":-26.9937,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901695"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-22T02:15:00","lat":8.9949,"lon":-27.9855,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901683"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-20T21:10:00","lat":10.9961,"lon":-28.9908,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901691"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-19T12:23:00","lat":13.647,"lon":-28.9963,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901686"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-19T00:05:00","lat":14.4951,"lon":-28.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901687"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-18T20:47:00","lat":14.9951,"lon":-28.9984,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901694"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T20:45:00","lat":16.4567,"lon":-57.3582,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901484"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T11:00:00","lat":16.087,"lon":-55.2137,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-27T04:14:00","lat":15.8354,"lon":-53.7552,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-26T19:46:00","lat":15.5191,"lon":-51.9446,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-31T15:35:00","lat":20.9317,"lon":-58.7683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901661"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-23T19:55:00","lat":30.8401,"lon":-60.8566,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901662"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-11-14T17:28:00","lat":17.0663,"lon":-48.093,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-11-15T03:05:00","lat":17.5954,"lon":-46.2847,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901042"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-02T15:37:00","lat":27.9867,"lon":-37.9866,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901585"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-09T04:30:00","lat":30.0101,"lon":-56.9783,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901587"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-08T20:41:00","lat":28.9067,"lon":-55.9133,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901590"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-07T17:05:00","lat":24.8417,"lon":-52.2266,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-21T20:28:00","lat":29.9951,"lon":-31.6466,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901588"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-09-21T00:51:00","lat":32.6234,"lon":-29.7666,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901586"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-10T14:28:00","lat":35.0417,"lon":-61.7366,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-12T22:59:00","lat":55.8641,"lon":-53.3547,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901168"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-13T16:00:00","lat":56.5674,"lon":-52.6484,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901167"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-13T23:20:00","lat":56.9672,"lon":-52.221,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901172"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-14T05:00:00","lat":57.3794,"lon":-51.7926,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901171"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-14T22:36:00","lat":57.7984,"lon":-51.3331,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901160"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-15T12:43:00","lat":58.6429,"lon":-50.3907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901173"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-16T01:32:00","lat":59.4929,"lon":-49.4807,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901162"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-16T13:31:00","lat":59.9855,"lon":-48.9099,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901161"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-12-06T03:31:00","lat":42.574,"lon":-49.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-24T10:49:00","lat":36.9001,"lon":-68.986,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901206"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-05-31T00:00:00","lat":60.185,"lon":-48.686,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900879"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-15T05:35:00","lat":58.2231,"lon":-50.8871,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901174"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-05T00:00:00","lat":60.7,"lon":-35.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900084"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-07T00:00:00","lat":61.1,"lon":-36.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900085"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_eq"},"ptfDepl":{"deplDate":"2002-05-08T00:00:00","lat":61.3,"lon":-38.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900086"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-21T00:00:00","lat":69.0,"lon":-11.26,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900177"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900169"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900170"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900171"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-21T00:00:00","lat":69.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900176"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900178"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-07-20T00:00:00","lat":75.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900172"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":75.0,"lon":-1.291,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900341"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-12T00:00:00","lat":46.522,"lon":-33.095,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900258"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":46.0,"lon":-17.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900270"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":46.0,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900271"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-06T00:00:00","lat":48.149,"lon":-18.916,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900252"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-12T00:00:00","lat":59.0,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900383"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-12T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900384"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900385"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900386"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"1997-07-23T10:41:00","lat":0.0067,"lon":-32.7166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902328"},{"program":{"country":{"nameShort":"MEXICO"},"nameShort":"Argo_MEX-CO-US"},"ptfDepl":{"deplDate":"2005-07-27T00:00:00","lat":1.9972,"lon":-81.0026,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900226"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-08T00:00:00","lat":47.98,"lon":-20.048,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900253"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-09T00:00:00","lat":47.624,"lon":-22.869,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900254"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-09T00:00:00","lat":47.376,"lon":-24.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900255"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-10T00:00:00","lat":46.812,"lon":-27.641,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900256"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-06T00:00:00","lat":52.286,"lon":-35.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900259"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-07T00:00:00","lat":50.462,"lon":-33.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900260"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-07-07T00:00:00","lat":49.447,"lon":-33.847,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":52.529,"lon":-47.316,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900430"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-08T00:00:00","lat":22.533,"lon":-67.775,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2010-05-02T00:00:00","lat":60.085,"lon":-34.958,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902326"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-EGEE"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":5.992,"lon":-20.635,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":75.002,"lon":-2.578,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900339"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":57.65,"lon":-21.063,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900338"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":69.25,"lon":-11.175,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900343"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":68.995,"lon":-11.498,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900344"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-10-06T00:00:00","lat":68.998,"lon":-10.515,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900345"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-01-26T12:04:00","lat":18.1,"lon":-34.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900992"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-19T00:00:00","lat":30.0,"lon":-24.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900410"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-26T00:00:00","lat":28.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900411"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2006-05-26T00:00:00","lat":26.0,"lon":-24.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900412"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-04T04:39:00","lat":33.8667,"lon":-9.7667,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900690"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-12-10T00:00:00","lat":23.5975,"lon":-57.1972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901714"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-05T18:24:00","lat":2.0342,"lon":-22.5686,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-08T20:22:00","lat":8.0178,"lon":-28.8311,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-08T02:00:00","lat":8.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-09T16:08:00","lat":16.0011,"lon":-36.6561,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901011"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-29T00:00:00","lat":31.67,"lon":-64.1703,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900794"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":29.2333,"lon":-15.5133,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900506"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":0.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900522"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2006-04-13T00:00:00","lat":64.65,"lon":-0.02,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900499"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":74.998,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900342"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":57.69,"lon":-21.604,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900337"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":57.58,"lon":-20.57,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900346"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-07T00:00:00","lat":68.9,"lon":-3.2367,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900340"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2005-10-07T00:00:00","lat":68.82,"lon":-3.64,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-10T00:00:00","lat":6.99,"lon":-35.01,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900051"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-21T00:00:00","lat":6.02,"lon":-43.99,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900052"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-24T00:00:00","lat":11.21,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900060"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-03-22T15:56:00","lat":2.9872,"lon":-12.4885,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901610"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-03-21T15:41:00","lat":5.9958,"lon":-15.1879,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901609"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2014-10-09T06:00:00","lat":14.22,"lon":-27.91,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901174"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2014-10-10T06:12:00","lat":10.76,"lon":-27.2,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901175"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-11-13T13:49:00","lat":54.1,"lon":-40.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2015-11-12T00:00:00","lat":51.05,"lon":-43.62,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901181"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2013-09-17T00:00:00","lat":43.0,"lon":-14.95,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901238"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-07T00:00:00","lat":42.398,"lon":-46.543,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900263"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":43.044,"lon":-48.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900265"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-05T00:00:00","lat":42.835,"lon":-42.026,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900260"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":42.796,"lon":-47.546,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900264"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":56.55,"lon":-52.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900671"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-10-01T00:00:00","lat":36.0,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901244"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2001-10-24T00:00:00","lat":46.5,"lon":-18.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900128"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-12-04T01:09:00","lat":29.0,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900697"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-05-30T00:00:00","lat":58.641,"lon":-50.423,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900529"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-11-30T00:00:00","lat":16.6322,"lon":-58.0053,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900117"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-12-01T00:00:00","lat":50.18,"lon":-48.443,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900410"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-12-01T00:00:00","lat":50.328,"lon":-47.939,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900406"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":69.266,"lon":-0.025,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900220"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":63.952,"lon":-2.166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900221"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":64.346,"lon":-4.184,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900222"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":64.343,"lon":-6.003,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900223"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-10T00:00:00","lat":37.368,"lon":-68.136,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900412"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-25T15:37:00","lat":24.607,"lon":-22.093,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901165"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":2.004,"lon":-28.1628,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900278"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":0.0037,"lon":-28.1585,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900279"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-08-26T00:00:00","lat":0.9983,"lon":-28.1667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2001-03-07T00:00:00","lat":0.0,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900050"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-23T00:00:00","lat":9.8375,"lon":-52.5001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900178"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-21T00:00:00","lat":6.0,"lon":-43.9996,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900179"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-15T00:00:00","lat":4.9945,"lon":-36.3432,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900180"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-22T00:00:00","lat":7.3573,"lon":-46.9982,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900181"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-20T00:00:00","lat":0.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300859"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-23T00:00:00","lat":0.0,"lon":-34.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100856"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"2001-07-22T00:00:00","lat":0.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100810"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-07T00:00:00","lat":0.0,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300857"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-19T00:00:00","lat":31.8986,"lon":-64.4267,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900845"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-18T07:00:00","lat":46.2,"lon":-37.87,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-16T07:00:00","lat":51.14,"lon":-40.06,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-14T07:00:00","lat":54.11,"lon":-40.18,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-01T04:52:00","lat":20.95,"lon":-41.7333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903276"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-02T01:59:00","lat":25.0,"lon":-46.4667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903277"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2010-07-01T15:44:00","lat":23.05,"lon":-44.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903278"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2008-10-04T09:55:00","lat":70.19,"lon":-57.19,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900612"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-12-18T00:00:00","lat":34.7323,"lon":-13.1612,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900231"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_eq_IRELAND"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":54.0,"lon":-14.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900232"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_eq_IRELAND"},"ptfDepl":{"deplDate":"2003-10-12T00:00:00","lat":52.03,"lon":-15.434,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900233"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-21T00:00:00","lat":39.5008,"lon":-20.5006,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-22T00:00:00","lat":43.4952,"lon":-20.5025,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900037"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-25T00:00:00","lat":43.0001,"lon":-17.9978,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-26T00:00:00","lat":41.9992,"lon":-16.4948,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900041"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-23T00:00:00","lat":43.4917,"lon":-17.9883,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900032"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-01T00:00:00","lat":42.0,"lon":-21.972,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900000"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-02T00:00:00","lat":45.002,"lon":-19.008,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900001"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-02T00:00:00","lat":44.33,"lon":-22.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900002"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-02T00:00:00","lat":44.435,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-03T00:00:00","lat":26.5,"lon":-74.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900807"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-09T13:18:00","lat":35.2729,"lon":-17.0625,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-08T21:19:00","lat":34.8747,"lon":-22.0131,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901295"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-06T11:24:00","lat":33.4072,"lon":-39.9968,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901294"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-05T19:17:00","lat":32.9884,"lon":-44.9743,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901297"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":37.5,"lon":-70.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":34.13,"lon":-66.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-09T00:00:00","lat":27.6633,"lon":-64.0617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900229"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":13.3333,"lon":-33.323,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900033"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-22T00:00:00","lat":16.6666,"lon":-36.8417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900154"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-21T00:00:00","lat":10.0,"lon":-29.98,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900034"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-09-23T00:00:00","lat":20.0,"lon":-40.5217,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-09-01T13:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901723"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-29T06:02:00","lat":33.8029,"lon":-65.983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-29T19:35:00","lat":34.7846,"lon":-66.5885,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-31T15:53:00","lat":37.3634,"lon":-68.1566,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T16:55:00","lat":36.192,"lon":-67.44,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-05-30T16:57:00","lat":36.1932,"lon":-67.441,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-30T21:00:00","lat":23.96,"lon":-58.185,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-22T06:00:00","lat":14.2201,"lon":-52.9833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-22T16:04:00","lat":14.75,"lon":-51.0833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901483"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-21T22:00:00","lat":13.95,"lon":-54.2799,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-10-21T11:00:00","lat":13.4201,"lon":-55.9166,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-08-21T02:46:00","lat":35.715,"lon":-68.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901448"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2010-06-23T20:37:00","lat":75.85,"lon":-2.216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900801"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2010-06-24T10:27:00","lat":75.13,"lon":-2.216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900802"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":41.844,"lon":-51.763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900419"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-29T00:00:00","lat":38.942,"lon":-52.25,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900417"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":41.059,"lon":-51.777,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900411"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-10-01T00:00:00","lat":36.26,"lon":-52.388,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900416"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-09-26T00:00:00","lat":42.43,"lon":-51.309,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-16T01:15:00","lat":50.306,"lon":-46.928,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901128"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-20T14:56:00","lat":42.475,"lon":-61.4335,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901798"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-20T20:51:00","lat":42.4749,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901778"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-16T13:21:00","lat":41.7881,"lon":-60.9045,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901765"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-17T03:27:00","lat":43.7814,"lon":-57.8401,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901763"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-24T02:30:00","lat":43.7888,"lon":-57.8363,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901800"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-04-17T20:13:00","lat":43.4725,"lon":-57.5316,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901764"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-04-23T20:41:00","lat":43.4862,"lon":-57.4965,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901799"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T06:58:00","lat":61.1998,"lon":-52.229,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901170"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T06:25:00","lat":59.1088,"lon":-53.2318,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901165"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-04-11T22:22:00","lat":42.492,"lon":-61.438,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901109"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-25T05:38:00","lat":56.113,"lon":-53.094,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901124"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-17T00:00:00","lat":59.762,"lon":-40.746,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900502"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-07-14T08:09:00","lat":47.005,"lon":-43.236,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901132"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-04-21T02:30:00","lat":42.588,"lon":-49.683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901143"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T15:23:00","lat":56.94,"lon":-52.2,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901780"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T23:03:00","lat":56.32,"lon":-52.9,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901779"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-09T12:26:00","lat":56.5529,"lon":-52.6681,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901782"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-09T21:33:00","lat":57.3874,"lon":-51.7907,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901781"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2014-08-14T00:41:00","lat":56.6044,"lon":-52.6518,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901762"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-22T00:00:00","lat":41.69,"lon":-48.95,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901787"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-18T00:00:00","lat":44.07,"lon":-54.78,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901807"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-24T15:15:00","lat":56.957,"lon":-52.177,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901126"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T19:15:00","lat":60.326,"lon":-52.691,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901166"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-19T13:16:00","lat":60.7906,"lon":-52.338,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901169"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-24T19:28:00","lat":56.553,"lon":-52.678,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-19T14:45:00","lat":53.998,"lon":-50.236,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901130"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-19T21:01:00","lat":54.98,"lon":-50.066,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901131"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-23T16:35:00","lat":57.369,"lon":-51.747,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901127"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-30T16:48:00","lat":41.27,"lon":-61.247,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901129"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T13:45:00","lat":58.4377,"lon":-53.5971,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901164"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2011-05-20T19:33:00","lat":57.7604,"lon":-53.9218,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901163"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-22T00:00:00","lat":42.1,"lon":-49.22,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901808"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-11-21T00:00:00","lat":42.39,"lon":-49.51,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901788"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2015-05-14T05:16:00","lat":57.58,"lon":-51.58,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901783"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2003-11-08T00:00:00","lat":34.723,"lon":-66.57,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900420"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-25T11:22:00","lat":55.84,"lon":-53.391,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901123"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2009-05-21T22:36:00","lat":59.996,"lon":-48.882,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901133"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T07:50:00","lat":41.7671,"lon":-60.8956,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901201"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T11:38:00","lat":41.3417,"lon":-60.7364,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901199"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-09-28T23:49:00","lat":41.0075,"lon":-60.4445,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901196"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-06T22:39:00","lat":55.8477,"lon":-53.3927,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901194"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-07T20:25:00","lat":56.5792,"lon":-52.634,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901195"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T04:32:00","lat":56.9565,"lon":-52.239,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901198"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T10:22:00","lat":57.3756,"lon":-51.7917,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901200"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-08T16:58:00","lat":57.8002,"lon":-51.3522,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901193"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T02:29:00","lat":58.2157,"lon":-50.8795,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901197"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T09:09:00","lat":58.64,"lon":-50.42,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901192"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2012-06-09T21:29:00","lat":59.4831,"lon":-49.3736,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901202"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-23T00:00:00","lat":32.1667,"lon":-32.1667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900715"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-11T20:30:00","lat":42.91,"lon":-13.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900762"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-10T10:33:00","lat":43.0,"lon":-10.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900763"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-06T06:38:00","lat":46.01,"lon":-8.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900785"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-05T23:00:00","lat":46.0,"lon":-7.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900784"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-05T08:05:00","lat":45.02,"lon":-6.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900760"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-09-06T18:24:00","lat":44.99,"lon":-9.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900761"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":41.796,"lon":-60.909,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901079"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2010-10-27T17:23:00","lat":29.16,"lon":-15.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900772"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-22T03:59:00","lat":56.9362,"lon":-52.2214,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901152"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-19T15:55:00","lat":28.67,"lon":-88.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901265"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-25T15:06:00","lat":26.5,"lon":-87.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901266"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-25T20:31:00","lat":26.0,"lon":-87.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T00:22:00","lat":26.5,"lon":-86.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T06:00:00","lat":26.66,"lon":-87.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901267"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-05-26T11:38:00","lat":27.59,"lon":-87.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-05T06:13:00","lat":25.945,"lon":-87.784,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901271"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-03T17:16:00","lat":27.486,"lon":-89.474,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901272"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-07-03T11:24:00","lat":27.994,"lon":-89.714,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2010-08-16T19:28:00","lat":27.96,"lon":-88.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-01T00:00:00","lat":15.3628,"lon":-40.2461,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900758"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2010-05-21T21:30:00","lat":57.3786,"lon":-51.8323,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901151"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":26.2608,"lon":-54.3806,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900731"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2013-05-26T01:28:00","lat":40.1619,"lon":-59.5695,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901743"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-04-11T04:10:00","lat":0.0035,"lon":-22.9727,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":34.75,"lon":-72.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":32.5,"lon":-71.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900385"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-24T00:00:00","lat":2.06,"lon":-85.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900164"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":4.27,"lon":-82.89,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900165"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-07-25T00:00:00","lat":6.45,"lon":-80.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900166"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":36.7116,"lon":-26.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":35.6383,"lon":-30.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-12T00:00:00","lat":30.1983,"lon":-50.9866,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900159"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":31.66,"lon":-42.5666,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900156"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-09T00:00:00","lat":34.5533,"lon":-33.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900039"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-10T00:00:00","lat":33.4766,"lon":-36.05,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900040"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":31.175,"lon":-44.975,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900157"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-10T00:00:00","lat":32.3683,"lon":-39.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900155"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-08T00:00:00","lat":37.66,"lon":-23.925,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900036"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-12T00:00:00","lat":29.6666,"lon":-53.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900160"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-12-11T00:00:00","lat":30.67,"lon":-48.1833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900158"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-17T00:00:00","lat":14.9983,"lon":-39.3367,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-18T00:00:00","lat":17.9817,"lon":-42.6417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-19T00:00:00","lat":24.0,"lon":-49.7183,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900360"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-20T00:00:00","lat":27.0,"lon":-53.52,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900361"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-21T00:00:00","lat":29.0,"lon":-56.12,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-21T00:00:00","lat":31.0,"lon":-59.5567,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-22T00:00:00","lat":34.0,"lon":-64.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-04-23T00:00:00","lat":36.0,"lon":-69.09,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900365"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-05-26T00:00:00","lat":37.11,"lon":-72.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2009-04-15T15:12:00","lat":0.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901031"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-03-24T22:06:00","lat":1.536,"lon":-9.882,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901733"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-07-09T19:37:53","lat":1.262,"lon":-9.8098,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901533"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2007-08-15T00:00:00","lat":65.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-01-23T00:00:00","lat":36.15,"lon":-23.87,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-01T00:00:00","lat":32.39,"lon":-70.69,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100875"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-05T00:00:00","lat":36.0,"lon":-43.99,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100879"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":58.5,"lon":-35.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900065"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":58.4,"lon":-35.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900064"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":59.0,"lon":-34.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900068"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":59.5,"lon":-33.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900067"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-01-15T00:00:00","lat":60.0,"lon":-32.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900066"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-06T00:00:00","lat":55.0,"lon":-13.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900079"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-10T00:00:00","lat":61.29,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900081"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2001-05-20T00:00:00","lat":57.2,"lon":-10.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900080"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-23T00:00:00","lat":0.0,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100855"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-23T00:00:00","lat":11.406,"lon":-56.166,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900177"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-24T00:00:00","lat":13.8487,"lon":-55.4277,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900022"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-02-07T00:00:00","lat":2.035,"lon":-35.0116,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2000-11-29T00:00:00","lat":27.2667,"lon":-88.2667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900042"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":67.5,"lon":-6.9616,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900215"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-05-31T00:00:00","lat":66.9833,"lon":-4.445,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900216"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2002-06-01T00:00:00","lat":67.0,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900217"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-24T00:00:00","lat":35.99,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200880"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-23T00:00:00","lat":36.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200879"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-03-24T00:00:00","lat":36.0,"lon":-38.02,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100887"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-18T00:00:00","lat":35.52,"lon":-58.07,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100886"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-16T00:00:00","lat":33.62,"lon":-58.02,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100885"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-19T00:00:00","lat":36.28,"lon":-61.93,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6200878"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-12-30T00:00:00","lat":56.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4400870"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-11-16T00:00:00","lat":36.0,"lon":-71.79,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100864"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1998-02-02T00:00:00","lat":26.32,"lon":-68.6,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4100863"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-25T00:00:00","lat":25.55,"lon":-65.98,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41547__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-07-26T00:00:00","lat":33.53,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41543__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-28T00:00:00","lat":30.89,"lon":-66.01,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41542__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-08-27T00:00:00","lat":29.56,"lon":-65.98,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41541__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW_eq"},"ptfDepl":{"deplDate":"1997-07-28T00:00:00","lat":29.56,"lon":-52.37,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"41539__"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-20T00:00:00","lat":23.0,"lon":-68.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900186"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-18T00:00:00","lat":38.0,"lon":-73.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900185"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-18T00:00:00","lat":25.0,"lon":-49.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900184"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-05-20T00:00:00","lat":25.5,"lon":-69.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-18T00:00:00","lat":0.0,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1300858"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_AOML"},"ptfDepl":{"deplDate":"1997-07-24T00:00:00","lat":1.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"PALACE"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3100858"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2001-02-25T00:00:00","lat":9.0,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900040"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2001-04-10T00:00:00","lat":4.0,"lon":-37.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-02-13T00:00:00","lat":13.7981,"lon":-55.9331,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900368"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-27T00:00:00","lat":27.4167,"lon":-65.36,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900367"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-26T00:00:00","lat":29.1617,"lon":-53.975,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900366"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-03T00:00:00","lat":9.8667,"lon":-42.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900242"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-04T00:00:00","lat":12.1667,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900369"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-05T00:00:00","lat":14.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900370"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-13T00:00:00","lat":3.302,"lon":-44.004,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900137"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-12T00:00:00","lat":5.249,"lon":-43.988,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900141"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2000-11-13T00:00:00","lat":2.749,"lon":-43.999,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900142"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-12-09T00:00:00","lat":1.9983,"lon":-24.7817,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-03-25T00:00:00","lat":30.045,"lon":-48.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900232"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-06-29T00:00:00","lat":30.0,"lon":-71.02,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-04T00:00:00","lat":30.5028,"lon":-51.9988,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900424"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-06T00:00:00","lat":35.7131,"lon":-61.0047,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900425"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-15T00:00:00","lat":7.5167,"lon":-19.5167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900246"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-18T00:00:00","lat":19.01,"lon":-29.8167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900248"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-16T00:00:00","lat":9.9217,"lon":-21.6417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900249"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-23T00:00:00","lat":39.9983,"lon":-51.1067,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-19T00:00:00","lat":24.7033,"lon":-35.1517,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900244"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-21T00:00:00","lat":32.5033,"lon":-42.9483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-20T00:00:00","lat":30.0,"lon":-40.375,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900245"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-20T00:00:00","lat":27.5017,"lon":-37.8683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900427"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-22T00:00:00","lat":35.0033,"lon":-45.575,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-08-03T00:00:00","lat":2.6648,"lon":-24.9997,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-31T00:00:00","lat":7.4985,"lon":-27.2483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-08-01T00:00:00","lat":5.0006,"lon":-25.9973,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-26T00:00:00","lat":14.9992,"lon":-29.0005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-28T00:00:00","lat":12.5005,"lon":-28.9998,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900255"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":9.9957,"lon":-28.4987,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900256"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-29T00:00:00","lat":55.3563,"lon":-43.9495,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900431"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-07-30T00:00:00","lat":57.9428,"lon":-40.7725,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900432"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-13T00:00:00","lat":44.8333,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900230"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":22.8298,"lon":-26.0015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900278"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2003-09-27T00:00:00","lat":24.01,"lon":-20.5901,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":27.2417,"lon":-58.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-06T00:00:00","lat":26.6,"lon":-67.0817,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900442"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":26.91,"lon":-62.5133,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-08T00:00:00","lat":24.9995,"lon":-68.8293,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900436"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":28.9968,"lon":-70.6022,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":34.0005,"lon":-72.1018,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":31.7628,"lon":-71.6497,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-09-06T00:00:00","lat":37.0015,"lon":-72.7128,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2001-11-09T00:00:00","lat":31.6753,"lon":-64.145,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":36.2033,"lon":-69.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900270"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":34.1375,"lon":-66.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900272"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-03-06T00:00:00","lat":28.42,"lon":-58.9967,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900230"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-09T00:00:00","lat":35.0575,"lon":-67.75,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900271"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2002-06-08T00:00:00","lat":38.9255,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900268"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-05T00:00:00","lat":22.5167,"lon":-33.2417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900259"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":38.9917,"lon":-50.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900446"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-03T00:00:00","lat":16.9543,"lon":-28.0882,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900258"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-08T00:00:00","lat":37.0012,"lon":-47.9048,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-10-06T00:00:00","lat":30.9023,"lon":-41.4592,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900444"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.01,"lon":-46.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900349"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.01,"lon":-48.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900350"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-24T00:00:00","lat":43.5547,"lon":-40.1065,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900352"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-19T00:00:00","lat":43.06,"lon":-48.87,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900353"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-18T00:00:00","lat":42.88,"lon":-48.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900354"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-20T00:00:00","lat":42.959,"lon":-48.478,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900355"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-09-28T03:38:00","lat":42.0,"lon":-17.001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900003"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-10-01T00:00:00","lat":41.999,"lon":-18.992,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900004"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"1999-09-27T00:00:00","lat":46.0,"lon":-16.005,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900005"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-09-24T00:00:00","lat":41.0009,"lon":-17.9994,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-15T00:00:00","lat":30.625,"lon":-45.1433,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-15T00:00:00","lat":28.8917,"lon":-50.0617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-16T00:00:00","lat":29.1633,"lon":-54.935,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-17T00:00:00","lat":27.6383,"lon":-64.9983,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-01-05T00:00:00","lat":32.4,"lon":-71.7767,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-01-06T00:00:00","lat":22.3245,"lon":-67.6867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900461"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-04T00:00:00","lat":17.5,"lon":-37.9183,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900456"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":20.0,"lon":-40.715,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":22.5017,"lon":-43.65,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2003-12-05T00:00:00","lat":25.0,"lon":-46.655,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-14T00:00:00","lat":36.9927,"lon":-72.2655,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900469"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-15T00:00:00","lat":30.025,"lon":-69.805,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900470"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-16T00:00:00","lat":24.05,"lon":-67.8417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-10T00:00:00","lat":5.0001,"lon":-28.9044,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900265"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-12T00:00:00","lat":15.0,"lon":-40.4618,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-03-13T00:00:00","lat":21.0016,"lon":-47.6773,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-03T00:00:00","lat":35.0,"lon":-66.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-03T00:00:00","lat":33.0,"lon":-65.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900545"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-04-21T00:00:00","lat":42.0922,"lon":-64.6738,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-28T00:00:00","lat":31.39,"lon":-40.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900546"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-28T00:00:00","lat":30.655,"lon":-44.998,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900547"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-29T00:00:00","lat":29.888,"lon":-50.032,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900548"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-29T00:00:00","lat":29.298,"lon":-54.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900549"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":27.705,"lon":-65.003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900552"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-05-01T00:00:00","lat":26.458,"lon":-72.503,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":28.845,"lon":-57.015,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900550"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-30T00:00:00","lat":28.395,"lon":-60.012,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900551"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-05-29T00:00:00","lat":50.591,"lon":-45.808,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-06T00:00:00","lat":32.0,"lon":-71.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900554"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":24.0,"lon":-68.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900559"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-07T00:00:00","lat":21.75,"lon":-67.4333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900560"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-11T00:00:00","lat":30.19,"lon":-48.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900561"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-12T00:00:00","lat":28.675,"lon":-58.05,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-06-13T00:00:00","lat":27.1567,"lon":-68.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-02T00:00:00","lat":31.9712,"lon":-75.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-08-07T00:00:00","lat":0.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-08T00:00:00","lat":2.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900297"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-07T00:00:00","lat":34.0,"lon":-71.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900567"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":17.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-07-27T00:00:00","lat":50.0,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900573"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-31T00:00:00","lat":54.0113,"lon":-15.4503,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900276"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2004-08-22T00:00:00","lat":43.8433,"lon":-11.4756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900277"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2004-08-06T00:00:00","lat":58.0,"lon":-18.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900187"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"Gyroscope"},"ptfDepl":{"deplDate":"2004-08-05T00:00:00","lat":60.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900188"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-08-11T00:00:00","lat":24.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900576"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-01T00:00:00","lat":26.0,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900578"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2004-09-02T00:00:00","lat":55.8123,"lon":-52.9495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900555"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2004-09-10T00:00:00","lat":44.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900557"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2004-09-10T00:00:00","lat":44.0,"lon":-10.833,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900558"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-29T00:00:00","lat":24.0,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-75.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900579"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-76.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-30T00:00:00","lat":26.0,"lon":-76.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-18T00:00:00","lat":22.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900431"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-25T00:00:00","lat":12.0,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-28T00:00:00","lat":19.0,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900584"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":5.0,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900426"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-16T00:00:00","lat":9.0,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900427"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-17T00:00:00","lat":13.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-17T00:00:00","lat":16.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-09-18T00:00:00","lat":19.0,"lon":-24.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900430"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-10-23T00:00:00","lat":43.449,"lon":-57.597,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900536"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-10-28T00:00:00","lat":42.52,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900525"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2003-09-07T00:00:00","lat":56.55,"lon":-52.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900607"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-02T00:00:00","lat":55.67,"lon":-52.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900608"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-01T00:00:00","lat":56.57,"lon":-52.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900609"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-19T00:00:00","lat":59.68,"lon":-39.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900610"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2004-09-15T00:00:00","lat":56.97,"lon":-50.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900611"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":75.333,"lon":-0.1497,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900303"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MERSEA"},"ptfDepl":{"deplDate":"2004-10-07T00:00:00","lat":74.9994,"lon":-2.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900304"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":74.999,"lon":-0.0012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900305"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":75.0014,"lon":-0.2944,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900306"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2004-10-08T00:00:00","lat":74.6662,"lon":-0.9985,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900307"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2004-07-15T00:00:00","lat":57.5,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900200"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2004-07-13T00:00:00","lat":57.3,"lon":-10.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900201"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-11-22T00:00:00","lat":42.573,"lon":-49.691,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900527"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2004-11-25T00:00:00","lat":46.994,"lon":-43.732,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900538"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-05T00:00:00","lat":32.4986,"lon":-71.8058,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-12-03T00:00:00","lat":4.4644,"lon":-42.0003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900353"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":46.0,"lon":-6.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900141"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-12-05T00:00:00","lat":45.0,"lon":-4.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900140"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":44.1815,"lon":-6.4268,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900139"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2004-12-04T00:00:00","lat":44.0,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900235"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2004-12-08T00:00:00","lat":44.1818,"lon":-6.436,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900234"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-22T00:00:00","lat":27.285,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-21T00:00:00","lat":28.0,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-19T00:00:00","lat":31.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-18T00:00:00","lat":32.0,"lon":-32.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900490"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-17T00:00:00","lat":33.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900491"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-02-19T00:00:00","lat":30.7333,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-03-13T00:00:00","lat":32.8597,"lon":-70.7406,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900599"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-03-14T00:00:00","lat":25.1661,"lon":-60.3833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900600"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-23T00:00:00","lat":54.4983,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900332"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-23T00:00:00","lat":54.665,"lon":-12.5017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900333"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2005-02-26T00:00:00","lat":65.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900336"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-04-04T00:00:00","lat":10.0006,"lon":-34.5153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900496"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2004-04-05T00:00:00","lat":12.5325,"lon":-37.5047,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900601"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-04-07T00:00:00","lat":22.5006,"lon":-49.4061,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900602"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-01T00:00:00","lat":1.0333,"lon":-30.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-01T00:00:00","lat":7.0333,"lon":-28.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900502"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-02T00:00:00","lat":11.0,"lon":-27.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900503"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-02T00:00:00","lat":13.9667,"lon":-26.25,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-03T00:00:00","lat":19.0333,"lon":-23.8833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900505"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":34.0861,"lon":-62.8064,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900604"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":36.6531,"lon":-50.1581,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-29T00:00:00","lat":37.3958,"lon":-44.1819,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900606"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-30T00:00:00","lat":37.8819,"lon":-38.0747,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900612"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-27T00:00:00","lat":35.4189,"lon":-56.1014,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-05-28T00:00:00","lat":36.0183,"lon":-53.1875,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900614"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-04-18T00:00:00","lat":45.984,"lon":-18.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900251"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-05T00:00:00","lat":43.0481,"lon":-22.1914,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900123"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-06-10T00:00:00","lat":51.1225,"lon":-20.2311,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900124"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2005-05-26T00:00:00","lat":47.41,"lon":-7.66,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900189"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-03T00:00:00","lat":46.0,"lon":-6.4976,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900362"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2005-07-02T00:00:00","lat":47.0,"lon":-7.335,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":12.0064,"lon":-32.2867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900615"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":14.2606,"lon":-34.4083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900616"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-14T00:00:00","lat":16.0569,"lon":-36.36,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900617"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-15T00:00:00","lat":18.0019,"lon":-38.5639,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900618"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-16T00:00:00","lat":26.2608,"lon":-48.005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900619"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-18T00:00:00","lat":32.5003,"lon":-57.5811,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900620"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-18T00:00:00","lat":35.0003,"lon":-62.1436,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900621"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-07-19T00:00:00","lat":37.5008,"lon":-66.9417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900622"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-06-11T00:00:00","lat":46.613,"lon":-30.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-08-26T00:00:00","lat":7.2147,"lon":-27.3967,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900560"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2005-08-28T00:00:00","lat":56.999,"lon":-22.487,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900190"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2005-08-29T00:00:00","lat":57.0,"lon":-26.333,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900191"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":62.501,"lon":-52.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900501"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":61.501,"lon":-52.751,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900500"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":60.0,"lon":-53.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900680"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":58.502,"lon":-53.749,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-14T00:00:00","lat":1.5972,"lon":-10.1083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-20T00:00:00","lat":34.5037,"lon":-18.0064,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-21T00:00:00","lat":33.747,"lon":-23.2005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900563"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":55.94,"lon":-12.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-24T00:00:00","lat":29.5694,"lon":-52.0031,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900684"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-25T00:00:00","lat":28.4375,"lon":-55.9674,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-22T00:00:00","lat":31.7522,"lon":-37.1722,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900686"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-09-23T00:00:00","lat":30.7582,"lon":-44.001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900687"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2005-10-19T00:00:00","lat":61.26,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-11T00:00:00","lat":24.0003,"lon":-18.8181,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-10T00:00:00","lat":19.9692,"lon":-21.2014,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900571"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2005-10-08T00:00:00","lat":3.9683,"lon":-29.0672,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900493"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":23.55,"lon":-18.584,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900262"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-09T00:00:00","lat":27.167,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900263"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2005-12-12T00:00:00","lat":27.167,"lon":-15.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900264"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2005-11-30T00:00:00","lat":42.622,"lon":-49.701,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900505"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2005-11-17T00:00:00","lat":36.21,"lon":-54.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":0.56,"lon":-89.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":12.2608,"lon":-36.8419,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900727"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":15.0006,"lon":-40.3694,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900728"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-27T00:00:00","lat":34.4333,"lon":-18.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900635"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":33.7667,"lon":-22.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900636"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":32.5333,"lon":-30.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900637"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-29T00:00:00","lat":31.95,"lon":-34.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900638"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-31T00:00:00","lat":30.4333,"lon":-44.35,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900729"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-02T00:00:00","lat":27.9167,"lon":-62.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900730"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-01-28T00:00:00","lat":21.0033,"lon":-47.5486,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900639"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-19T00:00:00","lat":24.5167,"lon":-63.9833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900732"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-19T00:00:00","lat":22.9167,"lon":-61.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900745"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-02T00:00:00","lat":14.2658,"lon":-55.2522,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-24T00:00:00","lat":14.6428,"lon":-46.4867,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-02-22T00:00:00","lat":13.7,"lon":-49.0142,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900748"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-12T00:00:00","lat":23.1947,"lon":-66.3572,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-15T00:00:00","lat":26.51,"lon":-73.5325,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900752"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-03-18T00:00:00","lat":26.5006,"lon":-76.4853,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900753"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-01T00:00:00","lat":7.55,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900574"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-02T00:00:00","lat":5.6767,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900575"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-03T00:00:00","lat":3.7583,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900576"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-05-17T00:00:00","lat":23.8,"lon":-24.11,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900407"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-05-17T00:00:00","lat":23.8,"lon":-24.11,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900408"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":18.2381,"lon":-57.7042,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900754"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-29T00:00:00","lat":17.7014,"lon":-55.2197,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900755"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-30T00:00:00","lat":17.14,"lon":-50.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900756"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-31T00:00:00","lat":16.2997,"lon":-45.0003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900757"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-08T00:00:00","lat":24.85,"lon":-19.8333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900702"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-09T00:00:00","lat":19.9833,"lon":-21.9667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900703"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-05-11T00:00:00","lat":6.0333,"lon":-27.9,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900705"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":15.5844,"lon":-36.9522,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900759"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-02T00:00:00","lat":17.0786,"lon":-33.9922,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-03T00:00:00","lat":17.5467,"lon":-32.5003,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-05T00:00:00","lat":18.8339,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900709"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-07T00:00:00","lat":12.0011,"lon":-23.0008,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900710"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-06-03T00:00:00","lat":26.63,"lon":-15.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900409"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-09T00:00:00","lat":8.0186,"lon":-23.0069,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900711"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-10T00:00:00","lat":3.0219,"lon":-34.9939,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-12T00:00:00","lat":0.8519,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900579"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2006-07-05T00:00:00","lat":10.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":0.0925,"lon":-23.2583,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900712"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-29T00:00:00","lat":3.1603,"lon":-23.2561,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-21T00:00:00","lat":33.8333,"lon":-20.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900714"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-26T00:00:00","lat":30.4167,"lon":-45.9167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900771"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-06-27T00:00:00","lat":27.8333,"lon":-62.9167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900772"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-18T00:00:00","lat":18.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900716"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-01T00:00:00","lat":37.0775,"lon":-72.9122,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-02T00:00:00","lat":28.9536,"lon":-70.7431,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900581"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-03T00:00:00","lat":21.0867,"lon":-67.3839,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900582"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-24T00:00:00","lat":57.4833,"lon":-35.8839,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":55.9669,"lon":-38.5186,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900775"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":54.5003,"lon":-41.0675,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900776"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-25T00:00:00","lat":53.5167,"lon":-42.6503,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900777"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-07-26T00:00:00","lat":51.0008,"lon":-46.5333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900778"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-10T00:00:00","lat":3.2606,"lon":-23.9156,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-11T00:00:00","lat":7.5006,"lon":-28.2406,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900734"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-13T00:00:00","lat":18.0006,"lon":-38.7917,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900779"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-14T00:00:00","lat":22.5,"lon":-44.0775,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900780"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-16T00:00:00","lat":31.0,"lon":-55.555,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900781"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-08-17T00:00:00","lat":35.0003,"lon":-62.1656,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900782"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-16T00:00:00","lat":37.4167,"lon":-72.8333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900783"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":34.3,"lon":-72.1667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900784"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":27.6667,"lon":-70.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900785"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":36.4892,"lon":-19.8919,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900126"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-13T00:00:00","lat":36.4817,"lon":-22.7383,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-14T00:00:00","lat":36.4536,"lon":-28.8772,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-15T00:00:00","lat":35.2031,"lon":-35.1425,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900786"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-16T00:00:00","lat":33.0608,"lon":-42.8708,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900787"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-18T00:00:00","lat":28.7381,"lon":-58.1153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900789"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-19T00:00:00","lat":27.8897,"lon":-65.1808,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900790"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-17T00:00:00","lat":29.8503,"lon":-51.0186,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900788"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2006-10-06T00:00:00","lat":27.87,"lon":-13.54,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-09-30T00:00:00","lat":26.7347,"lon":-75.1781,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900791"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-02T00:00:00","lat":26.5658,"lon":-72.4667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900792"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-05T00:00:00","lat":26.6222,"lon":-73.6314,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900793"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-10-09T00:00:00","lat":41.929,"lon":-64.469,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900878"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-23T00:00:00","lat":20.9833,"lon":-17.2333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900735"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-23T00:00:00","lat":27.5,"lon":-19.4167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900736"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-25T00:00:00","lat":14.0833,"lon":-26.5667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-25T00:00:00","lat":10.9833,"lon":-27.7333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900738"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-26T00:00:00","lat":8.0333,"lon":-28.7833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900739"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-10-26T00:00:00","lat":1.0333,"lon":-31.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2006-07-22T00:00:00","lat":31.55,"lon":-63.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900357"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-11-30T00:00:00","lat":49.8,"lon":-49.73,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900xxx"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-05T00:00:00","lat":45.0,"lon":-7.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900627"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-06T00:00:00","lat":44.35,"lon":-8.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900622"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2006-11-28T00:00:00","lat":42.5823,"lon":-49.6843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900883"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":43.95,"lon":-3.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900619"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-11T00:00:00","lat":44.2,"lon":-5.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900623"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-23T00:00:00","lat":3.9667,"lon":-26.6667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900599"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-27T00:00:00","lat":22.4833,"lon":-49.4667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900800"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-29T00:00:00","lat":36.0,"lon":-67.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-21T00:00:00","lat":37.95,"lon":-64.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-24T00:00:00","lat":37.2797,"lon":-60.2683,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-11-21T00:00:00","lat":39.25,"lon":-67.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900804"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":35.1744,"lon":-15.2042,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-09T00:00:00","lat":34.9206,"lon":-18.32,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900750"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-10T00:00:00","lat":35.2383,"lon":-25.6936,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900751"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2006-12-12T00:00:00","lat":31.8169,"lon":-38.3456,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900805"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CONGAS"},"ptfDepl":{"deplDate":"2006-12-05T00:00:00","lat":46.0,"lon":-8.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900458"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-10T00:00:00","lat":33.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900508"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-11T00:00:00","lat":36.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900509"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-13T00:00:00","lat":38.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900510"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-16T00:00:00","lat":34.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900512"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-04-18T00:00:00","lat":31.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900513"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2007-02-13T00:00:00","lat":17.6047,"lon":-24.293,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900943"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2007-02-13T00:00:00","lat":17.6551,"lon":-24.2928,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900944"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-07T00:00:00","lat":22.0058,"lon":-67.4339,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900808"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-03-24T00:00:00","lat":32.7333,"lon":-23.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-03-26T00:00:00","lat":28.75,"lon":-39.0833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900314"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":44.833,"lon":-40.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900515"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":46.0,"lon":-40.117,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900516"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-05T00:00:00","lat":47.5,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900517"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-06T00:00:00","lat":50.0,"lon":-37.067,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900518"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-07T00:00:00","lat":52.5,"lon":-35.033,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-06-04T00:00:00","lat":43.5,"lon":-41.943,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900514"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-17T00:00:00","lat":13.3,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900817"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-22T00:00:00","lat":15.9333,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900818"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":14.5167,"lon":-46.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-04T00:00:00","lat":12.3042,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-05T00:00:00","lat":12.0589,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900824"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-23T00:00:00","lat":29.0167,"lon":-18.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900763"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-24T00:00:00","lat":22.0167,"lon":-21.2333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900764"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-24T00:00:00","lat":17.9833,"lon":-22.8667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900765"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":12.0,"lon":-25.35,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-04-25T00:00:00","lat":7.0167,"lon":-27.4833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900767"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-19T00:00:00","lat":20.4431,"lon":-25.0339,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-20T00:00:00","lat":20.1431,"lon":-34.0394,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900825"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-21T00:00:00","lat":20.0422,"lon":-37.0483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900826"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-22T00:00:00","lat":20.7703,"lon":-40.4119,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900827"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-23T00:00:00","lat":21.6803,"lon":-44.3486,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-24T00:00:00","lat":22.8719,"lon":-49.1153,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-05-25T00:00:00","lat":23.4178,"lon":-52.9192,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2007-05-21T00:00:00","lat":8.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-24T00:00:00","lat":33.0511,"lon":-71.9528,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900838"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-06-25T00:00:00","lat":22.5442,"lon":-67.9328,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900839"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-05T00:00:00","lat":10.0092,"lon":-22.1386,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900774"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-07T00:00:00","lat":19.0056,"lon":-28.1197,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900775"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-08T00:00:00","lat":22.0025,"lon":-32.2456,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900776"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-27T00:00:00","lat":37.21,"lon":-28.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900301"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-22T00:00:00","lat":37.07,"lon":-32.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900302"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-07-26T00:00:00","lat":37.19,"lon":-30.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900303"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-01T00:00:00","lat":59.46,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900602"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-01T00:00:00","lat":59.46,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900603"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-10T00:00:00","lat":59.92,"lon":-20.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900604"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-10T00:00:00","lat":59.92,"lon":-20.42,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900605"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-13T00:00:00","lat":44.77,"lon":-8.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900462"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-12T00:00:00","lat":45.83,"lon":-6.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900460"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-12T00:00:00","lat":47.086,"lon":-5.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900459"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-10-15T00:00:00","lat":34.505,"lon":-19.999,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900542"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2007-10-16T00:00:00","lat":32.958,"lon":-21.937,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900543"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-08-23T00:00:00","lat":41.0,"lon":-10.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900464"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-16T00:00:00","lat":59.02,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900606"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-16T00:00:00","lat":59.02,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900607"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-08-19T00:00:00","lat":59.29,"lon":-19.81,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900608"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-04T00:00:00","lat":39.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900465"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-06T00:00:00","lat":40.326,"lon":-9.914,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900466"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-07T00:00:00","lat":40.31,"lon":-11.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-26T00:00:00","lat":32.55,"lon":-17.2028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900777"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-27T00:00:00","lat":31.9425,"lon":-23.2664,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900778"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-29T00:00:00","lat":30.6906,"lon":-34.9833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900779"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-07-29T00:00:00","lat":30.2453,"lon":-38.9872,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900846"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-30T00:00:00","lat":29.5094,"lon":-47.7386,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900847"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2007-09-10T00:00:00","lat":37.428,"lon":-10.001,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900467"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-11-05T00:00:00","lat":27.29,"lon":-15.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900610"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2007-11-07T00:00:00","lat":28.43,"lon":-13.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900611"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-11-28T00:00:00","lat":20.1225,"lon":-28.4112,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901075"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-11-30T00:00:00","lat":14.9516,"lon":-30.0135,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901076"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-12-02T00:00:00","lat":10.001,"lon":-33.249,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901077"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2007-12-03T00:00:00","lat":5.275,"lon":-36.261,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901078"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-26T00:00:00","lat":19.0,"lon":-45.8764,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900851"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-28T00:00:00","lat":27.0006,"lon":-55.5011,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900852"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-02-29T10:00:00","lat":53.0,"lon":-15.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900649"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-02-29T09:30:00","lat":53.6,"lon":-16.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900650"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-03-02T09:50:00","lat":54.11,"lon":-14.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900647"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2008-03-02T05:30:00","lat":54.39,"lon":-15.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900648"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-13T13:34:00","lat":19.99,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900631"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-16T16:00:00","lat":18.0,"lon":-17.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900632"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-17T10:54:00","lat":18.0017,"lon":-19.0001,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-19T14:12:00","lat":17.5025,"lon":-24.3371,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900630"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-02-06T16:11:00","lat":16.1618,"lon":-18.0018,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM2"},"ptfDepl":{"deplDate":"2008-04-27T00:00:00","lat":8.1833,"lon":-22.85,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900629"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-26T06:25:00","lat":65.66,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900669"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-29T01:25:00","lat":69.5,"lon":-9.35,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900668"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-29T03:28:00","lat":69.49,"lon":-9.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900667"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_UHH"},"ptfDepl":{"deplDate":"2008-05-26T03:55:00","lat":65.52,"lon":-2.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900666"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-05-26T07:50:00","lat":65.7843,"lon":-2.7843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900547"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-06-26T16:56:00","lat":75.0,"lon":-3.498,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900548"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-06-27T05:34:00","lat":74.955,"lon":-0.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900550"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-07-08T17:27:00","lat":34.845,"lon":-70.635,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900551"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-07-08T12:00:00","lat":34.464,"lon":-69.862,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900552"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T04:00:00","lat":13.5,"lon":-27.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-12-01T23:20:00","lat":9.5023,"lon":-22.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900575"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-30T13:45:00","lat":6.5043,"lon":-22.9991,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900576"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-29T19:02:00","lat":4.0933,"lon":-23.0183,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-07T05:36:00","lat":3.2797,"lon":-24.6372,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900692"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-30T02:05:00","lat":13.0333,"lon":-26.9333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900799"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-01T06:48:00","lat":3.55,"lon":-30.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-01T18:00:00","lat":0.0333,"lon":-31.45,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900694"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-04-03T17:07:00","lat":8.0333,"lon":-28.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900800"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-14T02:00:00","lat":15.663,"lon":-42.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900568"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-21T02:00:00","lat":15.618,"lon":-30.545,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900569"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-10T19:26:00","lat":17.725,"lon":-49.813,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900570"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-02T02:00:00","lat":52.508,"lon":-36.853,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900553"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-06T02:00:00","lat":47.676,"lon":-31.015,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900554"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-07T02:00:00","lat":46.678,"lon":-36.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900555"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-03T08:10:00","lat":61.4978,"lon":-26.4978,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T07:10:00","lat":60.5046,"lon":-33.3592,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900557"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T13:12:00","lat":59.4911,"lon":-34.8736,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900558"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-27T00:15:00","lat":57.7038,"lon":-51.3266,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900559"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-27T19:32:00","lat":57.3451,"lon":-51.725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900560"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-31T07:47:00","lat":59.782,"lon":-54.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900561"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-31T00:20:00","lat":58.743,"lon":-54.127,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900562"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-09-10T11:11:00","lat":55.261,"lon":-26.9933,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900564"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-05T18:31:00","lat":54.9954,"lon":-39.8481,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-18T09:41:00","lat":43.775,"lon":-17.034,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900493"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-19T04:07:00","lat":44.67,"lon":-18.21,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900494"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-21T06:30:00","lat":47.668,"lon":-20.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900496"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-20T05:30:00","lat":46.17,"lon":-19.3862,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900495"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-25T09:10:00","lat":54.027,"lon":-25.54,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-24T15:01:00","lat":52.89,"lon":-24.65,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900497"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T13:05:00","lat":55.899,"lon":-26.867,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900638"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T23:24:00","lat":56.636,"lon":-27.562,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900639"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-26T02:10:00","lat":55.147,"lon":-26.417,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-27T03:05:00","lat":58.211,"lon":-29.725,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900640"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-06-28T09:56:00","lat":58.553,"lon":-30.357,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900641"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-29T16:53:00","lat":59.103,"lon":-33.832,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900491"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2008-04-26T15:00:00","lat":8.1833,"lon":-22.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900525"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-27T10:28:00","lat":57.215,"lon":-28.163,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2008-04-24T14:00:00","lat":8.05,"lon":-22.9783,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-07-01T20:44:00","lat":59.623,"lon":-38.968,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900492"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-07-02T17:33:00","lat":59.688,"lon":-39.598,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900490"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2008-06-30T16:50:00","lat":59.377,"lon":-36.397,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-06T13:39:00","lat":59.0805,"lon":-20.3434,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900675"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-29T17:00:00","lat":59.0071,"lon":-20.4952,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900678"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-30T16:45:00","lat":59.3725,"lon":-36.3987,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900673"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2008-06-30T16:45:00","lat":59.3721,"lon":-36.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900676"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-23T18:38:00","lat":38.0,"lon":-13.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900315"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-25T00:30:00","lat":27.5,"lon":-19.3667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-25T10:40:00","lat":24.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-26T20:45:00","lat":12.0,"lon":-27.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-27T18:50:00","lat":4.0,"lon":-30.0333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900705"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-09-28T08:45:00","lat":1.0,"lon":-31.7667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-07T22:48:00","lat":0.1772,"lon":-32.8167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-08T14:23:00","lat":2.1072,"lon":-33.5167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-05-10T15:29:00","lat":10.0847,"lon":-39.2167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900856"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-08-13T05:13:00","lat":45.93,"lon":-7.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900468"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-03T04:54:00","lat":35.0667,"lon":-10.3167,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900691"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-07T05:40:00","lat":32.0333,"lon":-11.9167,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900692"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2007-11-06T16:59:00","lat":29.8167,"lon":-13.6667,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900693"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_FSU"},"ptfDepl":{"deplDate":"2007-08-09T00:00:00","lat":35.741,"lon":-34.347,"noSite":null},"ptfModel":{"nameShort":"PROVOR_MT"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902322"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T11:00:00","lat":53.0,"lon":-43.2378,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900579"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T02:23:00","lat":53.9992,"lon":-41.5376,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900578"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-03T18:57:00","lat":24.65,"lon":-26.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T06:03:00","lat":28.705,"lon":-26.3276,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900571"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-04T21:45:00","lat":19.5666,"lon":-27.0166,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900573"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-08-04T19:20:00","lat":58.4726,"lon":-35.8354,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900565"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-05T03:45:00","lat":56.9966,"lon":-36.4205,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900566"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-06T21:35:00","lat":51.9996,"lon":-44.8525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2008-11-07T10:32:00","lat":50.9911,"lon":-45.6825,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900581"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-01T00:00:00","lat":15.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900696"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2008-11-21T12:49:00","lat":0.0,"lon":-12.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900475"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-24T21:42:00","lat":21.34,"lon":-18.56,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900695"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-CANOA"},"ptfDepl":{"deplDate":"2008-11-28T23:13:00","lat":26.5,"lon":-16.8,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900694"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-23T22:16:00","lat":14.7015,"lon":-54.9998,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900590"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-24T19:32:00","lat":14.6998,"lon":-49.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900591"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-29T12:47:00","lat":16.0,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900592"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-30T15:17:00","lat":19.0,"lon":-41.5,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900593"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-03-31T05:35:00","lat":21.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900594"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-09T09:53:00","lat":53.9311,"lon":-16.8911,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900654"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-08T12:45:00","lat":52.9945,"lon":-15.6374,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900653"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-11T21:15:00","lat":55.5933,"lon":-13.9562,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900651"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2009-02-12T16:45:00","lat":54.815,"lon":-11.8475,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900652"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-14T16:17:00","lat":0.8267,"lon":-84.1067,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3900737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-14T21:16:00","lat":1.4767,"lon":-84.8417,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900738"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2009-06-15T02:19:00","lat":2.1217,"lon":-85.5317,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900739"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-28T22:30:00","lat":10.0,"lon":-51.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2009-02-02T02:25:00","lat":19.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901035"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-09-29T19:45:00","lat":6.0,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900743"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2007-10-01T08:43:00","lat":28.0,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-05-17T18:18:00","lat":39.01,"lon":-12.78,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-07T20:14:00","lat":32.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900983"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-06T14:16:00","lat":52.516,"lon":-36.833,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900823"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-07T18:30:00","lat":51.016,"lon":-34.833,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900824"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-08T12:43:00","lat":50.016,"lon":-33.783,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900825"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-09T11:52:00","lat":49.6,"lon":-33.283,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900826"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-11-10T03:43:00","lat":47.683,"lon":-31.013,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900827"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-11T22:24:00","lat":7.95,"lon":-26.765,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901350"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-14T03:26:00","lat":8.024,"lon":-29.9828,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901351"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-24T10:06:00","lat":0.0,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3900997"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-26T21:28:00","lat":0.1,"lon":-0.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900847"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2009-06-21T22:14:00","lat":0.093,"lon":-12.994,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900464"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2009-09-24T19:30:00","lat":7.59,"lon":-25.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900742"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2009-12-11T19:00:00","lat":15.5,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901349"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-08T09:00:00","lat":51.157,"lon":-12.105,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900655"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-11T09:00:00","lat":55.283,"lon":-15.81,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900656"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2010-02-13T09:00:00","lat":55.283,"lon":-16.04,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-25T07:21:00","lat":75.056,"lon":-0.005,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900811"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-24T18:10:00","lat":74.992,"lon":-0.921,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900812"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.0,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900600"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900841"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-01T12:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900842"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-04-30T12:58:00","lat":0.6375,"lon":-13.49,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-01T18:56:00","lat":0.058,"lon":-19.51,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-02T17:18:00","lat":0.2,"lon":-22.999,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901468"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-01T03:10:00","lat":0.43,"lon":-16.51,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901467"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-12T12:21:00","lat":20.3125,"lon":-28.14,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-11T02:52:00","lat":20.007,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901457"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-15T11:20:00","lat":60.997,"lon":-20.041,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900613"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-16T08:30:00","lat":60.0,"lon":-20.038,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900614"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-16T23:58:00","lat":59.656,"lon":-19.138,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900615"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-17T05:19:00","lat":59.408,"lon":-18.427,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900616"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-13T15:55:00","lat":20.118,"lon":-34.5317,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-14T17:48:00","lat":20.0265,"lon":-37.8856,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901460"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-15T21:17:00","lat":22.3955,"lon":-43.001,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901464"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-16T13:31:00","lat":23.712,"lon":-46.058,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901463"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-05-17T10:20:00","lat":25.227,"lon":-50.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901461"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-19T16:00:00","lat":57.497,"lon":-11.862,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900618"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-19T19:33:00","lat":57.489,"lon":-11.525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900617"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-20T06:06:00","lat":57.348,"lon":-10.667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900619"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-05-20T00:00:00","lat":57.727,"lon":-10.365,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900620"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-10T12:00:00","lat":48.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900582"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":52.653,"lon":-35.336,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900820"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":50.052,"lon":-33.864,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900822"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-12T12:00:00","lat":52.5,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900821"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-24T11:40:00","lat":74.992,"lon":-2.164,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900839"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-25T12:24:00","lat":75.024,"lon":-1.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900840"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-15T12:00:00","lat":68.502,"lon":-2.987,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900814"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-29T14:06:00","lat":68.498,"lon":-4.016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900837"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-06-29T15:57:00","lat":68.501,"lon":-3.501,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900838"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-07T20:45:00","lat":26.833,"lon":-87.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-12T18:34:00","lat":26.0,"lon":-87.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901043"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2010-05-29T20:58:00","lat":69.66,"lon":-0.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900796"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2010-05-31T21:49:00","lat":66.51,"lon":-2.29,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900797"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-12T02:24:00","lat":40.338,"lon":-10.579,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902309"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-15T13:14:00","lat":42.888,"lon":-15.844,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902308"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-17T15:59:00","lat":45.808,"lon":-19.1032,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902307"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-19T13:32:00","lat":48.7916,"lon":-21.4302,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902306"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-20T14:29:00","lat":50.2766,"lon":-22.602,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902305"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-23T12:00:00","lat":47.0,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900829"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-24T12:00:00","lat":44.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-08-25T12:00:00","lat":40.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900831"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-21T13:44:00","lat":51.776,"lon":-23.7833,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902304"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-23T10:26:00","lat":54.75,"lon":-26.1303,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902303"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-24T10:01:00","lat":56.2517,"lon":-27.2867,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902302"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-25T00:57:00","lat":57.3791,"lon":-28.1864,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902301"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-25T14:59:00","lat":58.2122,"lon":-29.7164,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902300"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-26T17:25:00","lat":59.0383,"lon":-33.1857,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902299"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-27T06:55:00","lat":59.2342,"lon":-35.1157,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902298"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-27T23:11:00","lat":59.432,"lon":-37.0478,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902297"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2010-06-28T15:49:00","lat":59.6263,"lon":-38.9345,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902269"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-06-30T13:03:00","lat":17.4,"lon":-54.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901061"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-02T08:47:00","lat":22.6,"lon":-47.567,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901063"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-03T08:47:00","lat":25.65,"lon":-43.367,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901062"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-04T23:32:00","lat":30.4333,"lon":-36.617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901205"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-04T01:36:00","lat":27.617,"lon":-40.617,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901204"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2010-06-29T17:05:00","lat":45.5316,"lon":-1.4968,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-07-29T10:01:00","lat":6.1733,"lon":-44.8483,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901060"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-03T13:12:00","lat":0.848,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901059"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-10-26T12:00:00","lat":20.137,"lon":-20.754,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901085"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-11T12:00:00","lat":18.276,"lon":-35.037,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901086"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-14T12:00:00","lat":18.878,"lon":-45.495,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901087"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-17T12:00:00","lat":19.726,"lon":-55.809,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901088"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2010-11-23T19:28:00","lat":28.578,"lon":-73.623,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-11T00:05:00","lat":16.086,"lon":-19.3268,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901046"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-23T19:02:00","lat":21.1765,"lon":-25.9588,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-26T00:07:00","lat":27.1162,"lon":-34.992,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-08-29T00:07:00","lat":31.5167,"lon":-48.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-20T15:35:00","lat":8.9903,"lon":-29.2305,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901212"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-22T13:05:00","lat":16.9783,"lon":-29.455,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901213"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-09-25T00:30:00","lat":26.9632,"lon":-49.3248,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901211"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-09T17:17:00","lat":0.0,"lon":-8.011,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-12T21:25:00","lat":0.0028,"lon":-12.9998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-14T09:31:00","lat":7.0E-4,"lon":-18.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900723"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-16T01:23:00","lat":0.001,"lon":-23.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-11T12:05:00","lat":11.2261,"lon":-52.028,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901489"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-13T02:25:00","lat":4.4581,"lon":-43.0162,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901487"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-10-18T12:00:00","lat":5.994,"lon":-20.7497,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900720"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-11-27T01:10:00","lat":40.0,"lon":-19.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-11-29T06:40:00","lat":37.8333,"lon":-39.9667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-01T01:50:00","lat":36.3,"lon":-51.0167,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901218"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-12-02T10:55:00","lat":1.4918,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902294"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2010-12-03T07:43:00","lat":0.001,"lon":-0.998,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-12T20:35:00","lat":15.5,"lon":-52.0417,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-18T16:25:00","lat":27.4667,"lon":-73.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901222"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-17T10:38:00","lat":23.1583,"lon":-68.2833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901221"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-18T03:38:00","lat":23.5833,"lon":-71.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901224"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-12-18T05:23:00","lat":17.126,"lon":-26.504,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900623"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2010-12-18T19:55:00","lat":17.488,"lon":-28.241,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900624"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-01-02T08:28:00","lat":21.85,"lon":-38.03,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900625"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-01-02T20:18:00","lat":23.85,"lon":-36.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900626"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-17T06:28:00","lat":46.6513,"lon":-18.3347,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900864"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-15T17:15:00","lat":44.7176,"lon":-27.1348,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900863"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-13T22:38:00","lat":41.2032,"lon":-36.7935,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900862"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-09T21:50:00","lat":34.35,"lon":-59.3833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900865"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-11T22:26:00","lat":37.3239,"lon":-49.5843,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900867"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-13T10:05:00","lat":40.0025,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901047"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-12T12:00:00","lat":23.3745,"lon":-75.1225,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901048"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-15T12:00:00","lat":24.3703,"lon":-68.8673,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901049"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-04-16T12:00:00","lat":27.252,"lon":-73.5751,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901050"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-05-19T12:00:00","lat":21.0,"lon":-58.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901051"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-05-24T00:00:00","lat":21.093,"lon":-52.598,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901052"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-06-05T12:00:00","lat":26.0,"lon":-51.096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901053"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-06-09T12:00:00","lat":28.0,"lon":-59.204,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901054"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-08T14:09:00","lat":48.501,"lon":-32.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901060"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-09T23:23:00","lat":47.576,"lon":-33.544,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901061"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-07T05:54:00","lat":50.171,"lon":-33.972,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901062"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-11T18:09:00","lat":47.177,"lon":-39.192,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901063"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-04T03:10:00","lat":51.001,"lon":-40.087,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901064"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-05T12:00:00","lat":49.489,"lon":-42.934,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901065"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-14T19:11:00","lat":47.099,"lon":-43.423,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901066"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-26T23:46:00","lat":69.001,"lon":-10.0429,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901069"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-26T20:55:00","lat":69.0,"lon":-9.595,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901070"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-25T16:52:00","lat":69.0,"lon":-4.9989,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901058"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-07-25T19:56:00","lat":68.9984,"lon":-5.4451,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-02T23:24:00","lat":0.0055,"lon":-22.4442,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901283"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-06T11:20:00","lat":14.9978,"lon":-39.7855,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901280"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-08T10:50:00","lat":23.279,"lon":-49.5065,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-10T03:54:00","lat":30.0055,"lon":-58.4691,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901282"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-11T09:53:00","lat":35.187,"lon":-65.2758,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901465"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-12T01:23:00","lat":37.4997,"lon":-68.8158,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901278"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-17T09:43:00","lat":51.0,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-12T06:57:00","lat":49.92,"lon":-40.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-21T23:53:00","lat":51.0,"lon":-40.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903389"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-09T21:47:00","lat":53.0,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903390"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-21T11:35:00","lat":49.5,"lon":-40.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903391"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-10T12:06:00","lat":53.0,"lon":-43.61,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903392"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-11T02:19:00","lat":52.97,"lon":-41.23,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903393"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-20T06:33:00","lat":52.0,"lon":-42.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5903394"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-17T21:26:00","lat":52.0,"lon":-44.78,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903395"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-18T18:12:00","lat":50.05,"lon":-44.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-13T15:00:00","lat":47.0,"lon":-41.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903398"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-20T18:48:00","lat":50.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903399"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-12T23:15:00","lat":47.95,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-03-19T06:00:00","lat":49.0,"lon":-43.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903397"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-26T11:01:00","lat":13.5333,"lon":-50.1333,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-27T05:18:00","lat":10.7167,"lon":-45.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901499"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-27T11:43:00","lat":7.8333,"lon":-41.4833,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901504"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-04-29T09:52:00","lat":2.55,"lon":-33.95,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901498"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-12-04T12:41:00","lat":35.25,"lon":-70.2667,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901217"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T04:15:00","lat":60.99,"lon":-20.011,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900446"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T12:05:00","lat":60.489,"lon":-19.988,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900447"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-26T20:06:00","lat":59.975,"lon":-19.963,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900448"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-05-27T05:30:00","lat":59.628,"lon":-19.117,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901294"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-10-20T18:02:00","lat":38.5913,"lon":-68.9073,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901214"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-08T08:32:00","lat":31.37,"lon":-25.08,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1900984"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-16T18:35:00","lat":20.51,"lon":-62.211,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901288"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-20T12:40:00","lat":23.0,"lon":-57.005,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901287"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-05-22T22:56:00","lat":20.292,"lon":-53.806,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901286"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2011-06-10T05:19:00","lat":4.005,"lon":-21.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900941"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2011-06-11T07:43:00","lat":7.9992,"lon":-19.962,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900924"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-06-25T16:59:00","lat":37.6783,"lon":-22.8981,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900958"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-06-24T09:16:00","lat":36.8199,"lon":-15.004,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900957"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-06-29T14:00:00","lat":47.7976,"lon":-25.021,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901211"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-06-30T22:45:00","lat":47.6183,"lon":-29.898,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901212"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-05T14:30:00","lat":51.692,"lon":-35.788,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901213"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-21T20:46:00","lat":45.9828,"lon":-20.1367,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901205"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-21T16:50:00","lat":54.8365,"lon":-43.4558,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901214"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-23T23:00:00","lat":57.1285,"lon":-43.6819,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901215"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-24T23:30:00","lat":38.275,"lon":-19.997,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901208"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-29T04:45:00","lat":56.2931,"lon":-52.4074,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901218"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2011-08-01T06:22:00","lat":74.9983,"lon":-1.0017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901087"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2011-08-01T09:55:00","lat":74.9981,"lon":-0.4981,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901086"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-28T17:32:00","lat":59.7439,"lon":-40.7474,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900753"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-28T23:10:00","lat":59.6668,"lon":-39.7442,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900754"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-29T14:58:00","lat":59.2226,"lon":-39.5073,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900755"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-29T20:43:00","lat":59.5698,"lon":-38.77,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900756"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T02:43:00","lat":59.4656,"lon":-37.7798,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900757"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T08:18:00","lat":59.3922,"lon":-36.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900758"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2011-07-30T14:00:00","lat":59.2981,"lon":-35.898,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900759"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-23T08:59:00","lat":42.408,"lon":-20.158,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901206"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-07-27T16:43:00","lat":43.414,"lon":-17.431,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901192"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-07-26T10:57:00","lat":40.6988,"lon":-23.9257,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900911"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-26T02:21:00","lat":57.4558,"lon":-51.1537,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901217"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-08-12T01:00:00","lat":58.999,"lon":-40.205,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901209"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2011-07-17T08:13:00","lat":63.038,"lon":-35.486,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901210"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2011-08-01T00:00:00","lat":36.65,"lon":-67.7,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901290"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2011-08-23T05:37:00","lat":75.88,"lon":-2.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903592"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-29T11:00:00","lat":26.4146,"lon":-40.4681,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901118"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-09-30T09:55:00","lat":26.5682,"lon":-36.2506,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901119"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-01T09:56:00","lat":26.7134,"lon":-31.9094,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901120"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-02T10:08:00","lat":26.96,"lon":-27.765,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901121"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-03T10:03:00","lat":27.0152,"lon":-23.3121,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901122"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-04T08:52:00","lat":27.1525,"lon":-19.2581,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901123"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2011-10-06T13:50:00","lat":27.271,"lon":-15.411,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901124"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-07T15:16:00","lat":14.52,"lon":-79.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901486"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-06T06:28:00","lat":18.45,"lon":-81.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901485"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-11T10:36:00","lat":19.2633,"lon":-21.8666,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901055"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-10T23:47:00","lat":21.0667,"lon":-21.5333,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2011-12-10T09:00:00","lat":22.75,"lon":-20.5167,"noSite":null},"ptfModel":{"nameShort":"NEMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T03:48:00","lat":34.69,"lon":-71.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T18:07:00","lat":32.19,"lon":-73.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900110"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-29T23:57:00","lat":31.6,"lon":-74.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-30T05:52:00","lat":30.99,"lon":-75.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900112"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2011-10-30T11:12:00","lat":30.41,"lon":-76.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900113"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-10T12:57:00","lat":22.003,"lon":-19.3132,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-13T20:11:00","lat":12.0018,"lon":-20.832,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900703"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-01T18:08:00","lat":40.4818,"lon":-11.1073,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900701"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-23T10:07:00","lat":25.9877,"lon":-25.4417,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900961"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-25T17:52:00","lat":23.9167,"lon":-35.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900912"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-27T15:35:00","lat":21.2167,"lon":-44.533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900959"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-11-29T12:12:00","lat":20.0,"lon":-52.533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900935"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-02-06T23:48:00","lat":11.89,"lon":-63.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901497"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-02-04T03:37:00","lat":11.0,"lon":-77.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901498"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-04-27T21:09:00","lat":38.733,"lon":-69.2138,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901085"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":34.8518,"lon":-65.8576,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901217"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-04-29T03:12:00","lat":32.0,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901218"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":30.069,"lon":-44.7016,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901219"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-05-01T12:00:00","lat":31.8515,"lon":-38.7853,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901220"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2011-08-12T15:00:00","lat":45.6516,"lon":-3.009,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900963"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2010-09-02T00:00:00","lat":46.9015,"lon":-4.3222,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902316"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-03-25T22:26:00","lat":0.0076,"lon":-23.0076,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900987"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-03-29T21:18:00","lat":0.004,"lon":-9.8677,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900988"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2012-03-11T08:30:00","lat":14.34,"lon":-17.66,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900983"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2012-03-08T01:04:00","lat":14.86,"lon":-17.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900982"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-03-08T07:02:00","lat":14.2726,"lon":-17.6183,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900917"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-03-15T19:00:00","lat":14.6866,"lon":-17.7363,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900919"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T14:34:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901079"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T19:32:00","lat":68.4,"lon":-2.9333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901077"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T12:04:00","lat":69.4983,"lon":-8.995,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901078"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T22:07:00","lat":68.4833,"lon":-3.9666,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901082"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-04-17T18:30:00","lat":1.015,"lon":-3.9893,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901008"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2012-04-18T12:52:00","lat":3.0045,"lon":-3.9758,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901007"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-02T15:30:00","lat":31.351,"lon":-49.324,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900970"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-05-07T18:04:00","lat":36.1,"lon":-7.8,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-05-08T12:40:00","lat":38.6,"lon":-10.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901435"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-12T20:00:00","lat":34.34,"lon":-13.053,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901419"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-11T18:30:00","lat":39.15,"lon":-11.461,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901418"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-16T07:55:00","lat":18.788,"lon":-19.495,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901204"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-22T11:34:00","lat":6.545,"lon":-12.1917,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900946"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-11T15:00:00","lat":47.1016,"lon":-43.1183,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901410"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-12T16:44:00","lat":47.1333,"lon":-40.8333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901411"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-13T03:50:00","lat":47.1766,"lon":-39.1883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901412"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-15T01:35:00","lat":47.6666,"lon":-32.1416,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901413"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-17T05:35:00","lat":50.1713,"lon":-33.9722,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901414"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-18T05:58:00","lat":51.95,"lon":-36.137,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901415"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-20T13:59:00","lat":54.1117,"lon":-44.2255,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901416"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-13T23:09:00","lat":47.3666,"lon":-35.8908,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901680"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-07-20T10:43:00","lat":53.8727,"lon":-43.4186,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901681"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-06-15T13:33:00","lat":60.32,"lon":-5.07,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900114"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-05-30T21:25:00","lat":26.8845,"lon":-52.7782,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900969"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-17T12:03:00","lat":62.0075,"lon":-15.0181,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900973"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-21T16:17:00","lat":2.7567,"lon":-0.6717,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901015"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-20T20:31:00","lat":36.8265,"lon":-28.78,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901407"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-23T08:30:00","lat":41.6666,"lon":-60.4,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-27T11:21:00","lat":41.3833,"lon":-13.8877,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901021"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-06-30T10:10:00","lat":60.623,"lon":-24.9816,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900899"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-02T05:59:00","lat":36.01,"lon":-12.2667,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901019"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-01T11:48:00","lat":57.3619,"lon":-24.966,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900897"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-02T11:01:00","lat":54.0812,"lon":-24.9923,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-03T11:43:00","lat":50.42,"lon":-25.0374,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900966"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-04T10:16:00","lat":46.7708,"lon":-25.0017,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900972"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-05T10:43:00","lat":42.7028,"lon":-25.008,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900995"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-06T02:37:00","lat":49.5342,"lon":-22.0242,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901022"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-11T00:04:00","lat":75.0,"lon":-2.883,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901127"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-07-02T05:20:00","lat":45.7933,"lon":-19.0967,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900999"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-14T01:28:00","lat":59.1015,"lon":-33.822,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901028"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-15T19:22:00","lat":59.621,"lon":-39.9543,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-12T23:08:00","lat":59.4047,"lon":-30.1017,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-12T09:24:00","lat":57.6715,"lon":-28.725,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901026"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-14T22:10:00","lat":59.3575,"lon":-36.3912,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2012-07-18T19:10:00","lat":59.0672,"lon":-46.0765,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900965"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-20T15:50:00","lat":53.6883,"lon":-49.4335,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901001"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-20T23:59:00","lat":75.535,"lon":-1.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901128"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T02:10:00","lat":75.167,"lon":-2.227,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901129"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T04:18:00","lat":74.797,"lon":-2.962,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901130"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T06:24:00","lat":74.428,"lon":-3.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901131"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-07-21T08:32:00","lat":74.059,"lon":-4.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901132"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2012-11-14T16:50:00","lat":8.9948,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901354"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-28T19:54:00","lat":30.8,"lon":-51.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900971"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-11T23:59:00","lat":59.375,"lon":-18.346,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901133"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-12T17:02:00","lat":59.833,"lon":-19.556,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901134"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-13T06:53:00","lat":60.497,"lon":-19.984,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901135"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-11T15:05:00","lat":38.4,"lon":-72.49,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-11T05:15:00","lat":37.35,"lon":-73.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901525"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-08-14T01:39:00","lat":61.5,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901136"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-08-14T19:06:00","lat":31.7,"lon":-76.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-08-12T11:44:00","lat":37.2667,"lon":-17.2834,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900968"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-13T17:40:00","lat":35.85,"lon":-7.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900115"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-14T03:54:00","lat":35.9,"lon":-4.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq_IR"},"ptfDepl":{"deplDate":"2007-09-26T13:30:00","lat":60.4265,"lon":-52.6155,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901403"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-21T01:58:00","lat":27.7,"lon":-75.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901532"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-22T20:05:00","lat":29.6,"lon":-74.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-23T14:06:00","lat":30.75,"lon":-75.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-26T14:13:00","lat":28.6,"lon":-78.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901533"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-09-26T09:02:00","lat":27.55,"lon":-78.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901536"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-04T04:22:00","lat":32.8746,"lon":-15.1533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901410"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-12T09:38:00","lat":30.705,"lon":-16.0765,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901411"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2012-09-12T18:50:00","lat":26.3067,"lon":-35.1961,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901915"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2012-09-06T19:34:00","lat":35.2,"lon":-26.31,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901913"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-20T08:43:00","lat":34.1333,"lon":-12.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901412"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-20T15:30:00","lat":25.1462,"lon":-17.9394,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901415"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-19T09:43:00","lat":35.9555,"lon":-12.0105,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901409"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-22T16:25:00","lat":26.195,"lon":-19.322,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901142"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-14T09:00:00","lat":32.165,"lon":-15.652,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901143"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-10-31T12:03:00","lat":25.377,"lon":-23.593,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901146"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-10-31T09:49:00","lat":40.4013,"lon":-11.2097,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901413"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T15:27:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901474"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901475"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901473"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2012-10-23T18:19:00","lat":23.75,"lon":-41.1,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901472"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-11-08T12:01:00","lat":23.9494,"lon":-18.5506,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901414"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-11-10T11:05:00","lat":18.3727,"lon":-19.3003,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901408"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-11-12T21:00:00","lat":25.9417,"lon":-62.9697,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901144"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-11-10T20:00:00","lat":25.2141,"lon":-53.4887,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901145"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T17:01:00","lat":46.0654,"lon":-7.4349,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-21T21:49:00","lat":16.31,"lon":-76.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901539"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-22T10:29:00","lat":14.04,"lon":-77.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-22T23:10:00","lat":11.77,"lon":-78.63,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-25T20:33:00","lat":1.74,"lon":-82.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901144"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-08T16:41:00","lat":52.8877,"lon":-24.6542,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901023"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-10T17:03:00","lat":56.6223,"lon":-27.5742,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901025"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2012-07-10T00:35:00","lat":55.3238,"lon":-26.5555,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901024"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-10-21T16:30:00","lat":46.0931,"lon":-7.4377,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901478"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-11-30T18:12:00","lat":12.2483,"lon":-47.088,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901442"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-11-27T19:58:00","lat":26.2348,"lon":-35.5312,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901443"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-01-24T13:12:00","lat":16.59,"lon":-29.31,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900984"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-01T12:31:00","lat":15.0667,"lon":-49.7167,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901018"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-04T20:16:00","lat":14.5,"lon":-60.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901014"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-02-02T06:35:00","lat":1.5,"lon":-85.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-02-02T18:32:00","lat":3.01,"lon":-83.97,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901147"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-31T18:03:00","lat":47.7851,"lon":-39.0081,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901420"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-05-31T02:22:00","lat":47.2928,"lon":-37.3563,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901227"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-06-13T18:45:00","lat":48.9575,"lon":-14.2221,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901229"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-08-23T17:33:00","lat":25.9935,"lon":-35.6993,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901441"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-28T04:23:00","lat":68.7512,"lon":-3.0109,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901231"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-28T00:34:00","lat":68.7385,"lon":-4.0332,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901232"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-27T08:27:00","lat":69.3355,"lon":-10.0052,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901233"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2013-07-27T11:55:00","lat":69.3287,"lon":-9.0279,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901234"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-27T10:41:00","lat":34.1517,"lon":-27.0867,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901448"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-03-18T02:48:00","lat":14.5083,"lon":-17.6886,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900918"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-03-01T17:31:00","lat":13.6655,"lon":-17.4838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900913"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-04-01T11:48:00","lat":10.0668,"lon":-48.6408,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901445"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-31T12:59:00","lat":14.7,"lon":-44.7233,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901446"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-03-30T13:12:00","lat":19.578,"lon":-40.54,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901447"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2013-03-26T17:00:00","lat":38.4346,"lon":-9.7669,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901914"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:00:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901514"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:21:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901515"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T16:35:00","lat":62.719,"lon":-20.58,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901516"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:37:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901517"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T16:48:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901518"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:12:00","lat":62.72,"lon":-20.6,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901520"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-04-17T17:30:00","lat":62.72,"lon":-20.62,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901519"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2012-09-04T16:33:00","lat":25.53,"lon":-35.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901468"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-01-23T00:00:00","lat":45.185,"lon":-3.38,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901488"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-01-27T11:00:00","lat":24.2838,"lon":-19.6345,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901417"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-14T09:20:00","lat":61.26,"lon":-20.038,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901147"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-14T17:34:00","lat":57.79,"lon":-51.32,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901522"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:39:00","lat":58.69,"lon":-50.33,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901521"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:45:00","lat":58.68,"lon":-50.36,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901524"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:45:00","lat":58.69,"lon":-50.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901526"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T12:05:00","lat":57.78,"lon":-51.44,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901527"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T06:07:00","lat":58.62,"lon":-50.34,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901523"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-05-15T12:05:00","lat":57.78,"lon":-51.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901525"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-16T02:05:00","lat":60.0,"lon":-20.005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901148"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-16T20:58:00","lat":59.409,"lon":-18.425,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901149"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-05-20T03:26:00","lat":58.283,"lon":-10.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901150"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2013-07-20T12:00:00","lat":75.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901905"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2013-07-20T12:00:00","lat":75.0,"lon":-2.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901906"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T08:00:00","lat":62.76,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901481"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T21:05:00","lat":62.76,"lon":-30.26,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901486"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T19:46:00","lat":62.76,"lon":-30.29,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901480"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T21:29:00","lat":62.76,"lon":-30.253,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901484"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T20:06:00","lat":62.76,"lon":-30.28,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901485"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T19:11:00","lat":62.75,"lon":-30.3,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901489"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2013-06-16T20:48:00","lat":62.76,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901482"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T08:28:00","lat":32.251,"lon":-49.5566,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T00:58:00","lat":35.667,"lon":-47.4547,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901470"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-06T11:20:00","lat":37.1128,"lon":-37.0616,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901469"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-09T04:44:00","lat":34.0246,"lon":-54.8848,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901467"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-07T12:27:00","lat":36.2623,"lon":-43.9762,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901597"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-08T17:53:00","lat":34.7068,"lon":-52.0752,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901466"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-06T21:18:00","lat":27.3984,"lon":-86.7497,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2013-08-01T20:25:00","lat":27.6027,"lon":-88.1063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901477"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2013-10-08T12:46:00","lat":5.04,"lon":-51.14,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901495"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2013-10-09T14:05:00","lat":4.81,"lon":-51.24,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901494"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-10-10T11:00:00","lat":45.7495,"lon":-2.4332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-10-12T04:56:00","lat":46.9022,"lon":-4.333,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901572"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-14T13:41:00","lat":30.369,"lon":-23.157,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901154"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-14T13:42:00","lat":30.369,"lon":-23.157,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901155"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-15T14:32:00","lat":26.655,"lon":-25.063,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901153"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2013-10-15T14:34:00","lat":26.655,"lon":-25.063,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901156"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-11-20T11:15:00","lat":19.833,"lon":-22.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901506"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-08-24T18:57:00","lat":37.2782,"lon":-30.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901499"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-08-24T18:31:00","lat":37.3028,"lon":-30.3132,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-05T00:20:00","lat":15.42,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-11-28T07:32:00","lat":11.25,"lon":-80.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901641"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-11-28T14:24:00","lat":12.55,"lon":-80.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901642"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2013-12-11T16:14:00","lat":18.8,"lon":-79.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901647"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-15T01:58:00","lat":15.6,"lon":-56.4167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901509"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-14T12:36:00","lat":8.3519,"lon":-47.9244,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901598"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-12-15T11:34:00","lat":10.1437,"lon":-52.3007,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900915"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2013-11-17T07:20:00","lat":45.5,"lon":-7.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901597"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-04T12:28:00","lat":10.7366,"lon":-54.3066,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900533"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2014-01-20T23:57:00","lat":64.6665,"lon":-0.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902546"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-03-31T12:00:00","lat":3.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900536"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-02-07T09:30:00","lat":54.65,"lon":-42.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900539"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-07T21:23:00","lat":6.6833,"lon":-44.1333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900534"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-03-31T12:00:00","lat":3.0,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900537"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-01T17:00:00","lat":11.378,"lon":-18.725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900540"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-04-06T20:56:00","lat":5.875,"lon":-37.9216,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900535"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-19T07:58:00","lat":40.616,"lon":-11.413,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900538"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-10T08:00:00","lat":14.718,"lon":-51.31,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901017"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-01T11:05:00","lat":17.503,"lon":-30.2808,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901591"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-03T18:10:00","lat":15.2845,"lon":-35.2133,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901590"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-13T22:34:00","lat":14.3633,"lon":-59.92,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902296"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-25T12:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-17T10:46:00","lat":16.52,"lon":-36.673,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901556"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-22T01:32:00","lat":16.906,"lon":-37.732,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901551"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-02-25T20:48:00","lat":16.906,"lon":-42.081,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901552"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-02-27T05:50:00","lat":16.023,"lon":-45.277,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-09T20:15:00","lat":10.9531,"lon":-30.6845,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901712"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2013-09-27T19:00:00","lat":15.98,"lon":-17.61,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900890"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2014-06-10T02:47:00","lat":65.9972,"lon":-0.017,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902015"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2014-06-10T03:50:00","lat":66.1608,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902016"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2013-04-25T01:40:00","lat":15.5,"lon":-17.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900916"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901361"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901362"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901363"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901364"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-25T12:00:00","lat":18.0,"lon":-17.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901365"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-29T14:56:00","lat":57.0,"lon":-21.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900876"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-29T20:34:00","lat":57.52,"lon":-21.89,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-20T22:30:00","lat":35.9,"lon":-4.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-24T17:00:00","lat":16.53,"lon":-77.22,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901643"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-23T23:43:00","lat":14.99,"lon":-80.09,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901644"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-04-27T13:59:00","lat":36.3,"lon":-7.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900322"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-04-25T23:51:00","lat":1.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-24T02:09:00","lat":29.85,"lon":-65.5583,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-25T07:17:00","lat":26.53,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-25T14:55:00","lat":26.41,"lon":-88.4933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901598"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-04-26T06:40:00","lat":26.29,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901597"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2014-04-21T15:00:00","lat":47.8003,"lon":-41.2167,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901917"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2014-04-18T10:00:00","lat":51.8168,"lon":-31.0334,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901916"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-21T05:28:00","lat":37.0001,"lon":-19.9985,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902552"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-22T02:33:00","lat":38.9999,"lon":-20.1201,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902553"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-06-23T03:06:00","lat":41.0021,"lon":-20.2838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902554"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2014-05-25T00:00:00","lat":36.9,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901861"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2014-05-24T18:59:00","lat":35.88,"lon":-1.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901877"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2014-06-09T02:56:00","lat":55.52,"lon":-26.71,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901647"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-24T06:00:00","lat":23.792,"lon":-24.108,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901164"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-23T08:00:00","lat":23.763,"lon":-25.48,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901163"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-22T04:00:00","lat":23.76,"lon":-29.358,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901162"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-21T11:00:00","lat":23.765,"lon":-33.372,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901161"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-05-19T20:58:00","lat":23.772,"lon":-39.978,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901160"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-13T03:00:00","lat":22.0,"lon":-64.9827,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901626"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-08T11:45:00","lat":35.0316,"lon":-66.85,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-09T11:30:00","lat":29.48,"lon":-65.0315,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901621"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T08:40:00","lat":28.015,"lon":-64.9933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901622"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-13T16:30:00","lat":20.9816,"lon":-65.085,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901625"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-03T04:34:00","lat":39.0947,"lon":-69.4906,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901628"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-11T13:59:00","lat":39.0265,"lon":-69.3208,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901629"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-05T10:50:00","lat":37.8956,"lon":-68.5766,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901630"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T21:31:00","lat":36.0152,"lon":-67.3401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901631"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-05T10:50:00","lat":37.8956,"lon":-68.5766,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901673"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-10T21:31:00","lat":36.0152,"lon":-67.3401,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901674"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-07T13:32:00","lat":36.0229,"lon":-67.4552,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901675"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-08T16:37:00","lat":34.26,"lon":-66.2905,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901676"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2014-06-15T09:44:00","lat":59.32,"lon":-38.95,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901646"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-20T20:13:00","lat":17.1158,"lon":-64.0947,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-20T20:30:00","lat":9.7033,"lon":-53.0733,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901623"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-05-21T05:00:00","lat":8.0667,"lon":-52.5183,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901624"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-06-12T09:35:00","lat":59.1,"lon":-33.85,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904989"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-06-12T00:38:00","lat":58.9,"lon":-32.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904988"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-06-23T00:04:00","lat":29.25,"lon":-73.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901645"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-05T01:42:00","lat":50.28,"lon":-22.6,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901565"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-09T20:10:00","lat":57.2,"lon":-27.88,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901566"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-02T23:42:00","lat":48.042,"lon":-20.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901568"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-28T16:45:00","lat":42.583,"lon":-15.45,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901569"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-23T12:07:00","lat":40.333,"lon":-12.217,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-05-14T09:53:00","lat":34.94,"lon":-26.7,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901554"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-05-10T11:44:00","lat":36.95,"lon":-47.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901508"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-05-08T00:02:00","lat":0.0,"lon":-0.0167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901614"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-PIRATA"},"ptfDepl":{"deplDate":"2014-05-19T01:54:00","lat":1.033,"lon":-4.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901617"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-06-24T17:51:00","lat":53.6918,"lon":-49.4373,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-05-31T07:55:00","lat":46.5146,"lon":-19.6495,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901570"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-07-14T06:35:00","lat":60.15,"lon":-6.38,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900373"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-03T14:08:00","lat":43.4729,"lon":-57.5328,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902563"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-05T03:50:00","lat":57.953,"lon":-27.0006,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901170"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-06T23:52:00","lat":57.908,"lon":-20.6856,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901171"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T01:44:00","lat":59.4016,"lon":-18.4351,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901172"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T11:08:00","lat":59.8087,"lon":-19.5039,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901173"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-10T18:55:00","lat":60.2495,"lon":-19.9994,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901166"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-12T20:05:00","lat":61.4996,"lon":-20.0013,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901169"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-13T09:55:00","lat":61.0006,"lon":-20.0014,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901168"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2014-07-15T18:52:00","lat":57.2986,"lon":-10.3811,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901167"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T21:24:00","lat":2.995,"lon":-24.8433,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901684"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-12T10:24:00","lat":4.9933,"lon":-27.185,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901717"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T16:13:00","lat":1.9833,"lon":-23.6833,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901722"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T02:50:00","lat":0.0016,"lon":-21.0383,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-11T09:20:00","lat":1.0116,"lon":-22.5316,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901713"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2014-07-20T13:01:00","lat":68.581,"lon":-4.708,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902548"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-25T11:47:00","lat":41.41,"lon":-60.676,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902565"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-05T08:04:00","lat":42.0223,"lon":-67.2064,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902566"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-10-04T10:10:00","lat":43.115,"lon":-58.9378,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902567"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-06T00:00:00","lat":46.5166,"lon":-8.5333,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902571"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-08T00:00:00","lat":36.1646,"lon":-14.5361,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-23T00:00:00","lat":11.689,"lon":-47.956,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902573"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-12-26T00:00:00","lat":10.0,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902574"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-01-05T00:00:00","lat":10.4933,"lon":-39.4028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902575"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-01-06T00:00:00","lat":10.6495,"lon":-42.0525,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902576"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-11-11T00:00:00","lat":3.9983,"lon":-23.0325,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902577"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-11-13T10:15:00","lat":0.6616,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902578"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-14T14:00:00","lat":36.189,"lon":-30.1611,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901679"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-15T07:39:00","lat":35.5921,"lon":-35.0084,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901699"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-19T06:20:00","lat":30.1256,"lon":-60.0046,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901700"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-16T02:18:00","lat":34.9914,"lon":-40.0523,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901701"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-07-16T20:52:00","lat":33.8019,"lon":-45.0065,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901702"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-09T05:09:00","lat":60.42,"lon":-5.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2901467"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-19T12:00:00","lat":58.5,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902584"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-21T12:00:00","lat":54.0,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902586"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-22T12:00:00","lat":52.5,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902587"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-20T12:00:00","lat":51.0,"lon":-46.5,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-25T12:00:00","lat":54.968,"lon":-50.037,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-07-27T15:49:00","lat":46.9,"lon":-4.33,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901681"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-07-27T05:53:00","lat":45.75,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901682"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-20T21:34:00","lat":28.07,"lon":-89.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901646"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-30T01:30:00","lat":28.46,"lon":-88.97,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-08-31T14:30:00","lat":28.07,"lon":-89.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902058"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-14T18:19:00","lat":45.306,"lon":-6.672,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901607"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-14T14:32:00","lat":45.645,"lon":-5.97,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901608"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-13T06:02:00","lat":5.952,"lon":-25.482,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901728"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-18T21:34:00","lat":24.9435,"lon":-46.83,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901730"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-03-29T20:53:00","lat":17.8733,"lon":-64.9096,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T11:54:00","lat":41.7717,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T05:01:00","lat":41.7727,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T11:51:00","lat":41.4125,"lon":-60.6759,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901704"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-25T05:07:00","lat":41.7717,"lon":-60.9083,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901705"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-09-21T13:08:00","lat":42.4731,"lon":-61.4194,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902564"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2014-10-05T12:19:00","lat":38.4338,"lon":-12.356,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901450"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-16T07:47:00","lat":36.3,"lon":-7.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900374"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-21T11:28:00","lat":25.6,"lon":-74.3,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-22T05:58:00","lat":25.6,"lon":-72.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902061"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-03-11T15:56:00","lat":9.0066,"lon":-17.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902603"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-10-24T20:30:00","lat":25.2,"lon":-70.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902060"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_IFM-GEOMAR"},"ptfDepl":{"deplDate":"2014-11-10T00:00:00","lat":10.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900889"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-07T18:25:00","lat":18.65,"lon":-17.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901003"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-08T14:00:00","lat":23.388,"lon":-18.48,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901416"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-11-29T21:37:00","lat":27.0,"lon":-77.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902066"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-11-29T14:01:00","lat":28.01,"lon":-78.25,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902069"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-12-02T00:00:00","lat":16.36,"lon":-77.39,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902067"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2014-12-03T00:00:00","lat":15.01,"lon":-80.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902070"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-29T00:00:00","lat":14.77,"lon":-27.0806,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901588"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-11-29T00:00:00","lat":14.7763,"lon":-20.4362,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901618"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-01-26T00:00:00","lat":26.3606,"lon":-19.0944,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901619"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-06T00:00:00","lat":37.2167,"lon":-12.9667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-16T00:00:00","lat":15.0663,"lon":-41.3313,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901622"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-10-22T00:00:00","lat":33.1008,"lon":-13.2169,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901623"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-01T00:00:00","lat":7.35,"lon":-35.9333,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901624"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-05T00:00:00","lat":2.15,"lon":-37.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901626"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2014-12-10T00:00:00","lat":11.6198,"lon":-46.6125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901449"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-12-04T00:00:00","lat":17.0612,"lon":-36.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901505"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-06T00:00:00","lat":53.0241,"lon":-24.7524,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901593"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-09-05T00:00:00","lat":1.16,"lon":-84.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-28T00:00:00","lat":0.5,"lon":-84.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-30T00:00:00","lat":10.0,"lon":-24.386,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901709"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-30T00:00:00","lat":11.0,"lon":-23.9073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-01T00:00:00","lat":4.5,"lon":-27.0391,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-10-31T00:00:00","lat":8.5,"lon":-25.12,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901712"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-26T00:00:00","lat":17.0,"lon":-67.52,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901711"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-11-26T00:00:00","lat":16.32,"lon":-66.21,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901710"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2014-09-27T14:39:00","lat":46.3982,"lon":-6.5044,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902290"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-09T00:00:00","lat":56.252,"lon":-27.292,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901592"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-02-21T12:06:00","lat":12.0,"lon":-79.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902068"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-02-25T18:00:00","lat":17.224,"lon":-36.046,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901728"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-02-26T16:30:00","lat":15.995,"lon":-37.889,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901729"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-03-01T08:48:00","lat":13.42,"lon":-75.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902065"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-09T04:33:00","lat":36.0,"lon":-72.46,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902094"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-08T22:11:00","lat":35.5,"lon":-73.72,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902095"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-17T12:00:00","lat":8.001,"lon":-27.999,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902607"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-39.333,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902608"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-12T07:00:00","lat":7.499,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902606"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-08T15:00:00","lat":7.748,"lon":-40.749,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902610"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":7.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902611"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":10.999,"lon":-45.998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902612"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-34.997,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902613"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-15T15:30:00","lat":47.1316,"lon":-39.9998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901425"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-13T07:21:00","lat":47.3745,"lon":-35.9998,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901424"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-05T15:45:00","lat":52.5831,"lon":-36.9336,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901423"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-06T16:23:00","lat":51.0,"lon":-34.8335,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901422"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-25T06:32:00","lat":36.2,"lon":-2.17,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900378"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-04-26T01:30:00","lat":35.96,"lon":-6.7,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900379"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-05T00:40:00","lat":16.0506,"lon":-39.121,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-13T16:07:00","lat":24.75,"lon":-32.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901718"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-05-15T16:30:00","lat":26.27,"lon":-18.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901620"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":11.0,"lon":-49.499,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902609"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-05-22T00:00:00","lat":31.88,"lon":-54.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901727"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2014-12-11T00:00:00","lat":20.5853,"lon":-54.9325,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901715"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2015-04-22T13:06:00","lat":52.34,"lon":-18.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901919"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-04T00:00:00","lat":20.0038,"lon":-82.9887,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901716"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2015-04-22T03:00:00","lat":53.06,"lon":-12.93,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901920"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-08-05T23:54:00","lat":61.83,"lon":-35.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-08-07T06:07:00","lat":62.81,"lon":-27.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900381"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-08-18T00:00:00","lat":35.0044,"lon":-12.0097,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902663"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-08-19T17:25:00","lat":32.9969,"lon":-12.0002,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902664"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2014-06-10T10:31:00","lat":58.2125,"lon":-29.732,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901627"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-03T08:53:00","lat":53.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902662"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-01T13:36:00","lat":28.72,"lon":-88.27,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902291"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-03T20:09:00","lat":60.2,"lon":-6.21,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900414"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-09-06T08:00:00","lat":31.279,"lon":-11.8797,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901672"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-06T17:05:00","lat":58.1667,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902661"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2014-05-01T00:00:00","lat":35.967,"lon":-12.341,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901239"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-18T12:35:00","lat":56.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900382"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-24T11:34:00","lat":60.0,"lon":-56.1167,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-09-25T06:35:00","lat":57.0,"lon":-57.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-09-29T19:01:00","lat":35.0,"lon":-7.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-17T00:32:00","lat":20.9946,"lon":-83.1112,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901718"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-01T10:05:00","lat":20.8447,"lon":-79.8419,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901719"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-10T01:51:00","lat":26.1665,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901721"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-05-19T15:39:00","lat":27.0,"lon":-87.5045,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902098"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-15T00:00:00","lat":11.9975,"lon":-31.6348,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901731"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-11T00:00:00","lat":0.0038,"lon":-20.0247,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1901806"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-09-28T00:00:00","lat":44.2553,"lon":-55.7927,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902099"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-15T00:00:00","lat":25.0,"lon":-88.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902295"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-23T00:00:00","lat":35.9,"lon":-6.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1901520"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-10-02T12:00:00","lat":42.4596,"lon":-61.4543,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902636"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-27T12:00:00","lat":43.4734,"lon":-57.4731,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902635"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-26T12:00:00","lat":43.7661,"lon":-57.7741,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902634"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-27T12:00:00","lat":43.89,"lon":-57.3276,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902633"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-09-26T12:00:00","lat":43.7643,"lon":-57.7725,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902632"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-09T17:30:00","lat":48.0036,"lon":-31.412,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901421"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-26T08:00:00","lat":12.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902615"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":12.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902614"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2014-05-25T12:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901909"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":69.5,"lon":-9.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-06-18T00:00:00","lat":69.5,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2015-05-15T12:00:00","lat":75.0,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901912"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-10-29T00:00:00","lat":25.0075,"lon":-17.7464,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901665"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-11-13T00:00:00","lat":17.975,"lon":-17.8717,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902654"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2015-10-06T00:00:00","lat":16.8164,"lon":-28.2294,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902655"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-10-05T00:00:00","lat":16.7097,"lon":-27.838,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901734"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2016-01-14T00:00:00","lat":65.85,"lon":-1.5833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903273"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2016-01-14T11:40:00","lat":65.85,"lon":-1.5833,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903272"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-02-01T13:43:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901721"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-03-23T09:27:00","lat":0.04,"lon":-9.84,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902689"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-03-28T13:27:00","lat":0.01,"lon":-0.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902690"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-09T02:07:00","lat":30.28,"lon":-60.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902698"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-10T04:10:00","lat":31.9783,"lon":-63.8583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902699"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-13T11:21:00","lat":2.0,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902658"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-20T11:15:00","lat":30.7,"lon":-18.42,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902656"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-05-22T18:06:00","lat":34.01,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-06-26T20:57:00","lat":35.34,"lon":-30.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901845"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-09T03:45:00","lat":57.96,"lon":-29.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901755"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-11T12:00:00","lat":59.38,"lon":-36.39,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901760"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-11T12:00:00","lat":59.37,"lon":-36.39,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901762"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-12T01:30:00","lat":59.56,"lon":-38.32,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901753"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-07-31T09:09:00","lat":33.62,"lon":-24.15,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901841"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-14T07:00:00","lat":40.9,"lon":-17.53,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902710"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-07T10:42:00","lat":51.3,"lon":-45.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902702"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-07T18:43:00","lat":52.08,"lon":-42.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902703"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-08T02:22:00","lat":52.83,"lon":-41.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902704"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-08-08T09:57:00","lat":53.5,"lon":-39.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902705"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-22T02:42:00","lat":56.72,"lon":-33.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-07-22T02:42:00","lat":56.72,"lon":-33.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901720"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-23T19:50:00","lat":58.97,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901726"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-10-15T02:47:00","lat":14.34,"lon":-17.58,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900975"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-06-12T13:00:00","lat":74.117,"lon":-4.693,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901125"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2012-06-13T18:45:00","lat":74.99,"lon":-3.821,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901126"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2015-07-14T00:00:00","lat":38.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901247"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-04-19T00:53:00","lat":17.4998,"lon":-76.005,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901717"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-04-27T00:22:00","lat":19.0975,"lon":-76.9113,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901720"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2020-12-11T09:57:00","lat":29.172,"lon":-18.9825,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903074"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2020-12-11T09:30:00","lat":29.1694,"lon":-18.9773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-04-07T16:50:00","lat":6.0195,"lon":-39.5617,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903270"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-18T18:51:00","lat":23.8574,"lon":-41.0989,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903753"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-02T14:30:00","lat":28.2,"lon":-28.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901205"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-03T14:13:00","lat":25.72,"lon":-28.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901206"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-10-02T14:25:00","lat":28.2,"lon":-28.1,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901203"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2021-12-26T22:23:00","lat":8.55,"lon":-89.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-04T14:36:00","lat":20.07,"lon":-52.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-02T13:18:00","lat":24.13,"lon":-52.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-25T00:03:00","lat":40.17,"lon":-52.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906342"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-31T16:33:00","lat":27.61,"lon":-52.32,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906435"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-06T14:41:00","lat":15.97,"lon":-52.34,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906343"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-08T15:57:00","lat":11.91,"lon":-52.37,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906434"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-04-26T04:36:00","lat":16.55,"lon":-67.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-09T21:45:00","lat":34.78,"lon":-66.69,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-03T14:38:00","lat":23.86,"lon":-65.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5906436"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-05-06T11:13:00","lat":28.91,"lon":-65.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-29T13:47:00","lat":31.73,"lon":-52.32,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, UW"},"ptfDepl":{"deplDate":"2021-03-27T09:18:00","lat":35.89,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5906341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-06T21:30:00","lat":24.48,"lon":-39.96,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904639"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-21T06:38:00","lat":53.42,"lon":-41.95,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904771"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-19T05:19:00","lat":56.23,"lon":-45.71,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904772"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-23T04:14:00","lat":49.63,"lon":-44.16,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904773"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-28T00:45:00","lat":47.12,"lon":-38.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5904774"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2017-09-20T14:50:00","lat":5.0917,"lon":-26.1683,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5905148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-02T04:22:00","lat":24.52,"lon":-50.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904665"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-27T14:19:00","lat":24.5,"lon":-62.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904667"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-01-04T20:03:00","lat":24.54,"lon":-44.58,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904664"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-30T18:24:00","lat":24.48,"lon":-55.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904666"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-31T12:23:00","lat":45.05,"lon":-43.41,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2016-05-28T09:42:00","lat":45.97,"lon":-40.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904770"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904104"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904101"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904102"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904103"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-15T13:48:00","lat":58.55,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902750"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-16T00:24:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902754"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-09-01T10:00:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902786"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-15T10:00:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902791"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-15T10:00:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902787"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T14:42:00","lat":38.88,"lon":-35.67,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902107"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T04:48:00","lat":39.21,"lon":-38.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902105"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-31T11:10:00","lat":39.0,"lon":-36.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902106"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2015-12-23T15:37:00","lat":25.0,"lon":-69.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"5904669"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2021-10-10T20:10:00","lat":55.0617,"lon":-11.7496,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903759"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2021-10-14T08:10:00","lat":55.816,"lon":-9.8339,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903761"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2021-10-15T13:19:00","lat":55.3664,"lon":-10.9339,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903760"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-17T18:27:00","lat":57.36,"lon":-10.36,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901200"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-16T17:07:00","lat":57.23,"lon":-10.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901199"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-23T20:10:00","lat":59.4,"lon":-18.42,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901202"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-05-24T14:49:00","lat":60.25,"lon":-19.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901201"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-01-31T19:49:00","lat":24.5004,"lon":-67.6679,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903718"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-02T14:02:00","lat":24.5021,"lon":-63.9976,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903719"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-04T00:10:00","lat":24.4999,"lon":-61.0667,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903720"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-06T22:43:00","lat":24.4996,"lon":-55.1986,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903721"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-03-24T09:10:00","lat":36.3718,"lon":-13.5379,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903717"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T20:00:00","lat":59.4,"lon":-20.4,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903325"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-02T15:15:00","lat":58.9708,"lon":-32.0897,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902755"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-01T17:50:00","lat":58.5467,"lon":-30.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902751"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-05-29T14:40:00","lat":21.2022,"lon":-20.9288,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901253"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-03-26T00:00:00","lat":13.69,"lon":-29.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901272"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-12-11T00:00:00","lat":32.73,"lon":-10.56,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901273"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-03-04T00:00:00","lat":30.24,"lon":-12.13,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901274"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2018-08-11T05:19:00","lat":67.9729,"lon":-59.4995,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902432"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-03-27T20:10:00","lat":55.0497,"lon":-13.5762,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901930"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-15T19:59:00","lat":34.0108,"lon":-60.0018,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901655"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2015-10-15T15:51:00","lat":27.0,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902296"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-14T14:00:00","lat":0.01,"lon":-85.01,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T02:00:00","lat":1.01,"lon":-85.02,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901262"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T07:00:00","lat":0.52,"lon":-85.03,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901263"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-03-15T13:00:00","lat":0.02,"lon":-85.04,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901264"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-06-27T04:35:00","lat":0.02,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1901820"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-07T12:56:00","lat":33.99,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902108"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-03-07T18:22:00","lat":35.0,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-06T13:06:00","lat":31.79,"lon":-75.43,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902110"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-07T04:52:00","lat":33.01,"lon":-74.43,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-06-18T05:00:00","lat":31.61,"lon":-64.26,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902112"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-04-18T03:00:00","lat":31.77,"lon":-63.64,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-05-07T03:30:00","lat":31.67,"lon":-64.15,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902114"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-03-24T21:28:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902115"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T06:48:00","lat":58.26,"lon":-28.88,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-08T04:46:00","lat":57.96,"lon":-23.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902117"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-08T15:45:00","lat":58.0,"lon":-24.41,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902118"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-10T12:09:00","lat":57.97,"lon":-25.74,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902119"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T21:45:00","lat":28.42,"lon":-70.95,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T04:09:00","lat":35.4,"lon":-47.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902121"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-18T17:39:00","lat":37.07,"lon":-36.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902122"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T10:26:00","lat":35.77,"lon":-45.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902337"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T16:46:00","lat":36.1,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902338"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-18T08:29:00","lat":36.78,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-17T23:01:00","lat":36.39,"lon":-41.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-07-13T14:09:00","lat":27.52,"lon":-73.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T11:07:00","lat":35.4317,"lon":-73.9933,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903047"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T09:40:00","lat":35.2883,"lon":-73.785,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903049"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-19T15:09:00","lat":35.5983,"lon":-74.1317,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903048"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-26T21:27:00","lat":28.3985,"lon":-65.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903050"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-27T10:54:00","lat":29.2874,"lon":-68.0165,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903044"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-26T08:16:00","lat":27.5072,"lon":-62.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903051"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-20T18:25:00","lat":18.696,"lon":-32.9975,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903052"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-10T05:12:00","lat":20.6263,"lon":-39.9985,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903218"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-07T19:45:00","lat":24.0282,"lon":-51.018,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-22T19:22:00","lat":21.9894,"lon":-43.0129,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903053"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-14T20:52:00","lat":20.4317,"lon":-23.1257,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903057"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-12T11:47:00","lat":20.2002,"lon":-31.9985,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903216"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-20T07:57:00","lat":17.9625,"lon":-30.9949,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903059"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-19T22:07:00","lat":17.0335,"lon":-29.0088,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-21T04:35:00","lat":19.5329,"lon":-35.0191,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903217"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-21T14:36:00","lat":20.2442,"lon":-37.0111,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903055"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-16T23:08:00","lat":12.9948,"lon":-23.0004,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903058"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-13T08:52:00","lat":20.3323,"lon":-28.0084,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903221"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-06T23:52:00","lat":25.2366,"lon":-55.0145,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903056"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-17T07:24:00","lat":11.9999,"lon":-22.9974,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903211"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-08T06:24:00","lat":23.4087,"lon":-48.99,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903214"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-11T20:28:00","lat":20.0995,"lon":-34.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903213"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-07T09:16:00","lat":24.3852,"lon":-53.014,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-19T11:56:00","lat":16.1675,"lon":-27.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903212"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-03-23T03:40:00","lat":22.4502,"lon":-45.0109,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903054"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-15T03:03:00","lat":27.3,"lon":-86.79,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903239"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-30T06:35:00","lat":0.5,"lon":-38.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902169"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-29T10:38:00","lat":27.31,"lon":-27.8,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903248"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-27T23:42:00","lat":26.23,"lon":-86.81,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903251"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-09-30T13:25:00","lat":25.7,"lon":-87.41,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903253"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-10-02T18:23:00","lat":26.22,"lon":-88.05,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903254"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2019-08-30T15:00:00","lat":0.5,"lon":-38.5,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902163"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2010-01-18T13:00:00","lat":14.83,"lon":-51.28,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903225"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-01-08T22:55:00","lat":13.92,"lon":-55.05,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903224"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-11-08T19:06:00","lat":31.6194,"lon":-64.1693,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903042"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-30T00:28:00","lat":1.4979,"lon":-39.236,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902167"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-24T08:00:00","lat":7.7,"lon":-49.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903229"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-23T04:30:00","lat":10.2283,"lon":-54.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903226"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-25T02:00:00","lat":6.1967,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903230"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-23T16:00:00","lat":9.2317,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903228"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-22T18:00:00","lat":11.245,"lon":-56.0083,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903227"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-02-27T11:30:00","lat":1.0588,"lon":-35.993,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_PMEL"},"ptfDepl":{"deplDate":"2020-02-27T16:59:00","lat":0.25,"lon":-35.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902162"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-01T14:26:00","lat":25.698,"lon":-87.422,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903276"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2020-10-02T20:01:00","lat":25.7,"lon":-86.82,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903279"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-02T01:18:00","lat":25.1648,"lon":-87.429,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903278"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-02T09:02:00","lat":25.146,"lon":-86.841,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903277"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-11-28T00:56:00","lat":38.13,"lon":-40.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903280"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-11-27T16:17:00","lat":37.17,"lon":-44.02,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903329"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-19T16:29:00","lat":21.78,"lon":-64.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902299"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-20T04:54:00","lat":21.19,"lon":-62.18,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903333"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-22T21:37:00","lat":18.39,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-23T09:57:00","lat":18.73,"lon":-47.49,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902300"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-23T21:44:00","lat":19.06,"lon":-45.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903337"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-01-24T09:40:00","lat":19.39,"lon":-42.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903335"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-14T22:33:00","lat":15.0115,"lon":-38.0097,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902301"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-17T03:36:00","lat":17.9827,"lon":-47.9932,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902302"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-13T06:04:00","lat":10.4007,"lon":-34.3268,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-12T16:12:00","lat":8.17,"lon":-32.542,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903332"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-14T02:36:00","lat":13.4692,"lon":-36.7545,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903334"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-02-16T03:35:00","lat":16.7942,"lon":-44.0042,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903336"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-05T23:50:00","lat":17.13,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903342"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-01T06:20:00","lat":26.46,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903341"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-06T21:32:00","lat":15.65,"lon":-51.45,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903352"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-05T03:35:00","lat":18.89,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903338"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-09T04:20:00","lat":10.71,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903340"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-07T11:04:00","lat":15.39,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903339"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-08T00:42:00","lat":13.06,"lon":-52.33,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903343"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-15T23:11:00","lat":26.8217,"lon":-87.4292,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903353"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-16T08:35:00","lat":26.764,"lon":-88.0643,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903354"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-20T23:03:00","lat":47.6667,"lon":-34.9667,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903357"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-21T13:20:00","lat":48.7,"lon":-29.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903358"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-16T21:38:00","lat":26.2372,"lon":-88.6302,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903356"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2021-05-12T10:45:00","lat":27.3497,"lon":-87.3592,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903355"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-08T22:56:00","lat":53.4918,"lon":-46.2058,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-09T19:23:00","lat":56.0047,"lon":-43.5805,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-11T01:35:00","lat":29.31,"lon":-45.91,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901038"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2008-12-09T21:30:00","lat":18.23,"lon":-37.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1900985"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2015-06-14T17:45:00","lat":56.73,"lon":-37.55,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901628"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T21:15:00","lat":53.4157,"lon":-16.351,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901929"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-03-21T11:55:00","lat":53.11,"lon":-15.59,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901921"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-04-14T20:20:00","lat":48.56,"lon":-39.56,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901922"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2016-04-09T23:07:00","lat":52.59,"lon":-15.59,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901923"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-12-01T01:22:00","lat":17.8228,"lon":-20.6045,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900560"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-11-24T23:37:00","lat":14.5384,"lon":-25.1726,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900559"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2019-12-01T01:26:00","lat":17.8243,"lon":-20.6055,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900561"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-23T03:25:00","lat":45.0558,"lon":-18.5042,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901763"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-02-11T09:18:00","lat":53.28,"lon":-16.15,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901925"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T11:39:00","lat":53.0013,"lon":-15.3096,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901927"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2018-02-12T15:29:00","lat":53.41,"lon":-16.351,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901928"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-05T19:59:00","lat":24.71,"lon":-21.83,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901197"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-05-20T00:00:00","lat":48.53,"lon":-13.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901926"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-10T15:10:00","lat":39.8781,"lon":-19.781,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901265"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-19T07:47:00","lat":35.8532,"lon":-6.9428,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901255"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-17T19:29:00","lat":35.9992,"lon":-6.8644,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901264"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-08-18T16:56:00","lat":37.2062,"lon":-0.7575,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901270"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-30T11:30:00","lat":26.2235,"lon":-16.3324,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901271"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-10-23T00:00:00","lat":29.1663,"lon":-15.501,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901254"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2019-02-07T00:00:00","lat":35.84,"lon":-6.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901263"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"E-AIMS"},"ptfDepl":{"deplDate":"2015-03-03T00:00:00","lat":29.17,"lon":-18.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901246"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-18T19:59:00","lat":36.2939,"lon":-7.2271,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901260"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-13T14:33:00","lat":45.2063,"lon":-19.8744,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901266"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-16T11:12:00","lat":50.1993,"lon":-19.8811,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901269"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-01T16:48:00","lat":25.3212,"lon":-20.7245,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901256"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-08T00:00:00","lat":35.188,"lon":-20.001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901262"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2018-06-04T21:34:00","lat":30.114,"lon":-20.076,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901258"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2015-06-02T15:30:00","lat":48.81,"lon":-68.24,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901789"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-08T11:57:00","lat":56.12,"lon":-53.12,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901817"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-08T22:06:00","lat":56.55,"lon":-52.71,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902383"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-14T03:59:00","lat":57.59,"lon":-51.56,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902386"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-14T07:53:00","lat":57.38,"lon":-51.77,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901809"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-13T06:48:00","lat":58.64,"lon":-50.44,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902384"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-04-23T11:28:00","lat":43.77,"lon":-57.84,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901812"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-04-23T11:24:00","lat":43.77,"lon":-57.85,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901813"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-09-01T10:00:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902790"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T22:39:00","lat":42.0317,"lon":-61.0698,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902454"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T05:58:00","lat":42.4717,"lon":-61.434,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902453"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-28T05:58:00","lat":43.4798,"lon":-57.5328,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902441"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-03T17:05:00","lat":43.7341,"lon":-55.8607,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902455"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-03T22:49:00","lat":43.434,"lon":-55.842,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902456"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-04T06:20:00","lat":43.0198,"lon":-55.8404,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902442"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T02:13:00","lat":43.0202,"lon":-59.1096,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902500"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T05:21:00","lat":43.2156,"lon":-58.3093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902503"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T22:36:00","lat":42.7485,"lon":-59.9938,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902524"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-21T22:48:00","lat":43.4756,"lon":-57.5268,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902467"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-21T22:41:00","lat":43.4738,"lon":-57.5267,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902470"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-09-25T16:46:00","lat":42.2114,"lon":-61.1953,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902440"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T03:54:00","lat":56.1384,"lon":-53.1502,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902510"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T13:58:00","lat":56.5554,"lon":-52.712,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902505"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-01T23:01:00","lat":56.9554,"lon":-52.2345,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902509"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-02T15:07:00","lat":57.7961,"lon":-51.3471,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902511"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-03T16:41:00","lat":58.6267,"lon":-50.3879,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902504"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-07T18:26:00","lat":59.9989,"lon":-51.7501,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902507"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T15:46:00","lat":59.1515,"lon":-53.1843,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902512"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T02:15:00","lat":42.41,"lon":-49.5,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901828"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T09:23:00","lat":42.08,"lon":-49.26,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902381"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-11-20T15:03:00","lat":41.72,"lon":-48.94,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902382"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T20:24:00","lat":58.95,"lon":-54.49,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902395"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T11:02:00","lat":57.5942,"lon":-52.6133,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902396"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T17:50:00","lat":58.7709,"lon":-55.7111,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902397"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T06:17:00","lat":58.0218,"lon":-52.8707,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902400"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T01:25:00","lat":58.605,"lon":-53.6317,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902409"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T08:39:00","lat":57.967,"lon":-51.7423,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902410"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T03:50:00","lat":58.0761,"lon":-54.0077,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902413"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-03T23:08:00","lat":59.1283,"lon":-53.2551,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T13:30:00","lat":57.2197,"lon":-53.4909,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902416"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-10-04T16:13:00","lat":56.8434,"lon":-54.3709,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902419"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T19:31:00","lat":56.7461,"lon":-52.4378,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902421"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-08-08T22:46:00","lat":41.7,"lon":-62.16,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901827"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-22T03:02:00","lat":42.03,"lon":-61.07,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901814"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-21T14:28:00","lat":41.83,"lon":-60.89,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901816"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-21T05:36:00","lat":41.43,"lon":-60.66,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901815"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2016-05-09T08:01:00","lat":56.97,"lon":-52.28,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902385"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T01:08:00","lat":56.9697,"lon":-52.2495,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902423"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T16:05:00","lat":57.1694,"lon":-51.9899,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902425"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T16:15:00","lat":57.8074,"lon":-51.3526,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902422"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-10T09:22:00","lat":57.9999,"lon":-51.0602,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902438"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-06T22:45:00","lat":58.1978,"lon":-50.8502,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902424"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T03:53:00","lat":56.1077,"lon":-53.1204,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902468"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2016-05-08T17:22:00","lat":56.33,"lon":-52.9,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902387"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T10:22:00","lat":56.5473,"lon":-52.6928,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902481"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-12T17:15:00","lat":56.9795,"lon":-52.2464,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902487"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-13T21:55:00","lat":57.8077,"lon":-51.3965,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902469"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-14T17:11:00","lat":58.6214,"lon":-50.4223,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902478"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-18T19:29:00","lat":60.0046,"lon":-52.3494,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902471"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T02:31:00","lat":59.5099,"lon":-53.0656,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902477"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T08:20:00","lat":59.0057,"lon":-53.156,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902479"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T13:29:00","lat":58.512,"lon":-53.2496,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902480"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-06-19T00:00:00","lat":58.0101,"lon":-53.3472,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902488"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-04-26T02:32:00","lat":16.5397,"lon":-67.3468,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902533"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-04-26T02:37:00","lat":16.5397,"lon":-67.3469,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902534"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-22T04:43:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902394"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-26T04:46:00","lat":43.47,"lon":-57.52,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902391"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-26T04:51:00","lat":43.47,"lon":-57.52,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902392"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-04-22T04:39:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902393"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T19:43:00","lat":42.5683,"lon":-60.6801,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902501"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-10T17:18:00","lat":42.3853,"lon":-61.2839,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902523"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-10-11T12:59:00","lat":43.4682,"lon":-57.4924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902502"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T01:54:00","lat":59.9987,"lon":-52.4068,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902508"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T23:50:00","lat":58.5034,"lon":-53.2477,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902506"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2018-07-23T15:50:00","lat":64.6588,"lon":-59.7889,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902433"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-08-11T09:05:00","lat":57.46,"lon":-53.57,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902412"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-10T17:52:00","lat":45.0,"lon":-46.94,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902398"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-10T22:35:00","lat":45.0,"lon":-45.2,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902399"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T13:40:00","lat":56.341,"lon":-40.7917,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902450"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T09:00:00","lat":57.4451,"lon":-39.0691,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902451"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-10-25T19:50:00","lat":54.7064,"lon":-43.4691,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902452"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-09-15T21:56:00","lat":56.2792,"lon":-50.2817,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902489"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-09-15T17:09:00","lat":57.1735,"lon":-49.523,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902495"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":null},"ptfDepl":{"deplDate":"2017-07-25T14:03:00","lat":57.51,"lon":-59.79,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902426"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-28T01:02:00","lat":47.0005,"lon":-42.999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902496"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-28T01:06:00","lat":47.0003,"lon":-42.9992,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902497"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-22T04:46:00","lat":46.9999,"lon":-42.4908,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902527"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-21T23:53:00","lat":47.0009,"lon":-41.999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902528"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-19T13:49:00","lat":42.0826,"lon":-49.2709,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902457"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-26T05:55:00","lat":42.012,"lon":-49.2682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902498"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-11-26T05:58:00","lat":42.0818,"lon":-49.2687,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902499"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-19T23:51:00","lat":42.0817,"lon":-49.27,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902525"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-19T19:15:00","lat":41.7064,"lon":-48.9377,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902458"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-20T04:52:00","lat":41.6998,"lon":-48.9473,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902526"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-11-20T00:05:00","lat":41.3377,"lon":-48.6585,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902466"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-11-20T09:40:00","lat":41.3327,"lon":-48.6704,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902529"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2017-09-09T21:48:00","lat":44.09,"lon":-54.64,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902390"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-08-14T10:57:00","lat":55.9032,"lon":-54.7498,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902448"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-08-15T06:28:00","lat":58.316,"lon":-57.8332,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902449"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2019-04-11T22:20:00","lat":8.9484,"lon":-87.8421,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902476"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-02-05T11:00:00","lat":24.5018,"lon":-58.1322,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":null},"ptfDepl":{"deplDate":"2016-10-21T14:37:00","lat":20.0,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902741"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-09-26T00:21:00","lat":14.66,"lon":-50.73,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903075"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-08-18T00:00:00","lat":20.5,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-08-17T09:47:00","lat":19.5,"lon":-85.3,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903072"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2021-09-26T00:00:00","lat":14.15,"lon":-51.05,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903076"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2021-04-12T03:20:00","lat":49.258,"lon":-14.5013,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903756"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-22T01:57:00","lat":24.92,"lon":-56.55,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901195"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-03-16T16:08:00","lat":23.98,"lon":-44.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901196"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2017-02-17T01:53:00","lat":24.05,"lon":-46.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901198"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-30T00:00:00","lat":39.42,"lon":-39.5,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902104"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2015-10-30T00:00:00","lat":39.63,"lon":-41.01,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902103"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-29T04:00:00","lat":47.1,"lon":-42.59,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902643"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-28T12:35:00","lat":47.12,"lon":-40.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902644"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-21T07:49:00","lat":47.45,"lon":-34.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902645"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-20T06:28:00","lat":47.63,"lon":-31.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902646"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-13T08:34:00","lat":47.92,"lon":-25.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902648"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-07T06:29:00","lat":48.52,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902649"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-04-29T07:31:00","lat":36.08,"lon":-6.6,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"2902402"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-04-13T20:51:00","lat":47.83,"lon":-27.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902647"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-05-29T21:28:00","lat":22.97,"lon":-48.73,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901840"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2016-05-29T17:54:00","lat":63.83,"lon":-27.06,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5904749"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-18T01:54:00","lat":56.34,"lon":-46.04,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903102"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-29T01:30:00","lat":44.05,"lon":-46.04,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903100"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2016-05-24T01:50:00","lat":47.65,"lon":-39.19,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903101"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-12T08:28:00","lat":61.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901189"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-13T02:30:00","lat":60.0,"lon":-20.01,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-06-13T02:44:00","lat":59.99,"lon":-19.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901191"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-06-25T09:07:00","lat":31.95,"lon":-36.28,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901839"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-06-07T17:35:00","lat":58.56,"lon":-52.84,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901801"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-09T12:24:00","lat":69.33,"lon":-60.22,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902668"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-07-09T07:37:00","lat":69.5,"lon":-61.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901802"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2016-07-09T06:00:00","lat":69.32,"lon":-60.98,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901803"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-09T02:07:00","lat":69.5,"lon":-60.15,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902667"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-18T11:15:00","lat":58.99,"lon":-32.1,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901722"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2016-07-18T19:00:00","lat":58.53,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901724"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-29T15:55:00","lat":55.41,"lon":-12.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901871"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-23T20:03:00","lat":71.72,"lon":-6.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901872"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-08-03T14:06:00","lat":59.23,"lon":-39.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901194"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-09T03:21:00","lat":31.57,"lon":-39.46,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901856"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-11T20:37:00","lat":64.07,"lon":-5.87,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901862"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-12T08:51:00","lat":66.33,"lon":-7.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901863"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-07-11T00:35:00","lat":57.96,"lon":-27.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2016-07-11T00:35:00","lat":57.96,"lon":-27.13,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901193"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-12T22:19:00","lat":23.8,"lon":-50.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901857"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-14T02:05:00","lat":21.18,"lon":-54.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901858"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-01T14:22:00","lat":17.45,"lon":-64.38,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901859"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"MOCCA-GER"},"ptfDepl":{"deplDate":"2016-08-23T09:41:00","lat":13.07,"lon":-20.36,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901838"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-08-23T10:52:00","lat":73.0,"lon":-5.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901875"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-05T16:27:00","lat":17.35,"lon":-64.23,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901860"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-04T04:45:00","lat":67.99,"lon":-4.99,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901873"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-09-06T11:14:00","lat":15.28,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901861"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-08-20T01:06:00","lat":31.67,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902345"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-18T16:35:00","lat":42.48,"lon":-61.43,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901602"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-20T02:20:00","lat":41.42,"lon":-60.68,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901603"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-19T19:26:00","lat":41.78,"lon":-60.91,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901604"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-04T09:35:00","lat":67.0,"lon":-2.75,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-04T08:19:00","lat":67.51,"lon":-3.86,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901589"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-08-22T20:02:00","lat":75.0,"lon":-2.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901590"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-08-23T03:31:00","lat":74.0,"lon":-3.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901591"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-22T04:42:00","lat":43.48,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901601"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2016-09-22T10:53:00","lat":43.8,"lon":-57.84,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-20T02:22:00","lat":41.42,"lon":-60.68,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-19T05:17:00","lat":42.2,"lon":-61.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902346"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-22T04:40:00","lat":43.47,"lon":-57.53,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-09-22T19:30:00","lat":31.63,"lon":-64.11,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902344"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2016-11-01T18:45:00","lat":29.17,"lon":-18.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901248"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-10-21T05:30:00","lat":31.7,"lon":-64.1,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902343"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-09-12T11:34:00","lat":14.45,"lon":-45.03,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902714"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2016-12-29T10:51:00","lat":14.32,"lon":-61.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902713"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2016-12-29T20:56:00","lat":38.44,"lon":-10.22,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901909"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-01-02T21:27:00","lat":13.53,"lon":-71.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902712"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-02-14T17:38:00","lat":6.14,"lon":-25.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900507"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-01-30T13:10:00","lat":16.14,"lon":-30.24,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902711"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2017-02-10T17:12:00","lat":53.51,"lon":-15.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901924"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-02T08:50:00","lat":1.02,"lon":-23.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902761"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-03-15T10:54:00","lat":20.19,"lon":-32.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901235"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-03-14T21:05:00","lat":20.28,"lon":-28.97,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901236"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-25T00:05:00","lat":0.06,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902720"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-25T00:28:00","lat":0.06,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902719"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-03-25T09:24:00","lat":24.23,"lon":-36.43,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902768"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-03-28T10:26:00","lat":20.33,"lon":-49.49,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T12:00:00","lat":62.0,"lon":-2.48,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T11:36:00","lat":61.51,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900429"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-03-20T15:05:00","lat":66.9,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900430"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-03-30T20:02:00","lat":7.0,"lon":-18.57,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902762"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-17T23:00:00","lat":35.56,"lon":-74.13,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902912"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-12T04:30:00","lat":31.77,"lon":-64.15,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902354"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-23T12:28:00","lat":35.28,"lon":-73.79,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902913"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-05-10T15:26:00","lat":0.0,"lon":-28.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901898"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-17T18:16:00","lat":35.69,"lon":-74.35,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-04-25T02:40:00","lat":34.9,"lon":-74.82,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902911"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-05-13T22:30:00","lat":31.67,"lon":-64.16,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902355"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-06T08:47:00","lat":48.52,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901624"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-11T17:27:00","lat":47.93,"lon":-26.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901625"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-12T19:06:00","lat":47.67,"lon":-31.14,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901626"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-14T15:31:00","lat":47.33,"lon":-36.41,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901628"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-13T23:22:00","lat":47.48,"lon":-34.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901627"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-17T00:28:00","lat":47.09,"lon":-40.91,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901629"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-06-18T18:31:00","lat":47.09,"lon":-42.62,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901630"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-12T07:28:00","lat":6.96,"lon":-23.97,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901819"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-11T01:00:00","lat":1.49,"lon":-18.26,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901820"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-10T17:23:00","lat":0.0,"lon":-16.72,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901821"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-11T20:52:00","lat":5.04,"lon":-21.95,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901823"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-06-15T11:30:00","lat":31.66,"lon":-64.17,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902909"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-06-07T11:15:00","lat":20.07,"lon":-60.16,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902746"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-06-07T21:11:00","lat":22.0,"lon":-59.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902757"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-07T18:56:00","lat":25.99,"lon":-58.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902772"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-19T01:40:00","lat":56.6856,"lon":-36.8295,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-13T18:14:00","lat":17.92,"lon":-82.47,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902943"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-13T17:36:00","lat":18.78,"lon":-80.19,"noSite":null},"ptfModel":{"nameShort":"SOLO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903002"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-09T15:45:00","lat":56.53,"lon":-35.02,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902805"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2017-07-20T10:11:00","lat":69.38,"lon":-60.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901804"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2017-07-20T09:46:00","lat":69.37,"lon":-60.45,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901805"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T02:53:00","lat":72.46,"lon":-67.01,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902666"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-20T11:19:00","lat":69.37,"lon":-60.36,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902669"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-20T10:23:00","lat":69.38,"lon":-60.43,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902670"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T02:10:00","lat":72.56,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902671"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-07-23T03:12:00","lat":72.76,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-07-21T00:30:00","lat":31.52,"lon":-63.62,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902910"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-16T22:23:00","lat":12.38,"lon":-38.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901597"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-19T19:34:00","lat":11.79,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901635"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-07T08:34:00","lat":24.02,"lon":-59.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902771"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-14T09:42:00","lat":58.93,"lon":-23.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902694"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-02T05:48:00","lat":44.4959,"lon":-31.6724,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902783"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-08-01T22:34:00","lat":43.44,"lon":-32.03,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902785"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-24T20:50:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902807"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-28T18:01:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902686"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-24T16:03:00","lat":11.46,"lon":-22.86,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901634"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-08-27T21:59:00","lat":20.66,"lon":-21.53,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901622"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-27T18:45:00","lat":72.95,"lon":-14.66,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902728"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-26T03:18:00","lat":71.34,"lon":-17.77,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902730"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-06T14:17:00","lat":56.74,"lon":-33.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901603"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-06T14:18:00","lat":56.74,"lon":-33.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902810"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-09T14:47:00","lat":52.73,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902811"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-09T14:50:00","lat":52.73,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902812"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-08-11T08:05:00","lat":51.06,"lon":-35.08,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902819"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-01T10:00:00","lat":58.55,"lon":-30.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902749"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-01T10:00:00","lat":58.97,"lon":-32.09,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902753"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-09-02T10:00:00","lat":22.99,"lon":-17.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901636"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-20T13:18:00","lat":44.39,"lon":-15.7633,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901943"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-20T11:55:00","lat":36.2983,"lon":-13.1633,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901942"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-22T08:16:00","lat":39.5676,"lon":-25.2586,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901944"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-14T18:00:00","lat":15.65,"lon":-79.86,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903003"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-07-14T16:00:00","lat":15.49,"lon":-72.92,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903006"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-16T03:30:00","lat":75.89,"lon":-6.84,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902725"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-09-19T06:01:00","lat":78.94,"lon":-3.11,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902726"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-09-28T05:30:00","lat":40.2173,"lon":-21.5348,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901951"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-05T06:15:00","lat":19.8,"lon":-29.92,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901952"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-05T14:00:00","lat":18.7857,"lon":-29.6822,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901953"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-10-09T13:55:00","lat":6.8803,"lon":-26.686,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901954"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-15T15:12:00","lat":37.4374,"lon":-42.8075,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902919"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2017-10-15T20:57:00","lat":37.6398,"lon":-40.9977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902918"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-16T03:20:00","lat":37.8061,"lon":-38.9984,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902920"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-10-16T09:33:00","lat":37.9458,"lon":-37.0013,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902921"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-11-04T07:20:00","lat":40.3248,"lon":-11.5367,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901945"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2017-11-03T18:19:00","lat":36.04,"lon":-6.79,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900432"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-09T00:00:00","lat":37.511,"lon":-18.71,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-26T22:04:00","lat":10.0022,"lon":-38.018,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902748"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-11-28T17:59:00","lat":7.0009,"lon":-38.0221,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902747"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T22:04:00","lat":42.4813,"lon":-61.4172,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901637"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T23:00:00","lat":42.4764,"lon":-61.4296,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901641"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-11-28T23:05:00","lat":42.4789,"lon":-61.432,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901640"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T06:04:00","lat":43.4757,"lon":-57.5274,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T06:19:00","lat":43.4754,"lon":-57.528,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901639"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2017-12-02T22:54:00","lat":43.7976,"lon":-57.8297,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901638"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2017-12-03T01:02:00","lat":0.045,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902744"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-17T12:30:00","lat":4.2325,"lon":-25.3088,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-16T23:00:00","lat":5.993,"lon":-27.3852,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902180"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-15T17:30:00","lat":1.0,"lon":-23.478,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902342"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2017-12-25T13:20:00","lat":24.5326,"lon":-20.426,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901972"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-11-17T15:15:00","lat":7.9867,"lon":-29.3438,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902181"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-01-21T19:40:00","lat":3.8082,"lon":-27.332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902830"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-24T19:14:00","lat":34.9983,"lon":-45.0567,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-12T07:50:00","lat":35.6365,"lon":-74.1077,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903035"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-12T11:30:00","lat":35.7528,"lon":-74.2,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902927"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-19T20:00:00","lat":35.2818,"lon":-74.7526,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903036"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-01-17T03:29:00","lat":34.7506,"lon":-75.2569,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902928"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-25T07:04:00","lat":33.9853,"lon":-49.8025,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901658"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-25T22:40:00","lat":32.8533,"lon":-54.985,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901657"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-01-26T16:47:00","lat":32.375,"lon":-60.0533,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901656"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T02:15:00","lat":14.0497,"lon":-69.9363,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901979"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-07T13:32:00","lat":16.067,"lon":-69.3668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901985"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T02:18:00","lat":14.0507,"lon":-69.9365,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901986"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-02-06T13:39:00","lat":14.7333,"lon":-69.7933,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901987"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-02-28T03:15:00","lat":70.649,"lon":-15.597,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901988"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-03-20T18:11:00","lat":0.0182,"lon":-0.0542,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902724"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2017-10-08T06:42:00","lat":10.8698,"lon":-27.618,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902122"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2017-10-09T05:13:00","lat":7.7334,"lon":-26.8833,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902123"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-03-29T14:25:00","lat":0.0156,"lon":-9.8608,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902132"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-04-10T12:00:00","lat":29.2,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3902126"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-19T07:00:00","lat":20.2942,"lon":-27.8345,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902184"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-20T14:30:00","lat":20.332,"lon":-23.1347,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902208"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-17T12:00:00","lat":20.0792,"lon":-36.0137,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902209"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-03-21T05:00:00","lat":18.2013,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902207"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-13T08:37:00","lat":48.5164,"lon":-14.9984,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901666"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-20T10:03:00","lat":47.4259,"lon":-34.4861,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901663"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-19T07:57:00","lat":47.6619,"lon":-31.1516,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901664"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-04-15T10:00:00","lat":58.5467,"lon":-30.1833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902756"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-23T07:59:00","lat":47.0378,"lon":-40.9407,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901662"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-24T23:32:00","lat":47.1005,"lon":-42.5907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901661"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-04-16T10:05:00","lat":34.0033,"lon":-54.935,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901654"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-02T14:01:00","lat":53.7192,"lon":-50.3549,"noSite":null},"ptfModel":{"nameShort":"NOVA"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902420"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2018-05-02T19:49:00","lat":54.2183,"lon":-49.7826,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902439"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-02T11:05:00","lat":0.034,"lon":-42.2935,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901982"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-05-08T15:52:00","lat":55.138,"lon":-44.0013,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901665"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-05-07T15:14:00","lat":56.0587,"lon":-48.0618,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901660"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-08T15:06:00","lat":0.7678,"lon":-41.0492,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901980"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-05-19T07:02:00","lat":1.45,"lon":-34.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901921"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2018-05-30T11:18:00","lat":35.84,"lon":-2.21,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T11:08:00","lat":50.1293,"lon":-47.5821,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902796"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-30T07:16:00","lat":57.0034,"lon":-27.8811,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902869"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:47:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902864"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:59:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902865"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T12:50:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902862"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T13:06:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902863"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-01T01:26:00","lat":53.41,"lon":-50.12,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901669"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-05-29T01:21:00","lat":74.5,"lon":-3.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903545"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2018-05-29T06:37:00","lat":74.08,"lon":-3.68,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903546"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-06-08T19:26:00","lat":31.0,"lon":-16.4875,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901932"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T08:04:00","lat":50.6334,"lon":-47.5762,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902794"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-10T09:38:00","lat":50.43,"lon":-47.5815,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902795"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-12T07:48:00","lat":58.6254,"lon":-51.8745,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901667"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-06-12T07:48:00","lat":58.6252,"lon":-51.8749,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901668"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-01T18:11:00","lat":58.5452,"lon":-30.1803,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902868"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-06-27T16:47:00","lat":52.5175,"lon":-24.3607,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902806"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-02T20:25:00","lat":58.9679,"lon":-32.099,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902800"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902881"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-04T06:47:00","lat":59.3648,"lon":-36.4123,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901601"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-04T06:47:00","lat":59.3648,"lon":-36.4123,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902818"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-08T15:33:00","lat":56.7956,"lon":-34.1789,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902752"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-17T01:30:00","lat":69.29,"lon":-60.72,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902896"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-07-20T08:19:00","lat":36.9044,"lon":-27.7112,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901970"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-07-23T09:15:00","lat":29.106,"lon":-41.0321,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901971"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-07-12T12:00:00","lat":58.0045,"lon":-12.021,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901208"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-07-16T12:00:00","lat":59.2066,"lon":-35.373,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901207"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-05T08:50:00","lat":72.361,"lon":-16.6102,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902910"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-04T16:02:00","lat":71.7613,"lon":-12.147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902911"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-08-05T10:47:00","lat":72.1132,"lon":-17.2422,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902912"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2018-08-25T13:07:00","lat":43.0002,"lon":-15.4001,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902127"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-08-26T05:35:00","lat":6.145,"lon":-51.6417,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901984"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"MOCCA-EU"},"ptfDepl":{"deplDate":"2018-09-08T10:41:00","lat":26.996,"lon":-24.8784,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901989"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T21:56:00","lat":63.48,"lon":-14.42,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900439"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-04-19T18:49:00","lat":50.46,"lon":-22.36,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900670"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-02T10:21:00","lat":23.727,"lon":-38.0012,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901213"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-05T12:37:00","lat":23.871,"lon":-43.5005,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901212"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-06T14:13:00","lat":23.128,"lon":-49.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901211"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-12T11:37:00","lat":24.6738,"lon":-62.7458,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901214"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-09T15:59:00","lat":25.3628,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901552"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-13T21:47:00","lat":25.8742,"lon":-68.0817,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901215"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-07T00:00:00","lat":69.61,"lon":-9.43,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900440"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-07T00:00:00","lat":68.72,"lon":-22.06,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900441"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":64.15,"lon":-29.38,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900442"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":67.33,"lon":-12.47,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6900443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-29T00:00:00","lat":36.29,"lon":-7.45,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903329"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-13T00:00:00","lat":66.06,"lon":-4.24,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-07T00:00:00","lat":66.86,"lon":-7.44,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-09-24T00:00:00","lat":27.02,"lon":-73.05,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902975"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-10-26T00:00:00","lat":29.59,"lon":-74.67,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903001"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-10-27T00:00:00","lat":28.26,"lon":-75.51,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903004"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-09-22T00:00:00","lat":29.35,"lon":-72.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903005"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-06-27T00:00:00","lat":26.98,"lon":-75.77,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902974"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-06T00:00:00","lat":25.95,"lon":-89.2,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903067"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-05-10T00:00:00","lat":21.665,"lon":-84.196,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903066"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-17T00:00:00","lat":59.75,"lon":-8.87,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903327"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2018-07-19T00:00:00","lat":58.75,"lon":-15.49,"noSite":null},"ptfModel":{"nameShort":"S2X"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903328"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-11-29T13:15:00","lat":50.18,"lon":-48.47,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902884"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-11-27T00:00:00","lat":3.0106,"lon":-14.5108,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900509"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-11-28T18:32:00","lat":0.005,"lon":-11.9995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900508"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-10T01:27:00","lat":15.4859,"lon":-39.002,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"3901676"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-11T19:51:00","lat":14.6262,"lon":-47.9992,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901677"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-07T14:36:00","lat":16.438,"lon":-28.7953,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901681"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-07T21:45:00","lat":16.2999,"lon":-30.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901682"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-08T15:30:00","lat":16.0462,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901683"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2018-12-09T09:22:00","lat":15.4866,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901684"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-01-09T17:46:00","lat":14.8067,"lon":-26.2883,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902837"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2018-12-17T00:30:00","lat":31.6225,"lon":-64.0758,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903043"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-01T12:06:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902792"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-10T04:44:00","lat":28.5584,"lon":-53.9963,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902914"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-12T02:33:00","lat":23.0272,"lon":-61.9868,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902915"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-12T14:53:00","lat":21.5255,"lon":-63.9685,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902916"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-03-05T14:43:00","lat":13.8333,"lon":-51.6067,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902838"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-03-07T12:42:00","lat":13.9617,"lon":-56.1583,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902843"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-03-30T00:56:00","lat":35.9,"lon":-4.2,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903264"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-04-05T11:47:00","lat":36.17,"lon":-3.01,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903266"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-09-21T03:30:00","lat":31.6133,"lon":-64.1833,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903223"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2019-03-30T19:22:00","lat":36.0,"lon":-4.26,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903265"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-04-15T16:36:00","lat":58.5472,"lon":-30.1828,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902793"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-04-15T17:36:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902789"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2017-05-31T12:00:00","lat":31.671,"lon":-64.1757,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903222"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-26T17:36:00","lat":48.5173,"lon":-15.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900523"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-06T20:31:00","lat":3.6911,"lon":-25.182,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900519"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-07T16:47:00","lat":7.972,"lon":-24.182,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900518"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:20:00","lat":74.5,"lon":-4.73,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903558"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-28T11:46:00","lat":73.1,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903563"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-05T02:10:00","lat":48.0526,"lon":-31.585,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900525"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-05-30T16:40:00","lat":47.9583,"lon":-26.3432,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900524"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-06T00:43:00","lat":47.4551,"lon":-34.4985,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900526"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-08T11:08:00","lat":47.1011,"lon":-40.8855,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900527"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-10T10:15:00","lat":47.0857,"lon":-42.5937,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900528"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-06-07T03:32:00","lat":47.251,"lon":-37.9526,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900529"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-05-29T21:15:00","lat":53.075,"lon":-15.881,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901932"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-05-28T19:10:00","lat":53.692,"lon":-16.5861,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901933"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-18T04:30:00","lat":25.1858,"lon":-88.0507,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903233"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-18T11:28:00","lat":25.1998,"lon":-88.6668,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903240"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-14T08:49:00","lat":27.3498,"lon":-88.0078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903237"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-17T03:01:00","lat":25.1182,"lon":-86.2163,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903236"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-16T11:02:00","lat":26.2355,"lon":-85.5865,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903232"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-21T14:28:00","lat":26.2562,"lon":-88.0102,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903235"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-17T22:45:00","lat":25.166,"lon":-87.44,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903234"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2019-06-20T22:00:00","lat":26.1815,"lon":-86.719,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2019-07-14T17:51:00","lat":69.5,"lon":-61.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902967"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-07-14T17:36:00","lat":69.4998,"lon":-60.9987,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902952"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-24T20:29:00","lat":21.0086,"lon":-53.6969,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903244"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-25T08:29:00","lat":19.0118,"lon":-52.1497,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903246"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-25T20:49:00","lat":17.0116,"lon":-50.6387,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903245"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-29T14:22:00","lat":3.0115,"lon":-40.3232,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902168"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-28T06:14:00","lat":7.9995,"lon":-43.9545,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903247"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-08-27T17:04:00","lat":10.0097,"lon":-45.4368,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902166"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-09-24T22:10:00","lat":42.8983,"lon":-9.6258,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902839"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-26T18:30:00","lat":25.2283,"lon":-86.2047,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903256"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-24T13:26:00","lat":26.7674,"lon":-88.6221,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903258"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-27T08:07:00","lat":26.2645,"lon":-85.6038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903250"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-25T04:52:00","lat":25.6941,"lon":-88.6413,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903255"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-27T15:39:00","lat":26.7903,"lon":-86.1812,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903252"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-26T01:46:00","lat":25.1518,"lon":-87.4601,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903257"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-23T20:59:00","lat":27.3032,"lon":-88.0325,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903249"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-09-25T20:06:00","lat":25.1465,"lon":-88.0287,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903259"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-10-07T11:49:00","lat":0.0032,"lon":-14.9634,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6900893"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-10-29T10:10:00","lat":46.5718,"lon":-9.67,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902840"},{"program":{"country":{"nameShort":"MOROCCO"},"nameShort":null},"ptfDepl":{"deplDate":"2019-11-14T12:00:00","lat":27.7,"lon":-13.8,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2019-11-20T20:06:00","lat":39.1865,"lon":-69.375,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903260"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2019-10-27T06:42:00","lat":26.1,"lon":-35.19,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903715"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-24T23:32:00","lat":14.5353,"lon":-25.1731,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900541"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-26T19:57:00","lat":14.494,"lon":-23.5336,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900542"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-12-09T12:50:00","lat":17.5917,"lon":-24.2831,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900545"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-11-30T01:16:00","lat":17.8194,"lon":-20.6026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900544"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2019-12-06T13:30:00","lat":9.2816,"lon":-40.0591,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901931"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-12-18T21:06:00","lat":14.3797,"lon":-25.8442,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900543"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-02T01:14:00","lat":8.3426,"lon":-52.6921,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902957"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-01-28T00:35:00","lat":9.4106,"lon":-57.1622,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902958"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-01-28T00:35:00","lat":9.4106,"lon":-57.622,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902878"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-02T01:14:00","lat":8.3426,"lon":-52.6921,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902966"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-05T13:34:00","lat":7.8313,"lon":-53.3891,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902964"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-01-26T00:20:45","lat":12.187,"lon":-56.1176,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6900894"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-21T13:54:00","lat":15.8118,"lon":-55.2719,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901686"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-28T08:52:00","lat":33.0932,"lon":-36.0196,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900538"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-26T16:38:00","lat":30.0038,"lon":-41.978,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901687"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-02-27T14:26:00","lat":31.6705,"lon":-38.8119,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900548"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-02-28T17:18:00","lat":12.8933,"lon":-39.0815,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902841"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2017-09-16T18:26:00","lat":53.3871,"lon":-39.589,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903103"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-13T17:30:00","lat":53.26,"lon":-39.53,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903104"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-12T03:44:00","lat":51.65,"lon":-39.483,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903105"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-09T21:20:00","lat":48.62,"lon":-39.01,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903106"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-08T02:02:00","lat":47.075,"lon":-40.123,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903107"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_UM-OSU"},"ptfDepl":{"deplDate":"2017-09-06T02:20:00","lat":44.368,"lon":-43.413,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903108"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2017-09-04T12:53:00","lat":42.397,"lon":-42.975,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5903109"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:23:00","lat":74.501,"lon":-4.733,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903551"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-10T20:26:00","lat":75.0,"lon":-7.6381,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900535"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-10T10:55:00","lat":73.452,"lon":-11.8989,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900536"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2019-08-06T19:35:00","lat":71.5502,"lon":-12.1669,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900537"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-03-16T17:15:00","lat":0.0217,"lon":-22.9966,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902984"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-03-18T06:43:00","lat":23.7466,"lon":-25.5045,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903716"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-04-07T10:12:00","lat":5.0013,"lon":-38.674,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903271"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-17T04:44:00","lat":67.0,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903556"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-02T00:00:00","lat":73.41,"lon":-1.65,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903567"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-17T04:47:00","lat":67.0,"lon":-0.5,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903569"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-05-14T00:43:00","lat":73.41,"lon":-1.65,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-08T17:28:42","lat":57.9,"lon":-25.1,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-06T09:16:00","lat":47.7502,"lon":-29.963,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901756"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-06T09:17:00","lat":47.7502,"lon":-29.963,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902972"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T03:54:00","lat":48.5174,"lon":-15.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900570"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T11:35:00","lat":48.4762,"lon":-16.0319,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900569"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-02T01:10:00","lat":48.3682,"lon":-18.0473,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900567"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-12T00:41:00","lat":47.4544,"lon":-34.4916,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902974"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-12T00:41:00","lat":47.4544,"lon":-34.4916,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901604"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-14T09:22:00","lat":47.1126,"lon":-40.1852,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902975"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-14T09:22:00","lat":47.1126,"lon":-40.1852,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902978"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-16T05:45:00","lat":47.1,"lon":-43.12,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902973"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-07-16T05:04:00","lat":47.1,"lon":-43.12,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902971"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-11T15:27:30","lat":60.5372,"lon":-26.0482,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900556"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-22T18:42:36","lat":46.9737,"lon":-9.9404,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7900558"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-19T07:38:51","lat":52.3679,"lon":-17.1047,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900557"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-07-01T00:00:00","lat":48.422,"lon":-17.0379,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900568"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-30T00:00:00","lat":48.7483,"lon":-13.8127,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900571"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-18T21:49:00","lat":52.9902,"lon":-51.1355,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902970"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-18T21:50:00","lat":52.9906,"lon":-51.1354,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-21T23:26:00","lat":56.556,"lon":-52.7345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903030"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-22T16:18:00","lat":59.0001,"lon":-50.998,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903032"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-22T16:19:00","lat":59.0002,"lon":-50.9969,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903034"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-25T20:25:00","lat":59.3095,"lon":-46.8908,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902886"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-25T20:26:00","lat":59.309,"lon":-46.8921,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902888"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2020-09-05T11:52:30","lat":74.998,"lon":-11.0933,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901937"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-08-13T13:32:00","lat":54.3167,"lon":-45.566,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903046"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2020-09-10T01:00:00","lat":65.8,"lon":-3.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901935"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2020-10-05T11:00:00","lat":58.4038,"lon":-21.2637,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903275"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2020-08-21T12:57:00","lat":57.582,"lon":-53.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900566"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-10T05:00:00","lat":35.937,"lon":-6.2208,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903065"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-07T22:15:01","lat":36.1778,"lon":-6.7317,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903066"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-11T19:18:00","lat":57.2999,"lon":-10.3865,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903725"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-14T06:02:00","lat":36.3546,"lon":-4.6267,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-10-14T00:05:00","lat":35.975,"lon":-4.4069,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903016"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-22T16:30:50","lat":59.0336,"lon":-8.9334,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903723"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-22T08:14:30","lat":59.0004,"lon":-12.0036,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903724"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-10-21T22:07:30","lat":58.7185,"lon":-15.6602,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903726"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-15T00:00:00","lat":47.1,"lon":-18.9,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904097"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-29T08:27:00","lat":50.6544,"lon":-36.72,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904110"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-29T14:54:00","lat":50.4417,"lon":-38.78,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904111"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-30T18:32:00","lat":49.2389,"lon":-41.6295,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904112"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":55.0,"lon":-49.38,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904113"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":56.63,"lon":-52.62,"noSite":0},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904114"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T00:00:00","lat":55.0,"lon":-51.8,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904115"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-11-17T11:40:00","lat":10.8282,"lon":-28.9413,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903043"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-11-06T20:09:00","lat":68.01,"lon":-12.66,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903552"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-11-18T13:57:00","lat":4.3104,"lon":-28.9914,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903044"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-10T07:00:00","lat":48.8413,"lon":-13.34,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904106"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-11T07:08:00","lat":48.7643,"lon":-13.34,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904088"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-11T14:09:00","lat":48.7488,"lon":-13.81,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904089"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904120"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-10T16:47:00","lat":29.1662,"lon":-19.0042,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903010"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-11T08:59:00","lat":29.1665,"lon":-18.9973,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903075"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-12-11T08:35:00","lat":29.1665,"lon":-19.0024,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903076"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-21T16:05:00","lat":24.1827,"lon":-49.7338,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903752"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-23T13:23:00","lat":25.1441,"lon":-52.0298,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903754"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-27T20:00:00","lat":26.4928,"lon":-70.5165,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903727"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2020-12-25T11:25:00","lat":25.5648,"lon":-59.2757,"noSite":0},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903755"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2020-11-20T13:00:00","lat":49.0005,"lon":-16.5017,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903751"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904100"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904099"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904098"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-01-12T12:51:00","lat":45.4982,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904096"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-01-22T14:33:00","lat":36.1744,"lon":-19.4378,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903072"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-01-27T19:09:00","lat":36.0,"lon":-13.8335,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903071"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2021-03-07T12:00:00","lat":53.0,"lon":-15.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901938"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-05T22:44:00","lat":8.9788,"lon":-20.0575,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903067"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2021-03-08T18:27:59","lat":54.0,"lon":-17.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901939"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-29T00:00:00","lat":48.925,"lon":-12.9557,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900572"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2020-06-26T02:09:00","lat":47.3833,"lon":-9.6667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900573"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-09T22:24:00","lat":0.0142,"lon":-9.8575,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903055"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2021-03-05T22:55:00","lat":8.9745,"lon":-20.0515,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903091"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2020-08-02T18:36:00","lat":67.5,"lon":-0.522,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-04-03T17:55:00","lat":0.0235,"lon":-22.9734,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903057"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-24T19:15:00","lat":0.0015,"lon":-2.6999,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903053"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-28T18:59:00","lat":0.0219,"lon":-9.8338,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903054"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-03-28T19:03:00","lat":0.0216,"lon":-9.8352,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903056"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2021-06-08T10:26:00","lat":18.7975,"lon":-21.8997,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904134"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-18T21:07:00","lat":74.5,"lon":-5.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903575"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-20T16:02:00","lat":74.5,"lon":-9.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-04-20T09:28:00","lat":74.5,"lon":-7.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903580"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-03-28T18:51:00","lat":0.0235,"lon":-9.83,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903874"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-24T20:15:00","lat":15.19,"lon":-69.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903351"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-26T16:05:00","lat":17.07,"lon":-66.47,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903350"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-24T07:55:00","lat":14.15,"lon":-69.7,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903349"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-21T12:00:00","lat":15.2698,"lon":-69.063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903344"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-04-03T18:09:00","lat":0.0313,"lon":-22.9729,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903876"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-04-03T18:01:00","lat":0.0267,"lon":-22.9727,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903877"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-02T08:05:00","lat":21.83,"lon":-65.92,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903345"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-04-30T19:05:00","lat":19.69,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903347"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-04T10:05:00","lat":25.33,"lon":-65.7,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903348"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T06:55:00","lat":26.82,"lon":-65.6,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903346"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2021-05-08T07:45:00","lat":64.66,"lon":-0.01,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903577"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T05:13:00","lat":49.2788,"lon":-14.8661,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902303"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-05-05T07:03:00","lat":49.0166,"lon":-14.868,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902304"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904094"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-06-02T19:37:00","lat":52.9863,"lon":-15.53,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904121"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-05T18:10:00","lat":42.28,"lon":-15.07,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902982"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-05T18:12:00","lat":42.2831,"lon":-15.0662,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903080"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-08T15:56:00","lat":46.1749,"lon":-19.3811,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903028"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-08T15:57:00","lat":47.1749,"lon":-19.3811,"noSite":0},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903081"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-10T19:19:00","lat":49.5311,"lon":-22.014,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903035"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-12T13:28:00","lat":51.0385,"lon":-23.1992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903036"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-12T13:22:00","lat":51.0385,"lon":-23.1992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903870"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-10T19:31:00","lat":49.5311,"lon":-22.014,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903869"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T01:26:00","lat":59.0409,"lon":-33.1939,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903039"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-18T15:51:00","lat":57.6737,"lon":-28.7287,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903038"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-21T14:08:00","lat":59.5561,"lon":-38.3234,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903040"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-22T07:52:00","lat":59.7526,"lon":-40.9095,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903041"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-17T09:49:00","lat":55.5175,"lon":-26.6987,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903082"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T20:12:00","lat":59.2988,"lon":-35.773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903083"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-17T09:47:00","lat":55.5175,"lon":-26.6987,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903085"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-20T20:09:00","lat":59.2988,"lon":-35.773,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903086"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-20T01:29:00","lat":59.0409,"lon":-33.1939,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903872"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-18T15:52:00","lat":57.6667,"lon":-28.7287,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903871"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-06-22T07:54:00","lat":59.7526,"lon":-40.9095,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903042"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2021-06-21T14:06:00","lat":59.5561,"lon":-38.3234,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903873"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-15T15:22:00","lat":60.5397,"lon":-42.6,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903359"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-15T21:52:00","lat":60.0973,"lon":-42.3637,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903360"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-07-30T02:55:00","lat":63.9332,"lon":-11.6667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903102"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-07-29T14:49:45","lat":50.44,"lon":-38.77,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900588"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-07-29T14:50:00","lat":50.44,"lon":-38.77,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900585"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-20T10:47:00","lat":61.086,"lon":-42.3762,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2021-08-12T17:02:00","lat":59.9461,"lon":-39.5774,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903365"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2021-08-15T17:04:00","lat":57.0457,"lon":-50.3181,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7900589"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2021-09-22T10:53:00","lat":27.9854,"lon":-86.9977,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903625"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-25T18:59:00","lat":41.4328,"lon":-60.7413,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902515"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-27T20:59:00","lat":43.4824,"lon":-57.4624,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902519"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-09-25T05:17:00","lat":42.0195,"lon":-61.1587,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902518"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2021-09-25T09:51:00","lat":27.0482,"lon":-89.9786,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4903624"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-28T23:45:00","lat":37.5695,"lon":-45.7392,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904126"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-26T15:55:00","lat":34.3983,"lon":-36.0882,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904140"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-27T03:01:00","lat":35.42,"lon":-37.7517,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904142"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-12-23T10:48:00","lat":2.9495,"lon":-14.6571,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904129"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-15T07:15:00","lat":46.4575,"lon":-6.1892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903077"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-18T11:47:00","lat":39.2703,"lon":-15.2508,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904141"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-17T23:00:00","lat":40.4075,"lon":-13.8525,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901995"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-11-24T16:30:00","lat":32.1567,"lon":-30.5383,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904128"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-19T18:25:00","lat":37.4288,"lon":-19.6247,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901998"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-23T15:52:00","lat":33.8062,"lon":-27.125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901994"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-24T09:21:00","lat":33.4883,"lon":-27.9892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901996"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-24T02:00:00","lat":33.4883,"lon":-27.9892,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903078"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-11-24T05:39:00","lat":20.066,"lon":-35.9902,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903372"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-27T21:55:00","lat":36.2167,"lon":-40.8145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903121"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-28T17:37:00","lat":37.3433,"lon":-44.5108,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903123"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2021-11-27T09:30:00","lat":35.5483,"lon":-39.0717,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903122"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2021-11-25T19:49:00","lat":33.601,"lon":-34.1317,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902001"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2021-11-26T06:58:00","lat":33.125,"lon":-32.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902000"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2021-11-28T09:07:00","lat":36.8417,"lon":-42.9522,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6901997"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-02T05:24:00","lat":9.9892,"lon":-23.0018,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903369"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-03T15:03:00","lat":6.0015,"lon":-22.9957,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903373"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-02T22:23:00","lat":7.993,"lon":-23.0062,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903370"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2021-07-13T19:33:00","lat":0.0,"lon":-23.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904139"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-13T17:38:00","lat":4.4952,"lon":-38.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903374"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-12T12:15:00","lat":0.4123,"lon":-34.0103,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903376"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-17T22:20:00","lat":13.8153,"lon":-28.4988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902315"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-16T03:40:00","lat":38.8022,"lon":-67.1285,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902392"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-16T13:58:00","lat":38.104,"lon":-65.4282,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902444"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-20T06:20:00","lat":28.6998,"lon":-55.9073,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902406"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-18T22:56:00","lat":31.0012,"lon":-57.5248,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902375"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-16T21:31:00","lat":37.1839,"lon":-64.4355,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902573"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-23T04:18:00","lat":23.613,"lon":-50.2805,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902389"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T15:51:00","lat":8.0332,"lon":-38.675,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902387"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T05:00:00","lat":6.4313,"lon":-37.1873,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902305"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T11:20:00","lat":5.8262,"lon":-36.385,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902388"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-17T04:51:00","lat":13.1478,"lon":-32.0002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902307"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T21:00:00","lat":3.1312,"lon":-32.8397,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902328"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T06:17:00","lat":3.9904,"lon":-34.0753,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902391"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T08:33:00","lat":8.9568,"lon":-39.4447,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902396"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-29T17:28:00","lat":5.2089,"lon":-35.602,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902404"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-27T10:30:00","lat":11.9082,"lon":-41.6813,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902425"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-27T17:45:00","lat":10.9615,"lon":-40.9462,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902407"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-28T00:15:00","lat":9.9747,"lon":-40.251,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902428"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-20T16:05:00","lat":27.4943,"lon":-54.3697,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902438"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-26T18:07:00","lat":13.7745,"lon":-43.204,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902437"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-26T01:17:00","lat":15.8035,"lon":-44.7725,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-12-30T00:15:00","lat":4.628,"lon":-34.763,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902436"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-27T02:27:00","lat":12.877,"lon":-42.524,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902561"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-30T13:50:00","lat":3.3969,"lon":-33.3238,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902572"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-12-28T22:21:00","lat":7.0298,"lon":-37.9672,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902570"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"IR-ILICO"},"ptfDepl":{"deplDate":"2011-08-14T19:50:45","lat":46.89,"lon":-4.345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900962"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2016-11-23T09:47:00","lat":31.6298,"lon":-64.2264,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902353"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-01T08:00:00","lat":40.5,"lon":-20.67,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900029"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Argo_eq_POMME"},"ptfDepl":{"deplDate":"2000-04-22T22:29:00","lat":40.5,"lon":-18.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900033"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_eq_IFM"},"ptfDepl":{"deplDate":"2003-09-23T15:55:00","lat":42.86,"lon":-41.88,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4900351"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-Good_Hope"},"ptfDepl":{"deplDate":"2011-11-17T21:01:00","lat":0.0,"lon":-11.29,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6900704"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2018-11-10T00:00:00","lat":26.0,"lon":-66.0,"noSite":null},"ptfModel":{"nameShort":"APEX_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901216"},{"program":{"country":{"nameShort":"USA"},"nameShort":"BioArgo_UMaine"},"ptfDepl":{"deplDate":"2015-11-12T07:30:00","lat":51.05,"lon":-43.62,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"5902463"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2015-06-28T00:00:00","lat":58.55,"lon":-30.18,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6901725"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2003-12-01T06:15:00","lat":50.33,"lon":-47.94,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4100534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-04T12:41:00","lat":30.99,"lon":-54.07,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901293"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-25T02:19:00","lat":4.5,"lon":-80.4,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2012-03-07T03:58:00","lat":33.82,"lon":-34.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_W"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4901034"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2012-11-26T22:24:00","lat":3.47,"lon":-82.98,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901145"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-21T00:00:00","lat":25.0,"lon":-55.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-22T00:00:00","lat":24.84,"lon":-58.01,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-23T00:00:00","lat":24.74,"lon":-60.99,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-24T00:00:00","lat":24.61,"lon":-64.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-25T00:00:00","lat":24.39,"lon":-67.02,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2017-03-26T00:00:00","lat":24.81,"lon":-70.03,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902326"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-OVIDE"},"ptfDepl":{"deplDate":"2014-06-06T00:00:00","lat":54.0203,"lon":-25.5279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6901564"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2020-08-08T09:00:00","lat":59.4963,"lon":-53.0972,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902513"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2017-07-27T20:40:00","lat":59.04,"lon":-33.17,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902808"},{"program":{"country":{"nameShort":"AUSTRALIA"},"nameShort":"Argo_AUSTRALIA"},"ptfDepl":{"deplDate":"2018-03-17T12:00:00","lat":20.0792,"lon":-36.0137,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7900625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2018-07-05T03:29:00","lat":59.6204,"lon":-38.954,"noSite":null},"ptfModel":{"nameShort":"PROVOR_II"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902802"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-10-04T00:00:00","lat":69.82,"lon":-65.4,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6902953"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2019-02-01T16:42:00","lat":58.9709,"lon":-32.0969,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902788"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2019-07-17T06:10:00","lat":72.7561,"lon":-67.0116,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902727"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2019-07-17T07:11:00","lat":72.7577,"lon":-66.9954,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4901806"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2018-07-17T01:12:00","lat":69.2928,"lon":-60.7265,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6902897"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2019-05-29T09:25:00","lat":74.501,"lon":-4.9,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903555"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2020-08-21T23:20:00","lat":56.5568,"lon":-52.7345,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902976"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2021-08-20T16:58:00","lat":60.5378,"lon":-42.6093,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903361"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:33:00","lat":72.7384,"lon":-66.9752,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902532"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:41:00","lat":72.7367,"lon":-66.9696,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902531"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2021-10-25T20:40:00","lat":72.7491,"lon":-66.9859,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902602"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T21:17:05","lat":72.7415,"lon":-66.9751,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903126"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T21:00:00","lat":72.7443,"lon":-66.9808,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903127"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"NAOS-France"},"ptfDepl":{"deplDate":"2021-10-25T20:15:00","lat":72.7498,"lon":-67.0005,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903125"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2021-10-25T21:22:00","lat":72.7392,"lon":-66.9769,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902530"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":3092} \ No newline at end of file diff --git a/argopy/tests/test_data/e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e.json b/argopy/tests/test_data/e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e.json new file mode 100644 index 00000000..cf1cc34c --- /dev/null +++ b/argopy/tests/test_data/e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-02-24T17:47:00","lat":26.1568,"lon":-79.677,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901008"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-02-24T17:45:00","lat":26.1551,"lon":-79.6784,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906966"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo BGC, AOML"},"ptfDepl":{"deplDate":"2023-06-06T04:00:00","lat":25.8333,"lon":-88.5667,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901009"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-03-28T05:51:00","lat":46.3579,"lon":-11.4308,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903773"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-03-28T11:11:00","lat":46.97,"lon":-10.4567,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906967"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-11T10:20:23","lat":3.3133,"lon":-14.63,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903642"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-10T15:39:23","lat":4.99,"lon":-16.1917,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902584"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-11T14:48:23","lat":2.7081,"lon":-14.065,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901018"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-01-10T10:03:00","lat":5.7733,"lon":-16.79,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903776"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-03-07T00:00:00","lat":11.46,"lon":-22.98,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990512"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-03-08T00:00:00","lat":8.0,"lon":-18.85,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902489"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2024-05-28T10:00:00","lat":59.9979,"lon":-23.9966,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903659"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-10-02T15:17:31","lat":7.0,"lon":-90.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"7901026"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-17T15:21:45","lat":56.41,"lon":-52.9291,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990526"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-30T15:21:45","lat":45.71,"lon":-46.87,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903668"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-12-07T15:21:45","lat":56.8004,"lon":-52.3425,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901027"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-03-07T02:19:36","lat":11.4616,"lon":-22.9799,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902601"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-03-07T02:05:00","lat":11.4638,"lon":-22.9846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902498"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-06-23T18:32:00","lat":53.4223,"lon":-25.6417,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990538"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-02T14:45:00","lat":59.2863,"lon":-35.7626,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906994"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-04T13:40:00","lat":59.7559,"lon":-40.8977,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901036"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-30T00:00:00","lat":36.0,"lon":-13.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"2903800"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-30T00:00:00","lat":23.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"7901042"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":null},"ptfDepl":{"deplDate":"2023-06-27T16:05:00","lat":57.6753,"lon":-28.7277,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902621"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-03T14:09:00","lat":46.4997,"lon":-3.4992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901066"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-03T05:56:00","lat":46.8998,"lon":-4.332,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902519"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-05-04T06:33:00","lat":45.7497,"lon":-2.4998,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902518"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-03-03T00:00:00","lat":11.4917,"lon":-23.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907047"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-05-10T15:05:52","lat":48.995,"lon":-16.4975,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903740"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-06-14T11:20:00","lat":48.4553,"lon":-22.4922,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903739"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-06-19T20:45:00","lat":51.0407,"lon":-19.1033,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2023-07-09T08:36:00","lat":52.0967,"lon":-18.7683,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":3.4267,"lon":-84.1967,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902641"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2023-05-31T11:52:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902647"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2023-05-31T11:52:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903871"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW-SOCCOM_eq"},"ptfDepl":{"deplDate":"2023-05-31T11:52:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901111"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_UW"},"ptfDepl":{"deplDate":"2023-05-31T11:52:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903758"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GOO"},"ptfDepl":{"deplDate":"2023-06-15T12:00:42","lat":70.0,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903873"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-05-13T00:00:00","lat":47.8327,"lon":-37.5846,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907067"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-12-01T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903761"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-12-01T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-04-18T00:00:00","lat":14.895,"lon":-44.8617,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903762"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-04-08T00:00:00","lat":21.7845,"lon":-24.7983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903879"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-02-29T00:00:00","lat":15.0,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907068"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T01:50:00","lat":42.1813,"lon":-52.1728,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903763"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-12T02:18:00","lat":45.8657,"lon":-44.1057,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907072"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-11T21:10:00","lat":45.6412,"lon":-44.4664,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907071"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-04T21:46:00","lat":42.0348,"lon":-52.2304,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903881"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T06:04:00","lat":42.3078,"lon":-52.0954,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902663"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T13:49:07","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903880"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907073"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901117"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901118"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901119"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903885"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907075"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907077"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903888"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2025-06-30T14:31:08","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990604"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":14.5,"lon":-73.1,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903766"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":12.45,"lon":-75.9,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903768"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":11.4,"lon":-77.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903769"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":10.7,"lon":-78.2,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903770"},{"program":{"country":{"nameShort":"COLOMBIA"},"nameShort":"Argo Colombia"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":13.5,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903767"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-05-13T00:00:00","lat":48.2743,"lon":-33.8234,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903778"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990620"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-03-31T00:00:00","lat":38.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903779"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901133"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-11-20T09:47:58","lat":29.1,"lon":-15.3004,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907094"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-12-12T13:30:00","lat":29.1547,"lon":-15.5043,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990625"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-05-24T00:00:00","lat":35.7883,"lon":-19.855,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902586"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903788"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907096"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907097"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907098"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907099"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903900"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902585"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903901"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902691"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-12-31T00:00:00","lat":47.8,"lon":-3.3,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907100"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-01-21T04:26:00","lat":36.0543,"lon":-7.3362,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901142"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-01-21T16:05:00","lat":36.3361,"lon":-7.2189,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801727"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801829"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801830"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802130"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802131"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801728"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802132"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802133"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802134"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802135"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801729"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801950"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801831"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804144"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801951"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801730"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804145"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802134"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802135"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801952"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801731"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802136"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801771"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801953"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802136"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801772"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804148"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801732"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801832"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801773"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804149"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801733"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802137"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801954"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801955"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804150"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804151"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802137"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804152"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804153"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802138"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802138"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801774"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802139"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801734"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801775"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801833"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804154"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801735"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801736"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802140"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801776"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801834"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804155"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802141"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801777"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801835"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801836"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801956"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801957"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802139"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802140"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802141"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801837"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804156"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801778"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801838"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802142"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804157"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801839"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801958"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804158"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801737"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801738"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801739"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801959"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804159"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802144"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801740"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801960"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802142"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801741"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802145"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804160"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802143"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2802146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6801961"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801779"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4804161"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3801742"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801840"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7801780"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1801841"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802144"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802145"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NDBC"},"ptfDepl":{"deplDate":"2024-01-18T10:25:11","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ITP"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5802146"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-07-31T13:43:37","lat":34.0,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903903"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-07-31T13:43:37","lat":34.0,"lon":-22.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902587"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-07-31T13:52:28","lat":34.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902588"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis-BIOArgo"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":11.4917,"lon":-23.0081,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902589"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-04T11:13:00","lat":44.9917,"lon":-18.4517,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902590"},{"program":{"country":{"nameShort":"INDIA"},"nameShort":"Argo_INDIA"},"ptfDepl":{"deplDate":"2024-06-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990633"},{"program":{"country":{"nameShort":"INDIA"},"nameShort":"Argo_INDIA"},"ptfDepl":{"deplDate":"2024-06-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903907"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2024-05-30T09:18:00","lat":61.5667,"lon":-20.2833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903797"},{"program":{"country":{"nameShort":"FINLAND"},"nameShort":"Argo_FINLAND"},"ptfDepl":{"deplDate":"2024-06-02T09:18:00","lat":64.8,"lon":-23.4833,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903908"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-10-31T00:00:00","lat":38.0,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902592"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-10-31T00:00:00","lat":38.0,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902202"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2024-05-28T10:00:00","lat":59.9979,"lon":-23.9966,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990636"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2024-12-30T14:57:04","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902695"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-05T16:15:00","lat":45.75,"lon":-2.4997,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902697"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-07T06:24:00","lat":46.8977,"lon":-4.3338,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990637"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-06-06T16:37:00","lat":46.5025,"lon":-3.4992,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902696"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2024-06-08T00:44:00","lat":77.12,"lon":-0.38,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902203"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2024-06-10T04:55:00","lat":73.75,"lon":-2.667,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990638"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2024-06-16T00:00:00","lat":73.42,"lon":-1.58,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990639"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2024-06-10T04:55:00","lat":73.7475,"lon":-2.6583,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907108"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-06-18T16:05:00","lat":56.1174,"lon":-50.54,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903798"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902700"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907109"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903799"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902701"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990640"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902702"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902594"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903800"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903909"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903910"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902703"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902704"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903801"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902705"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903802"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902204"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990641"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990642"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903911"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990643"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902595"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902596"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902597"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903803"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990644"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903912"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990645"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902205"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902706"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903804"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902707"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903805"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903913"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902598"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902206"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902708"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903806"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902599"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903914"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990646"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903915"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902600"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990647"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902709"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902207"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903807"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903916"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990648"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903917"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903918"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903808"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902208"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903919"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902601"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990649"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990650"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903809"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903920"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902209"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902710"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902210"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903810"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903921"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902602"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902603"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903922"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903923"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903811"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990651"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902604"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903812"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902711"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907117"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990652"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907118"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903813"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907119"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903924"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990653"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907120"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907121"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903925"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990654"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907122"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902211"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907123"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903814"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902212"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907124"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990655"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902213"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990656"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903815"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902712"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903816"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903926"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903927"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902214"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-06-12T14:51:23","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902606"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2024-11-01T00:00:00","lat":67.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902607"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2024-11-01T00:00:00","lat":67.0,"lon":-25.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990657"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-19T14:25:00","lat":49.2009,"lon":-42.9985,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990660"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-12T07:46:00","lat":46.0942,"lon":-43.7409,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902608"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-18T16:42:00","lat":49.8306,"lon":-45.0002,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903929"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-19T03:53:00","lat":49.6001,"lon":-44.0005,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903930"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-04T10:53:00","lat":41.9024,"lon":-52.2931,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907126"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":41.5,"lon":-52.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990661"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-15T00:00:00","lat":41.5,"lon":-52.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902215"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-08-05T12:20:00","lat":42.4316,"lon":-52.0322,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902609"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-04-30T00:00:00","lat":25.0,"lon":-21.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907127"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-04-25T00:00:00","lat":36.0,"lon":-14.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903933"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-01-31T00:00:00","lat":17.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903820"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-01-31T00:00:00","lat":17.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902217"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-01-31T00:00:00","lat":17.0,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903821"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-02-28T00:00:00","lat":0.0,"lon":-23.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902219"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-01-31T00:00:00","lat":17.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902715"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-01-31T00:00:00","lat":17.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_IV"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902221"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7902222"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907128"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902610"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902716"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903822"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"3902611"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2024-09-02T14:21:00","lat":62.381,"lon":-18.717,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902223"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2025-03-31T17:28:12","lat":37.0,"lon":-14.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903823"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-25T11:25:00","lat":36.0526,"lon":-7.3343,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902720"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-26T19:15:00","lat":36.3632,"lon":-7.2493,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990667"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-29T14:55:00","lat":40.6908,"lon":-9.6105,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902721"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-08-30T10:53:00","lat":42.6739,"lon":-9.3405,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7902224"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-08-24T13:00:00","lat":58.5,"lon":-51.9998,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6990668"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-19T00:00:00","lat":35.1,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902511"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-21T00:00:00","lat":31.2,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902512"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-29T00:00:00","lat":11.9041,"lon":-76.603,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902522"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-17T00:00:00","lat":37.0944,"lon":-36.9986,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902509"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-19T00:00:00","lat":33.9,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902519"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-02-08T00:00:00","lat":19.1579,"lon":-51.5079,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902507"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-04T00:00:00","lat":40.5992,"lon":-21.9926,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902508"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-29T00:00:00","lat":11.4,"lon":-77.3,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-28T00:00:00","lat":12.9997,"lon":-75.2047,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902521"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-04-18T00:00:00","lat":36.1976,"lon":-40.0042,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902510"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-02-11T00:00:00","lat":1.3664,"lon":-3.036,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902492"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":2.4933,"lon":-85.2017,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902515"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-05-09T00:00:00","lat":4.5,"lon":-83.4,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902514"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-04-12T20:42:00","lat":43.4698,"lon":-61.4349,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902622"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-04-01T00:00:00","lat":27.2267,"lon":-15.415,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903656"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-04-27T21:23:00","lat":43.4721,"lon":-57.5224,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902676"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-03-10T00:00:00","lat":20.4373,"lon":-23.1427,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903571"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-04-02T00:00:00","lat":27.18,"lon":-16.795,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990513"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-05-10T00:00:00","lat":0.6134,"lon":-85.5388,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902489"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-05-28T00:00:00","lat":49.0,"lon":-16.5,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901580"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-05T00:00:00","lat":31.825,"lon":-29.0167,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903446"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2024-05-20T00:00:00","lat":41.2042,"lon":-13.7588,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902887"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-06T00:00:00","lat":30.33,"lon":-22.495,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903447"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-05T00:00:00","lat":31.0213,"lon":-25.51,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903443"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-04T15:48:00","lat":32.5009,"lon":-32.0063,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903445"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-16T12:29:00","lat":15.008,"lon":-55.7488,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902264"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-06-06T00:35:00","lat":59.5044,"lon":-55.021,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902677"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-06-06T00:33:00","lat":59.5045,"lon":-55.0209,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902675"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-22T11:22:00","lat":9.216,"lon":-48.6212,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902263"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-06-21T10:26:22","lat":60.1331,"lon":-18.9342,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901581"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-06-26T05:00:00","lat":49.5133,"lon":-7.0083,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"1902116"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-26T15:13:00","lat":6.5057,"lon":-45.0045,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902262"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-06-28T19:00:00","lat":7.1972,"lon":-40.6198,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902330"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-07-05T10:17:00","lat":41.1267,"lon":-44.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903448"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-07-04T18:10:00","lat":40.7117,"lon":-40.5033,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903444"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-07-12T10:24:00","lat":42.4457,"lon":-49.9567,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902659"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-06-29T15:24:00","lat":41.1372,"lon":-44.6189,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902332"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-06T13:00:00","lat":57.2261,"lon":-10.0238,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902259"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-05T20:30:00","lat":51.0025,"lon":-45.6,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902331"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-17T03:06:00","lat":57.8785,"lon":-20.4976,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902258"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-07-24T14:28:00","lat":48.5706,"lon":-24.0089,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"3901582"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-07-26T20:20:00","lat":60.9997,"lon":-21.0026,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902109"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-07-26T07:18:00","lat":48.6078,"lon":-33.6428,"noSite":0},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"3901583"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-26T13:45:00","lat":60.0091,"lon":-21.7716,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902261"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-19T13:31:00","lat":57.9333,"lon":-24.4,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902260"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-07-17T21:54:00","lat":62.2,"lon":-33.8,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902333"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-08-08T19:00:00","lat":48.8023,"lon":-46.9058,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"3901584"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-07-12T10:25:00","lat":42.4469,"lon":-49.9561,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902651"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-09-01T00:00:00","lat":25.43,"lon":-29.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"4903564"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-09-01T00:00:00","lat":24.084,"lon":-33.5,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"4903565"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2024-09-01T00:00:00","lat":22.574,"lon":-38.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_A"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"4903566"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-10-01T00:00:00","lat":47.0,"lon":-20.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"3901585"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2024-08-24T12:00:00","lat":58.5,"lon":-51.9998,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"TMP402566990"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2024-10-26T00:00:00","lat":36.7,"lon":-0.8,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"TMP-1761065978"},{"program":{"country":{"nameShort":"ITALY"},"nameShort":"Argo_ITALY"},"ptfDepl":{"deplDate":"2024-10-27T00:00:00","lat":36.11,"lon":-2.5,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"TMP224906375"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-08-21T17:43:10","lat":25.7433,"lon":-79.8083,"noSite":null},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6990515"},{"program":{"country":{"nameShort":"IRELAND"},"nameShort":"Argo_IRELAND"},"ptfDepl":{"deplDate":"2024-10-16T12:00:00","lat":52.999,"lon":-15.52,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6901936"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"GREECE"},"nameShort":"Argo_GREECE"},"ptfDepl":{"deplDate":"2022-11-28T13:17:40","lat":0.0,"lon":0.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5907017"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-03-26T13:03:00","lat":40.5378,"lon":-16.9192,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3901579"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-03-16T15:05:00","lat":10.425,"lon":-25.29,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3901578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-07-19T02:40:00","lat":57.9734,"lon":-26.0028,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902110"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-09-01T00:38:00","lat":60.8,"lon":-29.8,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902112"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-08-31T15:52:00","lat":61.5,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902111"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2025-02-14T00:00:00","lat":27.5,"lon":-39.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"1902114"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2024-06-19T17:30:00","lat":50.217,"lon":-9.25,"noSite":null},"ptfModel":{"nameShort":"ARVOR_C"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902115"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2023-08-01T00:00:00","lat":17.585,"lon":-74.734,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903102"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-14T22:36:00","lat":29.1667,"lon":-18.1667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903822"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-17T17:15:00","lat":28.9412,"lon":-14.3757,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903823"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-12-10T19:49:00","lat":29.1676,"lon":-18.4988,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903712"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-04-16T20:57:00","lat":29.2462,"lon":-15.8418,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903713"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2024-06-13T00:00:00","lat":28.8515,"lon":-86.0327,"noSite":null},"ptfModel":{"nameShort":"ALAMO"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2024-02-26T00:00:00","lat":11.0077,"lon":-79.1214,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903115"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_eq_NAVOCEANO"},"ptfDepl":{"deplDate":"2024-02-26T00:00:00","lat":14.0778,"lon":-77.4039,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903114"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-28T21:21:00","lat":23.0166,"lon":-27.3575,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903537"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-31T19:03:00","lat":27.5175,"lon":-24.8317,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903541"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":3.5,"lon":-84.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902302"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":25.1,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902364"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":22.5,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902366"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":27.6,"lon":-59.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902362"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":28.7,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902361"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":26.35,"lon":-61.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902363"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":23.7,"lon":-65.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902365"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-03-01T00:00:00","lat":29.8,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902360"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-05-10T14:38:00","lat":49.5,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903670"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-20T15:46:00","lat":60.7,"lon":-34.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903663"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-23T07:43:00","lat":52.5,"lon":-48.7,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902495"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-16T14:59:00","lat":48.9763,"lon":-16.372,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5907048"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-09T13:32:00","lat":48.9977,"lon":-16.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901093"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-07T13:10:00","lat":45.7534,"lon":-7.9793,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904216"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-06T10:24:00","lat":42.7442,"lon":-10.539,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904217"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-05T13:55:00","lat":40.2671,"lon":-11.2563,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904218"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-04-03T12:42:00","lat":32.8963,"lon":-13.9387,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904219"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-02-21T19:46:00","lat":11.084,"lon":-49.1965,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903536"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:49:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":2,"description":"Starting status for most of the networks, when deployment planning is not done. The deployment is certain, and a notification has been sent via the OceanOPS system","name":"REGISTERED"},"ref":"6903146"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-02-23T15:41:00","lat":4.1904,"lon":-42.8004,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903534"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-03-21T20:22:00","lat":11.1926,"lon":-28.7804,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903535"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-03-17T19:50:00","lat":4.5,"lon":-25.75,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903486"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2023-03-29T08:52:00","lat":17.5882,"lon":-24.2827,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904220"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-03-29T20:36:00","lat":24.5,"lon":-26.45,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903487"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-04-22T22:59:00","lat":35.0018,"lon":-19.4452,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903540"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-04-19T14:05:00","lat":29.9988,"lon":-23.3746,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903485"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-04-28T18:51:00","lat":44.0011,"lon":-19.0992,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903533"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-09T13:32:00","lat":48.9977,"lon":-16.0,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902494"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-05-03T11:34:00","lat":53.021,"lon":-20.0004,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903488"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-05-06T12:33:00","lat":59.9992,"lon":-19.9998,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903532"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-05-16T14:59:00","lat":48.9763,"lon":-16.372,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990519"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-19T19:20:00","lat":67.32,"lon":-4.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903794"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-19T19:20:00","lat":67.32,"lon":-4.08,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902602"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-30T21:37:00","lat":74.5,"lon":-3.0,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902603"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T20:27:00","lat":26.2495,"lon":-86.4998,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903545"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T03:50:00","lat":25.25,"lon":-85.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903551"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T17:56:00","lat":26.5006,"lon":-87.0001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903554"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T05:40:00","lat":25.1003,"lon":-86.249,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903549"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-03T23:48:00","lat":26.0004,"lon":-86.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903557"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T19:14:00","lat":24.9999,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903552"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T01:34:00","lat":25.4997,"lon":-87.9993,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903555"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T12:12:00","lat":26.25,"lon":-87.4994,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903546"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T22:27:00","lat":25.1998,"lon":-87.4995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903548"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T11:49:00","lat":25.7497,"lon":-86.4997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903550"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T07:45:00","lat":25.249,"lon":-86.499,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903556"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T05:00:00","lat":25.7561,"lon":-87.4958,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903543"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-04T15:08:00","lat":25.4995,"lon":-87.0001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903553"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T16:00:00","lat":26.0,"lon":-87.993,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903544"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T08:30:00","lat":25.993,"lon":-85.0212,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903542"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2023-06-05T21:15:00","lat":25.2506,"lon":-88.5001,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903547"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:00:00","lat":59.9578,"lon":-54.5413,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902604"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:21:00","lat":59.9482,"lon":-54.5468,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902671"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T12:09:00","lat":59.9554,"lon":-54.544,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902670"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T05:05:00","lat":59.9763,"lon":-53.5576,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902650"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-03T20:09:00","lat":59.501,"lon":-55.008,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902652"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-06-10T15:51:00","lat":41.4059,"lon":-60.6433,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902606"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2023-07-02T19:38:00","lat":44.3333,"lon":-5.6667,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902506"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T07:17:00","lat":20.4114,"lon":-82.3017,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903559"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-08T20:57:00","lat":21.2022,"lon":-84.4246,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903562"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T03:25:00","lat":20.7519,"lon":-83.1392,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903563"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-10T02:04:00","lat":18.8569,"lon":-78.4258,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903558"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2023-08-09T21:34:00","lat":19.1777,"lon":-79.3836,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903561"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-08-20T04:40:00","lat":62.2008,"lon":-31.699,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906984"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-08-21T17:37:00","lat":25.7376,"lon":-79.8059,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903662"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-24T08:20:00","lat":42.4715,"lon":-61.4352,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902601"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-15T11:05:00","lat":43.7822,"lon":-57.8308,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902600"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-09-15T02:29:00","lat":43.4793,"lon":-57.5477,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2023-10-07T14:11:20","lat":25.4565,"lon":-79.89,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902491"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-10-22T20:02:00","lat":42.0773,"lon":-49.2785,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902608"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-02T20:30:00","lat":40.66,"lon":-45.38,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990520"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-04T10:16:00","lat":36.9867,"lon":-36.51,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"5906985"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2023-11-03T15:40:00","lat":39.065,"lon":-39.695,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990521"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-12-01T23:48:00","lat":3.4,"lon":-16.1983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902607"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-12-01T05:18:00","lat":5.395,"lon":-18.7983,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902605"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2023-12-14T00:30:00","lat":31.7231,"lon":-64.1881,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903570"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2023-12-03T23:32:00","lat":56.9361,"lon":-52.8361,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902684"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2023-12-12T16:36:00","lat":56.9217,"lon":-51.642,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902685"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2024-02-07T00:55:00","lat":18.7839,"lon":-57.4826,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903539"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2024-05-16T16:10:00","lat":17.9857,"lon":-65.0987,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902609"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-13T22:40:00","lat":56.501,"lon":-52.599,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902686"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-17T14:59:00","lat":56.665,"lon":-48.977,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902687"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo Dalhousie University"},"ptfDepl":{"deplDate":"2024-05-22T15:42:00","lat":58.4275,"lon":-49.4418,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902688"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-03-05T00:00:00","lat":36.7163,"lon":-8.427,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2023-10-22T20:00:00","lat":42.078,"lon":-49.277,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"4902689"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":null},"ptfDepl":{"deplDate":"2023-09-14T00:00:00","lat":67.0,"lon":-9.0,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7900581"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":36.5429,"lon":-8.5533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5906996"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":36.4414,"lon":-8.5588,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903801"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":36.3485,"lon":-8.5533,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903683"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":36.437,"lon":-8.8417,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903684"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":38.9594,"lon":-20.2148,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903685"},{"program":{"country":{"nameShort":"PORTUGAL"},"nameShort":"Argo Portugal"},"ptfDepl":{"deplDate":"2023-06-30T00:00:00","lat":40.1117,"lon":-13.2715,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5906997"},{"program":{"country":{"nameShort":"SPAIN"},"nameShort":"Argo_SPAIN"},"ptfDepl":{"deplDate":"2024-11-20T00:00:00","lat":43.0845,"lon":-13.9464,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"1902620"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":40.6,"lon":-22.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902520"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":37.1,"lon":-37.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907024"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":36.2,"lon":-40.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902521"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":35.1,"lon":-43.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"1902622"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":33.9,"lon":-46.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902522"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":31.2,"lon":-52.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907025"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":29.8,"lon":-55.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902523"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":25.1,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903715"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":23.7,"lon":-65.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"2903825"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":22.5,"lon":-67.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"1902623"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":14.5,"lon":-73.1,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902524"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":14.0,"lon":-73.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902525"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":13.5,"lon":-74.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"3902526"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":13.0,"lon":-75.2,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"2903826"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":12.45,"lon":-75.9,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"7901067"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":11.9,"lon":-76.6,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903716"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":11.4,"lon":-77.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990555"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":11.0,"lon":-77.8,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990556"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":10.7,"lon":-78.2,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990557"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":6.6,"lon":-81.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"7901068"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":4.5,"lon":-83.4,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990558"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":4.0,"lon":-83.85,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990559"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":3.5,"lon":-84.3,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"2903827"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":3.0,"lon":-84.75,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907026"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":2.5,"lon":-85.2,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"5907027"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":1.5,"lon":-85.35,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"6990560"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":0.5,"lon":-85.5,"noSite":null},"ptfModel":{"nameShort":"SOLO_II"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"2903828"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":28.7,"lon":-57.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"1902626"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_SIO"},"ptfDepl":{"deplDate":"2024-02-01T00:00:00","lat":27.6,"lon":-59.0,"noSite":null},"ptfModel":{"nameShort":"SOLO_D"},"ptfStatus":{"id":1,"description":"Automatically set when a ship is attached to the deployment information. The platform is ready to be deployed, deployment is planned","name":"CONFIRMED"},"ref":"4903721"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-10-31T00:00:00","lat":37.0,"lon":-27.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902636"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-12-30T00:00:00","lat":38.0,"lon":-28.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990578"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-12-30T00:00:00","lat":39.0,"lon":-26.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"4903738"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-01-30T00:00:00","lat":38.0,"lon":-11.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901087"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902640"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2025-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"5906995"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"7901092"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"2903853"},{"program":{"country":{"nameShort":"CHINA"},"nameShort":"China Deep Argo"},"ptfDepl":{"deplDate":"2024-01-01T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"XUANWU"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"6990581"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_GERMANY"},"ptfDepl":{"deplDate":"2024-03-02T00:00:00","lat":55.0,"lon":-50.0,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"TMP1397721249"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2024-09-21T00:00:00","lat":50.0,"lon":-30.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_L"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"TMP2007584850"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EuroArgo"},"ptfDepl":{"deplDate":"2024-06-15T13:32:52","lat":74.0,"lon":-5.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"TMP365552661"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2023-07-03T13:25:00","lat":59.5595,"lon":-38.302,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901037"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GOO"},"ptfDepl":{"deplDate":"2023-07-18T12:00:42","lat":73.2573,"lon":-57.8907,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902655"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GOO"},"ptfDepl":{"deplDate":"2023-08-18T12:00:42","lat":69.093,"lon":-51.99,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990591"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2023-09-03T15:25:00","lat":78.834,"lon":-8.999,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902659"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-08-26T16:45:27","lat":72.8951,"lon":-65.6039,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903774"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2023-08-26T17:02:03","lat":72.8984,"lon":-65.612,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901124"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2023-05-30T15:54:00","lat":74.5,"lon":-1.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903672"},{"program":{"country":{"nameShort":"DENMARK"},"nameShort":"Argo_DENMARK"},"ptfDepl":{"deplDate":"2023-09-04T00:40:00","lat":78.833,"lon":-11.051,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902564"},{"program":{"country":{"nameShort":"BULGARIA"},"nameShort":"BulArgo"},"ptfDepl":{"deplDate":"2024-05-15T00:00:00","lat":0.0,"lon":0.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":0,"description":"Starting status for some platforms, when there is only a few metadata available, like rough deployment location and date. The platform may be deployed","name":"PROBABLE"},"ref":"1902576"}],"total":693} \ No newline at end of file diff --git a/argopy/tests/test_data/e5b2e64e8bdc6dd5079c652e75b3ba871c8aa21ed2787619bc42317b4a2a9507.ncHeader b/argopy/tests/test_data/e5b2e64e8bdc6dd5079c652e75b3ba871c8aa21ed2787619bc42317b4a2a9507.ncHeader new file mode 100644 index 00000000..9b839bdd --- /dev/null +++ b/argopy/tests/test_data/e5b2e64e8bdc6dd5079c652e75b3ba871c8aa21ed2787619bc42317b4a2a9507.ncHeader @@ -0,0 +1,763 @@ +netcdf ArgoFloats-synthetic-BGC_6785_8e17_87dc.nc { + dimensions: + row = 982; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.586057E-4f, 0.01046f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 5.586057E-4f, 0.01046f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=982, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=982, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -1.645969f, 2.564167f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=982, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=982, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.1015917f, 6.2123f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.12775f, 3.25215f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=982, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=982, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=982); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 2, 16; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=982); + :_FillValue = 99999.0f; // float + :actual_range = 0.2325642f, 19.58223f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=982); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=982); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=982, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=982, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=982); + :_FillValue = 99999; // int + :actual_range = 38, 172; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=982, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.105011E-4f, 0.5660256f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.01874982f, 0.1274856f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.749964E-4f, 0.002549712f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=982, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=982, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 6.57517E-5f, 1.100864f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.03692814f, 0.2209459f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 7.385628E-4f, 0.004418917f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=982, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=982, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 3.618431E-4f, 0.9016092f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0705514f, 0.2641845f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.001411028f, 0.00528369f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=982, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=982, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.002103709f, 1113.864f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 53.80022f, 298.1838f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.690011f, 14.90919f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=982, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=982, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 292.8637f, 349.3434f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 308.0967f, 370.1293f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 15.25045f, 31.84704f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=982, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=982, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=982); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.015361666666664, 56.89360833333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=982); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.31517, -47.178141000000004; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=982); + :_FillValue = 99999.0f; // float + :actual_range = 10.34654f, 10.41807f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=982); + :actual_range = 7.486197f, 99999.0f; // float + + float nitrate_adjusted_error(row=982); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=982, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=982, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=982); + :_FillValue = 99999.0f; // float + :actual_range = 7.990134f, 8.165861f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=982); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=982); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=982, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=982, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=982, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=982); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=982); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -2.128737E-9f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.0f, 2.004083f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=982, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=982, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.767f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.868f, 34.7755f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=982, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=982, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 8.0442f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 1.471667f, 6.826f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=982); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=982, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=982, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=982); + :_CoordinateAxisType = "Time"; + :actual_range = 1.681063194033E9, 1.687773750023E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=982); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.178141000000004; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.89360833333333; // double + :geospatial_lat_min = 55.015361666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.178141000000004; // double + :geospatial_lon_min = -54.31517; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:47:25Z (local files) +2024-09-24T12:47:25Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1680808320.0&time%3C=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.89360833333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.015361666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2023-06-26T10:02:30Z"; + :time_coverage_start = "2023-04-09T17:59:54Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.31517; // double +} diff --git a/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc b/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc new file mode 100644 index 00000000..a7386d07 Binary files /dev/null and b/argopy/tests/test_data/e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448.nc differ diff --git a/argopy/tests/test_data/eb37c7699374ae67a89d0e6de661bed842970de78085d8ce372ead9fca0cbd5a.nc b/argopy/tests/test_data/eb37c7699374ae67a89d0e6de661bed842970de78085d8ce372ead9fca0cbd5a.nc new file mode 100644 index 00000000..0e232a7d Binary files /dev/null and b/argopy/tests/test_data/eb37c7699374ae67a89d0e6de661bed842970de78085d8ce372ead9fca0cbd5a.nc differ diff --git a/argopy/tests/test_data/eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2.js b/argopy/tests/test_data/eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2.js new file mode 100644 index 00000000..75f0483c --- /dev/null +++ b/argopy/tests/test_data/eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2.js @@ -0,0 +1,177 @@ +[ +{"_id":"1900468_087","geolocation":{"type":"Point","coordinates":[46.682,-48.14]},"basin":3,"timestamp":"2007-06-17T01:54:59.999Z","date_updated_argovis":"2023-01-24T21:29:44.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_087.nc","date_updated":"2015-10-19T17:48:40.000Z"}],"cycle_number":87,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,174,185,195,206,215,225,235,245,255,265,275,285,295,305,315,325,334,345,355,365,375,385,396,405,415,426,435,445,456,466,475,485,495,512,537,562,587,612,637,662,687,712,738,762,787,812,837,863,888,912,938,963,988,1013,1038,1064,1088,1112,1137,1162,1188,1213,1238,1264,1287,1312,1337,1363,1387,1412,1437,1462,1487,1512,1537,1562,1588,1613,1637,1662,1687,1712,1738,1762,1788,1812,1837,1863,1888,1912,1937,1963,1980],[3.403,3.403,3.401,3.397,3.397,3.399,3.397,3.397,3.398,3.399,3.399,3.4,3.4,3.4,3.401,3.397,3.289,2.913,2.318,2.08,1.899,1.726,1.59,1.506,1.443,1.444,1.481,1.513,1.513,1.56,1.621,1.607,1.64,1.706,1.745,1.786,1.807,1.827,1.854,1.874,1.889,1.935,1.979,2.054,2.141,2.19,2.188,2.185,2.199,2.128,2.168,2.306,2.353,2.408,2.391,2.383,2.377,2.358,2.366,2.371,2.375,2.393,2.422,2.435,2.414,2.412,2.407,2.419,2.42,2.406,2.393,2.385,2.385,2.393,2.398,2.39,2.382,2.365,2.353,2.331,2.312,2.297,2.286,2.267,2.255,2.242,2.232,2.212,2.191,2.182,2.175,2.161,2.14,2.116,2.104,2.096,2.078,2.058,2.029,2.01,1.997,1.98,1.963,1.941,1.921,1.902,1.875,1.846,1.842],[33.783001,33.782001,33.783001,33.783001,33.783001,33.783001,33.784,33.784,33.784,33.784,33.784,33.784,33.784,33.784,33.784,33.786999,33.813999,33.870998,33.903,33.923,33.938,33.955002,33.973999,33.992001,34.015999,34.032001,34.050999,34.062,34.070999,34.09,34.110001,34.119999,34.140999,34.167999,34.186001,34.205002,34.214001,34.223999,34.237,34.245998,34.258999,34.280998,34.293999,34.310001,34.332001,34.347,34.353001,34.358002,34.366001,34.372002,34.395,34.428001,34.452999,34.473999,34.487,34.501999,34.521999,34.542,34.556999,34.563,34.576,34.587002,34.603001,34.618,34.627998,34.637001,34.646,34.658001,34.667,34.673,34.676998,34.681999,34.691002,34.695,34.702999,34.708,34.713001,34.717999,34.723999,34.73,34.733002,34.736,34.738998,34.743,34.744999,34.749001,34.75,34.751999,34.752998,34.755001,34.756001,34.757999,34.759998,34.762001,34.763,34.763,34.764999,34.766998,34.768002,34.769001,34.77,34.771,34.771,34.771,34.77,34.77,34.769001,34.769001,34.769001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_086","geolocation":{"type":"Point","coordinates":[46.425000000000004,-48.761]},"basin":3,"timestamp":"2007-06-07T01:54:59.999Z","date_updated_argovis":"2023-01-24T21:29:42.103Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_086.nc","date_updated":"2015-10-19T17:48:40.000Z"}],"cycle_number":86,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,46,55,65,76,85,95,105,115,126,135,144,155,165,175,185,195,205,215,225,235,245,255,264,275,286,295,305,316,325,335,345,355,365,375,385,395,405,415,425,435,446,455,465,475,484,495,513,538,564,587,612,638,663,687,712,737,762,787,812,838,863,888,912,937,963,989,1012,1037,1063,1088,1112,1137,1162,1189,1212,1237,1262,1287,1313,1339,1362,1388,1413,1438,1463,1488,1513,1537,1562,1588,1612,1637,1662,1688,1714,1737,1763,1788,1813,1838,1863,1887,1912,1938,1962,1986],[3.722,3.723,3.723,3.724,3.726,3.727,3.728,3.728,3.729,3.729,3.73,3.727,3.68,3.436,3.007,2.813,2.847,2.669,2.513,2.553,2.582,2.531,2.47,2.528,2.494,2.572,2.557,2.546,2.524,2.542,2.569,2.568,2.537,2.556,2.572,2.564,2.541,2.515,2.518,2.522,2.512,2.483,2.45,2.38,2.354,2.35,2.341,2.325,2.338,2.348,2.351,2.441,2.435,2.42,2.408,2.416,2.445,2.461,2.46,2.437,2.405,2.403,2.445,2.449,2.447,2.375,2.368,2.392,2.429,2.41,2.405,2.388,2.381,2.358,2.355,2.367,2.348,2.347,2.339,2.318,2.311,2.319,2.309,2.301,2.295,2.282,2.27,2.249,2.224,2.196,2.178,2.161,2.135,2.12,2.115,2.079,2.056,2.043,2.03,1.999,1.971,1.951,1.927,1.901,1.884,1.859,1.842,1.83,1.809],[33.773998,33.773998,33.773998,33.773998,33.772999,33.772999,33.772999,33.773998,33.773998,33.773998,33.773998,33.773998,33.783001,33.823002,33.880001,33.932999,33.971001,33.986,33.998001,34.029999,34.055,34.074001,34.085999,34.106998,34.118999,34.139999,34.146,34.152,34.16,34.171001,34.186001,34.194,34.200001,34.212002,34.223999,34.231998,34.237,34.244999,34.258999,34.271,34.277,34.279999,34.286999,34.292,34.299999,34.306,34.312,34.323002,34.341,34.362,34.386002,34.426998,34.438999,34.452,34.467999,34.485001,34.506001,34.526001,34.542,34.549999,34.556,34.569,34.587002,34.598,34.609001,34.610001,34.617001,34.630001,34.643002,34.651001,34.657001,34.664001,34.674,34.681,34.692001,34.703999,34.709,34.713001,34.716999,34.720001,34.723999,34.731998,34.736,34.740002,34.743999,34.747002,34.75,34.750999,34.751999,34.754002,34.756001,34.757999,34.759998,34.761002,34.765999,34.765999,34.766998,34.77,34.771,34.771,34.769001,34.768002,34.766998,34.766998,34.766998,34.766998,34.766998,34.766998,34.765999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_085","geolocation":{"type":"Point","coordinates":[47.199000000000005,-48.980000000000004]},"basin":3,"timestamp":"2007-05-28T01:54:59.999Z","date_updated_argovis":"2023-01-24T21:29:40.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_085.nc","date_updated":"2015-10-19T17:48:39.000Z"}],"cycle_number":85,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,76,85,95,106,115,125,136,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,375,395,415,435,455,475,495,514,538,563,588,613,638,663,688,713,739,763,787,812,837,862,888,912,937,963,987,1012,1037,1062,1087,1112,1138,1163,1187,1212,1238,1263,1288,1313,1338,1363,1387,1412,1438,1462,1487,1512,1538,1562,1587,1612,1637,1663,1687,1712,1737,1763,1787,1812,1837,1862,1888,1912,1937,1962,1982],[3.942,3.943,3.945,3.946,3.945,3.945,3.946,3.945,3.942,3.923,3.906,3.84,3.655,3.444,3.171,2.974,2.966,2.875,2.91,2.935,2.909,2.883,2.848,2.839,2.782,2.746,2.716,2.67,2.605,2.593,2.592,2.613,2.562,2.584,2.574,2.574,2.568,2.491,2.486,2.431,2.402,2.347,2.446,2.497,2.5,2.544,2.542,2.504,2.499,2.491,2.484,2.476,2.491,2.495,2.502,2.482,2.43,2.389,2.374,2.423,2.506,2.501,2.494,2.49,2.483,2.478,2.471,2.467,2.452,2.433,2.417,2.404,2.385,2.37,2.358,2.34,2.329,2.324,2.296,2.245,2.233,2.217,2.2,2.184,2.176,2.166,2.149,2.126,2.103,2.072,2.057,2.032,2.012,1.994,1.971,1.94,1.915,1.892,1.874,1.849,1.83,1.82],[33.757,33.757,33.757,33.757,33.757,33.757,33.757,33.757,33.757,33.757999,33.758999,33.764999,33.793999,33.825001,33.853001,33.91,33.945,33.970001,34.000999,34.015999,34.036999,34.063999,34.077999,34.096001,34.110001,34.118,34.125,34.130001,34.134998,34.141998,34.154999,34.178001,34.188,34.200001,34.207001,34.222,34.242001,34.251999,34.280998,34.290001,34.305,34.311001,34.345001,34.374001,34.395,34.419998,34.438,34.452,34.467999,34.484001,34.5,34.514999,34.534,34.547001,34.562,34.57,34.578999,34.587002,34.598,34.618999,34.639999,34.647999,34.654999,34.660999,34.668999,34.674,34.681,34.691002,34.698002,34.702999,34.709999,34.715,34.721001,34.724998,34.729,34.734001,34.737999,34.743,34.743,34.741001,34.743,34.745998,34.748001,34.75,34.751999,34.755001,34.757999,34.761002,34.762001,34.762001,34.764999,34.766998,34.766998,34.768002,34.768002,34.768002,34.768002,34.768002,34.768002,34.768002,34.766998,34.766998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_084","geolocation":{"type":"Point","coordinates":[47.219,-48.646]},"basin":3,"timestamp":"2007-05-18T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:29:38.273Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_084.nc","date_updated":"2015-10-19T17:48:38.000Z"}],"cycle_number":84,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,105,115,125,135,145,155,164,175,186,195,205,216,225,235,246,255,265,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,434,445,456,465,475,485,495,513,538,563,588,613,638,663,688,713,738,763,788,813,838,863,887,914,937,962,987,1012,1037,1063,1087,1112,1137,1162,1188,1213,1238,1263,1288,1312,1338,1363,1388,1413,1437,1462,1488,1513,1538,1562,1587,1612,1638,1662,1688,1713,1738,1763,1788,1813,1838,1863,1887,1912,1937,1962,1987],[4.078,4.08,4.08,4.08,4.081,4.081,4.081,4.081,4.081,4.08,3.909,3.259,2.943,2.853,2.845,2.851,2.825,2.823,2.755,2.691,2.753,2.718,2.687,2.682,2.671,2.706,2.696,2.681,2.667,2.657,2.642,2.645,2.643,2.621,2.615,2.606,2.593,2.582,2.574,2.622,2.605,2.549,2.531,2.521,2.529,2.491,2.493,2.487,2.482,2.469,2.48,2.52,2.535,2.488,2.483,2.48,2.468,2.426,2.365,2.402,2.442,2.445,2.425,2.377,2.362,2.39,2.411,2.483,2.493,2.487,2.488,2.483,2.467,2.455,2.45,2.441,2.436,2.428,2.42,2.412,2.399,2.379,2.364,2.34,2.322,2.311,2.295,2.288,2.287,2.269,2.257,2.221,2.197,2.161,2.121,2.108,2.088,2.067,2.056,2.047,2.031,2.012,1.99,1.97,1.946,1.934,1.914,1.883,1.866],[33.758999,33.758999,33.758999,33.758999,33.758999,33.758999,33.759998,33.759998,33.759998,33.759998,33.773998,33.855,33.909,33.952,33.977001,33.997002,34.015999,34.048,34.07,34.085999,34.104,34.112,34.115002,34.122002,34.132999,34.147999,34.160999,34.165001,34.174,34.183998,34.193001,34.201,34.205002,34.209,34.216,34.221001,34.235001,34.245998,34.257,34.275002,34.282001,34.285,34.294998,34.303001,34.314999,34.323002,34.333,34.341,34.347,34.356998,34.375999,34.402,34.421001,34.431,34.450001,34.472,34.490002,34.493999,34.500999,34.526001,34.548,34.563999,34.571999,34.577999,34.587002,34.599998,34.613998,34.632999,34.646,34.655998,34.666,34.674,34.679001,34.683998,34.687,34.692001,34.696999,34.702999,34.709,34.712002,34.719002,34.724998,34.73,34.735001,34.738998,34.741001,34.743,34.743999,34.749001,34.752998,34.757,34.756001,34.757999,34.757,34.756001,34.757999,34.763,34.764999,34.766998,34.768002,34.769001,34.769001,34.77,34.77,34.769001,34.77,34.769001,34.768002,34.766998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_083","geolocation":{"type":"Point","coordinates":[46.741,-48.299]},"basin":3,"timestamp":"2007-05-08T01:44:00.000Z","date_updated_argovis":"2023-01-24T21:29:36.366Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_083.nc","date_updated":"2015-10-19T17:48:38.000Z"}],"cycle_number":83,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,56,65,75,85,95,106,115,125,135,145,156,165,175,185,195,205,215,225,235,245,255,264,275,285,295,305,315,325,336,345,354,365,375,385,395,405,415,426,435,445,455,465,475,485,495,513,537,562,588,612,637,662,688,713,737,762,787,812,839,862,887,912,938,962,988,1014,1037,1063,1088,1113,1138,1162,1187,1213,1238,1263,1288,1313,1338,1363,1387,1412,1437,1463,1487,1512,1537,1563,1587,1612,1638,1662,1688,1713,1737,1763,1788,1813,1838,1862,1887,1913,1938,1964,1977],[4.215,4.215,4.215,4.216,4.216,4.216,4.213,4.209,4.206,4.199,4.098,3.527,3.26,3.119,3.041,3.032,3.004,2.976,2.991,2.844,2.876,2.895,2.907,2.921,2.909,2.881,2.827,2.783,2.727,2.687,2.667,2.685,2.656,2.648,2.622,2.542,2.497,2.489,2.413,2.44,2.413,2.395,2.36,2.364,2.414,2.418,2.467,2.487,2.48,2.478,2.477,2.423,2.428,2.439,2.445,2.28,2.165,2.187,2.194,2.236,2.296,2.364,2.42,2.368,2.363,2.391,2.375,2.479,2.508,2.503,2.454,2.439,2.442,2.445,2.447,2.454,2.446,2.418,2.408,2.413,2.416,2.4,2.374,2.355,2.361,2.333,2.331,2.329,2.318,2.304,2.291,2.275,2.26,2.229,2.213,2.205,2.183,2.174,2.16,2.141,2.125,2.114,2.094,2.063,2.04,2.022,2.002,1.984,1.972],[33.765999,33.765999,33.765999,33.765999,33.765999,33.765999,33.766998,33.766998,33.766998,33.768002,33.771999,33.833,33.865002,33.891998,33.916,33.93,33.941002,33.966,33.998001,34.014,34.042999,34.054001,34.071999,34.098999,34.105999,34.113998,34.119999,34.119999,34.126999,34.133999,34.140999,34.152,34.159,34.167999,34.174,34.176998,34.185001,34.191002,34.193001,34.207001,34.215,34.228001,34.237,34.244999,34.257,34.268002,34.286999,34.297001,34.308998,34.324001,34.341999,34.355,34.375,34.393002,34.412998,34.412998,34.424,34.450001,34.471001,34.488998,34.519001,34.547001,34.566002,34.569,34.581001,34.595001,34.603001,34.627998,34.641998,34.646999,34.647999,34.653,34.660999,34.672001,34.681999,34.691002,34.695,34.695,34.702999,34.710999,34.717999,34.721001,34.723,34.730999,34.737999,34.740002,34.745998,34.750999,34.755001,34.756001,34.757999,34.759998,34.761002,34.761002,34.763,34.764999,34.765999,34.768002,34.769001,34.769001,34.77,34.771999,34.772999,34.772999,34.772999,34.773998,34.773998,34.773998,34.773998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_082","geolocation":{"type":"Point","coordinates":[44.97,-47.75]},"basin":3,"timestamp":"2007-04-28T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:29:34.297Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_082.nc","date_updated":"2015-10-19T17:48:37.000Z"}],"cycle_number":82,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,86,95,105,115,125,135,145,155,165,175,186,195,205,215,225,235,245,255,265,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,588,613,638,662,688,713,738,763,787,812,837,862,888,912,937,963,987,1012,1037,1063,1088,1113,1137,1162,1187,1212,1237,1262,1287,1313,1337,1362,1387,1412,1437,1463,1487,1512,1537,1562,1587,1613,1638,1663,1688,1713,1737,1762,1787,1813,1838,1864,1888,1912,1938,1963,1983],[5.319,5.213,5.177,5.162,5.154,5.141,5.115,5.095,5.085,5.054,4.968,4.486,4.069,3.846,3.741,3.588,3.314,3.257,3.229,3.326,3.231,3.243,3.246,3.244,3.247,3.223,3.204,3.172,3.134,3.101,3.048,3.006,2.964,2.908,2.873,2.807,2.741,2.734,2.725,2.705,2.696,2.684,2.67,2.66,2.661,2.678,2.681,2.691,2.704,2.725,2.734,2.708,2.672,2.672,2.634,2.631,2.61,2.585,2.58,2.573,2.581,2.568,2.5,2.469,2.47,2.485,2.551,2.56,2.541,2.531,2.51,2.516,2.524,2.485,2.481,2.535,2.533,2.516,2.504,2.501,2.49,2.491,2.464,2.457,2.456,2.452,2.426,2.406,2.383,2.372,2.358,2.348,2.338,2.328,2.314,2.295,2.266,2.247,2.232,2.216,2.204,2.195,2.179,2.159,2.131,2.104,2.073,2.053,2.038],[33.734001,33.741001,33.743,33.743999,33.743999,33.744999,33.744999,33.747002,33.747002,33.75,33.748001,33.776001,33.813999,33.84,33.849998,33.865002,33.890999,33.931999,33.955002,34.000999,34.021,34.047001,34.056999,34.064999,34.080002,34.094002,34.102001,34.110001,34.116001,34.118,34.124001,34.126999,34.129002,34.133999,34.138,34.146,34.158001,34.164001,34.172001,34.178001,34.181999,34.188,34.196999,34.207001,34.217999,34.229,34.235001,34.243,34.252998,34.268002,34.286999,34.303001,34.320999,34.346001,34.365002,34.386002,34.400002,34.417999,34.431999,34.442001,34.459999,34.476002,34.492001,34.507999,34.527,34.542999,34.564999,34.574001,34.577999,34.588001,34.595001,34.605999,34.616001,34.623001,34.632,34.646,34.657001,34.667,34.676998,34.683998,34.688999,34.695999,34.700001,34.705002,34.712002,34.719002,34.721001,34.729,34.733002,34.736,34.740002,34.743,34.745998,34.749001,34.751999,34.752998,34.752998,34.756001,34.757,34.758999,34.759998,34.762001,34.764,34.766998,34.77,34.77,34.769001,34.77,34.771]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_081","geolocation":{"type":"Point","coordinates":[43.536,-48.469]},"basin":3,"timestamp":"2007-04-18T01:51:00.000Z","date_updated_argovis":"2023-01-24T21:29:32.401Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_081.nc","date_updated":"2015-10-19T17:48:37.000Z"}],"cycle_number":81,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,134,145,156,165,175,185,195,205,215,226,235,244,255,265,275,285,296,305,315,325,335,345,355,365,375,385,395,405,414,424,435,446,456,465,475,485,495,512,537,565,587,612,638,663,688,713,738,762,787,814,837,862,888,912,938,963,988,1013,1038,1064,1087,1112,1138,1162,1187,1213,1239,1262,1288,1313,1337,1362,1388,1413,1439,1462,1487,1512,1538,1562,1587,1612,1638,1663,1687,1713,1738,1763,1788,1813,1838,1863,1888,1912,1938,1963,1981],[5.053,5.054,5.053,5.053,5.053,5.051,5.035,5.002,4.961,4.904,4.697,4.33,3.764,3.506,3.38,3.307,3.245,3.219,3.302,3.366,3.392,3.375,3.385,3.376,3.357,3.339,3.271,3.209,3.153,3.112,3.065,3.041,3.029,2.98,2.938,2.887,2.86,2.855,2.845,2.851,2.857,2.872,2.857,2.84,2.825,2.734,2.713,2.701,2.689,2.696,2.77,2.776,2.769,2.705,2.668,2.626,2.523,2.478,2.475,2.483,2.47,2.577,2.525,2.482,2.466,2.49,2.564,2.591,2.581,2.554,2.544,2.52,2.506,2.512,2.502,2.49,2.482,2.478,2.503,2.511,2.505,2.495,2.465,2.45,2.432,2.423,2.41,2.395,2.387,2.365,2.353,2.332,2.315,2.293,2.271,2.254,2.236,2.219,2.206,2.189,2.171,2.145,2.119,2.089,2.053,2.051,2.041,2.015,1.993],[33.743,33.743,33.743999,33.743999,33.743999,33.745998,33.751999,33.759998,33.761002,33.758999,33.759998,33.775002,33.828999,33.862999,33.886002,33.896,33.932999,33.960999,34.014,34.058998,34.071999,34.075001,34.084,34.089001,34.095001,34.098,34.102001,34.105999,34.111,34.115002,34.120998,34.129002,34.132999,34.139,34.143002,34.151001,34.158001,34.161999,34.172001,34.18,34.188999,34.202999,34.212002,34.219002,34.23,34.236,34.243,34.25,34.261002,34.278,34.313,34.334,34.349998,34.362,34.373001,34.386002,34.390999,34.402,34.423,34.446999,34.460999,34.494999,34.5,34.506001,34.518002,34.537998,34.567001,34.584,34.598,34.605999,34.615002,34.624001,34.633999,34.646999,34.655998,34.664001,34.669998,34.679001,34.691002,34.699001,34.706001,34.710999,34.715,34.716999,34.723,34.726002,34.729,34.733002,34.735001,34.740002,34.744999,34.748001,34.75,34.754002,34.757999,34.759998,34.762001,34.764,34.764999,34.765999,34.765999,34.765999,34.766998,34.768002,34.766998,34.77,34.771999,34.771,34.771]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_080","geolocation":{"type":"Point","coordinates":[43.655,-48.569]},"basin":3,"timestamp":"2007-04-08T01:51:00.000Z","date_updated_argovis":"2023-01-24T21:29:30.574Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_080.nc","date_updated":"2015-10-19T17:48:36.000Z"}],"cycle_number":80,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,65,76,85,95,105,116,125,135,146,155,165,175,185,195,205,215,225,236,245,255,265,276,286,294,305,315,324,335,345,355,365,375,385,395,406,416,425,435,445,455,465,475,485,495,513,538,563,588,613,637,662,688,712,737,762,788,812,837,863,887,912,937,963,989,1012,1037,1063,1087,1112,1138,1163,1187,1212,1238,1263,1287,1312,1337,1362,1388,1414,1437,1462,1488,1513,1537,1562,1588,1613,1638,1663,1688,1713,1738,1763,1788,1813,1837,1862,1887,1912,1937,1962,1985],[5.548,5.548,5.55,5.552,5.552,5.554,5.555,4.976,4.158,3.735,3.445,3.383,3.248,3.111,2.851,2.629,2.539,2.876,2.796,3.348,3.221,3.12,3.025,2.963,2.878,2.831,2.781,2.747,2.739,2.719,2.703,2.679,2.634,2.581,2.37,2.352,2.347,2.409,2.601,2.562,2.54,2.598,2.575,2.385,2.45,2.576,2.637,2.634,2.533,2.425,2.56,2.604,2.623,2.642,2.625,2.636,2.644,2.609,2.603,2.562,2.57,2.615,2.601,2.589,2.58,2.571,2.575,2.583,2.586,2.58,2.583,2.576,2.555,2.544,2.525,2.52,2.515,2.482,2.462,2.444,2.454,2.454,2.447,2.432,2.417,2.391,2.376,2.36,2.349,2.343,2.332,2.325,2.31,2.293,2.279,2.267,2.248,2.228,2.211,2.195,2.177,2.167,2.155,2.128,2.103,2.095,2.072,2.05,2.022],[33.736,33.737,33.737,33.737,33.737,33.737,33.736,33.737,33.77,33.799,33.828999,33.849998,33.875,33.897999,33.891998,33.882999,33.897999,33.959999,33.971001,34.063999,34.07,34.083,34.091,34.095001,34.099998,34.109001,34.113998,34.123001,34.130001,34.134998,34.139,34.145,34.153,34.146,34.139,34.145,34.158001,34.176998,34.206001,34.210999,34.217999,34.229,34.227001,34.222,34.237999,34.258999,34.266998,34.27,34.265999,34.275002,34.318001,34.342999,34.366001,34.390999,34.405998,34.424999,34.445,34.458,34.478001,34.490002,34.511002,34.532001,34.543999,34.556999,34.566002,34.573002,34.581001,34.589001,34.599998,34.608002,34.616001,34.622002,34.631001,34.640999,34.652,34.660999,34.667,34.673,34.68,34.688,34.700001,34.709,34.716,34.720001,34.722,34.726002,34.73,34.734001,34.738998,34.741001,34.744999,34.748001,34.751999,34.755001,34.757,34.758999,34.761002,34.764,34.765999,34.766998,34.768002,34.769001,34.769001,34.769001,34.77,34.771,34.771,34.771999,34.771999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_079","geolocation":{"type":"Point","coordinates":[43.474000000000004,-48.286]},"basin":3,"timestamp":"2007-03-29T01:45:00.000Z","date_updated_argovis":"2023-01-24T21:29:28.711Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_079.nc","date_updated":"2015-10-19T17:48:36.000Z"}],"cycle_number":79,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,116,125,135,144,155,165,175,185,196,206,215,225,236,245,255,265,275,285,294,305,315,325,335,345,355,365,375,385,395,406,415,425,434,445,456,465,475,485,495,512,537,562,589,612,637,663,688,713,737,763,788,812,838,863,887,913,937,962,987,1012,1039,1062,1087,1112,1138,1162,1187,1214,1237,1262,1288,1313,1338,1363,1388,1412,1437,1463,1488,1512,1537,1563,1588,1613,1638,1663,1688,1712,1738,1763,1788,1812,1838,1863,1888,1912,1937,1962,1988,2006],[5.904,5.906,5.905,5.867,5.426,5.191,4.912,4.576,4.423,4.132,3.859,3.727,3.438,3.381,3.324,3.336,3.226,3.174,3.147,3.273,3.33,3.443,3.479,3.457,3.333,3.264,3.232,3.216,3.177,3.084,3.037,2.985,2.86,2.827,2.798,2.706,2.623,2.665,2.608,2.621,2.633,2.662,2.692,2.704,2.68,2.664,2.68,2.686,2.69,2.7,2.652,2.602,2.589,2.609,2.579,2.545,2.546,2.618,2.646,2.627,2.608,2.576,2.56,2.564,2.545,2.542,2.582,2.608,2.598,2.592,2.574,2.567,2.544,2.524,2.519,2.517,2.517,2.506,2.503,2.503,2.501,2.497,2.499,2.517,2.518,2.509,2.463,2.437,2.405,2.39,2.364,2.358,2.341,2.326,2.32,2.31,2.307,2.287,2.28,2.264,2.245,2.222,2.209,2.2,2.193,2.183,2.163,2.142,2.113,2.099],[33.741001,33.740002,33.740002,33.734001,33.731998,33.735001,33.743999,33.757999,33.765999,33.778999,33.797001,33.812,33.844002,33.851002,33.870998,33.889999,33.901001,33.926998,33.956001,33.995998,34.034,34.074001,34.102001,34.110001,34.105999,34.106998,34.110001,34.120998,34.123001,34.123001,34.125999,34.125999,34.124001,34.125999,34.131001,34.129002,34.133999,34.146999,34.145,34.153,34.160999,34.174,34.183998,34.199001,34.205002,34.206001,34.215,34.229,34.241001,34.259998,34.285,34.312,34.34,34.363998,34.381001,34.390999,34.402,34.43,34.452999,34.470001,34.481998,34.5,34.514,34.528,34.537998,34.549999,34.569,34.581001,34.591,34.604,34.612,34.622002,34.630001,34.638,34.645,34.653,34.66,34.665001,34.669998,34.676998,34.683998,34.685001,34.693001,34.701,34.708,34.714001,34.715,34.720001,34.723999,34.729,34.736,34.743,34.745998,34.75,34.756001,34.761002,34.762001,34.764999,34.765999,34.766998,34.765999,34.764999,34.765999,34.766998,34.768002,34.769001,34.771,34.771,34.77,34.77]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_078","geolocation":{"type":"Point","coordinates":[42.373000000000005,-47.517]},"basin":3,"timestamp":"2007-03-19T01:45:00.000Z","date_updated_argovis":"2023-01-24T21:29:26.872Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_078.nc","date_updated":"2015-10-19T17:48:35.000Z"}],"cycle_number":78,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,56,65,74,85,95,105,115,125,136,146,155,165,175,185,195,205,215,226,235,245,255,265,275,284,295,305,315,326,335,345,355,365,375,385,395,404,415,426,435,445,455,465,475,485,495,512,537,564,587,612,637,663,687,712,738,763,787,812,839,862,887,912,937,962,988,1012,1038,1063,1088,1113,1138,1163,1188,1213,1237,1262,1287,1313,1338,1363,1388,1413,1437,1462,1488,1512,1537,1562,1588,1613,1638,1663,1688,1713,1738,1762,1787,1813,1838,1863,1887,1913,1938,1963,1988,2004],[6.45,6.44,6.396,6.357,6.309,6.181,6.029,5.661,5.157,4.689,4.431,4.138,4.029,3.904,3.844,3.716,3.675,3.635,3.559,3.517,3.481,3.419,3.402,3.393,3.344,3.248,3.219,3.172,3.086,2.897,2.733,2.751,2.672,2.644,2.699,2.738,2.725,2.777,2.693,2.675,2.736,2.719,2.774,2.807,2.664,2.572,2.545,2.537,2.533,2.527,2.582,2.646,2.634,2.567,2.621,2.671,2.686,2.688,2.699,2.687,2.682,2.656,2.601,2.586,2.573,2.567,2.593,2.601,2.599,2.594,2.579,2.546,2.539,2.569,2.574,2.538,2.514,2.518,2.507,2.499,2.493,2.493,2.485,2.473,2.461,2.415,2.415,2.409,2.404,2.395,2.39,2.374,2.353,2.341,2.329,2.306,2.289,2.261,2.263,2.258,2.253,2.258,2.232,2.173,2.147,2.109,2.083,2.059,2.062,2.062],[33.738998,33.737999,33.738998,33.740002,33.738998,33.735001,33.733002,33.745998,33.764,33.786999,33.797001,33.827999,33.859001,33.876999,33.894001,33.912998,33.939999,33.951,33.979,33.994999,34.006001,34.02,34.032001,34.048,34.069,34.081001,34.099998,34.111,34.115002,34.113998,34.105,34.116001,34.116001,34.124001,34.148998,34.167,34.178001,34.198002,34.200001,34.203999,34.221001,34.226002,34.237999,34.249001,34.245998,34.247002,34.249001,34.251999,34.258999,34.276001,34.305,34.334,34.355,34.374001,34.402,34.426998,34.445,34.463001,34.477001,34.493,34.514,34.522999,34.527,34.540001,34.550999,34.561001,34.577999,34.59,34.596001,34.603001,34.608002,34.613998,34.623001,34.638,34.646999,34.650002,34.655998,34.665001,34.673,34.681999,34.688999,34.695999,34.702,34.709,34.715,34.716999,34.724998,34.730999,34.734001,34.737999,34.741001,34.743,34.745998,34.748001,34.75,34.750999,34.752998,34.751999,34.757999,34.763,34.768002,34.771999,34.772999,34.769001,34.77,34.768002,34.766998,34.765999,34.771,34.772999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_077","geolocation":{"type":"Point","coordinates":[41.561,-47.197]},"basin":3,"timestamp":"2007-03-09T01:58:00.000Z","date_updated_argovis":"2023-01-24T21:29:24.910Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_077.nc","date_updated":"2015-10-19T17:48:35.000Z"}],"cycle_number":77,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,84,95,106,115,125,135,145,155,165,175,186,195,205,215,225,235,245,255,265,274,285,295,304,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,539,563,588,612,637,662,688,713,737,763,787,813,838,863,888,913,938,963,987,1012,1037,1062,1087,1112,1137,1163,1188,1213,1237,1263,1288,1313,1337,1362,1387,1413,1439,1462,1488,1512,1537,1562,1588,1612,1637,1663,1687,1713,1738,1763,1789,1812,1837,1863,1888,1913,1938,1963,1988,2014],[6.509,6.482,6.324,6.091,5.922,5.765,5.502,5.36,5.175,4.928,4.795,4.622,4.464,4.331,4.018,3.794,3.548,3.333,3.143,3.149,2.762,2.637,2.68,2.859,2.799,2.952,3.21,3.168,3.211,3.158,3.013,2.97,2.986,2.94,2.867,2.741,2.645,2.68,2.719,2.671,2.818,2.925,2.926,2.911,2.873,2.798,2.762,2.763,2.75,2.801,2.839,2.812,2.797,2.792,2.772,2.744,2.733,2.717,2.692,2.675,2.655,2.642,2.629,2.616,2.605,2.577,2.562,2.579,2.575,2.56,2.563,2.563,2.559,2.546,2.535,2.532,2.519,2.517,2.493,2.487,2.478,2.477,2.485,2.526,2.532,2.522,2.515,2.509,2.499,2.479,2.449,2.448,2.428,2.381,2.356,2.326,2.306,2.29,2.272,2.264,2.247,2.239,2.223,2.201,2.191,2.173,2.164,2.146,2.125,2.111],[33.748001,33.745998,33.742001,33.738998,33.736,33.735001,33.742001,33.747002,33.747002,33.754002,33.766998,33.778,33.786999,33.793999,33.804001,33.819,33.827,33.834,33.860001,33.889,33.883999,33.903,33.928001,33.967999,33.976002,34.018002,34.056,34.069,34.091,34.096001,34.095001,34.108002,34.118,34.118,34.125999,34.124001,34.127998,34.141998,34.161999,34.167999,34.202,34.223999,34.237999,34.243999,34.247002,34.249001,34.255001,34.266998,34.276001,34.297001,34.326,34.346001,34.362999,34.370998,34.391998,34.416,34.431,34.446999,34.472,34.493999,34.504002,34.513,34.521,34.528,34.540001,34.549,34.553001,34.560001,34.567001,34.577999,34.591,34.604,34.615002,34.625,34.632,34.639999,34.648998,34.66,34.667,34.669998,34.674,34.675999,34.683998,34.696999,34.705002,34.710999,34.716999,34.722,34.727001,34.730999,34.733002,34.738998,34.743,34.742001,34.744999,34.747002,34.750999,34.752998,34.756001,34.757,34.761002,34.763,34.764999,34.765999,34.766998,34.768002,34.768002,34.769001,34.769001,34.769001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_076","geolocation":{"type":"Point","coordinates":[40.201,-46.745000000000005]},"basin":3,"timestamp":"2007-02-27T01:40:00.000Z","date_updated_argovis":"2023-01-24T21:29:22.985Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_076.nc","date_updated":"2015-10-19T17:48:34.000Z"}],"cycle_number":76,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,266,275,285,296,306,315,325,335,345,355,364,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,613,638,663,688,712,739,762,787,813,838,862,887,912,938,964,987,1012,1038,1062,1088,1113,1138,1162,1187,1213,1239,1262,1287,1313,1337,1364,1387,1412,1437,1463,1488,1512,1537,1562,1588,1613,1638,1663,1688,1713,1737,1762,1788,1812,1837,1863,1887,1912,1937,1963],[7.233,7.235,7.236,7.237,7.238,7.239,7.073,6.595,5.823,5.524,5.267,4.809,4.482,4.145,3.996,3.936,3.916,3.84,3.781,3.773,3.79,3.76,3.714,3.615,3.559,3.513,3.481,3.44,3.451,3.467,3.405,3.34,3.222,3.192,3.164,3.156,3.125,3.116,3.111,3.109,3.154,3.093,3.047,3.022,2.996,2.97,2.955,2.94,2.913,2.888,2.849,2.822,2.803,2.787,2.774,2.767,2.742,2.705,2.674,2.651,2.633,2.618,2.605,2.583,2.58,2.584,2.576,2.578,2.562,2.555,2.546,2.535,2.536,2.541,2.544,2.54,2.523,2.515,2.517,2.515,2.51,2.497,2.471,2.464,2.454,2.452,2.447,2.442,2.443,2.437,2.416,2.422,2.42,2.409,2.4,2.393,2.371,2.346,2.34,2.331,2.325,2.301,2.275,2.265,2.253,2.225,2.208,2.2],[33.762001,33.762001,33.762001,33.762001,33.762001,33.762001,33.763,33.773998,33.798,33.804001,33.807999,33.827999,33.841999,33.863998,33.879002,33.889,33.896999,33.915001,33.928001,33.942001,33.946999,33.960999,33.981998,33.994999,34.028,34.039001,34.042999,34.050999,34.064999,34.081001,34.084999,34.091999,34.091999,34.101002,34.108002,34.112999,34.120998,34.125,34.132,34.139999,34.167999,34.187,34.196999,34.210999,34.224998,34.241001,34.252998,34.268002,34.285,34.300999,34.326,34.341999,34.354,34.367001,34.388,34.415001,34.436001,34.457001,34.472,34.491001,34.511002,34.526001,34.534,34.544998,34.550999,34.556,34.563,34.564999,34.571999,34.576,34.587002,34.598999,34.605999,34.616001,34.629002,34.636002,34.646999,34.653,34.655998,34.662998,34.672001,34.676998,34.681,34.689999,34.699001,34.702,34.706001,34.709,34.714001,34.716999,34.721001,34.723999,34.727001,34.729,34.730999,34.731998,34.737999,34.744999,34.747002,34.749001,34.750999,34.756001,34.758999,34.761002,34.763,34.766998,34.768002,34.768002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_075","geolocation":{"type":"Point","coordinates":[39.583,-46.831]},"basin":3,"timestamp":"2007-02-17T01:46:00.000Z","date_updated_argovis":"2023-01-24T21:29:21.181Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_075.nc","date_updated":"2015-10-19T17:48:33.000Z"}],"cycle_number":75,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,126,135,144,154,165,175,185,195,205,215,226,236,244,255,265,275,286,295,305,315,325,335,345,356,365,375,385,395,404,415,425,435,445,456,465,475,486,495,513,537,563,588,613,638,663,688,713,739,762,787,813,838,863,888,913,937,964,987,1012,1038,1063,1088,1113,1138,1163,1187,1213,1237,1262,1288,1313,1338,1362,1387,1412,1438,1463,1488,1512,1538,1563,1588,1612,1637,1663,1688,1713,1737,1762,1787,1813,1838,1863,1888,1912,1937,1963,1988],[7.687,7.686,7.678,7.589,7.529,7.425,7.095,6.669,6.277,5.911,5.471,5.078,4.763,4.633,4.383,4.124,3.903,3.788,3.756,3.728,3.735,3.735,3.739,3.669,3.535,3.369,3.233,3.386,3.505,3.519,3.554,3.635,3.606,3.586,3.51,3.476,3.431,3.392,3.359,3.339,3.359,3.307,3.225,3.16,3.101,3.048,2.976,2.935,2.894,2.854,2.809,2.773,2.758,2.718,2.685,2.679,2.665,2.63,2.609,2.621,2.598,2.589,2.591,2.59,2.564,2.568,2.605,2.61,2.606,2.603,2.579,2.548,2.528,2.523,2.515,2.512,2.494,2.478,2.473,2.463,2.449,2.434,2.429,2.416,2.406,2.401,2.394,2.381,2.372,2.363,2.358,2.347,2.336,2.33,2.323,2.317,2.31,2.297,2.27,2.264,2.263,2.252,2.238,2.223,2.208,2.19,2.177,2.166,2.156],[33.743,33.743,33.743,33.747002,33.752998,33.754002,33.761002,33.775002,33.780998,33.780998,33.798,33.812,33.828999,33.834999,33.841999,33.860001,33.873001,33.884998,33.901001,33.910999,33.922001,33.93,33.941002,33.945,33.944,33.945,33.952999,33.983002,34.007,34.021,34.034,34.064999,34.071999,34.080002,34.088001,34.097,34.106998,34.113998,34.122002,34.139,34.161999,34.174,34.191002,34.212002,34.230999,34.241001,34.252998,34.271,34.297001,34.328999,34.353001,34.383999,34.415001,34.424999,34.448002,34.470001,34.487999,34.501999,34.518002,34.532001,34.539001,34.541,34.548,34.562,34.570999,34.582001,34.595001,34.602001,34.608002,34.613998,34.620998,34.627998,34.632999,34.639999,34.651001,34.66,34.662998,34.668999,34.672001,34.68,34.688,34.696999,34.701,34.709999,34.715,34.717999,34.722,34.728001,34.731998,34.735001,34.737,34.738998,34.742001,34.743,34.745998,34.749001,34.754002,34.756001,34.759998,34.761002,34.761002,34.763,34.764999,34.765999,34.768002,34.77,34.771999,34.772999,34.773998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_074","geolocation":{"type":"Point","coordinates":[40.065000000000005,-46.480000000000004]},"basin":3,"timestamp":"2007-02-07T01:53:00.000Z","date_updated_argovis":"2023-01-24T21:29:19.184Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_074.nc","date_updated":"2015-10-19T17:48:33.000Z"}],"cycle_number":74,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,74,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,246,255,265,276,285,295,305,315,325,335,345,355,365,375,384,395,405,415,424,435,445,454,465,475,485,495,513,538,563,587,612,638,663,687,712,737,764,787,812,838,863,887,913,938,962,987,1014,1038,1063,1088,1112,1137,1162,1187,1212,1237,1262,1288,1313,1339,1362,1387,1412,1438,1462,1488,1513,1538,1563,1587,1612,1637,1663,1687,1713,1738,1763,1781],[7.113,7.064,6.83,6.52,6.228,6.025,5.518,5.11,4.698,4.331,4.007,3.86,3.82,3.749,3.672,3.616,3.54,3.44,3.373,3.408,3.428,3.492,3.547,3.301,3.347,3.483,3.489,3.465,3.459,3.412,3.426,3.468,3.422,3.46,3.492,3.424,3.383,3.323,3.312,3.401,3.422,3.251,3.164,3.132,3.13,3.115,3.092,3.046,3.045,2.99,2.986,2.975,2.947,2.905,2.853,2.8,2.765,2.741,2.757,2.897,2.779,2.712,2.743,2.749,2.712,2.696,2.713,2.715,2.702,2.665,2.64,2.626,2.611,2.608,2.611,2.615,2.604,2.589,2.579,2.566,2.548,2.53,2.513,2.497,2.481,2.46,2.429,2.419,2.412,2.411,2.396,2.383,2.36,2.331,2.316,2.301,2.289,2.275,2.275,2.272,2.27],[33.772999,33.771999,33.772999,33.772999,33.777,33.776001,33.783001,33.792,33.798,33.832001,33.862,33.879002,33.882999,33.889,33.903999,33.908001,33.918999,33.935001,33.945,33.971001,33.983002,33.995998,34.021,34.008999,34.039001,34.07,34.078999,34.080002,34.09,34.091999,34.102001,34.109001,34.108002,34.122002,34.130001,34.130001,34.130001,34.131001,34.134998,34.154999,34.159,34.150002,34.148998,34.152,34.159,34.165001,34.171001,34.178001,34.182999,34.192001,34.209999,34.236,34.249001,34.275002,34.291,34.307999,34.324001,34.339001,34.360001,34.403999,34.408001,34.418999,34.433998,34.458,34.464001,34.474998,34.494999,34.515999,34.525002,34.533001,34.539001,34.548,34.561001,34.564999,34.580002,34.599998,34.608002,34.618999,34.630001,34.637001,34.641998,34.652,34.669998,34.68,34.689999,34.694,34.702,34.709,34.716,34.719002,34.724998,34.729,34.733002,34.737999,34.742001,34.744999,34.748001,34.750999,34.751999,34.751999,34.752998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_073","geolocation":{"type":"Point","coordinates":[39.888000000000005,-46.074000000000005]},"basin":3,"timestamp":"2007-01-28T01:46:59.999Z","date_updated_argovis":"2023-01-24T21:29:17.300Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_073.nc","date_updated":"2015-10-19T17:48:32.000Z"}],"cycle_number":73,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,344,355,366,376,385,395,405,415,425,435,445,455,465,475,485,495,513,537,562,587,613,637,662,687,713,739,762,788,813,838,863,888,912,938,963,987,1012,1037,1063,1088,1113,1137,1163,1188,1213,1237,1263,1287,1313,1338,1363,1387,1412,1437,1463,1487,1514,1537,1563,1588,1613,1637,1663,1688,1713,1738,1763,1788,1812,1838,1863,1888,1914,1937,1962,1981],[7.627,7.599,6.921,6.802,6.754,6.689,6.533,6.317,5.929,5.6,5.252,4.86,4.634,4.547,4.478,4.442,4.439,4.424,4.418,4.364,4.425,4.521,4.519,4.558,4.445,4.5,4.281,4.349,4.388,4.256,4.293,4.125,4.132,4.17,4.099,4.019,3.979,3.917,3.894,3.868,3.817,3.761,3.697,3.652,3.578,3.482,3.38,3.193,3.102,3.096,3.054,2.974,2.987,2.965,2.971,2.935,2.918,2.914,2.926,2.941,2.897,2.826,2.835,2.82,2.792,2.802,2.75,2.729,2.696,2.705,2.694,2.664,2.646,2.631,2.592,2.558,2.55,2.546,2.538,2.536,2.536,2.53,2.515,2.5,2.481,2.468,2.456,2.444,2.45,2.466,2.469,2.457,2.454,2.455,2.446,2.423,2.418,2.403,2.374,2.331,2.313,2.288,2.275,2.261,2.254,2.249,2.24,2.231,2.226],[33.778,33.772999,33.769001,33.771,33.771,33.771,33.776001,33.785999,33.814999,33.835999,33.856998,33.859001,33.870998,33.895,33.932999,33.955002,33.978001,34.007999,34.032001,34.043999,34.069,34.109001,34.126999,34.152,34.151001,34.172001,34.153,34.178001,34.187,34.178001,34.192001,34.18,34.195999,34.205002,34.205002,34.203999,34.209999,34.209999,34.210999,34.213001,34.214001,34.219002,34.222,34.223999,34.216999,34.209999,34.200001,34.185001,34.182999,34.195999,34.208,34.223,34.245998,34.263,34.277,34.298,34.317001,34.344002,34.369999,34.388,34.398998,34.408001,34.429001,34.448002,34.467999,34.488998,34.5,34.514,34.528999,34.548,34.560001,34.570999,34.582001,34.596001,34.598999,34.605,34.613998,34.622002,34.634998,34.645,34.655998,34.667999,34.674,34.68,34.687,34.689999,34.692001,34.695999,34.702999,34.714001,34.721001,34.724998,34.730999,34.736,34.738998,34.743999,34.747002,34.749001,34.748001,34.750999,34.756001,34.759998,34.763,34.766998,34.769001,34.771,34.775002,34.776001,34.777]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_072","geolocation":{"type":"Point","coordinates":[40.068000000000005,-45.659]},"basin":3,"timestamp":"2007-01-18T01:46:59.999Z","date_updated_argovis":"2023-01-24T21:29:15.383Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_072.nc","date_updated":"2015-10-19T17:48:32.000Z"}],"cycle_number":72,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,36,45,55,65,75,85,95,105,115,125,136,145,154,165,176,185,195,205,216,225,235,245,255,265,275,285,295,306,316,325,334,345,356,365,375,385,395,405,415,425,435,445,455,466,475,485,495,514,537,562,587,612,637,662,688,713,738,762,788,813,837,862,888,913,938,963,988,1012,1037,1062,1088,1112,1137,1162,1188,1212,1237,1263,1287,1312,1338,1363,1387,1413,1438,1463,1487,1512,1537,1562,1589,1612,1637,1662,1687,1712,1737,1762,1788,1813,1838,1862,1887,1913,1937,1963,1983],[7.705,7.705,7.583,6.79,6.595,6.482,6.344,6.172,5.855,5.524,5.302,5.109,4.861,4.656,4.557,4.691,4.82,4.579,4.513,4.645,4.653,4.671,4.852,4.574,4.729,4.79,4.857,4.787,4.407,4.356,4.514,4.405,4.476,4.492,4.331,4.273,4.185,4.083,4.002,3.972,3.934,3.869,3.82,3.789,3.739,3.672,3.549,3.551,3.513,3.434,3.375,3.364,3.309,3.261,3.207,3.142,3.036,3.052,3.045,3.03,3.04,2.921,2.842,2.813,2.819,2.823,2.82,2.81,2.782,2.773,2.757,2.72,2.724,2.71,2.69,2.684,2.676,2.66,2.645,2.64,2.639,2.625,2.606,2.591,2.59,2.586,2.58,2.563,2.553,2.539,2.519,2.501,2.487,2.48,2.476,2.475,2.473,2.465,2.438,2.398,2.377,2.339,2.312,2.277,2.245,2.208,2.159,2.126,2.124],[33.787998,33.786999,33.779999,33.787998,33.790001,33.796001,33.799,33.801998,33.805,33.819,33.828999,33.838001,33.84,33.845001,33.865002,33.915001,33.952,33.952999,33.972,34.016998,34.041,34.056999,34.091999,34.088001,34.129002,34.153,34.173,34.169998,34.130001,34.141998,34.176998,34.175999,34.198002,34.209,34.200001,34.198002,34.193001,34.187,34.188,34.191002,34.188,34.183998,34.187,34.193001,34.193001,34.188999,34.191002,34.201,34.206001,34.209999,34.222,34.237999,34.250999,34.27,34.279999,34.285999,34.292999,34.324001,34.355999,34.367001,34.381001,34.376999,34.387001,34.404999,34.423,34.439999,34.451,34.466,34.483002,34.491001,34.5,34.513,34.535999,34.547001,34.558998,34.571999,34.584,34.592999,34.605999,34.617001,34.625999,34.631001,34.636002,34.643002,34.652,34.659,34.668999,34.675999,34.685001,34.692001,34.700001,34.705002,34.708,34.712002,34.720001,34.73,34.740002,34.743999,34.745998,34.748001,34.755001,34.762001,34.766998,34.771,34.777,34.779999,34.780998,34.783001,34.785]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_071","geolocation":{"type":"Point","coordinates":[39.411,-45.236000000000004]},"basin":3,"timestamp":"2007-01-07T22:42:00.000Z","date_updated_argovis":"2023-01-24T21:29:13.496Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_071.nc","date_updated":"2015-10-19T17:48:31.000Z"}],"cycle_number":71,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,56,66,75,86,95,104,115,124,135,146,155,165,174,185,195,205,216,226,236,245,255,267,275,284,294,305,314,325,336,345,355,364,375,385,396,405,416,425,436,445,454,465,475,483,495,513,539,562,588,614,637,663,689,713,737,762,787,813,838,861,887,912,936,964,988,1011,1038,1062,1087,1112,1137,1163,1187,1214,1237,1263,1289,1312,1337,1361,1388,1411,1437,1462,1488,1513,1537,1563,1587,1613,1636,1662,1686,1712,1737,1762,1788,1813,1838,1862,1889,1911,1938,1962,1988,2007],[7.084,6.986,6.631,6.256,6.141,6.05,5.923,5.437,5.041,4.893,4.766,4.611,4.711,4.66,4.915,4.944,4.697,4.594,4.705,4.751,4.74,4.567,4.462,4.357,4.24,4.235,4.279,4.233,4.191,4.194,4.236,4.194,4.074,4.038,3.988,3.881,3.793,3.759,3.734,3.726,3.709,3.697,3.65,3.576,3.513,3.484,3.63,3.751,3.786,3.807,3.756,3.713,3.583,3.41,3.349,3.278,3.196,3.179,3.136,3.09,2.977,2.862,2.872,2.801,2.778,2.774,2.775,2.872,2.867,2.851,2.789,2.776,2.771,2.737,2.713,2.688,2.668,2.648,2.637,2.617,2.606,2.597,2.593,2.586,2.582,2.578,2.581,2.582,2.575,2.566,2.551,2.538,2.508,2.495,2.491,2.482,2.468,2.461,2.439,2.413,2.383,2.32,2.29,2.239,2.2,2.183,2.173,2.168,2.171,2.169],[33.785,33.784,33.784,33.789001,33.792,33.792,33.791,33.801998,33.833,33.838001,33.851002,33.882999,33.917999,33.956001,34.030998,34.043999,34.054001,34.063999,34.091999,34.103001,34.110001,34.098,34.091,34.084,34.089001,34.104,34.115002,34.119999,34.123001,34.141998,34.155998,34.158001,34.154999,34.157001,34.155998,34.151001,34.146,34.146999,34.147999,34.148998,34.153999,34.155998,34.160999,34.16,34.16,34.164001,34.195999,34.216,34.229,34.238998,34.243,34.249001,34.25,34.25,34.257,34.268002,34.280998,34.298,34.310001,34.32,34.331001,34.361,34.389,34.402,34.419998,34.439999,34.471001,34.504002,34.512001,34.522999,34.535999,34.548,34.554001,34.558998,34.563999,34.578999,34.591999,34.606998,34.613998,34.624001,34.630001,34.638,34.644001,34.651001,34.658001,34.661999,34.668999,34.675999,34.68,34.686001,34.693001,34.696999,34.702999,34.709,34.712002,34.716,34.721001,34.728001,34.737999,34.743999,34.749001,34.759998,34.764999,34.771999,34.777,34.778999,34.779999,34.780998,34.780998,34.782001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_070","geolocation":{"type":"Point","coordinates":[39.617000000000004,-44.859]},"basin":3,"timestamp":"2006-12-29T01:54:00.000Z","date_updated_argovis":"2023-01-24T21:29:11.669Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_070.nc","date_updated":"2015-10-19T17:48:31.000Z"}],"cycle_number":70,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,55,66,75,84,95,106,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,276,285,294,305,316,325,335,345,355,364,375,385,395,405,415,425,435,445,454,465,475,485,495,513,537,563,588,612,638,663,688,713,737,763,787,812,838,862,889,913,938,962,987,1013,1037,1062,1087,1113,1138,1162,1187,1212,1238,1262,1287,1312,1339,1362,1387,1413,1438,1463,1488,1512,1537,1562,1587,1613,1638,1662,1687,1712,1739,1763,1787,1812,1837,1862,1887,1913,1937,1962,1984],[7.247,7.248,7.109,6.893,6.724,6.464,6.08,5.806,5.575,5.248,5.194,5.085,4.941,4.925,5.041,4.933,4.694,4.883,5.054,4.967,4.923,5.217,5.232,4.685,4.197,4.508,4.961,4.977,4.904,4.696,4.546,4.717,4.564,4.339,3.783,3.875,4.442,4.495,4.034,3.477,3.488,3.797,4.015,3.781,3.856,4.088,4.006,3.927,3.783,3.723,3.587,3.454,3.437,3.349,3.268,3.11,3.002,3.05,3.101,3.19,3.123,3.087,3.027,2.957,2.948,2.923,2.939,2.922,2.887,2.817,2.802,2.816,2.829,2.823,2.816,2.809,2.782,2.76,2.734,2.719,2.688,2.679,2.668,2.651,2.645,2.634,2.621,2.607,2.594,2.579,2.569,2.551,2.541,2.533,2.51,2.485,2.469,2.459,2.448,2.438,2.423,2.41,2.398,2.386,2.38,2.373,2.368,2.356,2.346],[33.779999,33.778999,33.783001,33.799999,33.824001,33.835999,33.846001,33.855,33.858002,33.860001,33.860001,33.860001,33.866001,33.907001,33.959999,33.973999,33.974998,34.028,34.07,34.060001,34.076,34.125,34.134998,34.07,34.023998,34.098999,34.169998,34.175999,34.168999,34.146999,34.139,34.165001,34.148998,34.118,34.063,34.092999,34.181999,34.191002,34.130001,34.063999,34.075001,34.122002,34.159,34.130001,34.157001,34.193001,34.187,34.182999,34.171001,34.179001,34.181999,34.189999,34.209,34.221001,34.230999,34.237999,34.240002,34.259998,34.289001,34.334,34.363998,34.389999,34.402,34.409,34.422001,34.435001,34.445,34.469002,34.476002,34.481998,34.493999,34.507999,34.521,34.529999,34.536999,34.542,34.556,34.568001,34.578999,34.592999,34.606998,34.618999,34.625999,34.632999,34.639999,34.646999,34.657001,34.665001,34.671001,34.676998,34.686001,34.695999,34.705002,34.709999,34.716999,34.724998,34.730999,34.735001,34.738998,34.743999,34.748001,34.749001,34.750999,34.754002,34.755001,34.757,34.758999,34.761002,34.764]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_069","geolocation":{"type":"Point","coordinates":[38.942,-44.81]},"basin":3,"timestamp":"2006-12-19T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:29:09.680Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_069.nc","date_updated":"2015-10-19T17:48:30.000Z"}],"cycle_number":69,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,95,105,115,126,135,145,156,165,175,185,195,205,215,225,235,245,255,265,275,285,295,306,316,325,335,345,355,365,375,385,394,405,415,425,435,445,455,465,475,485,495,512,538,563,588,612,637,663,687,714,738,762,788,813,838,862,887,913,939,962,987,1012,1037,1062,1088,1113,1137,1162,1189,1212,1238,1263,1288,1312,1338,1363,1388,1412,1437,1462,1488,1513,1537,1562,1588,1612,1637,1662,1687,1712,1738,1762,1788,1812,1837,1863,1888,1913,1939,1962,1979],[7.051,7.041,7.027,6.991,6.929,6.908,6.819,7.086,6.729,6.501,6.556,6.824,6.602,5.906,5.571,5.471,5.466,5.478,5.489,5.433,5.561,5.58,5.566,5.605,5.672,5.747,5.805,5.758,5.706,5.651,5.56,5.466,5.404,5.243,5.203,5.082,4.963,4.88,4.827,4.775,4.661,4.619,4.58,4.53,4.421,4.38,4.389,4.373,4.329,4.267,4.034,3.856,3.786,3.711,3.66,3.56,3.479,3.439,3.355,3.308,3.267,3.205,3.116,3.067,3.019,2.955,2.96,2.96,2.909,2.871,2.873,2.856,2.842,2.839,2.814,2.794,2.765,2.736,2.711,2.706,2.684,2.686,2.674,2.654,2.643,2.631,2.617,2.61,2.604,2.588,2.576,2.567,2.546,2.541,2.535,2.519,2.508,2.493,2.475,2.468,2.456,2.445,2.434,2.42,2.404,2.385,2.383,2.377,2.369],[33.858002,33.861,33.862999,33.866001,33.880001,33.897999,33.917,34.035,34.007,33.999001,34.028999,34.094002,34.062,33.984001,33.952,33.967999,33.980999,34.007,34.023998,34.036999,34.071999,34.097,34.112999,34.139,34.162998,34.188,34.209,34.223999,34.243999,34.243999,34.257999,34.264,34.264999,34.256001,34.250999,34.248001,34.247002,34.244999,34.243,34.240002,34.240002,34.240002,34.237999,34.237999,34.235001,34.235001,34.245998,34.255001,34.256001,34.264999,34.257,34.257,34.265999,34.277,34.290001,34.292999,34.301998,34.312,34.32,34.328999,34.339001,34.348999,34.359001,34.373001,34.387001,34.404999,34.429001,34.446999,34.459999,34.470001,34.484001,34.493999,34.504002,34.519001,34.529999,34.541,34.554001,34.561001,34.571999,34.591,34.599998,34.610001,34.618,34.624001,34.632,34.641998,34.652,34.658001,34.665001,34.672001,34.676998,34.688,34.695999,34.700001,34.703999,34.712002,34.716999,34.723,34.73,34.733002,34.737,34.740002,34.743999,34.749001,34.751999,34.757,34.762001,34.764,34.765999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_068","geolocation":{"type":"Point","coordinates":[38.628,-44.846000000000004]},"basin":3,"timestamp":"2006-12-09T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:29:07.691Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_068.nc","date_updated":"2015-10-19T17:48:29.000Z"}],"cycle_number":68,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,76,85,95,105,115,125,134,145,155,165,175,186,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,396,405,415,425,435,445,455,465,475,485,494,514,537,562,587,613,638,663,688,713,738,762,788,813,837,863,888,913,937,963,988,1012,1037,1062,1087,1113,1137,1162,1188,1212,1237,1262,1287,1312,1337,1362,1388,1412,1438,1463,1487,1513,1538,1562,1587,1613,1638,1663,1688,1713,1738,1763,1788,1813,1837,1863,1887,1912,1938,1963,1987,2009],[7.977,7.971,7.813,7.444,7.3,7.139,7.085,7.056,6.844,6.588,6.259,6.108,6.088,5.987,5.81,5.655,5.604,5.551,5.466,5.362,5.402,5.405,5.369,5.431,5.386,5.383,5.348,5.263,5.195,5.108,5.058,4.997,4.953,4.901,4.848,4.83,4.781,4.735,4.726,4.697,4.663,4.585,4.511,4.451,4.379,4.306,4.196,4.174,4.135,4.028,3.873,3.716,3.619,3.499,3.425,3.371,3.393,3.339,3.317,3.3,3.334,3.225,3.101,3.034,2.99,2.934,2.914,2.908,2.894,2.87,2.835,2.815,2.791,2.776,2.758,2.735,2.728,2.714,2.705,2.696,2.685,2.676,2.668,2.663,2.647,2.638,2.632,2.625,2.616,2.609,2.597,2.575,2.566,2.552,2.542,2.536,2.533,2.53,2.525,2.511,2.482,2.464,2.446,2.429,2.415,2.399,2.386,2.379,2.372,2.367],[33.896999,33.897999,33.901001,33.917,33.917999,33.918999,33.918999,33.915001,33.903,33.891998,33.881001,33.889999,33.918999,33.937,33.938999,33.939999,33.960999,33.971001,33.976002,33.979,33.994999,34.012001,34.022999,34.043999,34.051998,34.073002,34.087002,34.098999,34.105,34.120998,34.136002,34.151001,34.165001,34.171001,34.174,34.172001,34.175999,34.182999,34.182999,34.183998,34.182999,34.183998,34.183998,34.188,34.195,34.196999,34.195,34.195999,34.195999,34.199001,34.203999,34.214001,34.217999,34.224998,34.236,34.243,34.264,34.272999,34.293999,34.310001,34.34,34.349998,34.365002,34.383999,34.395,34.409,34.424999,34.441002,34.449001,34.463001,34.476002,34.487999,34.505001,34.518002,34.529999,34.543999,34.549,34.560001,34.569,34.577,34.591,34.604,34.611,34.619999,34.627998,34.634998,34.641998,34.647999,34.654999,34.661999,34.672001,34.683998,34.688,34.696999,34.705002,34.709,34.713001,34.721001,34.724998,34.726002,34.728001,34.733002,34.737999,34.742001,34.745998,34.749001,34.752998,34.754002,34.757,34.757999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_067","geolocation":{"type":"Point","coordinates":[38.64,-44.868]},"basin":3,"timestamp":"2006-11-29T01:43:00.000Z","date_updated_argovis":"2023-01-24T21:29:05.703Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_067.nc","date_updated":"2015-10-19T17:48:29.000Z"}],"cycle_number":67,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,125,135,146,155,165,175,185,196,205,215,225,235,245,255,265,275,284,295,305,315,325,335,346,355,365,375,386,395,405,415,425,435,445,455,465,475,485,495,512,538,563,588,613,638,663,688,713,737,762,788,813,837,863,887,913,938,964,987,1012,1037,1063,1088,1113,1139,1162,1188,1212,1237,1262,1288,1313,1338,1363,1388,1412,1437,1463,1488,1512,1538,1562,1588,1613,1637,1662,1687,1713,1738,1763,1788,1814,1838,1863,1887,1912,1937,1963,1982],[7.409,7.409,7.39,7.158,6.836,6.616,6.528,6.511,6.47,6.368,6.32,6.237,6.175,6.03,5.859,5.738,5.542,5.395,5.626,5.753,5.746,5.723,5.593,5.436,5.41,5.331,5.119,5.233,5.285,5.235,5.112,5.07,5.003,4.884,4.764,4.664,4.615,4.57,4.561,4.487,4.436,4.37,4.32,4.205,4.084,4.035,4.01,3.955,3.921,3.872,3.772,3.669,3.548,3.478,3.403,3.442,3.334,3.266,3.256,3.302,3.259,3.127,3.114,3.191,3.138,3.097,3.021,2.926,2.904,2.873,2.848,2.834,2.811,2.792,2.777,2.752,2.745,2.73,2.715,2.703,2.685,2.67,2.657,2.649,2.636,2.627,2.615,2.607,2.602,2.597,2.586,2.575,2.571,2.564,2.545,2.528,2.515,2.519,2.519,2.514,2.505,2.495,2.481,2.463,2.457,2.448,2.43,2.411,2.407],[33.905998,33.905998,33.905998,33.91,33.919998,33.916,33.912998,33.911999,33.911999,33.909,33.907001,33.907001,33.903999,33.901001,33.898998,33.896,33.896,33.925999,34.007999,34.055,34.078999,34.101002,34.099998,34.098,34.098,34.091999,34.088001,34.143002,34.16,34.164001,34.168999,34.171001,34.174999,34.174999,34.176998,34.179001,34.181999,34.188,34.188999,34.185001,34.188999,34.192001,34.196999,34.194,34.192001,34.192001,34.194,34.195999,34.200001,34.206001,34.209999,34.216,34.222,34.226002,34.237999,34.265999,34.271,34.276001,34.291,34.319,34.337002,34.335999,34.356998,34.386002,34.396,34.41,34.421001,34.429001,34.443001,34.460999,34.473999,34.485001,34.499001,34.508999,34.521,34.534,34.539001,34.549999,34.563,34.573002,34.588001,34.598,34.608002,34.616001,34.627998,34.634998,34.645,34.655998,34.665001,34.674999,34.685001,34.689999,34.694,34.700001,34.709999,34.717999,34.728001,34.734001,34.740002,34.744999,34.748001,34.754002,34.757999,34.762001,34.764,34.765999,34.769001,34.771999,34.772999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_066","geolocation":{"type":"Point","coordinates":[38.922000000000004,-44.845]},"basin":3,"timestamp":"2006-11-19T01:43:00.000Z","date_updated_argovis":"2023-01-24T21:29:03.864Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_066.nc","date_updated":"2015-10-19T17:48:28.000Z"}],"cycle_number":66,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,46,56,65,75,85,95,105,115,125,134,145,155,165,175,185,195,205,215,225,235,245,255,265,276,285,295,305,315,324,335,345,355,365,375,385,395,406,415,425,435,445,455,466,475,486,495,512,537,562,587,612,638,663,690,712,737,762,787,812,837,863,888,912,937,963,989,1012,1037,1062,1088,1112,1137,1162,1188,1213,1238,1262,1287,1312,1339,1362,1387,1412,1437,1462,1487,1513,1538,1564,1587,1612,1638,1663,1688,1713,1737,1762,1788,1813,1837,1862,1888,1913,1938,1963,1982],[6.642,6.642,6.641,6.644,6.606,6.562,6.512,6.422,6.356,6.327,6.313,6.253,5.948,5.603,5.468,5.432,5.392,5.357,5.293,5.302,5.304,5.301,5.236,5.139,5.236,5.3,5.223,5.648,5.855,5.819,5.742,5.656,5.621,5.512,5.401,5.291,5.079,4.922,4.784,4.623,4.516,4.432,4.341,4.237,4.181,4.124,4.078,4.009,3.962,3.897,3.815,3.761,3.811,3.796,3.649,3.637,3.774,3.736,3.499,3.352,3.2,3.165,3.125,3.084,3.032,3.016,2.978,2.944,2.918,2.889,2.86,2.824,2.808,2.793,2.773,2.757,2.74,2.723,2.708,2.689,2.68,2.656,2.635,2.621,2.605,2.597,2.592,2.585,2.57,2.563,2.556,2.551,2.543,2.538,2.53,2.522,2.51,2.502,2.496,2.488,2.484,2.48,2.475,2.469,2.461,2.448,2.435,2.416,2.401],[33.884998,33.884998,33.884998,33.884998,33.884998,33.887001,33.890999,33.893002,33.896,33.896,33.896,33.889999,33.875,33.874001,33.875,33.898998,33.935001,33.948002,33.963001,33.98,33.995998,34.014999,34.047001,34.076,34.124001,34.137001,34.132,34.216999,34.262001,34.271999,34.277,34.284,34.286999,34.284,34.278999,34.27,34.256001,34.245998,34.235001,34.224998,34.217999,34.215,34.210999,34.209,34.207001,34.208,34.206001,34.205002,34.206001,34.209999,34.224998,34.238998,34.265999,34.277,34.275002,34.293999,34.34,34.353001,34.334,34.334999,34.338001,34.348,34.358002,34.368999,34.382999,34.394001,34.41,34.428001,34.439999,34.453999,34.470001,34.487,34.498001,34.507999,34.519001,34.533001,34.547001,34.556999,34.566002,34.581001,34.597,34.610001,34.618999,34.625999,34.634998,34.640999,34.645,34.650002,34.659,34.665001,34.668999,34.673,34.678001,34.681,34.686001,34.689999,34.696999,34.703999,34.709999,34.715,34.720001,34.722,34.724998,34.729,34.733002,34.737999,34.742001,34.745998,34.748001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_065","geolocation":{"type":"Point","coordinates":[39.212,-44.729]},"basin":3,"timestamp":"2006-11-09T01:49:00.000Z","date_updated_argovis":"2023-01-24T21:29:01.896Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_065.nc","date_updated":"2015-10-19T17:48:28.000Z"}],"cycle_number":65,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,64,75,86,95,105,115,125,134,145,155,165,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,494,512,537,562,588,613,638,662,688,713,739,763,788,812,837,862,888,912,937,963,988,1013,1038,1062,1087,1113,1138,1162,1187,1212,1238,1263,1288,1313,1338,1363,1388,1413,1438,1463,1487,1512,1537,1562,1588,1612,1637,1663,1688,1713,1737,1762,1787,1812,1837,1863,1887,1912,1938,1963,1985],[6.884,6.827,6.809,6.806,6.803,6.802,6.8,6.742,6.588,6.291,6.112,6.058,5.989,5.963,5.892,5.75,5.727,5.736,5.724,5.732,5.776,5.871,5.981,6.147,6.133,6.037,6.016,6.024,6.017,5.957,5.86,5.771,5.654,5.392,5.095,4.961,4.861,4.831,4.77,4.692,4.615,4.552,4.55,4.551,4.391,4.205,4.103,4.022,4.009,4.062,4.136,4.186,3.899,3.682,3.518,3.468,3.409,3.365,3.326,3.248,3.21,3.176,3.13,3.136,3.08,3.057,3.017,2.987,2.954,2.919,2.893,2.86,2.837,2.832,2.813,2.769,2.75,2.726,2.714,2.704,2.693,2.681,2.675,2.666,2.655,2.645,2.626,2.609,2.596,2.59,2.572,2.565,2.561,2.548,2.539,2.53,2.516,2.501,2.488,2.469,2.464,2.455,2.431,2.406,2.391,2.381,2.368,2.363,2.36],[33.862,33.862999,33.863998,33.863998,33.863998,33.863998,33.865002,33.873001,33.888,33.937,33.951,33.950001,33.953999,33.959,33.965,33.967999,33.980999,33.994999,34.006001,34.032001,34.060001,34.096001,34.131001,34.189999,34.209,34.243,34.257,34.278,34.286999,34.296001,34.308998,34.307999,34.307999,34.277,34.247002,34.240002,34.240002,34.247002,34.245998,34.242001,34.243,34.243,34.251999,34.259998,34.241001,34.224998,34.216,34.208,34.213001,34.230999,34.265999,34.300999,34.280998,34.266998,34.257,34.269001,34.278,34.287998,34.298,34.306999,34.332001,34.351002,34.368,34.383999,34.390999,34.401001,34.411999,34.421001,34.435001,34.448002,34.460999,34.477001,34.495998,34.518002,34.529999,34.529999,34.540001,34.550999,34.557999,34.571999,34.59,34.598999,34.608002,34.612999,34.618999,34.630001,34.646,34.657001,34.665001,34.668999,34.675999,34.682999,34.687,34.695999,34.702,34.707001,34.712002,34.717999,34.723,34.727001,34.731998,34.736,34.742001,34.749001,34.752998,34.755001,34.757999,34.759998,34.759998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_064","geolocation":{"type":"Point","coordinates":[38.799,-44.652]},"basin":3,"timestamp":"2006-10-30T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:29:00.064Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_064.nc","date_updated":"2015-10-19T17:48:27.000Z"}],"cycle_number":64,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,105,115,125,135,145,155,166,175,185,195,205,215,225,235,246,255,265,275,285,296,305,315,325,335,345,355,365,374,385,395,405,415,425,435,446,455,465,475,485,495,512,538,563,587,612,638,662,687,712,737,764,787,812,837,863,888,913,937,963,988,1012,1037,1062,1088,1113,1138,1162,1188,1214,1238,1262,1288,1313,1338,1362,1387,1412,1438,1463,1487,1512,1538,1562,1587,1612,1637,1663,1687,1712,1738,1762,1787,1812,1837,1862,1888,1912,1937,1962,1988],[6.609,6.608,6.59,6.552,6.521,6.491,6.456,6.415,6.242,6.082,5.957,5.866,5.555,5.328,5.201,5.091,4.996,4.995,4.956,4.976,5.044,5.251,5.597,5.499,5.489,5.609,5.641,5.632,5.616,5.547,5.532,5.517,5.457,5.356,5.266,5.16,5.056,4.916,4.798,4.716,4.631,4.5,4.462,4.406,4.366,4.324,4.281,4.241,4.195,4.084,3.908,3.786,3.737,3.65,3.544,3.461,3.371,3.303,3.252,3.215,3.21,3.162,3.106,3.088,3.044,3.049,2.994,2.969,2.928,2.891,2.865,2.848,2.824,2.803,2.804,2.784,2.747,2.73,2.707,2.678,2.663,2.662,2.652,2.644,2.636,2.629,2.621,2.61,2.599,2.597,2.596,2.582,2.564,2.547,2.533,2.524,2.514,2.502,2.494,2.482,2.478,2.475,2.47,2.458,2.448,2.437,2.423,2.405,2.387],[33.924999,33.924999,33.925999,33.926998,33.926998,33.93,33.931,33.929001,33.922001,33.924999,33.93,33.93,33.907001,33.883999,33.874001,33.868,33.868999,33.876999,33.900002,33.929001,33.967999,34.009998,34.091999,34.096001,34.103001,34.154999,34.181999,34.191002,34.205002,34.216999,34.233002,34.237,34.240002,34.237999,34.240002,34.238998,34.237,34.234001,34.229,34.227001,34.223,34.216,34.214001,34.213001,34.217999,34.220001,34.222,34.223,34.223,34.223999,34.224998,34.231998,34.237,34.243999,34.256001,34.268002,34.278,34.292999,34.304001,34.32,34.330002,34.341,34.355999,34.368,34.384998,34.398998,34.409,34.417,34.429001,34.436001,34.444,34.460999,34.473,34.488998,34.509998,34.522999,34.542,34.558998,34.573002,34.587002,34.596001,34.598999,34.609001,34.619999,34.629002,34.636002,34.646,34.655998,34.665001,34.668999,34.672001,34.681,34.692001,34.701,34.707001,34.713001,34.719002,34.726002,34.729,34.733002,34.736,34.738998,34.741001,34.743,34.745998,34.748001,34.751999,34.757,34.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_063","geolocation":{"type":"Point","coordinates":[38.908,-45.127]},"basin":3,"timestamp":"2006-10-20T01:38:00.000Z","date_updated_argovis":"2023-01-24T21:28:58.101Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_063.nc","date_updated":"2015-10-19T17:48:27.000Z"}],"cycle_number":63,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,95,105,116,125,135,145,155,165,175,185,194,205,215,225,235,245,255,265,275,286,295,305,315,325,335,345,354,365,376,385,395,405,415,425,435,446,455,465,475,485,494,512,537,562,587,612,637,664,687,712,737,763,788,812,838,863,887,913,938,963,989,1013,1037,1063,1088,1113,1139,1163,1188,1213,1238,1263,1288,1313,1338,1363,1388,1412,1437,1463,1488,1513,1538,1563,1588,1613,1638,1663,1688,1714,1737,1763,1788,1813,1837,1862,1887,1912,1937,1963,1981],[6.163,6.164,6.166,6.163,6.158,6.148,6.037,5.927,5.874,5.803,5.555,5.288,5.222,5.174,5.237,5.223,5.239,5.29,5.341,5.425,5.515,5.503,5.644,5.687,5.672,5.615,5.637,5.645,5.609,5.578,5.495,5.39,5.297,5.186,5.117,5.037,4.93,4.758,4.661,4.611,4.511,4.423,4.359,4.31,4.262,4.19,4.14,4.135,4.131,4.013,3.883,3.713,3.629,3.643,3.534,3.463,3.338,3.316,3.274,3.246,3.239,3.223,3.203,3.163,3.143,3.109,3.074,3.061,3.011,2.944,2.912,2.899,2.883,2.858,2.835,2.811,2.784,2.762,2.739,2.716,2.706,2.699,2.681,2.65,2.637,2.628,2.622,2.617,2.607,2.594,2.583,2.573,2.564,2.54,2.524,2.518,2.51,2.508,2.5,2.496,2.496,2.492,2.482,2.474,2.464,2.455,2.444,2.421,2.404],[33.944,33.944,33.944,33.944,33.944,33.943001,33.942001,33.943001,33.945999,33.952,33.935001,33.914001,33.91,33.91,33.926998,33.931999,33.945999,33.966,33.987,34.021999,34.07,34.095001,34.155998,34.188999,34.195999,34.210999,34.234001,34.242001,34.25,34.250999,34.248001,34.247002,34.245998,34.242001,34.240002,34.238998,34.233002,34.221001,34.217999,34.215,34.210999,34.209,34.208,34.207001,34.208,34.209999,34.213001,34.215,34.219002,34.215,34.212002,34.220001,34.230999,34.255001,34.254002,34.27,34.280998,34.290001,34.297001,34.306999,34.321999,34.339001,34.347,34.362,34.369999,34.382999,34.394001,34.398998,34.415001,34.444,34.469002,34.479,34.487,34.493999,34.501999,34.509998,34.521999,34.535999,34.549,34.555,34.563,34.570999,34.594002,34.618999,34.632,34.643002,34.648998,34.653999,34.660999,34.671001,34.68,34.686001,34.692001,34.702999,34.708,34.710999,34.715,34.716999,34.721001,34.723999,34.724998,34.726002,34.73,34.734001,34.737999,34.742001,34.747002,34.751999,34.755001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_062","geolocation":{"type":"Point","coordinates":[39.17,-45.399]},"basin":3,"timestamp":"2006-10-10T01:32:00.000Z","date_updated_argovis":"2023-01-24T21:28:56.279Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_062.nc","date_updated":"2015-10-19T17:48:26.000Z"}],"cycle_number":62,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,134,145,156,165,175,185,195,205,215,225,235,245,255,265,275,286,295,305,315,324,335,345,354,365,375,385,396,406,415,425,435,445,454,464,475,485,496,513,538,562,587,613,638,663,688,712,738,762,787,813,837,862,888,912,938,963,987,1012,1037,1063,1088,1113,1139,1162,1187,1212,1237,1263,1288,1313,1338,1363,1387,1412,1437,1462,1488,1514,1537,1563,1588,1613,1637,1662,1687,1713,1738,1764,1787,1813,1838,1863,1889,1912,1937,1959],[5.481,5.467,5.466,5.44,5.371,5.246,5.139,5.09,5.08,5.073,5.085,5.085,5.104,5.128,5.177,5.145,5.137,4.988,4.847,4.966,5.092,5.107,5.209,5.689,5.698,5.601,5.396,5.225,5.112,4.964,4.892,4.828,4.777,4.747,4.642,4.543,4.419,4.354,4.341,4.315,4.24,4.191,4.124,4.082,3.974,3.978,3.981,3.936,3.889,3.808,3.775,3.684,3.608,3.518,3.477,3.445,3.36,3.328,3.34,3.306,3.251,3.156,3.104,3.061,3.015,3.013,3.002,2.973,2.96,2.926,2.913,2.851,2.816,2.796,2.783,2.775,2.751,2.724,2.707,2.703,2.698,2.691,2.678,2.663,2.643,2.625,2.611,2.6,2.597,2.588,2.579,2.574,2.574,2.57,2.557,2.512,2.481,2.446,2.432,2.414,2.399,2.388,2.376,2.366,2.348,2.338,2.335,2.332],[33.896,33.917999,33.919998,33.923,33.923,33.921001,33.918999,33.919998,33.922001,33.925999,33.931,33.933998,33.943001,33.952,33.971001,33.984001,34.000999,33.998001,34.011002,34.044998,34.068001,34.095001,34.139999,34.252998,34.264999,34.259998,34.240002,34.229,34.224998,34.216999,34.210999,34.209,34.207001,34.206001,34.202999,34.199001,34.195999,34.195,34.195,34.195,34.192001,34.189999,34.187,34.192001,34.192001,34.198002,34.201,34.202,34.200001,34.202999,34.210999,34.222,34.230999,34.240002,34.252998,34.266998,34.27,34.287998,34.308998,34.320999,34.344002,34.366001,34.383999,34.400002,34.416,34.425999,34.429001,34.436001,34.445,34.459999,34.471001,34.490002,34.507,34.518002,34.528999,34.541,34.553001,34.564999,34.575001,34.578999,34.588001,34.596001,34.605,34.615002,34.627998,34.639,34.646999,34.654999,34.658001,34.664001,34.669998,34.674,34.674999,34.676998,34.683998,34.705002,34.716999,34.73,34.734001,34.738998,34.743,34.747002,34.750999,34.754002,34.757,34.759998,34.761002,34.762001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_061","geolocation":{"type":"Point","coordinates":[38.61,-45.279]},"basin":3,"timestamp":"2006-09-30T01:39:00.000Z","date_updated_argovis":"2023-01-24T21:28:54.291Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_061.nc","date_updated":"2015-10-19T17:48:26.000Z"}],"cycle_number":61,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,84,95,106,115,126,134,145,155,165,174,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,386,395,405,415,425,435,445,455,465,475,486,495,513,538,562,587,612,638,663,687,713,738,763,788,812,837,863,887,913,937,962,988,1013,1037,1063,1088,1113,1137,1162,1187,1213,1237,1263,1288,1312,1338,1363,1388,1413,1438,1462,1487,1512,1537,1562,1588,1613,1637,1662,1688,1713,1738,1764,1787,1812,1837,1863,1887,1912,1937,1962,1987],[5.474,5.473,5.472,5.475,5.476,5.476,5.477,5.471,5.452,5.444,5.437,5.42,5.409,5.427,5.468,5.545,5.471,5.461,5.22,4.882,4.8,5.246,5.831,6.009,6.016,5.997,5.89,5.871,5.793,5.618,5.533,5.436,5.387,5.317,5.207,5.017,4.965,4.842,4.757,4.687,4.642,4.561,4.514,4.464,4.384,4.37,4.351,4.345,4.325,4.233,4.134,4.043,3.788,3.58,3.512,3.522,3.502,3.416,3.316,3.368,3.333,3.346,3.352,3.299,3.239,3.11,3.158,3.068,3.018,2.969,2.946,2.908,2.866,2.842,2.821,2.807,2.79,2.769,2.753,2.738,2.73,2.707,2.688,2.67,2.661,2.647,2.632,2.616,2.607,2.589,2.575,2.555,2.545,2.529,2.52,2.523,2.5,2.489,2.489,2.474,2.458,2.442,2.433,2.425,2.412,2.395,2.379,2.37,2.35],[33.952999,33.952999,33.952999,33.952999,33.952999,33.952999,33.952999,33.952999,33.955002,33.959,33.962002,33.962002,33.962002,33.972,33.986,34.013,34.028999,34.036999,34.02,33.986,33.997002,34.091999,34.195999,34.237,34.258999,34.265999,34.263,34.264,34.259998,34.257,34.256001,34.261002,34.261002,34.257999,34.25,34.240002,34.237999,34.236,34.234001,34.233002,34.231998,34.229,34.229,34.228001,34.227001,34.227001,34.227001,34.227001,34.227001,34.226002,34.229,34.236,34.223999,34.217999,34.236,34.257,34.272999,34.291,34.300999,34.32,34.328999,34.346001,34.361,34.373001,34.376999,34.376999,34.403,34.417999,34.432999,34.445,34.462002,34.472,34.480999,34.499001,34.514,34.525002,34.537998,34.554001,34.563,34.570999,34.577999,34.589001,34.601002,34.615002,34.623001,34.634998,34.647999,34.660999,34.674,34.685001,34.694,34.700001,34.707001,34.715,34.719002,34.722,34.723999,34.728001,34.734001,34.738998,34.741001,34.743999,34.747002,34.749001,34.751999,34.754002,34.756001,34.757999,34.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_060","geolocation":{"type":"Point","coordinates":[37.842,-46.076]},"basin":3,"timestamp":"2006-09-20T01:45:00.000Z","date_updated_argovis":"2023-01-24T21:28:52.465Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_060.nc","date_updated":"2015-10-19T17:48:25.000Z"}],"cycle_number":60,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,64,75,85,95,105,114,125,135,144,155,165,175,185,195,205,215,225,235,245,255,265,274,285,295,305,315,325,335,344,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,538,563,588,612,638,663,688,713,737,763,788,813,837,862,887,913,938,963,987,1013,1037,1062,1087,1112,1137,1162,1188,1212,1237,1263,1287,1312,1337,1362,1389,1412,1437,1463,1488,1512,1537,1563,1587,1614,1637,1662,1687,1712,1739,1762,1788,1813,1837,1862,1887,1912,1937,1962,1986],[5.619,5.617,5.621,5.622,5.623,5.621,5.599,5.601,5.603,5.583,5.527,5.45,5.395,5.259,5.199,5.176,5.159,5.083,5.042,5.004,5.07,5.315,5.568,5.593,5.87,5.978,6.063,6.204,6.145,6.027,5.951,5.805,5.762,5.72,5.629,5.543,5.381,5.293,5.165,5.046,4.997,4.872,4.743,4.692,4.698,4.675,4.582,4.507,4.385,4.379,4.178,3.909,3.783,3.7,3.636,3.545,3.487,3.54,3.627,3.567,3.577,3.547,3.436,3.365,3.326,3.239,3.094,3.024,3.014,2.975,2.909,2.849,2.822,2.809,2.793,2.775,2.752,2.747,2.735,2.721,2.711,2.699,2.686,2.678,2.669,2.655,2.643,2.631,2.624,2.629,2.627,2.618,2.608,2.595,2.58,2.566,2.565,2.555,2.534,2.499,2.482,2.448,2.439,2.433,2.421,2.41,2.384,2.349,2.34],[33.944,33.944,33.944,33.944,33.944,33.944,33.943001,33.943001,33.943001,33.939999,33.938999,33.931,33.924999,33.911999,33.91,33.908001,33.905998,33.900002,33.896999,33.896,33.910999,33.962002,34.021,34.058998,34.124001,34.158001,34.195999,34.242001,34.258999,34.261002,34.268002,34.273998,34.286999,34.290001,34.284,34.285,34.271,34.266998,34.254002,34.251999,34.251999,34.241001,34.235001,34.234001,34.238998,34.237999,34.227001,34.224998,34.219002,34.23,34.224998,34.217999,34.223,34.23,34.241001,34.250999,34.264999,34.282001,34.313999,34.334,34.348,34.363998,34.373001,34.387001,34.397999,34.402,34.400002,34.412998,34.423,34.439999,34.452999,34.464001,34.477001,34.488998,34.495998,34.507999,34.527,34.532001,34.541,34.553001,34.577,34.592999,34.599998,34.605999,34.619999,34.631001,34.640999,34.651001,34.66,34.669998,34.674999,34.681999,34.688999,34.694,34.701,34.710999,34.716999,34.722,34.726002,34.729,34.730999,34.730999,34.736,34.743,34.745998,34.749001,34.752998,34.757999,34.758999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_059","geolocation":{"type":"Point","coordinates":[37.093,-46.71]},"basin":3,"timestamp":"2006-09-10T01:33:00.000Z","date_updated_argovis":"2023-01-24T21:28:50.399Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_059.nc","date_updated":"2015-10-19T17:48:25.000Z"}],"cycle_number":59,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,75,85,94,105,115,125,136,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,294,305,314,325,335,345,355,365,374,385,395,405,416,425,435,446,455,465,475,485,495,512,537,562,587,613,638,662,689,713,737,762,788,813,838,863,888,913,938,962,987,1012,1037,1062,1087,1114,1137,1163,1188,1213,1237,1263,1288,1312,1338,1362,1388,1413,1437,1462,1487,1512,1537,1563,1588,1612,1637,1663,1688,1712,1739,1763,1787,1813,1838,1862,1888,1912,1937,1962,1981],[5.681,5.683,5.687,5.688,5.689,5.688,5.662,5.663,5.618,5.306,5.152,5.131,5.123,5.102,5.094,5.083,5.087,5.125,5.002,4.979,4.502,4.182,4.475,5.908,6.248,6.443,6.217,5.945,5.812,5.771,5.662,5.472,5.321,5.145,5.037,5.023,4.973,4.833,4.736,4.693,4.643,4.617,4.664,4.595,4.465,4.396,4.315,4.2,4.221,4.163,4.092,4.021,3.932,3.844,3.791,3.692,3.604,3.448,3.377,3.447,3.392,3.298,3.206,3.074,3.026,3.025,2.941,2.863,2.842,2.822,2.789,2.776,2.768,2.757,2.751,2.747,2.748,2.738,2.728,2.71,2.703,2.685,2.683,2.669,2.665,2.653,2.628,2.616,2.61,2.6,2.595,2.586,2.571,2.567,2.562,2.547,2.532,2.529,2.527,2.495,2.48,2.474,2.469,2.479,2.465,2.454,2.439,2.408,2.394],[33.952999,33.952999,33.952999,33.952999,33.952999,33.952999,33.952,33.952,33.945999,33.931999,33.922001,33.921001,33.919998,33.917999,33.917,33.917,33.917999,33.925999,33.923,33.923,33.860001,33.828999,33.900002,34.157001,34.240002,34.290001,34.266998,34.245998,34.244999,34.243,34.235001,34.233002,34.241001,34.237,34.230999,34.23,34.224998,34.216999,34.213001,34.213001,34.212002,34.215,34.228001,34.23,34.224998,34.227001,34.222,34.219002,34.230999,34.245998,34.252998,34.264999,34.285999,34.297001,34.316002,34.328999,34.341,34.341999,34.349998,34.374001,34.382,34.382999,34.387001,34.395,34.405998,34.425999,34.436001,34.442001,34.457001,34.466,34.480999,34.492001,34.499001,34.513,34.521999,34.532001,34.541,34.556999,34.57,34.584,34.595001,34.609001,34.618,34.623001,34.627998,34.632999,34.643002,34.652,34.667,34.681,34.687,34.694,34.703999,34.708,34.710999,34.720001,34.726002,34.73,34.734001,34.735001,34.740002,34.743999,34.748001,34.754002,34.758999,34.763,34.765999,34.766998,34.771]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_058","geolocation":{"type":"Point","coordinates":[35.072,-46.94]},"basin":3,"timestamp":"2006-08-31T01:46:00.000Z","date_updated_argovis":"2023-01-24T21:28:48.564Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_058.nc","date_updated":"2015-10-19T17:48:24.000Z"}],"cycle_number":58,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,44,55,65,75,84,96,106,115,126,135,145,155,165,175,185,195,205,215,225,235,245,256,266,275,285,295,306,315,325,335,345,356,365,375,386,395,406,416,425,435,446,455,465,475,485,495,512,537,563,588,612,637,662,688,714,737,763,787,812,838,863,887,914,938,962,987,1012,1037,1063,1088,1114,1137,1162,1187,1212,1237,1263,1288,1313,1337,1363,1388,1412,1437,1463,1488,1512,1537,1563,1588,1613,1637,1662,1688,1713,1738,1762,1787,1813,1837,1862,1888,1912,1937,1962,1986],[5.816,5.815,5.814,5.818,5.813,5.815,5.804,5.797,5.795,5.795,5.799,5.801,5.802,5.805,5.815,5.817,5.856,5.909,5.999,6.496,6.988,7.144,7.115,6.892,6.628,6.402,6.322,6.213,6.012,5.88,5.73,5.433,5.397,5.37,5.306,5.147,5.015,5.02,5.001,4.911,4.828,4.772,4.654,4.569,4.421,4.308,4.211,4.166,4.16,4.022,3.935,4.012,4.144,3.969,3.802,3.689,3.572,3.539,3.425,3.261,3.135,3.067,3.044,3.031,3.015,2.991,2.967,2.932,2.902,2.867,2.833,2.803,2.763,2.741,2.728,2.724,2.695,2.681,2.669,2.65,2.66,2.653,2.642,2.633,2.614,2.602,2.583,2.573,2.567,2.571,2.566,2.567,2.554,2.545,2.534,2.517,2.501,2.49,2.474,2.472,2.486,2.483,2.474,2.461,2.452,2.442,2.443,2.432,2.424],[33.949001,33.949001,33.949001,33.949001,33.948002,33.948002,33.945999,33.945,33.944,33.944,33.945,33.945,33.945,33.946999,33.949001,33.949001,33.960999,33.977001,34.032001,34.175999,34.299999,34.362999,34.374001,34.366001,34.362999,34.351002,34.347,34.338001,34.32,34.306,34.296001,34.276001,34.278,34.277,34.272999,34.258999,34.255001,34.265999,34.273998,34.271,34.266998,34.264,34.255001,34.248001,34.237,34.229,34.223,34.223,34.223999,34.216999,34.227001,34.269001,34.305,34.314999,34.321999,34.327,34.331001,34.347,34.351002,34.342999,34.341999,34.352001,34.360001,34.379002,34.394001,34.41,34.423,34.433998,34.445,34.455002,34.466,34.477001,34.495998,34.513,34.528,34.535,34.547001,34.557999,34.574001,34.585999,34.596001,34.605999,34.617001,34.625,34.634998,34.640999,34.646,34.653,34.657001,34.666,34.671001,34.68,34.686001,34.699001,34.708,34.709999,34.715,34.721001,34.728001,34.731998,34.743999,34.745998,34.748001,34.749001,34.755001,34.762001,34.771,34.772999,34.775002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_057","geolocation":{"type":"Point","coordinates":[33.895,-47.19]},"basin":3,"timestamp":"2006-08-21T01:40:00.000Z","date_updated_argovis":"2023-01-24T21:28:46.580Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_057.nc","date_updated":"2015-10-19T17:48:23.000Z"}],"cycle_number":57,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,45,55,64,75,84,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,244,255,265,275,285,296,305,315,326,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,513,537,563,587,612,637,662,688,714,737,762,787,813,838,862,887,913,939,962,988,1012,1038,1063,1087,1114,1137,1162,1187,1212,1238,1263,1288,1312,1338,1363,1388,1414,1437,1463,1487,1513,1538,1564,1587,1612,1637,1662,1688,1713,1738,1762,1787,1812,1838,1862,1888,1913,1938,1963,1989],[5.507,5.508,5.516,5.517,5.502,5.504,5.488,5.495,5.454,5.415,5.39,5.378,5.373,5.371,5.365,5.364,5.37,5.339,5.344,5.377,5.303,5.279,6.11,6.101,6.247,6.178,6.042,5.774,5.538,5.422,5.408,5.321,5.181,5.021,4.908,4.683,4.633,4.753,4.781,4.806,4.821,4.776,4.647,4.544,4.499,4.401,4.336,4.268,4.276,4.232,4.105,3.935,3.819,3.982,4.066,3.869,3.762,3.698,3.646,3.555,3.446,3.266,3.106,3.033,3.024,3.006,2.94,2.925,2.888,2.858,2.825,2.807,2.792,2.785,2.786,2.784,2.776,2.764,2.724,2.681,2.675,2.669,2.659,2.652,2.648,2.638,2.627,2.613,2.61,2.612,2.597,2.581,2.567,2.547,2.5,2.468,2.476,2.455,2.449,2.482,2.485,2.453,2.433,2.422,2.414,2.411,2.417,2.399,2.372],[33.897999,33.896999,33.898998,33.898998,33.896999,33.896999,33.895,33.895,33.890999,33.883999,33.882,33.880001,33.879002,33.879002,33.877998,33.877998,33.879002,33.875,33.875999,33.882,33.889999,33.980999,34.171001,34.23,34.293999,34.307999,34.303001,34.280998,34.256001,34.250999,34.258999,34.252998,34.247002,34.233002,34.221001,34.196999,34.207001,34.237,34.249001,34.262001,34.269001,34.266998,34.257999,34.249001,34.247002,34.241001,34.237999,34.235001,34.241001,34.243999,34.236,34.227001,34.236,34.283001,34.313,34.311001,34.319,34.334,34.348999,34.361,34.355999,34.353001,34.354,34.362,34.376999,34.387001,34.408001,34.421001,34.436001,34.452,34.465,34.476002,34.487999,34.498001,34.508999,34.514999,34.532001,34.546001,34.558998,34.568001,34.583,34.592999,34.605,34.613998,34.624001,34.637001,34.646999,34.659,34.664001,34.667999,34.68,34.688999,34.696999,34.702999,34.699001,34.698002,34.702999,34.703999,34.707001,34.714001,34.723,34.729,34.728001,34.730999,34.734001,34.736,34.738998,34.743999,34.743999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_056","geolocation":{"type":"Point","coordinates":[33.404,-47.664]},"basin":3,"timestamp":"2006-08-11T01:46:00.000Z","date_updated_argovis":"2023-01-24T21:28:44.589Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_056.nc","date_updated":"2015-10-19T17:48:23.000Z"}],"cycle_number":56,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,64,75,86,95,105,115,125,136,145,155,165,175,185,195,205,215,225,235,245,256,265,275,285,295,305,315,325,335,345,354,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,612,639,662,687,713,737,762,787,812,837,862,887,913,937,962,988,1012,1038,1063,1087,1114,1138,1163,1187,1213,1237,1262,1287,1312,1338,1362,1388,1413,1438,1463,1488,1512,1538,1563,1588,1612,1637,1662,1687,1714,1737,1763,1788,1812,1837,1863,1888,1913,1937,1963,1981],[6.061,6.066,6.08,6.086,6.088,6.086,6.084,6.065,6.053,6.039,5.97,5.918,5.952,6.069,6.65,7.002,7.45,7.643,7.179,6.925,7.308,7.227,7.198,7.313,7.144,7.052,7.068,6.88,6.625,6.403,6.187,6.108,5.974,5.858,5.766,5.678,5.625,5.517,5.316,5.193,5.093,5.008,4.906,4.883,4.794,4.925,4.934,4.776,4.623,4.534,4.424,4.247,4.106,4.058,4.019,3.765,3.75,3.712,3.603,3.624,3.474,3.277,3.097,3.047,3.057,3.057,3.043,2.994,2.956,2.907,2.877,2.855,2.823,2.791,2.77,2.758,2.746,2.731,2.712,2.683,2.71,2.677,2.658,2.671,2.652,2.639,2.631,2.631,2.633,2.616,2.626,2.629,2.622,2.61,2.599,2.583,2.576,2.568,2.558,2.544,2.528,2.518,2.51,2.505,2.504,2.494,2.473,2.457,2.439],[33.960999,33.960999,33.962002,33.963001,33.963001,33.962002,33.963001,33.960999,33.959,33.959,33.948002,33.943001,33.948002,33.969002,34.101002,34.207001,34.318001,34.366001,34.291,34.276001,34.372002,34.384998,34.400002,34.435001,34.426998,34.437,34.445,34.424,34.403,34.382,34.360001,34.363998,34.353001,34.346001,34.34,34.337002,34.335999,34.326,34.304001,34.293999,34.285999,34.278,34.271,34.276001,34.272999,34.301998,34.314999,34.298,34.286999,34.291,34.292999,34.287998,34.285999,34.296001,34.311001,34.297001,34.314999,34.330002,34.335999,34.358002,34.349998,34.339001,34.333,34.347,34.363998,34.382,34.398998,34.41,34.418999,34.429001,34.444,34.453999,34.466,34.48,34.493,34.501999,34.509998,34.52,34.532001,34.540001,34.556,34.567001,34.577999,34.594002,34.604,34.612,34.618999,34.630001,34.639999,34.646999,34.658001,34.671001,34.681999,34.691002,34.701,34.709,34.715,34.721001,34.726002,34.730999,34.734001,34.737,34.738998,34.742001,34.747002,34.75,34.751999,34.755001,34.757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_055","geolocation":{"type":"Point","coordinates":[32.922000000000004,-48.772000000000006]},"basin":3,"timestamp":"2006-08-01T01:40:00.000Z","date_updated_argovis":"2023-01-24T21:28:42.771Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_055.nc","date_updated":"2015-10-19T17:48:22.000Z"}],"cycle_number":55,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,26,36,45,54,65,75,85,95,105,115,125,135,145,156,165,175,186,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,376,385,395,405,414,425,436,445,455,465,475,485,495,512,537,562,588,613,638,663,687,714,737,762,787,812,838,863,888,913,939,963,988,1012,1037,1062,1087,1112,1139,1163,1187,1213,1237,1262,1287,1312,1338,1362,1388,1413,1437,1462,1487,1512,1538,1564,1587,1612,1637,1662,1687,1712,1738,1763,1788,1812,1838,1862,1887,1912,1938,1963,1981],[4.895,4.9,4.899,4.9,4.897,4.898,4.897,4.892,4.894,4.892,4.91,4.929,4.931,5.043,5.169,5.488,6.175,6.66,6.57,6.801,7.174,7.261,7.182,7.058,6.607,6.215,5.865,6.015,5.78,5.496,5.198,5.314,5.484,5.466,5.343,5.304,5.301,5.32,5.317,5.296,5.228,5.243,5.134,4.918,4.715,4.627,4.557,4.529,4.488,4.448,4.39,4.311,4.259,4.153,3.981,3.839,3.74,3.697,3.648,3.611,3.538,3.302,3.059,3.028,2.993,3.049,3.007,2.929,2.905,2.876,2.849,2.828,2.798,2.776,2.773,2.758,2.769,2.767,2.713,2.703,2.7,2.688,2.693,2.708,2.705,2.675,2.642,2.624,2.599,2.609,2.592,2.59,2.591,2.587,2.584,2.548,2.548,2.541,2.531,2.514,2.478,2.461,2.456,2.48,2.471,2.464,2.463,2.456,2.452],[33.818001,33.818001,33.818001,33.818001,33.817001,33.817001,33.817001,33.817001,33.816002,33.814999,33.818001,33.821999,33.823002,33.844002,33.869999,33.933998,34.085999,34.203999,34.223,34.311001,34.397999,34.432999,34.442001,34.426998,34.362999,34.312,34.273998,34.310001,34.285999,34.254002,34.229,34.257,34.294998,34.303001,34.296001,34.297001,34.306999,34.317001,34.319,34.32,34.324001,34.334,34.320999,34.296001,34.278999,34.272999,34.27,34.268002,34.269001,34.279999,34.290001,34.299,34.313999,34.320999,34.318001,34.317001,34.324001,34.341,34.355,34.362999,34.368999,34.355,34.339001,34.348999,34.365002,34.395,34.404999,34.410999,34.422001,34.431999,34.445,34.459,34.469002,34.479,34.493999,34.502998,34.521999,34.535999,34.549,34.561001,34.571999,34.581001,34.595001,34.606998,34.618,34.624001,34.631001,34.637001,34.646,34.658001,34.664001,34.669998,34.675999,34.681999,34.691002,34.691002,34.698002,34.705002,34.709,34.715,34.716999,34.726002,34.734001,34.745998,34.750999,34.756001,34.761002,34.764,34.764999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_054","geolocation":{"type":"Point","coordinates":[31.679000000000002,-48.97]},"basin":3,"timestamp":"2006-07-22T01:53:00.000Z","date_updated_argovis":"2023-01-24T21:28:40.798Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_054.nc","date_updated":"2015-10-19T17:48:21.000Z"}],"cycle_number":54,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,56,65,75,85,95,105,115,125,136,145,155,165,175,185,195,205,215,226,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,426,436,445,455,465,475,485,495,512,537,562,587,612,638,662,689,712,737,763,788,813,838,863,888,912,938,963,988,1013,1038,1063,1088,1112,1137,1163,1187,1212,1237,1262,1287,1313,1338,1363,1387,1413,1437,1462,1487,1513,1538,1563,1587,1613,1638,1663,1688,1712,1737,1762,1787,1813,1838,1862,1887,1912,1938,1963,1988,2009],[6.704,6.711,6.718,6.718,6.719,6.718,6.713,6.713,6.708,6.707,6.712,6.678,6.409,7.02,7.439,7.347,7.158,7.044,7.369,7.275,7.009,6.834,6.767,6.704,6.563,6.428,6.342,6.304,6.129,5.945,5.858,5.698,5.57,5.552,5.439,5.096,5.005,4.937,4.93,4.793,4.39,4.146,4.07,4.021,3.957,3.896,3.849,3.807,3.785,3.716,3.976,4.138,4.145,4.194,4.138,4.014,3.826,3.702,3.641,3.624,3.574,3.523,3.438,3.379,3.251,3.009,2.945,2.955,3.008,2.962,2.883,2.858,2.819,2.793,2.786,2.767,2.804,2.815,2.862,2.853,2.822,2.788,2.764,2.725,2.737,2.722,2.672,2.654,2.675,2.664,2.644,2.632,2.632,2.628,2.627,2.614,2.612,2.618,2.625,2.589,2.573,2.561,2.547,2.535,2.525,2.509,2.497,2.491,2.472,2.461],[34.014,34.014999,34.014999,34.014999,34.014,34.014999,34.014,34.014,34.012001,34.013,34.015999,34.015999,34.013,34.174,34.306999,34.312,34.301998,34.305,34.376999,34.375,34.348999,34.341999,34.346001,34.346001,34.347,34.341,34.341,34.34,34.327999,34.314999,34.305,34.291,34.289001,34.294998,34.280998,34.243,34.238998,34.242001,34.248001,34.23,34.181,34.153,34.150002,34.150002,34.150002,34.152,34.153999,34.154999,34.158001,34.162998,34.229,34.276001,34.293999,34.321999,34.335999,34.332001,34.326,34.334999,34.347,34.355999,34.368,34.377998,34.384998,34.398998,34.404999,34.391998,34.397999,34.417999,34.437,34.444,34.446999,34.456001,34.466999,34.479,34.486,34.499001,34.52,34.534,34.556,34.569,34.583,34.592999,34.605,34.612999,34.625999,34.633999,34.637001,34.646,34.655998,34.662998,34.668999,34.674999,34.681,34.686001,34.695999,34.702,34.706001,34.714001,34.722,34.724998,34.729,34.735001,34.738998,34.743,34.747002,34.75,34.752998,34.757999,34.758999,34.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_053","geolocation":{"type":"Point","coordinates":[30.485000000000003,-48.272000000000006]},"basin":3,"timestamp":"2006-07-12T01:35:00.000Z","date_updated_argovis":"2023-01-24T21:28:38.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_053.nc","date_updated":"2015-10-19T17:48:21.000Z"}],"cycle_number":53,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,75,85,95,105,116,125,135,145,155,165,175,185,195,205,215,225,235,245,256,265,275,285,294,305,315,325,336,345,355,365,375,385,395,405,415,425,434,445,455,465,475,485,495,513,538,563,588,613,637,662,687,712,738,762,787,813,837,862,889,913,938,962,988,1013,1038,1063,1087,1112,1139,1162,1187,1212,1237,1262,1288,1313,1339,1362,1387,1412,1437,1462,1487,1514,1537,1562,1587,1613,1638,1662,1687,1712,1737,1762,1788,1812,1838,1863,1888,1913,1938,1963,1976],[5.742,5.74,5.747,5.745,5.737,5.726,5.705,5.541,5.345,5.215,5.203,5.194,5.279,6.031,5.996,4.8,4.842,5.066,5.399,6.222,6.954,7.017,7.034,6.296,5.739,5.773,5.661,5.439,5.392,5.22,5.009,4.893,5.028,4.982,5.048,5.275,5.409,5.337,5.047,5.05,5.063,4.986,5.064,4.981,4.815,4.562,4.5,4.339,4.34,4.297,4.157,4.031,4.028,3.956,3.767,3.58,3.611,3.614,3.593,3.55,3.449,3.394,3.354,3.393,3.261,3.216,3.14,2.919,2.848,2.879,2.867,2.83,2.82,2.788,2.725,2.707,2.707,2.683,2.648,2.652,2.637,2.736,2.759,2.773,2.769,2.692,2.638,2.665,2.721,2.685,2.635,2.611,2.585,2.598,2.585,2.563,2.558,2.584,2.629,2.59,2.559,2.536,2.515,2.509,2.505,2.493,2.481,2.472,2.471],[33.804001,33.804001,33.805,33.804001,33.804001,33.801998,33.799,33.777,33.754002,33.741001,33.740002,33.741001,33.771999,33.938,33.995998,33.845001,33.890999,33.971001,34.077,34.243,34.398998,34.435001,34.444,34.34,34.276001,34.294998,34.286999,34.266998,34.263,34.245998,34.224998,34.221001,34.247002,34.243999,34.268002,34.311001,34.334999,34.330002,34.299999,34.311001,34.320999,34.318001,34.339001,34.334999,34.316002,34.289001,34.279999,34.265999,34.271999,34.278,34.277,34.279999,34.294998,34.308998,34.303001,34.299,34.323002,34.344002,34.355,34.366001,34.374001,34.382999,34.396999,34.419998,34.416,34.428001,34.435001,34.423,34.425999,34.446999,34.459,34.469002,34.486,34.500999,34.506001,34.52,34.533001,34.548,34.557999,34.568001,34.577999,34.606998,34.620998,34.632999,34.643002,34.641998,34.644001,34.654999,34.672001,34.676998,34.676998,34.681999,34.687,34.698002,34.703999,34.708,34.714001,34.727001,34.742001,34.743,34.745998,34.747002,34.749001,34.751999,34.755001,34.757,34.761002,34.763,34.765999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_052","geolocation":{"type":"Point","coordinates":[29.788,-47.115]},"basin":3,"timestamp":"2006-07-02T01:53:00.000Z","date_updated_argovis":"2023-01-24T21:28:36.907Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_052.nc","date_updated":"2015-10-19T17:48:20.000Z"}],"cycle_number":52,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,86,95,105,115,125,135,145,156,165,175,186,195,205,215,225,235,246,255,264,275,285,295,305,315,325,335,345,355,365,375,385,395,404,415,426,436,445,455,465,475,485,495,513,537,562,587,614,638,663,687,712,737,762,787,813,838,864,887,912,938,963,988,1012,1037,1063,1088,1114,1138,1163,1187,1212,1237,1262,1287,1314,1338,1363,1388,1412,1437,1462,1488,1513,1538,1562,1588,1612,1637,1663,1688,1713,1737,1763,1787,1812,1838,1863,1888,1914,1937,1961],[6.73,6.732,6.732,6.734,6.735,6.737,6.741,6.747,6.745,6.692,6.677,7.145,8.527,8.744,8.577,8.484,8.09,7.884,7.33,6.507,7.026,6.961,6.532,6.054,5.768,6.43,6.734,6.633,6.389,5.585,5.214,5.439,5.665,5.455,5.545,5.86,5.441,5.207,5.021,4.974,4.891,4.798,4.785,4.74,4.682,4.675,4.601,4.489,4.44,4.358,4.266,4.176,4.116,4.077,3.967,3.907,3.853,3.806,3.704,3.572,3.575,3.582,3.365,3.318,3.26,3.402,3.275,3.063,2.845,2.81,2.879,2.877,2.86,2.823,2.783,2.792,2.811,2.764,2.76,2.722,2.672,2.656,2.651,2.649,2.647,2.653,2.649,2.617,2.591,2.588,2.587,2.596,2.604,2.605,2.597,2.592,2.585,2.575,2.567,2.565,2.562,2.561,2.563,2.548,2.536,2.472,2.437,2.425],[33.925999,33.925999,33.925999,33.925999,33.925999,33.925999,33.926998,33.928001,33.928001,33.923,33.943001,34.089001,34.428001,34.515999,34.493,34.476002,34.426998,34.412998,34.334,34.223999,34.339001,34.347,34.285999,34.222,34.209,34.342999,34.402,34.389999,34.355999,34.243999,34.202,34.257999,34.305,34.280998,34.314999,34.369999,34.318001,34.287998,34.271,34.266998,34.261002,34.254002,34.259998,34.262001,34.262001,34.266998,34.261002,34.252998,34.255001,34.258999,34.264,34.268002,34.277,34.291,34.292,34.301998,34.317001,34.331001,34.334999,34.334,34.358002,34.381001,34.366001,34.382,34.391998,34.432999,34.431,34.412998,34.400002,34.417999,34.445,34.464001,34.471001,34.484001,34.493,34.508999,34.523998,34.533001,34.548,34.556,34.558998,34.570999,34.581001,34.591,34.603001,34.615002,34.623001,34.629002,34.637001,34.645,34.653,34.664001,34.674,34.681,34.689999,34.698002,null,34.708,34.713001,34.719002,34.728001,34.734001,34.741001,34.742001,34.747002,34.741001,34.742001,34.744999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_051","geolocation":{"type":"Point","coordinates":[28.767000000000003,-46.141000000000005]},"basin":3,"timestamp":"2006-06-22T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:28:35.070Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_051.nc","date_updated":"2015-10-19T17:48:20.000Z"}],"cycle_number":51,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,136,146,155,165,175,185,194,205,215,224,235,246,255,265,276,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,456,466,475,484,495,513,538,562,587,613,639,662,687,712,737,763,788,812,837,862,888,914,937,963,987,1012,1037,1062,1087,1114,1137,1162,1187,1212,1238,1263,1287,1312,1339,1363,1388,1413,1437,1462,1487,1512,1539,1562,1587,1613,1638,1662,1687,1712,1738,1762,1788,1813,1838,1863,1887,1913,1938,1963,1979],[8.313,8.313,8.316,8.319,8.321,8.323,8.324,8.326,8.334,8.336,8.356,8.435,8.766,8.882,8.609,8.166,8.145,7.926,7.772,8.17,8.432,8.406,7.8,6.743,6.475,6.528,6.13,6.239,6.881,7.18,7.15,6.848,6.515,6.484,6.418,6.206,6.044,5.779,5.638,5.574,5.523,5.49,5.513,5.607,5.56,4.886,4.384,4.24,4.148,4.175,4.174,4.166,4.252,4.342,4.314,4.148,3.928,3.818,3.663,3.562,3.578,3.508,3.413,3.389,3.365,3.346,3.44,3.477,3.468,3.414,3.184,2.955,2.861,2.699,2.695,2.721,2.796,2.724,2.733,2.717,2.72,2.698,2.682,2.67,2.643,2.653,2.742,2.739,2.664,2.641,2.629,2.618,2.618,2.618,2.612,2.604,2.601,2.597,2.594,2.579,2.609,2.596,2.538,2.515,2.515,2.481,2.462,2.443,2.43],[34.174,34.174,34.174999,34.174999,34.174999,34.174999,34.174999,34.175999,34.178001,34.178001,34.185001,34.220001,34.410999,34.478001,34.448002,34.397999,34.415001,34.395,34.382,34.479,34.558998,34.567001,34.457001,34.291,34.269001,34.286999,34.236,34.278,34.404999,34.469002,34.477001,34.431,34.388,34.394001,34.395,34.372002,34.353001,34.325001,34.312,34.313,34.314999,34.320999,34.333,34.361,34.353001,34.259998,34.195,34.178001,34.174999,34.192001,34.216,34.230999,34.261002,34.293999,34.307999,34.301998,34.290001,34.291,34.292999,34.297001,34.319,34.327999,34.334,34.345001,34.362,34.375999,34.41,34.433998,34.449001,34.460999,34.442001,34.429001,34.433998,34.431,34.445,34.465,34.490002,34.493,34.512001,34.529999,34.549,34.557999,34.570999,34.577999,34.585999,34.599998,34.625,34.637001,34.639,34.646,34.653,34.66,34.667999,34.674999,34.682999,34.688999,34.695999,34.702999,34.712002,34.717999,34.733002,34.737999,34.735001,34.737999,34.743999,34.743999,34.745998,34.749001,34.75]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_050","geolocation":{"type":"Point","coordinates":[28.714000000000002,-45.454]},"basin":3,"timestamp":"2006-06-12T01:42:00.000Z","date_updated_argovis":"2023-01-24T21:28:33.082Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_050.nc","date_updated":"2015-10-19T17:48:19.000Z"}],"cycle_number":50,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,74,85,96,105,115,125,135,145,155,166,176,185,195,205,215,225,235,245,255,265,275,284,295,305,315,326,335,345,355,365,375,385,395,405,415,425,435,445,454,464,475,485,495,512,537,562,588,613,638,664,687,712,737,762,788,813,837,863,888,914,938,962,987,1012,1037,1063,1088,1112,1137,1162,1187,1213,1238,1263,1287,1312,1339,1362,1387,1412,1437,1462,1487,1512,1538,1563,1588,1613,1637,1662,1688,1712,1737,1763,1787,1812,1837,1862,1887,1912,1938,1963,1983],[8.404,8.412,8.422,8.426,8.427,8.427,8.426,8.427,8.428,8.428,8.429,8.432,8.434,8.434,8.437,9.314,8.984,8.65,8.37,8.199,8.042,7.931,7.799,7.707,7.69,7.794,7.791,7.739,7.631,7.547,7.518,7.447,7.448,7.522,7.466,7.18,6.88,6.679,6.581,6.441,6.233,6.048,5.946,5.792,5.548,5.438,5.348,5.222,5.112,4.956,4.769,4.635,4.389,4.214,4.155,4.083,4.103,4.048,3.906,4.241,4.046,3.978,3.967,3.785,3.598,3.517,3.552,3.529,3.523,3.42,3.321,3.29,2.988,2.815,2.818,2.802,2.731,2.68,2.647,2.684,2.776,2.723,2.666,2.644,2.656,2.658,2.676,2.645,2.689,2.689,2.635,2.6,2.594,2.608,2.58,2.578,2.572,2.576,2.576,2.592,2.586,2.59,2.561,2.555,2.54,2.533,2.528,2.514,2.515],[34.187,34.187,34.187,34.188,34.188,34.188,34.188,34.188,34.188,34.188,34.188,34.188,34.188,34.188,34.194,34.551998,34.522999,34.477001,34.438999,34.417,34.395,34.382,34.366001,34.359001,34.366001,34.405998,34.424999,34.431,34.424,34.433998,34.448002,34.453999,34.473999,34.507,34.507999,34.472,34.436001,34.416,34.404999,34.393002,34.374001,34.360001,34.355999,34.346001,34.320999,34.313999,34.306,34.296001,34.286999,34.278,34.265999,34.263,34.251999,34.250999,34.263,34.278999,34.301998,34.313999,34.312,34.381001,34.373001,34.387001,34.41,34.403,34.397999,34.407001,34.433998,34.445,34.467999,34.466999,34.472,34.487,34.453999,34.445,34.463001,34.476002,34.485001,34.492001,34.501999,34.521,34.550999,34.556999,34.561001,34.568001,34.580002,34.591999,34.604,34.609001,34.626999,34.638,34.640999,34.645,34.653,34.665001,34.672001,34.68,34.688999,34.696999,34.705002,34.716,34.722,34.73,34.730999,34.736,34.740002,34.743999,34.749001,34.754002,34.757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_049","geolocation":{"type":"Point","coordinates":[28.675,-44.735]},"basin":3,"timestamp":"2006-06-02T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:28:31.196Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_049.nc","date_updated":"2015-10-19T17:48:18.000Z"}],"cycle_number":49,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,45,54,65,75,85,95,105,115,126,135,145,155,165,175,185,196,205,215,225,235,245,256,264,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,456,466,475,484,495,513,538,562,587,613,638,664,688,712,737,763,788,813,838,863,888,913,937,962,987,1012,1037,1062,1088,1113,1138,1162,1187,1212,1237,1262,1287,1312,1338,1363,1387,1412,1437,1462,1487,1512,1538,1564,1587,1612,1637,1662,1687,1712,1737,1763,1787,1812,1838,1863,1888,1913,1937,1963,1981],[9.366,9.371,9.37,9.371,9.367,9.352,9.348,9.298,9.247,9.141,8.603,8.29,8.462,9.124,9.062,8.769,8.291,7.927,7.856,7.802,7.775,7.815,7.714,7.474,7.142,7.053,7.055,7.034,6.91,7.072,7.361,7.464,7.227,6.747,6.373,6.483,6.516,6.474,6.399,6.377,6.322,5.872,5.484,5.37,5.251,5.293,5.313,5.461,5.437,5.344,5.262,4.781,4.402,4.426,4.398,4.4,4.213,4.349,4.306,4.082,3.855,3.73,3.702,3.66,3.567,3.573,3.534,3.501,3.311,2.908,2.817,2.83,2.8,2.789,2.763,2.75,2.721,2.683,2.65,2.64,2.653,2.645,2.651,2.652,2.649,2.652,2.651,2.648,2.647,2.659,2.662,2.592,2.59,2.59,2.585,2.586,2.587,2.57,2.559,2.555,2.552,2.544,2.534,2.519,2.517,2.507,2.507,2.488,2.469],[34.289001,34.289001,34.287998,34.287998,34.285999,34.284,34.283001,34.276001,34.269001,34.251999,34.181,34.171001,34.304001,34.514,34.514999,34.473,34.412998,34.368,34.373001,34.376999,34.384998,34.404999,34.397999,34.367001,34.330002,34.326,34.355,34.362999,34.368999,34.421001,34.495998,34.52,34.484001,34.410999,34.367001,34.396,34.411999,34.418999,34.418999,34.417,34.409,34.344002,34.293999,34.287998,34.285999,34.301998,34.318001,34.351002,34.355,34.355999,34.366001,34.313,34.282001,34.305,34.320999,34.347,34.344002,34.389999,34.403,34.387001,34.375999,34.376999,34.389,34.402,34.403999,34.424999,34.441002,34.458,34.445999,34.409,34.414001,34.436001,34.444,34.455002,34.467999,34.481998,34.495998,34.506001,34.514999,34.527,34.544998,34.556999,34.57,34.580002,34.59,34.602001,34.610001,34.618999,34.627998,34.639999,34.650002,34.648998,34.658001,34.667,34.674999,34.683998,34.692001,34.695999,34.701,34.709999,34.716999,34.721001,34.726002,34.730999,34.736,34.742001,34.75,34.752998,34.754002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_048","geolocation":{"type":"Point","coordinates":[28.729000000000003,-44.303000000000004]},"basin":3,"timestamp":"2006-05-23T01:49:00.000Z","date_updated_argovis":"2023-01-24T21:28:29.193Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_048.nc","date_updated":"2015-10-19T17:48:18.000Z"}],"cycle_number":48,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,64,75,85,95,105,115,125,135,145,155,165,175,185,196,205,215,225,235,244,255,265,275,286,296,305,315,325,335,345,355,365,374,385,396,405,415,425,435,445,455,466,475,485,495,512,537,563,587,612,637,663,688,713,738,763,788,813,838,862,888,912,937,963,988,1013,1038,1063,1088,1113,1138,1164,1188,1213,1237,1262,1287,1312,1337,1363,1387,1413,1438,1462,1487,1512,1538,1563,1589,1613,1638,1663,1687,1712,1738,1763,1787,1812,1837,1862,1887,1913,1938,1963,1986],[8.026,8.028,8.026,8.021,8.014,8.009,8.042,8.051,9.168,9.846,9.904,9.853,9.65,9.388,8.982,8.946,8.888,8.565,8.406,8.478,8.55,8.428,8.54,8.548,8.461,8.434,8.33,8.264,8.111,8.001,7.934,7.771,7.59,7.404,7.06,6.881,6.742,6.484,6.314,6.075,5.744,5.588,5.504,5.417,5.245,5.108,4.904,4.699,4.552,4.355,4.531,4.859,4.817,4.586,4.437,4.395,4.375,4.414,4.332,4.269,4.194,4.055,3.909,3.654,3.518,3.239,3.255,2.964,2.871,2.814,2.813,2.803,2.744,2.737,2.745,2.765,2.75,2.728,2.731,2.725,2.703,2.671,2.685,2.641,2.618,2.617,2.612,2.612,2.609,2.609,2.599,2.593,2.595,2.589,2.556,2.556,2.6,2.605,2.587,2.551,2.547,2.547,2.573,2.576,2.535,2.571,2.525,2.557,2.549],[33.945,33.945,33.945,33.945,33.945,33.950001,33.966,33.997002,34.32,34.535999,34.619999,34.638,34.618999,34.575001,34.519001,34.534,34.528,34.48,34.473,34.5,34.519001,34.508999,34.543999,34.557999,34.556,34.566002,34.563,34.57,34.558998,34.553001,34.544998,34.526001,34.513,34.493,34.456001,34.441002,34.425999,34.403999,34.393002,34.362999,34.321999,34.306999,34.306999,34.303001,34.289001,34.272999,34.249001,34.227001,34.214001,34.200001,34.25,34.324001,34.337002,34.324001,34.328999,34.339001,34.352001,34.376999,34.391998,34.404999,34.418999,34.424999,34.418999,34.401001,34.400002,34.389,34.408001,34.381001,34.380001,34.384998,34.401001,34.417999,34.428001,34.444,34.465,34.487999,34.500999,34.518002,34.535999,34.548,34.557999,34.566002,34.580002,34.584,34.59,34.598999,34.608002,34.619999,34.630001,34.639,34.647999,34.658001,34.668999,34.675999,34.681999,34.693001,34.709999,34.719002,34.723,34.723999,34.73,34.737,34.748001,34.752998,34.750999,34.764999,34.762001,34.772999,34.777]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_047","geolocation":{"type":"Point","coordinates":[28.794,-44.057]},"basin":3,"timestamp":"2006-05-13T01:49:00.000Z","date_updated_argovis":"2023-01-24T21:28:27.284Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_047.nc","date_updated":"2015-10-19T17:48:17.000Z"}],"cycle_number":47,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,24,35,46,55,65,76,85,95,105,115,125,135,145,155,165,175,185,194,205,215,225,235,244,255,265,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,475,485,495,512,537,563,588,613,637,663,688,712,737,762,787,812,838,863,888,914,937,962,987,1012,1037,1062,1088,1113,1138,1163,1187,1212,1237,1263,1288,1313,1338,1363,1387,1412,1437,1462,1487,1513,1538,1563,1588,1613,1638,1663,1687,1712,1739,1762,1787,1812,1838,1863,1887,1912,1938,1963,1985],[8.158,8.154,8.119,7.988,7.937,7.885,7.825,7.964,8.472,9.764,10.008,9.723,9.408,8.997,8.64,8.158,7.909,7.735,7.728,7.954,8.094,8.144,7.985,7.798,7.749,7.767,7.6,7.527,7.552,7.572,7.598,7.311,6.624,6.214,6.021,5.894,5.761,5.578,5.471,5.43,5.394,5.259,5.361,5.404,5.37,5.106,4.919,4.872,4.628,4.664,4.937,4.717,4.245,4.027,4.003,3.747,3.528,3.421,3.255,3.199,3.144,3.17,3.12,3.059,3.022,2.951,2.953,2.927,2.924,2.943,2.939,2.899,2.818,2.7,2.658,2.647,2.659,2.655,2.659,2.696,2.722,2.707,2.704,2.669,2.615,2.611,2.617,2.64,2.61,2.604,2.624,2.642,2.68,2.665,2.655,2.641,2.628,2.626,2.636,2.621,2.613,2.603,2.575,2.547,2.531,2.525,2.5,2.492,2.493],[33.910999,33.911999,33.921001,33.951,33.951,33.949001,33.946999,33.98,34.110001,34.519001,34.626999,34.594002,34.556,34.505001,34.460999,34.397999,34.362,34.341999,34.348,34.408001,34.450001,34.474998,34.459,34.439999,34.444,34.472,34.464001,34.470001,34.492001,34.508999,34.530998,34.493999,34.400002,34.347,34.327999,34.321999,34.313999,34.294998,34.287998,34.294998,34.301998,34.292999,34.317001,34.328999,34.334,34.303001,34.279999,34.277,34.25,34.269001,34.332001,34.32,34.265999,34.248001,34.266998,34.245998,34.237,34.245998,34.243999,34.252998,34.258999,34.286999,34.300999,34.313,34.324001,34.338001,34.354,34.368,34.390999,34.414001,34.431999,34.443001,34.449001,34.452,34.459,34.471001,34.488998,34.500999,34.513,34.534,34.555,34.568001,34.580002,34.585999,34.589001,34.603001,34.613998,34.627998,34.634998,34.641998,34.654999,34.668999,34.681999,34.688,34.696999,34.706001,34.713001,34.723,34.733002,34.736,34.741001,34.745998,34.747002,34.749001,34.754002,34.758999,34.759998,34.763,34.766998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_046","geolocation":{"type":"Point","coordinates":[28.079,-44.147000000000006]},"basin":3,"timestamp":"2006-05-03T01:49:00.000Z","date_updated_argovis":"2023-01-24T21:28:25.401Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_046.nc","date_updated":"2015-10-19T17:48:17.000Z"}],"cycle_number":46,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,76,85,95,105,115,125,135,145,155,166,175,185,195,205,215,225,235,246,255,265,275,284,295,305,315,325,335,345,356,366,376,385,395,405,414,424,435,445,456,465,475,485,495,513,538,562,587,613,638,663,688,713,738,762,787,812,838,862,887,913,939,963,987,1012,1037,1062,1087,1113,1138,1163,1188,1213,1237,1262,1287,1312,1339,1362,1387,1412,1437,1462,1487,1513,1538,1563,1588,1613,1638,1663,1687,1712,1737,1762,1788,1812,1837,1863,1887,1913,1937,1962,1979],[6.713,6.71,6.683,6.668,6.641,6.633,6.63,6.64,6.638,6.67,7.663,8.13,8.012,7.719,7.579,7.577,7.076,6.839,6.645,6.725,6.556,6.526,6.424,6.37,6.402,6.279,6.282,6.337,6.21,5.833,5.612,5.472,5.339,5.354,5.442,5.487,5.467,5.411,5.205,5.136,5.082,5.036,4.764,4.517,4.42,4.345,4.274,4.184,4.125,4.076,3.967,3.858,3.821,3.839,3.676,3.524,3.422,3.337,3.271,3.233,3.17,3.155,3.116,3.029,2.994,2.962,2.928,2.919,2.959,2.922,2.881,2.894,2.783,2.681,2.653,2.641,2.623,2.619,2.624,2.627,2.635,2.647,2.678,2.683,2.671,2.648,2.631,2.618,2.605,2.607,2.602,2.59,2.587,2.579,2.575,2.569,2.555,2.543,2.538,2.531,2.526,2.524,2.515,2.519,2.519,2.527,2.538,2.577,2.584],[33.752998,33.754002,33.754002,33.756001,33.755001,33.754002,33.754002,33.756001,33.757,33.799,34.146999,34.335999,34.362,34.330002,34.326,34.339001,34.264,34.238998,34.229,34.259998,34.244999,34.251999,34.249001,34.258999,34.277,34.285,34.305,34.331001,34.323002,34.273998,34.258999,34.249001,34.237,34.249001,34.272999,34.291,34.296001,34.292,34.266998,34.266998,34.27,34.275002,34.236,34.209999,34.202999,34.199001,34.195,34.191002,34.192001,34.195999,34.195999,34.195,34.205002,34.227001,34.223999,34.217999,34.222,34.229,34.243,34.264,34.279999,34.297001,34.308998,34.314999,34.332001,34.348999,34.367001,34.383999,34.407001,34.419998,34.432999,34.452999,34.451,34.451,34.459,34.473999,34.487999,34.504002,34.523998,34.542,34.553001,34.57,34.589001,34.603001,34.612999,34.619999,34.624001,34.631001,34.639,34.650002,34.657001,34.662998,34.669998,34.681999,34.688999,34.699001,34.702999,34.707001,34.714001,34.721001,34.727001,34.735001,34.741001,34.748001,34.755001,34.759998,34.766998,34.778999,34.783001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_045","geolocation":{"type":"Point","coordinates":[27.327,-44.731]},"basin":3,"timestamp":"2006-04-23T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:28:23.472Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_045.nc","date_updated":"2015-10-19T17:48:16.000Z"}],"cycle_number":45,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,115,126,135,145,155,165,176,185,195,204,215,225,234,245,255,265,275,285,295,305,315,325,336,345,355,365,375,385,395,405,414,425,435,445,456,465,475,485,495,513,538,563,588,612,637,663,687,712,737,762,787,812,837,863,888,913,939,962,987,1012,1037,1062,1088,1112,1137,1164,1187,1212,1238,1263,1288,1312,1338,1362,1387,1413,1438,1463,1488,1513,1537,1563,1587,1613,1638,1662,1688,1713,1738,1762,1788,1812,1838,1863,1888,1913,1937,1962,1985],[6.983,6.946,6.927,6.841,6.765,6.731,6.719,6.709,6.665,6.658,6.503,6.254,6.338,6.17,6.119,6.196,5.957,6.013,5.98,5.989,5.96,6.089,6.029,5.815,5.787,5.681,5.44,5.153,4.958,4.898,4.929,4.951,4.832,4.885,4.942,4.857,4.865,4.742,4.579,4.539,4.56,4.504,4.368,4.233,4.096,4.036,3.971,3.928,3.948,3.931,3.604,3.553,3.459,3.365,3.327,3.272,3.242,3.206,3.176,3.165,3.089,3.028,2.974,2.888,2.799,2.791,2.752,2.715,2.697,2.713,2.67,2.665,2.701,2.686,2.649,2.628,2.612,2.618,2.631,2.648,2.637,2.631,2.639,2.623,2.606,2.627,2.639,2.639,2.64,2.642,2.639,2.626,2.621,2.616,2.61,2.603,2.598,2.589,2.582,2.568,2.514,2.492,2.479,2.5,2.506,2.5,2.487,2.468,2.457],[33.762001,33.758999,33.756001,33.747002,33.740002,33.737,33.737,33.737999,33.736,33.737999,33.938999,34.061001,34.118,34.122002,34.144001,34.181999,34.176998,34.209999,34.223999,34.243999,34.255001,34.294998,34.290001,34.271,34.278,34.271999,34.241001,34.213001,34.195,34.195,34.208,34.219002,34.216,34.233002,34.247002,34.242001,34.250999,34.237,34.223,34.223999,34.235001,34.230999,34.221001,34.209999,34.201,34.200001,34.194,34.194,34.203999,34.212002,34.185001,34.205002,34.214001,34.215,34.227001,34.238998,34.252998,34.266998,34.279999,34.299,34.303001,34.310001,34.327999,34.338001,34.341999,34.361,34.369999,34.382,34.396999,34.418999,34.431,34.443001,34.460999,34.473,34.485001,34.499001,34.508999,34.527,34.544998,34.561001,34.574001,34.585999,34.601002,34.611,34.618,34.631001,34.643002,34.653999,34.664001,34.673,34.683998,34.695,34.703999,34.709,34.713001,34.717999,34.721001,34.726002,34.729,34.733002,34.734001,34.737999,34.743,34.752998,34.762001,34.765999,34.769001,34.772999,34.775002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_044","geolocation":{"type":"Point","coordinates":[25.811,-45.138000000000005]},"basin":3,"timestamp":"2006-04-13T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:28:21.571Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_044.nc","date_updated":"2015-10-19T17:48:15.000Z"}],"cycle_number":44,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,66,75,85,95,105,115,125,135,145,155,166,176,185,195,205,215,225,235,245,254,265,275,285,295,306,315,325,335,345,355,365,375,385,395,405,415,425,435,446,455,465,475,485,496,513,538,563,588,613,638,663,687,713,738,763,787,813,838,862,887,914,937,962,987,1012,1037,1062,1087,1114,1137,1163,1187,1212,1237,1262,1287,1313,1338,1363,1388,1412,1437,1462,1488,1512,1538,1563,1587,1612,1638,1662,1688,1713,1738,1763,1787,1813,1838,1863,1888,1912,1938,1962,1981],[6.729,6.696,6.655,6.635,6.621,6.609,6.6,6.533,6.274,6.104,6.335,6.146,5.966,5.785,5.686,5.603,5.558,5.574,5.6,5.62,5.615,5.503,5.39,5.313,5.13,5.244,5.398,5.271,5.046,4.99,4.895,4.784,4.69,4.606,4.502,4.437,4.546,4.442,4.346,4.293,4.278,4.281,4.306,4.408,4.336,4.308,4.21,4.074,3.956,3.891,3.805,3.519,3.381,3.32,3.279,3.26,3.216,3.18,3.088,3.062,3.072,2.977,2.922,2.974,2.901,2.835,2.808,2.802,2.894,2.907,2.776,2.633,2.723,2.734,2.637,2.62,2.61,2.609,2.611,2.625,2.637,2.649,2.648,2.637,2.611,2.607,2.646,2.652,2.637,2.637,2.625,2.615,2.603,2.603,2.612,2.614,2.605,2.601,2.641,2.639,2.643,2.641,2.633,2.605,2.558,2.508,2.497,2.53,2.519],[33.705002,33.702999,33.700001,33.698002,33.698002,33.698002,33.698002,33.695999,33.698002,33.785999,33.999001,34.066002,34.061001,34.063999,34.07,34.081001,34.094002,34.116001,34.143002,34.173,34.189999,34.189999,34.192001,34.188,34.182999,34.213001,34.254002,34.243999,34.223999,34.223999,34.217999,34.209,34.202999,34.195999,34.187,34.187,34.209999,34.201,34.195999,34.195999,34.201,34.208,34.216,34.237999,34.236,34.241001,34.233002,34.221001,34.215,34.216999,34.222,34.202,34.205002,34.223,34.242001,34.258999,34.275002,34.287998,34.292999,34.299999,34.32,34.321999,34.337002,34.359001,34.367001,34.382999,34.400002,34.417,34.443001,34.462002,34.459999,34.457001,34.485001,34.505001,34.507999,34.518002,34.528999,34.541,34.556,34.568001,34.582001,34.598,34.608002,34.618999,34.625999,34.633999,34.648998,34.66,34.667999,34.679001,34.689999,34.698002,34.706001,34.714001,34.723999,34.73,34.735001,34.744999,34.758999,34.766998,34.773998,34.778,34.780998,34.779999,34.777,34.775002,34.778999,34.790001,34.792]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_043","geolocation":{"type":"Point","coordinates":[24.368000000000002,-45.703]},"basin":3,"timestamp":"2006-04-03T01:56:00.000Z","date_updated_argovis":"2023-01-24T21:28:19.677Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_043.nc","date_updated":"2015-10-19T17:48:15.000Z"}],"cycle_number":43,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,74,85,95,105,115,125,135,145,155,166,175,185,195,205,215,225,235,245,255,265,275,285,294,305,315,324,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,538,562,587,613,637,663,687,712,738,762,787,812,838,862,888,914,937,962,988,1013,1037,1064,1088,1112,1137,1162,1188,1213,1238,1262,1287,1312,1339,1362,1387,1413,1438,1463,1488,1513,1537,1562,1588,1613,1638,1663,1688,1712,1738,1763,1787,1813,1838,1863,1888,1913,1937,1963,1984],[6.948,6.948,6.951,6.953,6.954,6.952,6.949,6.945,7.173,7.279,6.767,6.274,6.151,6.062,5.941,5.711,5.742,5.796,5.817,5.972,6.009,6.081,6.048,5.86,5.63,5.5,5.295,5.122,5.037,4.803,4.685,4.719,4.687,4.557,4.424,4.383,4.37,4.323,4.237,4.212,4.226,4.145,4.058,3.968,3.915,3.869,3.806,3.771,3.713,3.629,3.564,3.504,3.47,3.374,3.325,3.209,3.17,3.167,3.108,3.053,2.963,2.916,2.917,2.919,2.981,2.982,2.968,3,2.944,2.912,2.932,2.917,2.943,2.854,2.781,2.652,2.618,2.626,2.625,2.623,2.622,2.625,2.622,2.611,2.626,2.645,2.624,2.603,2.605,2.595,2.603,2.615,2.613,2.605,2.581,2.544,2.536,2.525,2.515,2.512,2.505,2.519,2.521,2.495,2.494,2.485,2.482,2.457,2.447],[33.733002,33.733002,33.731998,33.731998,33.733002,33.731998,33.733002,33.741001,33.895,34.126999,34.132,34.102001,34.105999,34.113998,34.115002,34.104,34.129002,34.154999,34.182999,34.236,34.258999,34.292,34.305,34.285999,34.264,34.256001,34.237,34.23,34.221001,34.201,34.192001,34.205002,34.203999,34.193001,34.183998,34.185001,34.189999,34.188,34.182999,34.186001,34.193001,34.185001,34.178001,34.174999,34.174999,34.174,34.175999,34.178001,34.18,34.185001,34.195999,34.212002,34.223999,34.234001,34.248001,34.258999,34.273998,34.293999,34.300999,34.311001,34.318001,34.326,34.341,34.356998,34.389,34.405998,34.423,34.456001,34.469002,34.480999,34.495998,34.508999,34.528,34.526001,34.533001,34.527,34.533001,34.547001,34.557999,34.567001,34.580002,34.594002,34.606998,34.617001,34.632,34.646999,34.652,34.658001,34.664001,34.667999,34.675999,34.685001,34.692001,34.698002,34.700001,34.706001,34.715,34.721001,34.73,34.735001,34.740002,34.75,34.756001,34.757999,34.763,34.768002,34.771999,34.771999,34.773998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_042","geolocation":{"type":"Point","coordinates":[23.28,-45.976]},"basin":3,"timestamp":"2006-03-24T01:50:00.000Z","date_updated_argovis":"2023-01-24T21:28:17.688Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_042.nc","date_updated":"2015-10-19T17:48:14.000Z"}],"cycle_number":42,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,96,106,115,125,135,145,155,165,175,185,195,206,215,225,236,245,254,265,276,285,295,305,315,325,335,344,355,366,375,385,395,405,415,425,435,445,455,465,476,485,495,512,538,563,588,613,639,662,687,712,738,763,788,812,838,863,887,913,937,962,987,1012,1038,1063,1088,1112,1139,1162,1187,1213,1237,1262,1288,1313,1338,1362,1388,1412,1437,1463,1488,1512,1537,1562,1587,1612,1637,1662,1687,1712,1738,1763,1788,1812,1837,1863,1888,1912,1938,1963,1984],[6.635,6.624,6.601,6.573,6.542,6.534,6.524,6.509,6.493,6.241,6.081,5.773,5.531,5.435,5.264,5.225,5.222,5.148,5.155,5.322,5.313,5.464,5.685,5.733,5.962,5.611,5.108,4.975,4.726,4.453,4.323,4.237,4.169,4.107,4.057,4.028,3.997,3.944,3.897,3.859,3.849,3.825,3.802,3.771,3.724,3.684,3.662,3.615,3.57,3.465,3.505,3.466,3.377,3.27,3.171,3.176,3.033,2.984,3.005,2.945,2.932,2.94,2.94,2.917,2.911,2.849,2.876,2.998,2.989,2.976,2.973,2.95,2.92,2.92,2.867,2.829,2.757,2.682,2.7,2.737,2.709,2.619,2.608,2.61,2.588,2.567,2.556,2.572,2.587,2.57,2.56,2.565,2.568,2.57,2.564,2.56,2.553,2.547,2.542,2.531,2.517,2.503,2.494,2.479,2.459,2.422,2.409,2.395,2.384],[33.713001,33.713001,33.710999,33.709,33.708,33.710999,33.716999,33.723999,33.741001,33.875,34.022999,34.042,34.044998,34.047001,34.042999,34.053001,34.068001,34.071999,34.101002,34.152,34.172001,34.223,34.265999,34.286999,34.338001,34.292999,34.235001,34.220001,34.191002,34.164001,34.151001,34.146999,34.145,34.145,34.144001,34.148998,34.153999,34.153999,34.157001,34.161999,34.168999,34.171001,34.173,34.172001,34.172001,34.172001,34.174,34.179001,34.181,34.182999,34.207001,34.222,34.230999,34.237,34.243999,34.264,34.258999,34.268002,34.285999,34.298,34.312,34.331001,34.352001,34.369999,34.393002,34.403,34.419998,34.455002,34.466999,34.478001,34.491001,34.502998,34.508999,34.528,34.536999,34.549,34.555,34.558998,34.577,34.595001,34.601002,34.597,34.605999,34.617001,34.626999,34.633999,34.641998,34.654999,34.665001,34.668999,34.675999,34.688,34.698002,34.705002,34.710999,34.716999,34.723999,34.728001,34.733002,34.736,34.738998,34.744999,34.749001,34.754002,34.755001,34.756001,34.758999,34.761002,34.762001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_041","geolocation":{"type":"Point","coordinates":[21.959,-45.652]},"basin":3,"timestamp":"2006-03-14T01:51:00.000Z","date_updated_argovis":"2023-01-24T21:28:15.784Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_041.nc","date_updated":"2015-10-19T17:48:14.000Z"}],"cycle_number":41,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,85,95,106,115,125,135,145,155,164,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,538,562,587,613,637,663,688,712,737,763,787,812,837,862,887,914,937,962,987,1013,1038,1063,1089,1112,1137,1163,1187,1212,1237,1262,1287,1312,1338,1363,1387,1412,1438,1463,1488,1513,1537,1563,1587,1612,1638,1663,1688,1712,1738,1763,1788,1813,1838,1862,1887,1912,1937,1962,1982],[6.848,6.847,6.841,6.845,6.844,6.842,6.843,6.85,6.815,6.482,6.071,5.75,5.531,5.524,5.415,5.313,5.266,5.365,5.517,5.491,5.298,5.177,5.127,5.022,5.013,4.777,4.652,4.598,4.608,4.518,4.472,4.348,4.294,4.284,4.291,4.271,4.183,4.082,4.064,4.034,3.965,3.998,4.055,4.304,4.409,4.432,4.399,4.309,4.214,4.011,3.741,3.547,3.367,3.233,3.134,3.074,3.051,3.032,2.972,3.048,3.015,2.972,2.964,3.006,2.935,2.892,2.855,2.88,2.994,2.978,2.939,2.95,2.924,2.915,2.939,2.934,2.871,2.776,2.67,2.652,2.76,2.769,2.729,2.66,2.607,2.615,2.591,2.589,2.611,2.602,2.59,2.586,2.573,2.543,2.535,2.528,2.521,2.514,2.507,2.497,2.489,2.477,2.46,2.452,2.45,2.439,2.453,2.434,2.441],[33.716999,33.716999,33.716999,33.716999,33.716999,33.716,33.716999,33.720001,33.814999,34.037998,34.057999,34.048,34.037998,34.051998,34.063999,34.066002,34.077999,34.119999,34.171001,34.176998,34.167999,34.174999,34.182999,34.183998,34.193001,34.174999,34.167999,34.169998,34.179001,34.174999,34.178001,34.168999,34.171001,34.174999,34.181,34.181,34.173,34.167,34.167999,34.169998,34.167,34.179001,34.193001,34.243999,34.268002,34.278,34.279999,34.271999,34.264,34.244999,34.223999,34.212002,34.202999,34.202,34.208,34.224998,34.245998,34.265999,34.278,34.304001,34.319,34.326,34.339001,34.362,34.368,34.377998,34.393002,34.424,34.465,34.478001,34.486,34.504002,34.514,34.523998,34.542999,34.555,34.558998,34.556999,34.556999,34.566002,34.595001,34.609001,34.612999,34.613998,34.618,34.630001,34.637001,34.647999,34.664001,34.672001,34.679001,34.686001,34.694,34.696999,34.701,34.703999,34.710999,34.716999,34.723999,34.729,34.733002,34.736,34.737999,34.741001,34.747002,34.752998,34.761002,34.761002,34.766998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_040","geolocation":{"type":"Point","coordinates":[20.839000000000002,-45.968]},"basin":3,"timestamp":"2006-03-04T01:51:00.000Z","date_updated_argovis":"2023-01-24T21:28:13.805Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_040.nc","date_updated":"2015-10-19T17:48:13.000Z"}],"cycle_number":40,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,66,75,85,95,105,115,124,135,145,156,165,175,185,195,205,215,225,235,245,255,266,274,285,295,304,315,326,334,345,355,364,376,385,395,405,415,425,435,445,455,465,475,484,495,513,538,563,588,613,637,662,688,712,737,762,787,812,838,863,888,913,938,962,987,1012,1037,1062,1089,1112,1137,1162,1187,1212,1237,1262,1287,1314,1337,1362,1387,1412,1437,1462,1487,1512,1537,1564,1587,1612,1638,1663,1688,1713,1738,1764,1788,1812,1837,1863,1887,1912,1937,1962,1989,2001],[7.624,7.625,7.625,7.626,7.627,7.628,7.634,7.638,7.641,7.591,7.197,6.588,6.371,6.283,6.148,5.974,5.812,5.648,5.588,5.588,5.531,5.583,5.602,5.777,5.427,5.384,5.296,5.018,4.803,4.664,4.588,4.512,4.467,4.394,4.374,4.361,4.314,4.251,4.189,4.171,4.156,4.124,4.088,4.135,4.295,4.371,4.375,4.358,4.373,4.341,4.109,3.633,3.476,3.383,3.274,3.195,3.191,3.149,3.061,3.026,3.002,3.073,2.978,3.03,3.085,3.017,2.871,2.853,2.874,2.859,2.884,2.82,2.824,2.797,2.827,2.927,2.875,2.868,2.784,2.71,2.711,2.715,2.727,2.726,2.704,2.683,2.671,2.68,2.705,2.695,2.687,2.629,2.593,2.605,2.613,2.609,2.588,2.569,2.565,2.566,2.561,2.558,2.536,2.525,2.509,2.493,2.476,2.466,2.445,2.412],[33.787998,33.789001,33.787998,33.787998,33.787998,33.787998,33.790001,33.791,33.791,33.849998,34.032001,34.032001,34.048,34.077999,34.098,34.105999,34.111,34.105,34.113998,34.129002,34.144001,34.174,34.195999,34.244999,34.209999,34.223,34.224998,34.193001,34.174,34.167999,34.167999,34.162998,34.164001,34.161999,34.165001,34.173,34.171001,34.167999,34.167999,34.175999,34.182999,34.181999,34.186001,34.201,34.231998,34.252998,34.257999,34.261002,34.271999,34.278,34.257999,34.206001,34.201,34.209,34.213001,34.219002,34.235001,34.247002,34.251999,34.265999,34.282001,34.310001,34.317001,34.341,34.368,34.375,34.375,34.389999,34.41,34.426998,34.445,34.453999,34.473999,34.480999,34.500999,34.529999,34.539001,34.554001,34.558998,34.563999,34.575001,34.583,34.594002,34.605,34.610001,34.618999,34.629002,34.644001,34.654999,34.666,34.673,34.673,34.675999,34.687,34.695,34.701,34.703999,34.706001,34.712002,34.719002,34.723999,34.730999,34.734001,34.737999,34.743999,34.749001,34.752998,34.757,34.758999,34.757]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_039","geolocation":{"type":"Point","coordinates":[19.476000000000003,-47.019000000000005]},"basin":1,"timestamp":"2006-02-22T01:45:00.000Z","date_updated_argovis":"2023-01-24T21:28:11.898Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_039.nc","date_updated":"2015-10-19T17:48:13.000Z"}],"cycle_number":39,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,44,55,66,75,86,94,105,116,125,135,145,155,165,175,185,195,205,214,225,235,245,255,265,275,285,295,305,315,326,334,345,355,365,375,385,395,405,415,425,435,445,455,465,474,484,495,513,537,562,588,612,637,662,687,712,737,763,788,812,837,863,887,912,938,963,988,1013,1037,1062,1088,1113,1137,1162,1188,1213,1238,1263,1288,1313,1337,1362,1388,1413,1437,1462,1487,1512,1537,1563,1588,1613,1638,1663,1688,1713,1738,1762,1787,1812,1837,1863,1888,1913,1938,1963,1984],[8.656,8.716,8.772,8.967,9.182,9.37,9.51,9.525,9.503,9.295,8.84,7.407,6.601,6.141,5.585,5.405,5.401,5.29,5.217,5.211,5.163,5.156,5.164,5.102,4.857,4.797,4.751,4.676,4.556,4.492,4.446,4.342,4.243,4.147,4.088,4.029,3.918,3.856,3.81,3.765,3.742,3.725,3.676,3.599,3.584,3.542,3.53,3.508,3.491,3.445,3.376,3.331,3.329,3.184,3.236,3.468,3.138,3.034,2.959,2.887,2.864,2.822,2.791,2.779,2.769,2.736,2.762,2.84,2.811,2.872,2.798,2.772,2.762,2.862,2.887,2.72,2.718,2.698,2.69,2.684,2.673,2.67,2.665,2.657,2.652,2.647,2.641,2.636,2.627,2.609,2.607,2.622,2.629,2.613,2.583,2.566,2.55,2.527,2.509,2.502,2.492,2.478,2.468,2.455,2.446,2.437,2.42,2.403,2.389],[34.139,34.155998,34.171001,34.228001,34.283001,34.333,34.369999,34.375999,34.372002,34.335999,34.257999,34.057999,34.037998,34.058998,34.034,34.048,34.071999,34.071999,34.077,34.09,34.102001,34.126999,34.153999,34.165001,34.153999,34.16,34.165001,34.167,34.165001,34.161999,34.159,34.151001,34.147999,34.146,34.144001,34.141998,34.141998,34.140999,34.143002,34.144001,34.146,34.147999,34.151001,34.152,34.155998,34.158001,34.164001,34.165001,34.172001,34.18,34.188999,34.202999,34.223,34.221001,34.251999,34.310001,34.289001,34.298,34.303001,34.313,34.325001,34.342999,34.354,34.367001,34.384998,34.397999,34.418999,34.446999,34.460999,34.487,34.492001,34.500999,34.518002,34.553001,34.57,34.557999,34.573002,34.581001,34.592999,34.603001,34.611,34.618999,34.625999,34.638,34.648998,34.660999,34.672001,34.681999,34.691002,34.694,34.698002,34.707001,34.715,34.719002,34.723999,34.728001,34.736,34.738998,34.744999,34.747002,34.75,34.754002,34.756001,34.757999,34.759998,34.762001,34.764,34.766998,34.769001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_038","geolocation":{"type":"Point","coordinates":[18.146,-46.343]},"basin":1,"timestamp":"2006-02-12T01:52:00.000Z","date_updated_argovis":"2023-01-24T21:28:09.903Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_038.nc","date_updated":"2015-10-19T17:48:12.000Z"}],"cycle_number":38,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,54,65,76,85,95,105,115,125,135,145,155,165,175,185,195,205,216,226,235,244,255,266,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,562,587,612,638,662,688,712,737,762,787,812,838,862,887,913,937,962,988,1012,1037,1063,1089,1112,1137,1162,1187,1212,1237,1262,1288,1313,1338,1362,1387,1412,1437,1463,1488,1513,1538,1563,1588,1613,1638,1662,1687,1713,1738,1764,1787,1812,1838,1863,1887,1914,1937,1962,1984],[8.11,8.124,8.157,8.173,8.565,8.74,8.606,9.039,10.127,10.5,9.108,7.601,6.309,5.859,5.695,5.497,5.333,5.248,5.162,5.057,5.01,5.01,5.015,4.946,4.912,4.848,4.756,4.658,4.575,4.502,4.465,4.398,4.351,4.296,4.23,4.121,4.075,4.031,3.991,3.93,3.878,3.788,3.692,3.641,3.599,3.565,3.542,3.553,3.53,3.491,3.409,3.379,3.296,3.172,3.141,3.134,3.14,3.191,3.084,3.025,2.929,2.899,3.082,3.094,3.049,3.124,3.179,3.129,2.988,2.872,2.86,2.92,2.982,2.932,2.956,2.832,2.811,2.837,2.783,2.681,2.709,2.737,2.742,2.73,2.717,2.716,2.71,2.705,2.703,2.693,2.681,2.667,2.661,2.66,2.66,2.649,2.65,2.643,2.63,2.615,2.602,2.6,2.556,2.52,2.498,2.494,2.489,2.469,2.433],[33.901001,33.911999,33.958,33.987,34.089001,34.133999,34.126999,34.244999,34.486,34.585999,34.321999,34.088001,33.963001,33.988998,34.008999,34.007,34.007,34.019001,34.027,34.039001,34.064999,34.085999,34.103001,34.118,34.132,34.146,34.152,34.151001,34.148998,34.147999,34.147999,34.148998,34.147999,34.147999,34.146,34.146999,34.147999,34.147999,34.146999,34.146999,34.146999,34.144001,34.139999,34.139,34.138,34.140999,34.144001,34.157001,34.164001,34.168999,34.175999,34.191002,34.200001,34.209999,34.223999,34.243999,34.263,34.290001,34.296001,34.311001,34.318001,34.330002,34.374001,34.389999,34.401001,34.432999,34.464001,34.478001,34.472,34.469002,34.478001,34.500999,34.529999,34.542,34.563999,34.558998,34.569,34.583,34.589001,34.582001,34.602001,34.624001,34.638,34.647999,34.659,34.667,34.674999,34.682999,34.688,34.695999,34.703999,34.709999,34.716999,34.724998,34.731998,34.737,34.742001,34.750999,34.754002,34.758999,34.762001,34.761002,34.756001,34.757,34.761002,34.763,34.764999,34.765999,34.768002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_037","geolocation":{"type":"Point","coordinates":[16.723000000000003,-45.931000000000004]},"basin":1,"timestamp":"2006-02-02T01:52:00.000Z","date_updated_argovis":"2023-01-24T21:28:08.073Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_037.nc","date_updated":"2015-10-19T17:48:11.000Z"}],"cycle_number":37,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,176,185,195,205,215,225,236,245,255,265,276,285,296,306,315,325,335,345,354,365,375,386,395,405,415,425,435,445,456,465,475,484,495,513,537,562,589,612,637,662,688,712,737,762,788,812,837,863,887,913,938,963,988,1012,1037,1062,1089,1113,1137,1162,1187,1212,1237,1264,1287,1313,1337,1362,1387,1413,1438,1462,1488,1514,1538,1562,1587,1612,1638,1663,1687,1712,1738,1762,1787,1812,1838,1863,1887,1912,1938,1963],[8.029,8.147,8.389,8.546,9.413,9.857,10.091,10.269,10.214,9.256,8.191,8.058,8.125,7.696,7.065,7.147,7.375,7.108,7.21,7.005,6.672,6.523,6.317,5.722,5.471,5.319,5.116,5.038,4.785,4.681,4.596,4.505,4.433,4.334,4.292,4.204,4.131,4.088,4.05,4.015,4.014,3.939,3.869,3.855,3.95,3.968,4.086,4.531,4.562,4.456,4.727,4.594,4.1,3.695,3.627,3.569,3.404,3.241,3.051,2.909,2.887,2.891,2.852,2.822,2.796,2.771,2.751,2.743,2.731,2.727,2.759,2.888,2.87,2.945,2.91,2.827,2.811,2.803,2.824,2.832,2.806,2.791,2.785,2.771,2.697,2.667,2.657,2.638,2.635,2.615,2.648,2.621,2.579,2.572,2.566,2.544,2.52,2.514,2.501,2.496,2.487,2.478,2.467,2.467,2.498,2.511,2.472,2.449],[33.959,33.986,34.036999,34.076,34.276001,34.386002,34.448002,34.514,34.514,34.395,34.221001,34.285,34.382999,34.344002,34.269001,34.321999,34.379002,34.353001,34.384998,34.362999,34.324001,34.313,34.292999,34.227001,34.213001,34.207001,34.200001,34.198002,34.18,34.173,34.167,34.160999,34.158001,34.153999,34.155998,34.150002,34.150002,34.152,34.153999,34.154999,34.159,34.157001,34.16,34.168999,34.191002,34.200001,34.227001,34.305,34.319,34.314999,34.382,34.384998,34.334,34.297001,34.304001,34.311001,34.305,34.306999,34.307999,34.304001,34.314999,34.332001,34.342999,34.353001,34.368,34.387001,34.398998,34.415001,34.428001,34.444,34.465,34.497002,34.513,34.537998,34.550999,34.555,34.571999,34.584999,34.598999,34.612999,34.615002,34.618,34.625999,34.633999,34.637001,34.646,34.655998,34.665001,34.678001,34.68,34.694,34.694,34.694,34.698002,34.706001,34.712002,34.716999,34.719002,34.723999,34.726002,34.73,34.733002,34.738998,34.743999,34.755001,34.763,34.762001,34.764]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_036","geolocation":{"type":"Point","coordinates":[17.14,-45.509]},"basin":1,"timestamp":"2006-01-23T01:58:00.000Z","date_updated_argovis":"2023-01-24T21:28:06.097Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_036.nc","date_updated":"2015-10-19T17:48:11.000Z"}],"cycle_number":36,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,46,55,65,75,85,95,105,115,125,135,145,155,165,175,186,195,205,215,225,234,245,255,265,275,285,294,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,512,537,563,588,612,638,664,687,713,738,762,787,812,837,863,888,912,937,963,987,1012,1037,1062,1087,1112,1138,1163,1188,1212,1238,1263,1287,1312,1337,1364,1388,1413,1437,1462,1488,1512,1537,1563,1588,1612,1637,1662,1687,1712,1738,1762,1787,1812,1838,1863,1888,1912,1937,1963,1988,2004],[10.596,10.602,10.605,10.605,10.623,10.64,10.649,10.658,10.645,10.278,9.87,9.692,9.59,9.575,9.18,8.689,8.199,8.194,8.079,7.922,7.898,7.95,7.899,7.938,7.874,7.882,7.787,7.674,7.521,7.489,7.296,7.149,7.088,6.969,6.789,6.519,6.504,6.083,5.699,5.642,5.28,5.41,5.463,5.193,4.845,4.844,4.786,4.628,4.506,4.317,4.17,4.128,3.93,3.894,3.657,3.6,3.691,3.631,3.379,3.255,3.149,2.988,2.968,2.928,2.961,2.971,2.944,2.994,3.003,3.042,2.913,2.984,2.985,2.976,2.926,2.949,2.938,2.869,2.836,2.839,2.85,2.803,2.765,2.77,2.763,2.762,2.742,2.742,2.751,2.746,2.727,2.698,2.682,2.664,2.645,2.642,2.637,2.626,2.613,2.623,2.632,2.634,2.628,2.625,2.621,2.619,2.61,2.604,2.588,2.58],[34.502998,34.505001,34.506001,34.505001,34.511002,34.514,34.518002,34.522999,34.553001,34.578999,34.556999,34.554001,34.577999,34.604,34.546001,34.472,34.407001,34.424,34.418999,34.402,34.418999,34.442001,34.445,34.466,34.474998,34.495998,34.493,34.491001,34.483002,34.494999,34.486,34.486,34.490002,34.486,34.467999,34.436001,34.451,34.384998,34.337002,34.338001,34.294998,34.325001,34.341,34.299999,34.258999,34.266998,34.265999,34.254002,34.248001,34.237,34.241001,34.255001,34.250999,34.276001,34.271,34.287998,34.321999,34.338001,34.319,34.319,34.32,34.314999,34.327999,34.342999,34.375,34.395,34.403999,34.433998,34.456001,34.481998,34.474998,34.499001,34.514,34.523998,34.528,34.544998,34.554001,34.560001,34.569,34.577999,34.591,34.599998,34.605999,34.620998,34.631001,34.640999,34.646,34.657001,34.667999,34.678001,34.685001,34.686001,34.689999,34.696999,34.709,34.721001,34.734001,34.743999,34.754002,34.764999,34.77,34.775002,34.782001,34.783001,34.783001,34.785999,34.787998,34.789001,34.793999,34.796001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_035","geolocation":{"type":"Point","coordinates":[15.569,-45.167]},"basin":1,"timestamp":"2006-01-13T01:46:59.999Z","date_updated_argovis":"2023-01-24T21:28:04.264Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_035.nc","date_updated":"2015-10-19T17:48:10.000Z"}],"cycle_number":35,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,55,65,75,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,234,245,256,265,275,285,294,305,316,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,475,485,495,513,537,563,588,613,638,663,687,713,738,763,788,813,837,863,888,914,937,963,987,1012,1038,1063,1088,1112,1138,1163,1188,1212,1237,1262,1287,1313,1338,1362,1388,1413,1437,1462,1487,1513,1538,1564,1587,1612,1637,1662,1687,1712,1737,1764,1787,1812,1837,1862,1887,1912,1939,1962,1985],[10.216,10.544,10.39,10.39,10.472,10.419,10.237,10.322,9.881,9.767,9.505,9.122,8.732,8.538,8.222,7.962,7.809,7.902,7.818,7.761,7.569,7.456,7.449,7.297,7.25,7.315,7.302,7.055,6.778,6.607,6.615,6.544,6.5,6.413,6.176,6.024,5.796,5.748,6.097,6.348,6.267,6.135,5.952,5.828,5.743,5.612,5.518,5.382,5.295,5.242,5.031,4.859,4.615,3.818,3.384,3.52,3.473,3.597,3.199,3.06,2.986,3.137,3.061,2.949,2.857,2.856,3.174,3.275,3.105,3.064,2.835,2.774,2.81,2.866,2.849,2.792,2.758,2.754,2.797,2.838,2.836,2.853,2.846,2.886,2.845,2.794,2.793,2.787,2.757,2.737,2.744,2.736,2.73,2.738,2.737,2.739,2.736,2.722,2.71,2.71,2.706,2.674,2.659,2.659,2.63,2.604,2.595,2.554,2.532],[34.375,34.514999,34.505001,34.530998,34.550999,34.539001,34.502998,34.528999,34.479,34.505001,34.486,34.457001,34.437,34.423,34.391998,34.362999,34.356998,34.389,34.389,34.393002,34.377998,34.372002,34.391998,34.389999,34.400002,34.422001,34.429001,34.402,34.372002,34.368,34.390999,34.390999,34.389999,34.387001,34.363998,34.349998,34.325001,34.337002,34.419998,34.471001,34.466,34.456001,34.442001,34.433998,34.435001,34.428001,34.422001,34.405998,34.405998,34.417,34.412998,34.408001,34.389999,34.293999,34.259998,34.298,34.307999,34.346001,34.308998,34.312,34.32,34.359001,34.367001,34.365002,34.370998,34.389999,34.459,34.487,34.477001,34.487,34.477001,34.483002,34.5,34.522999,34.539001,34.543999,34.555,34.563,34.580002,34.599998,34.606998,34.618999,34.625999,34.645,34.653999,34.658001,34.666,34.676998,34.681999,34.691002,34.699001,34.701,34.710999,34.719002,34.727001,34.736,34.741001,34.75,34.756001,34.762001,34.765999,34.765999,34.769001,34.773998,34.773998,34.776001,34.782001,34.780998,34.778999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_034","geolocation":{"type":"Point","coordinates":[14.936,-44.234]},"basin":1,"timestamp":"2006-01-03T01:46:59.999Z","date_updated_argovis":"2023-01-24T21:28:02.291Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_034.nc","date_updated":"2015-10-19T17:48:09.000Z"}],"cycle_number":34,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,66,75,85,96,105,115,125,135,145,155,165,175,186,196,205,215,226,235,245,255,265,275,284,295,306,316,326,335,345,356,365,375,386,395,405,415,425,435,445,455,465,475,485,495,512,537,563,587,612,638,663,689,712,737,763,787,812,837,862,888,912,938,962,987,1012,1037,1062,1087,1114,1138,1163,1187,1212,1237,1262,1288,1313,1338,1362,1387,1412,1438,1463,1488,1512,1538,1563,1587,1613,1637,1662,1688,1713,1739,1762,1788,1812,1837,1863,1888,1913,1937,1962,1987],[11.422,11.423,11.417,11.209,9.779,8.91,8.888,8.702,8.708,8.569,8.326,8.023,7.9,7.964,7.351,7.446,7.685,7.49,7.542,7.609,7.789,8.031,7.889,7.854,7.745,7.21,6.749,6.578,6.255,5.995,5.735,5.639,5.522,5.423,5.379,5.262,5.077,5.011,4.9,4.767,4.683,4.626,4.518,4.426,4.35,4.259,4.157,4.092,4.006,3.869,3.776,3.669,3.569,3.513,3.464,3.399,3.256,3.229,3.18,3.157,3.167,3.129,3.07,3.178,3.108,3.049,3.216,3.364,3.544,3.475,3.358,3.279,3.168,3.041,3.021,3.075,3.039,2.946,2.997,2.817,2.871,2.95,2.939,2.886,2.84,2.816,2.828,2.807,2.775,2.756,2.759,2.729,2.736,2.698,2.686,2.703,2.704,2.684,2.674,2.679,2.665,2.618,2.592,2.594,2.615,2.572,2.579,2.528,2.498],[34.613998,34.612,34.611,34.587002,34.415001,34.285,34.290001,34.271999,34.325001,34.344002,34.365002,34.321999,34.324001,34.352001,34.264999,34.299,34.355999,34.326,34.358002,34.386002,34.439999,34.5,34.497002,34.509998,34.504002,34.426998,34.366001,34.354,34.319,34.294998,34.271999,34.264999,34.256001,34.248001,34.247002,34.241001,34.233002,34.231998,34.223999,34.213001,34.207001,34.205002,34.198002,34.195,34.193001,34.188999,34.185001,34.185001,34.18,34.183998,34.195,34.196999,34.194,34.202,34.209999,34.215,34.227001,34.242001,34.25,34.256001,34.269001,34.279999,34.292,34.339001,34.348999,34.362999,34.408001,34.446999,34.492001,34.5,34.497002,34.500999,34.502998,34.509998,34.525002,34.554001,34.558998,34.558998,34.578999,34.564999,34.585999,34.613998,34.620998,34.625999,34.626999,34.638,34.650002,34.657001,34.662998,34.671001,34.679001,34.683998,34.696999,34.700001,34.707001,34.717999,34.726002,34.73,34.737,34.743,34.747002,34.744999,34.744999,34.75,34.758999,34.756001,34.763,34.761002,34.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_033","geolocation":{"type":"Point","coordinates":[15.569,-43.276]},"basin":1,"timestamp":"2005-12-24T01:46:59.999Z","date_updated_argovis":"2023-01-24T21:28:00.310Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_033.nc","date_updated":"2015-10-19T17:48:09.000Z"}],"cycle_number":33,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,54,65,75,85,95,105,115,124,135,145,156,165,175,185,195,205,215,225,235,245,256,265,275,285,295,305,315,325,335,346,355,365,375,385,395,405,415,425,435,445,455,465,475,486,495,512,538,562,588,612,637,663,687,712,737,763,788,812,838,864,888,912,937,962,987,1013,1038,1063,1088,1113,1137,1163,1188,1213,1237,1262,1288,1313,1337,1363,1387,1412,1437,1463,1488,1513,1538,1562,1587,1612,1637,1662,1687,1712,1738,1763,1789,1813,1838,1863,1888,1913,1937,1962,1981],[14.385,14.384,14.391,14.365,14.285,14.268,14.268,14.045,13.49,12.793,12.352,12.154,11.892,11.734,11.456,11.287,11.076,10.779,10.605,10.39,10.087,9.853,9.637,9.44,9.174,8.906,8.727,8.591,8.391,8.258,8.087,8.055,8.005,7.837,7.681,7.38,7.107,6.916,6.678,6.528,6.283,6.181,6.076,5.983,5.882,5.699,5.622,5.625,5.593,5.6,5.533,5.385,5.213,4.974,4.86,4.626,4.472,4.336,4.258,3.999,3.881,3.952,3.915,3.912,3.433,3.27,3.34,3.389,3.408,3.35,3.291,3.244,3.116,3.136,3.057,2.997,2.879,2.88,2.775,2.752,2.803,2.787,2.768,2.768,2.709,2.714,2.698,2.74,2.734,2.728,2.748,2.73,2.713,2.69,2.677,2.676,2.668,2.652,2.624,2.62,2.627,2.601,2.564,2.55,2.554,2.561,2.567,2.519,2.496],[35.325001,35.325001,35.326,35.320999,35.310001,35.306999,35.306999,35.265999,35.192001,35.119999,35.084,35.073002,35.042,35.025002,35.004002,34.984001,34.955002,34.914001,34.894001,34.868,34.833,34.804001,34.778999,34.752998,34.720001,34.687,34.671001,34.657001,34.638,34.625999,34.616001,34.620998,34.625999,34.613998,34.595001,34.563,34.535,34.514999,34.492001,34.477001,34.455002,34.445999,34.438,34.437,34.422001,34.403999,34.403999,34.412998,34.417,34.431999,34.441002,34.435001,34.437,34.424999,34.443001,34.433998,34.43,34.426998,34.432999,34.414001,34.418999,34.449001,34.465,34.483002,34.429001,34.426998,34.458,34.486,34.507999,34.514999,34.522999,34.532001,34.525002,34.541,34.547001,34.553001,34.550999,34.567001,34.564999,34.577999,34.599998,34.610001,34.618,34.625,34.626999,34.636002,34.647999,34.666,34.674999,34.685001,34.700001,34.707001,34.710999,34.716,34.724998,34.734001,34.737999,34.742001,34.743999,34.750999,34.758999,34.759998,34.758999,34.759998,34.764999,34.771999,34.778,34.776001,34.775002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_032","geolocation":{"type":"Point","coordinates":[16.405,-43.112]},"basin":1,"timestamp":"2005-12-14T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:27:58.473Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_032.nc","date_updated":"2015-10-19T17:48:08.000Z"}],"cycle_number":32,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,36,45,55,65,75,85,95,105,115,125,135,145,155,165,175,184,195,206,215,225,235,245,255,266,276,285,295,305,315,325,335,345,355,366,375,385,395,405,415,426,434,445,456,465,475,486,495,513,538,564,587,612,638,663,687,713,738,763,788,813,837,862,887,912,937,963,988,1013,1038,1062,1089,1112,1138,1163,1188,1213,1237,1262,1288,1312,1337,1362,1388,1413,1437,1462,1488,1513,1538,1563,1588,1612,1637,1662,1687,1713,1737,1762,1787,1813,1838,1863,1888,1913,1938,1963],[17.511999,17.521999,17.423,17.146,15.708,14.96,14.029,12.868,13.196,13.148,12.417,11.949,12.34,12.293,11.922,11.687,11.563,11.306,11.102,11.075,10.891,10.763,10.647,10.47,10.315,10.176,10.109,10.052,9.838,9.478,9.231,9.055,8.844,8.408,8.095,7.952,7.723,7.617,6.804,6.645,6.616,6.815,7.011,6.702,6.225,6.127,5.941,5.83,5.726,5.4,5.345,5.151,4.83,4.754,4.722,4.743,4.828,4.61,4.363,4.075,4.116,4.196,4.127,3.593,3.32,3.272,3.237,3.181,3.139,2.982,2.929,2.915,2.905,2.894,2.97,2.968,2.97,2.907,2.885,2.835,2.756,2.718,2.714,2.706,2.7,2.687,2.684,2.688,2.684,2.685,2.663,2.67,2.666,2.656,2.642,2.631,2.623,2.62,2.612,2.589,2.585,2.582,2.598,2.632,2.637,2.641,2.633,2.62],[35.499001,35.5,35.487999,35.460999,35.352001,35.297001,35.124001,34.941002,35.088001,35.111,35.013,34.923,35.083,35.087002,35.035999,35.007999,34.992001,34.952,34.931999,34.943001,34.931,34.921001,34.91,34.888,34.867001,34.852001,34.847,34.841,34.813,34.766998,34.747002,34.724998,34.713001,34.669998,34.639999,34.629002,34.608002,34.594002,34.471001,34.456001,34.460999,34.516998,34.569,34.529999,34.460999,34.462002,34.444,34.432999,34.428001,34.391998,34.41,34.41,34.379002,34.401001,34.415001,34.437,34.474998,34.466999,34.456001,34.435001,34.470001,34.506001,34.509998,34.457001,34.438,34.449001,34.464001,34.474998,34.478001,34.473,34.480999,34.502998,34.514999,34.530998,34.557999,34.574001,34.585999,34.591999,34.602001,34.603001,34.610001,34.619999,34.630001,34.638,34.646,34.652,34.659,34.669998,34.681,34.694,34.702,34.713001,34.721001,34.726002,34.731998,34.737,34.743999,34.748001,34.752998,34.755001,34.758999,34.764999,34.773998,34.784,34.789001,34.791,34.793999,34.796001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_031","geolocation":{"type":"Point","coordinates":[16.069,-41.763000000000005]},"basin":1,"timestamp":"2005-12-04T01:54:00.000Z","date_updated_argovis":"2023-01-24T21:27:56.583Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_031.nc","date_updated":"2015-10-19T17:48:08.000Z"}],"cycle_number":31,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,46,56,66,74,84,95,105,116,125,135,145,155,165,175,185,195,206,215,225,235,246,255,265,275,284,295,305,315,326,335,344,355,365,375,385,395,405,415,425,435,445,455,465,475,485,495,513,538,563,588,614,637,662,687,712,737,763,787,812,838,863,887,914,937,963,988,1013,1037,1062,1089,1112,1138,1163,1187,1212,1238,1263,1288,1313,1338,1362,1388,1413,1438,1462,1487,1512,1538,1563,1587,1612,1637,1662,1687,1712,1737,1763,1788,1813,1837,1862,1887,1912,1938,1963,1985],[11.574,11.578,11.552,11.406,10.594,9.753,9.125,8.788,8.941,8.608,8.092,7.771,7.603,7.555,7.543,7.507,7.426,7.367,7.348,7.299,7.237,7.202,7.208,7.24,7.244,7.25,7.252,7.255,7.26,7.226,7.099,6.873,6.736,6.657,6.573,6.583,7.289,7.425,7.154,6.869,6.528,6.328,6.15,6.04,5.96,5.726,5.906,5.869,5.694,5.5,5.925,5.346,5.008,4.912,4.937,4.791,5.17,5.449,5.352,4.657,3.887,3.759,3.704,3.64,3.54,3.411,3.34,3.284,3.381,3.162,3.314,3.144,3.069,3.179,3.209,3.182,3.116,3.1,3.032,2.984,2.989,2.956,2.895,2.876,2.83,2.815,2.804,2.806,2.81,2.807,2.824,2.833,2.792,2.774,2.793,2.788,2.772,2.774,2.764,2.758,2.739,2.699,2.687,2.637,2.615,2.613,2.614,2.601,2.581],[34.523998,34.525002,34.521,34.487,34.376999,34.276001,34.266998,34.358002,34.446999,34.403999,34.325001,34.271999,34.249001,34.243999,34.247002,34.244999,34.241001,34.250999,34.255001,34.255001,34.257999,34.259998,34.264999,34.271999,34.273998,34.276001,34.276001,34.277,34.278999,34.271999,34.256001,34.226002,34.217999,34.215,34.208,34.245998,34.391998,34.43,34.402,34.370998,34.334,34.312,34.297001,34.291,34.289001,34.277,34.317001,34.320999,34.299999,34.284,34.388,34.316002,34.284,34.286999,34.308998,34.311001,34.402,34.480999,34.483002,34.393002,34.294998,34.293999,34.310001,34.326,34.328999,34.321999,34.325001,34.337002,34.374001,34.360001,34.401001,34.396,34.403,34.437,34.455002,34.467999,34.481998,34.495998,34.501999,34.515999,34.534,34.550999,34.561001,34.574001,34.578999,34.59,34.604,34.616001,34.631001,34.639999,34.653999,34.667,34.667,34.674999,34.688,34.695999,34.702999,34.713001,34.722,34.731998,34.740002,34.742001,34.748001,34.747002,34.75,34.756001,34.763,34.766998,34.77]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_030","geolocation":{"type":"Point","coordinates":[15.196000000000002,-40.977000000000004]},"basin":1,"timestamp":"2005-11-24T01:48:00.000Z","date_updated_argovis":"2023-01-24T21:27:54.774Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_030.nc","date_updated":"2015-10-19T17:48:07.000Z"}],"cycle_number":30,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,54,65,76,84,95,105,115,125,135,146,155,165,175,185,195,205,215,225,234,245,255,265,275,285,294,305,315,325,335,345,355,365,375,385,395,406,416,425,435,445,455,465,475,485,495,513,537,562,587,612,637,662,689,712,737,762,787,812,838,863,887,912,938,962,988,1013,1038,1063,1088,1113,1138,1163,1189,1212,1237,1262,1287,1312,1338,1362,1387,1412,1437,1462,1487,1512,1538,1563,1587,1612,1638,1662,1687,1712,1737,1764,1787,1813,1838,1863,1888,1913,1938,1962,1986],[12.681,12.128,12.138,12.199,11.819,11.108,11.463,11.354,11.26,11.233,11.2,11.165,10.949,10.784,10.71,10.489,10.52,10.488,10.48,10.481,10.383,10.273,10.054,9.494,9.204,9.07,8.744,8.567,8.586,8.37,7.934,8.081,8.354,8.082,8.281,8.678,8.815,8.824,8.72,8.415,8.255,8.046,7.798,7.787,7.501,6.908,6.522,6.349,6.302,6.632,6.743,6.498,5.879,4.995,4.558,4.337,4.263,4.025,3.798,3.842,3.774,3.673,3.637,3.526,3.48,3.44,3.324,3.274,3.254,3.282,3.281,3.235,3.124,3.121,3.138,3.094,3.035,2.964,2.89,2.875,2.849,2.83,2.817,2.803,2.788,2.801,2.807,2.803,2.766,2.784,2.79,2.741,2.707,2.697,2.685,2.676,2.67,2.687,2.72,2.708,2.715,2.716,2.697,2.669,2.676,2.651,2.632,2.631,2.638],[34.868999,34.757,34.794998,34.874001,34.848999,34.722,34.844002,34.835999,34.823002,34.819,34.817001,34.82,34.790001,34.765999,34.752998,34.729,34.747002,34.745998,34.757999,34.772999,34.764999,34.751999,34.710999,34.613998,34.569,34.548,34.498001,34.476002,34.484001,34.459,34.403,34.452,34.512001,34.470001,34.530998,34.625999,34.667999,34.682999,34.679001,34.637001,34.617001,34.588001,34.567001,34.588001,34.547001,34.450001,34.391998,34.375,34.379002,34.465,34.515999,34.504002,34.431999,34.311001,34.265999,34.256001,34.266998,34.254002,34.238998,34.266998,34.272999,34.279999,34.291,34.298,34.317001,34.334,34.337002,34.348,34.362999,34.388,34.403999,34.412998,34.414001,34.431,34.450001,34.457001,34.472,34.481998,34.495998,34.514,34.528,34.539001,34.549,34.561001,34.574001,34.592999,34.608002,34.622002,34.629002,34.646,34.658001,34.658001,34.666,34.674999,34.682999,34.693001,34.702,34.710999,34.724998,34.733002,34.743999,34.754002,34.756001,34.757,34.764999,34.768002,34.768002,34.773998,34.779999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_029","geolocation":{"type":"Point","coordinates":[15.159,-41.293]},"basin":1,"timestamp":"2005-11-14T01:54:00.000Z","date_updated_argovis":"2023-01-24T21:27:52.810Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_029.nc","date_updated":"2015-10-19T17:48:06.000Z"}],"cycle_number":29,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,84,95,106,115,125,136,145,155,165,175,184,195,206,215,224,235,244,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,466,476,485,495,513,538,563,588,613,638,664,687,713,737,762,787,812,838,862,887,914,937,962,987,1013,1038,1063,1087,1113,1137,1162,1187,1213,1238,1262,1287,1313,1338,1362,1387,1412,1437,1463,1487,1513,1537,1563,1587,1613,1638,1663,1688,1712,1739,1762,1787,1813,1838,1862,1887,1912,1938,1963,1985],[12.485,11.79,11.556,11.407,11.492,11.492,11.463,11.374,11.242,11.142,10.877,10.286,10.291,10.459,10.418,10.243,10.087,9.968,9.809,9.674,9.508,9.339,9.249,9.087,8.934,8.845,8.777,8.711,8.472,8.851,9.04,8.897,8.835,8.786,8.691,8.562,8.46,8.123,7.938,7.844,7.684,7.494,7.355,7.134,6.897,6.757,6.623,6.534,6.371,6.07,5.698,5.269,4.909,4.685,4.451,4.215,4.178,4.193,4.252,4.199,4.103,3.989,3.877,3.745,3.565,3.48,3.47,3.451,3.419,3.334,3.291,3.262,3.228,3.187,3.09,3.11,3.059,2.971,2.912,2.879,2.859,2.859,2.896,2.944,2.95,2.944,2.952,2.932,2.913,2.868,2.858,2.85,2.853,2.849,2.819,2.804,2.794,2.775,2.733,2.724,2.714,2.702,2.677,2.659,2.644,2.63,2.625,2.623,2.631],[34.834,34.853001,34.868999,34.856998,34.881001,34.882,34.875999,34.856998,34.834,34.824001,34.778999,34.669998,34.686001,34.738998,34.742001,34.719002,34.709,34.693001,34.669998,34.648998,34.622002,34.594002,34.582001,34.554001,34.529999,34.518002,34.507,34.497002,34.466,34.567001,34.613998,34.592999,34.588001,34.596001,34.596001,34.588001,34.577999,34.529999,34.514999,34.514,34.505001,34.491001,34.48,34.451,34.426998,34.423,34.417999,34.412998,34.393002,34.362999,34.319,34.276001,34.247002,34.226002,34.215,34.202999,34.215,34.245998,34.277,34.285,34.289001,34.289001,34.290001,34.292,34.289001,34.303001,34.319,34.334999,34.347,34.355999,34.369999,34.383999,34.400002,34.405998,34.414001,34.435001,34.445,34.455002,34.465,34.478001,34.491001,34.506001,34.529999,34.555,34.570999,34.581001,34.601002,34.615002,34.625999,34.636002,34.644001,34.648998,34.664001,34.673,34.683998,34.692001,34.700001,34.714001,34.717999,34.723,34.729,34.731998,34.735001,34.735001,34.737999,34.743999,34.750999,34.756001,34.761002]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_028","geolocation":{"type":"Point","coordinates":[15.037,-41.413000000000004]},"basin":1,"timestamp":"2005-11-04T01:49:00.000Z","date_updated_argovis":"2023-01-24T21:27:50.805Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_028.nc","date_updated":"2015-10-19T17:48:06.000Z"}],"cycle_number":28,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,66,75,85,96,105,115,126,134,145,155,165,176,185,195,205,215,225,235,246,256,265,275,286,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,512,537,563,588,613,637,664,687,712,738,762,787,812,838,863,887,913,938,963,988,1013,1037,1062,1087,1112,1137,1164,1187,1213,1237,1262,1288,1313,1337,1363,1387,1412,1438,1463,1488,1513,1538,1562,1588,1612,1637,1662,1687,1712,1737,1763,1789,1812,1837,1862,1888,1912,1937,1963,1985],[11.194,11.194,11.195,11.198,11.198,11.199,11.197,11.196,11.187,11.188,11.184,11.122,11.027,10.727,10.764,10.691,10.672,10.582,10.512,10.483,10.473,10.529,10.517,10.573,10.647,10.622,10.454,10.092,9.918,9.651,9.387,9.424,9.468,9.048,8.732,8.32,8.609,8.646,8.817,8.381,8.375,8.426,8.367,8.31,8.124,7.892,7.77,7.649,7.476,7.109,6.469,5.969,5.629,5.362,5.139,4.816,4.811,4.604,4.384,4.253,4.261,4.209,4.085,3.789,3.64,3.554,3.517,3.49,3.448,3.377,3.334,3.286,3.252,3.188,3.121,3.059,3.049,2.99,3.01,3.01,2.975,2.867,2.834,2.819,2.843,2.878,2.895,2.875,2.863,2.864,2.867,2.874,2.851,2.781,2.758,2.745,2.771,2.778,2.783,2.779,2.775,2.755,2.733,2.708,2.691,2.676,2.692,2.688,2.68],[34.805,34.805,34.805,34.805,34.805,34.805,34.806,34.806,34.806,34.806999,34.813,34.813999,34.800999,34.754002,34.779999,34.783001,34.806,34.792,34.785999,34.784,34.782001,34.797001,34.796001,34.813999,34.831001,34.825001,34.789001,34.719002,34.689999,34.643002,34.595001,34.610001,34.636002,34.558998,34.499001,34.43,34.507,34.528,34.569,34.498001,34.505001,34.534,34.539001,34.536999,34.516998,34.506001,34.494999,34.480999,34.467999,34.441002,34.375999,34.324001,34.298,34.280998,34.269001,34.242001,34.262001,34.261002,34.244999,34.247002,34.276001,34.293999,34.298,34.275002,34.27,34.282001,34.293999,34.310001,34.325001,34.332001,34.344002,34.362,34.375,34.384998,34.401001,34.412998,34.436001,34.446999,34.467999,34.480999,34.487999,34.492001,34.504002,34.521,34.540001,34.561001,34.581001,34.596001,34.612999,34.627998,34.643002,34.657001,34.667999,34.667,34.671001,34.676998,34.694,34.708,34.723999,34.728001,34.740002,34.747002,34.754002,34.759998,34.761002,34.766998,34.773998,34.779999,34.785999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_027","geolocation":{"type":"Point","coordinates":[14.902000000000001,-41.808]},"basin":1,"timestamp":"2005-10-25T02:07:00.000Z","date_updated_argovis":"2023-01-24T21:27:48.906Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_027.nc","date_updated":"2015-10-19T17:48:05.000Z"}],"cycle_number":27,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,75,85,95,105,115,126,136,145,155,166,175,185,196,204,215,226,235,245,255,265,276,285,295,305,314,325,335,345,355,365,375,385,396,405,415,425,435,445,455,465,475,485,495,513,538,563,588,613,638,662,688,714,738,762,788,813,838,862,887,914,937,962,987,1012,1038,1063,1087,1112,1138,1162,1188,1212,1237,1263,1287,1312,1338,1364,1388,1412,1437,1462,1487,1512,1537,1563,1588,1612,1637,1662,1687,1712,1738,1762,1787,1812,1838,1863,1888,1912,1937,1962,1988,2006],[10.824,10.823,10.823,10.823,10.821,10.837,10.844,10.842,10.843,10.832,10.61,10.37,10.291,10.252,10.209,10.261,10.264,10.202,10.179,10.182,10.122,10.013,9.864,9.741,9.749,9.737,9.51,9.292,9.059,8.642,7.985,7.814,7.855,8.062,8.325,8.448,8.44,8.439,8.321,8.185,8.009,7.835,7.509,7.453,7.278,7.183,6.896,6.748,6.555,6.161,5.628,5.348,5.299,5.025,4.616,4.544,4.504,4.522,4.343,4.202,3.979,3.96,3.893,3.955,3.69,3.347,3.319,3.362,3.482,3.467,3.46,3.467,3.445,3.304,3.232,3.173,3.156,3.166,3.118,3.07,2.988,2.907,2.872,2.846,2.832,2.815,2.79,2.784,2.773,2.757,2.75,2.738,2.727,2.724,2.717,2.708,2.688,2.681,2.669,2.664,2.66,2.654,2.65,2.644,2.634,2.628,2.623,2.614,2.644,2.666],[34.776001,34.776001,34.776001,34.776001,34.775002,34.777,34.777,34.777,34.777,34.775002,34.741001,34.708,34.695999,34.689999,34.686001,34.710999,34.717999,34.716,34.722,34.726002,34.723999,34.706001,34.68,34.664001,34.671001,34.674,34.634998,34.605,34.562,34.486,34.379002,34.346001,34.361,34.410999,34.476002,34.521999,34.535999,34.548,34.547001,34.525002,34.509998,34.497002,34.459999,34.469002,34.459,34.456001,34.422001,34.403999,34.382,34.341999,34.291,34.269001,34.282001,34.257999,34.224998,34.237999,34.252998,34.269001,34.264,34.264999,34.248001,34.265999,34.279999,34.306,34.280998,34.252998,34.264999,34.296001,34.34,34.355,34.381001,34.405998,34.425999,34.429001,34.432999,34.443001,34.452999,34.470001,34.485001,34.488998,34.498001,34.507,34.521999,34.534,34.542,34.555,34.567001,34.577999,34.588001,34.601002,34.612,34.622002,34.632,34.639,34.650002,34.660999,34.672001,34.682999,34.693001,34.699001,34.705002,34.710999,34.720001,34.727001,34.734001,34.741001,34.745998,34.752998,34.764999,34.771999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_026","geolocation":{"type":"Point","coordinates":[14.065000000000001,-42.471000000000004]},"basin":1,"timestamp":"2005-10-15T02:01:00.000Z","date_updated_argovis":"2023-01-24T21:27:46.902Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_026.nc","date_updated":"2015-10-19T17:48:05.000Z"}],"cycle_number":26,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,56,65,74,85,95,105,115,126,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,446,455,465,476,485,495,512,538,563,587,613,638,662,687,712,738,762,787,813,838,863,888,912,937,962,988,1013,1038,1063,1087,1114,1137,1163,1187,1212,1237,1262,1288,1313,1339,1362,1388,1413,1437,1462,1487,1512,1538,1563,1587,1613,1638,1663,1688,1713,1738,1763,1787,1812,1837,1862,1887,1912,1937,1963,1984],[10.571,10.569,10.553,10.545,10.546,10.549,10.546,10.535,10.531,10.53,10.529,10.532,10.53,10.53,10.531,10.528,10.544,10.552,10.561,10.603,10.555,10.424,10.344,10.167,10.019,9.89,9.672,9.424,9.359,9.485,9.6,9.688,9.675,9.391,9.092,8.666,8.372,8.136,7.847,7.754,7.604,7.343,7.24,7.062,6.969,6.857,6.697,6.594,6.475,6.265,5.896,5.477,5.293,5.043,4.842,4.649,4.432,4.329,4.238,4.099,4.12,4.071,3.959,3.829,3.787,3.696,3.603,3.458,3.473,3.49,3.436,3.422,3.392,3.363,3.314,3.23,3.138,3.092,3.075,3.073,3.07,2.963,2.886,2.865,2.844,2.828,2.811,2.792,2.781,2.764,2.75,2.743,2.731,2.73,2.724,2.717,2.709,2.692,2.68,2.663,2.654,2.643,2.629,2.628,2.627,2.624,2.615,2.624,2.66],[34.799999,34.799999,34.799,34.799999,34.800999,34.801998,34.801998,34.798,34.798,34.798,34.798,34.798,34.798,34.798,34.798,34.799,34.807999,34.811001,34.813999,34.827,34.818001,34.791,34.775002,34.740002,34.714001,34.692001,34.657001,34.615002,34.613998,34.648998,34.682999,34.735001,34.743,34.702,34.66,34.603001,34.57,34.540001,34.509998,34.502998,34.485001,34.464001,34.459999,34.448002,34.442001,34.431,34.416,34.404999,34.393002,34.374001,34.337002,34.301998,34.290001,34.276001,34.262001,34.250999,34.238998,34.248001,34.262001,34.263,34.280998,34.286999,34.285,34.284,34.297001,34.299999,34.306999,34.307999,34.327999,34.356998,34.377998,34.396,34.410999,34.436001,34.445,34.443001,34.442001,34.449001,34.466,34.490002,34.512001,34.514999,34.519001,34.529999,34.544998,34.557999,34.564999,34.576,34.588001,34.598999,34.611,34.624001,34.634998,34.643002,34.653,34.660999,34.667999,34.678001,34.686001,34.694,34.699001,34.706001,34.715,34.723,34.731998,34.737999,34.743999,34.750999,34.763]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_025","geolocation":{"type":"Point","coordinates":[13.175,-42.27]},"basin":1,"timestamp":"2005-10-05T01:56:00.000Z","date_updated_argovis":"2023-01-24T21:27:45.008Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_025.nc","date_updated":"2015-10-19T17:48:04.000Z"}],"cycle_number":25,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,65,75,85,95,105,115,125,136,145,155,166,175,185,195,205,216,225,235,245,255,265,274,285,296,305,315,325,335,345,355,365,375,385,394,404,415,425,435,445,455,465,476,485,495,513,538,563,587,612,638,664,687,712,738,762,787,812,838,863,887,914,938,962,987,1012,1037,1062,1087,1114,1138,1163,1187,1212,1237,1262,1287,1312,1339,1362,1387,1412,1438,1463,1487,1513,1538,1563,1588,1612,1638,1663,1688,1714,1737,1762,1788,1813,1838,1863,1887,1913,1938,1962,1986],[10.476,10.478,10.477,10.483,10.481,10.476,10.481,10.498,10.497,10.485,10.471,10.469,10.483,10.491,10.415,10.216,9.907,9.733,9.572,9.436,9.696,9.698,9.649,9.578,9.537,9.473,9.433,9.362,9.243,9.097,9.033,8.924,8.76,8.803,8.632,8.297,8.086,8.008,7.987,7.982,7.947,7.771,7.46,7.162,7.075,7.011,6.99,6.883,6.709,6.475,6.249,5.826,5.523,5.387,5.234,4.887,4.751,4.625,4.473,4.31,4.175,4.051,3.902,3.774,3.755,3.752,3.692,3.643,3.614,3.579,3.566,3.492,3.467,3.499,3.458,3.412,3.364,3.317,3.26,3.183,3.16,3.121,3.087,3.049,3.012,2.94,2.898,2.821,2.793,2.777,2.794,2.788,2.767,2.751,2.735,2.711,2.7,2.697,2.689,2.686,2.685,2.682,2.676,2.668,2.664,2.658,2.651,2.623,2.606],[34.763,34.763,34.763,34.764,34.763,34.762001,34.764,34.765999,34.765999,34.765999,34.768002,34.77,34.775002,34.778,34.761002,34.723,34.666,34.634998,34.608002,34.584999,34.646,34.650002,34.643002,34.631001,34.625,34.617001,34.612,34.602001,34.584,34.569,34.582001,34.582001,34.568001,34.589001,34.569,34.528999,34.507,34.505001,34.514,34.530998,34.535,34.518002,34.481998,34.448002,34.443001,34.439999,34.444,34.436001,34.416,34.388,34.372002,34.337002,34.312,34.313,34.306999,34.272999,34.273998,34.273998,34.268002,34.266998,34.264,34.261002,34.257,34.254002,34.271999,34.300999,34.310001,34.319,34.331001,34.341999,34.366001,34.376999,34.395,34.416,34.429001,34.443001,34.452999,34.459999,34.470001,34.487999,34.498001,34.513,34.528,34.534,34.541,34.546001,34.553001,34.555,34.566002,34.575001,34.592999,34.605999,34.617001,34.625,34.633999,34.646999,34.657001,34.665001,34.672001,34.68,34.685001,34.689999,34.702,34.716,34.724998,34.730999,34.737999,34.738998,34.743999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_024","geolocation":{"type":"Point","coordinates":[12.941,-42.006]},"basin":1,"timestamp":"2005-09-25T02:02:00.000Z","date_updated_argovis":"2023-01-24T21:27:43.104Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_024.nc","date_updated":"2015-10-19T17:48:04.000Z"}],"cycle_number":24,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,45,55,65,75,85,95,105,115,125,135,145,155,166,175,185,195,205,214,225,235,245,256,265,275,286,295,305,315,326,335,345,355,365,375,385,395,405,415,425,435,445,455,465,476,485,495,512,537,563,587,612,639,663,687,712,738,763,787,812,837,862,888,913,938,963,988,1013,1037,1062,1087,1113,1139,1163,1188,1213,1237,1262,1287,1312,1337,1362,1388,1412,1437,1462,1488,1513,1538,1563,1589,1612,1637,1662,1688,1712,1737,1762,1788,1812,1837,1862,1887,1912,1938,1963,1988,2006],[10.253,10.255,10.258,10.264,10.265,10.255,10.25,10.243,10.24,10.26,10.257,10.171,10.132,10.002,10.061,10.098,10.199,10.255,10.195,10.036,9.896,9.912,9.99,9.893,9.828,9.709,9.726,9.768,9.683,9.611,9.533,9.535,9.383,9.245,9.161,8.989,8.717,8.528,8.428,8.347,8.197,7.933,7.701,7.583,7.511,7.384,7.115,6.895,6.731,6.481,6.054,5.718,5.561,5.394,5.114,4.911,4.79,4.71,4.612,4.65,4.606,4.401,4.178,4.205,4.013,3.8,3.555,3.578,3.66,3.621,3.559,3.533,3.528,3.514,3.447,3.383,3.304,3.234,3.197,3.155,3.123,3.079,3.041,3.003,2.971,2.872,2.822,2.807,2.776,2.744,2.726,2.73,2.739,2.723,2.718,2.714,2.706,2.697,2.691,2.681,2.659,2.642,2.636,2.631,2.619,2.618,2.61,2.613,2.603,2.6],[34.685001,34.682999,34.682999,34.683998,34.683998,34.681999,34.681,34.68,34.68,34.682999,34.681,34.671001,34.668999,34.650002,34.665001,34.675999,34.705002,34.719002,34.709,34.675999,34.652,34.661999,34.682999,34.667,34.658001,34.634998,34.647999,34.66,34.650002,34.648998,34.653,34.678001,34.673,34.665001,34.655998,34.636002,34.596001,34.571999,34.569,34.573002,34.563,34.534,34.514,34.506001,34.506001,34.491001,34.459,34.433998,34.417,34.393002,34.353001,34.327,34.317001,34.314999,34.297001,34.287998,34.286999,34.303001,34.299,34.327,34.344002,34.327999,34.319,34.349998,34.338001,34.321999,34.300999,34.326,34.359001,34.372002,34.386002,34.404999,34.423,34.436001,34.448002,34.463001,34.472,34.484001,34.5,34.508999,34.521,34.532001,34.542999,34.553001,34.562,34.563999,34.576,34.589001,34.599998,34.612,34.625999,34.638,34.646999,34.653999,34.659,34.668999,34.679001,34.689999,34.698002,34.702999,34.709999,34.721001,34.727001,34.730999,34.736,34.743,34.75,34.755001,34.761002,34.764999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_023","geolocation":{"type":"Point","coordinates":[12.828000000000001,-41.699000000000005]},"basin":1,"timestamp":"2005-09-15T02:02:00.000Z","date_updated_argovis":"2023-01-24T21:27:41.207Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_023.nc","date_updated":"2015-10-19T17:48:03.000Z"}],"cycle_number":23,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,76,85,95,105,115,126,136,146,156,164,175,186,195,205,215,225,235,245,255,265,275,285,295,306,315,325,335,344,354,365,375,386,395,405,415,425,434,445,455,465,475,485,495,512,537,563,588,613,638,662,687,712,738,763,787,812,837,863,887,913,938,962,988,1012,1037,1062,1087,1114,1137,1162,1187,1213,1238,1262,1287,1314,1338,1363,1388,1413,1437,1463,1488,1512,1537,1563,1588,1612,1637,1662,1687,1712,1738,1762,1788,1812,1838,1863,1888,1913,1938,1963,1985],[10.942,10.89,10.836,10.849,10.846,10.627,10.513,10.489,10.387,10.311,10.27,10.229,10.183,10.118,9.956,9.79,9.805,10.149,10.504,10.575,10.572,10.562,10.554,10.549,10.539,10.512,10.343,10.087,9.979,9.923,9.693,9.597,9.296,8.874,8.7,8.659,8.843,8.72,8.582,8.545,7.968,7.916,7.89,7.827,7.697,7.569,7.398,7.106,6.815,6.569,6.099,5.578,5.318,5.146,4.941,4.684,4.624,4.599,4.529,4.482,4.454,4.378,4.474,4.501,4.187,3.942,3.704,3.478,3.372,3.53,3.47,3.429,3.441,3.383,3.339,3.321,3.274,3.23,3.21,3.177,3.125,3.051,3.009,2.981,2.967,2.956,2.922,2.85,2.814,2.774,2.738,2.72,2.715,2.702,2.704,2.736,2.735,2.739,2.696,2.706,2.721,2.708,2.666,2.655,2.646,2.641,2.632,2.609,2.602],[34.742001,34.744999,34.745998,34.751999,34.751999,34.708,34.695999,34.695,34.681999,34.669998,34.661999,34.653,34.644001,34.631001,34.601002,34.577,34.59,34.689999,34.782001,34.803001,34.806,34.804001,34.803001,34.801998,34.799999,34.793999,34.763,34.717999,34.715,34.724998,34.689999,34.688,34.641998,34.584999,34.564999,34.577999,34.638,34.630001,34.612999,34.602001,34.515999,34.521999,34.532001,34.532001,34.521999,34.507,34.490002,34.455002,34.419998,34.397999,34.348,34.299,34.278,34.268002,34.256001,34.240002,34.247002,34.252998,34.264999,34.280998,34.297001,34.308998,34.352001,34.383999,34.360001,34.344002,34.331001,34.313999,34.323002,34.372002,34.386002,34.401001,34.424999,34.438,34.452,34.464001,34.477001,34.492001,34.509998,34.522999,34.533001,34.541,34.553001,34.563,34.570999,34.577999,34.589001,34.592999,34.599998,34.610001,34.619999,34.630001,34.639999,34.650002,34.659,34.673,34.68,34.689999,34.692001,34.702999,34.714001,34.716,34.716,34.721001,34.728001,34.735001,34.741001,34.744999,34.749001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_022","geolocation":{"type":"Point","coordinates":[12.925,-41.145]},"basin":1,"timestamp":"2005-09-05T01:51:00.000Z","date_updated_argovis":"2023-01-24T21:27:39.281Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_022.nc","date_updated":"2015-10-19T17:48:03.000Z"}],"cycle_number":22,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,45,55,65,75,86,96,105,115,125,135,145,154,165,175,184,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,455,465,475,485,496,513,537,562,588,613,637,663,688,713,737,762,787,812,838,862,888,912,937,963,987,1013,1037,1063,1087,1112,1137,1162,1188,1212,1237,1262,1287,1313,1337,1362,1388,1413,1438,1462,1487,1513,1539,1562,1588,1613,1638,1663,1687,1713,1739,1762,1787,1812,1837,1862,1888,1914,1937,1962,1988,2001],[10.915,10.918,10.92,10.924,10.922,10.916,10.901,10.892,10.85,10.764,10.559,10.172,10.084,10.012,9.964,9.889,9.834,9.818,10.099,10.376,10.138,9.782,9.51,9.079,8.863,8.735,8.674,8.616,8.528,8.442,8.382,8.515,8.465,8.471,8.386,8.21,8.115,7.986,7.819,7.556,7.435,7.227,7.079,7.007,6.782,6.562,6.41,6.241,6.157,5.999,5.783,5.408,5.097,4.839,4.623,4.403,4.265,4.274,4.099,4.009,3.9,3.782,3.704,3.658,3.438,3.448,3.578,3.588,3.449,3.439,3.462,3.445,3.411,3.355,3.311,3.333,3.273,3.22,3.173,3.103,3.046,3.012,2.988,2.974,2.949,2.935,2.906,2.877,2.846,2.828,2.812,2.802,2.795,2.79,2.784,2.768,2.726,2.705,2.697,2.706,2.671,2.674,2.635,2.659,2.66,2.67,2.633,2.646,2.621,2.607],[34.741001,34.741001,34.741001,34.740002,34.740002,34.738998,34.737999,34.735001,34.730999,34.717999,34.681999,34.617001,34.608002,34.596001,34.588001,34.573002,34.564999,34.566002,34.653,34.735001,34.702,34.661999,34.617001,34.547001,34.522999,34.518002,34.525002,34.537998,34.529999,34.529999,34.540001,34.584999,34.584,34.599998,34.592999,34.574001,34.563,34.551998,34.532001,34.507999,34.497002,34.472,34.452999,34.444,34.417999,34.393002,34.379002,34.362,34.362,34.353001,34.341,34.308998,34.283001,34.264999,34.250999,34.238998,34.243,34.263,34.257,34.264999,34.264,34.258999,34.268002,34.285999,34.277,34.299,34.338001,34.359001,34.367001,34.387001,34.404999,34.424999,34.441002,34.455002,34.466999,34.487999,34.494999,34.508999,34.521999,34.539001,34.549999,34.561001,34.570999,34.580002,34.59,34.604,34.610001,34.622002,34.634998,34.646,34.655998,34.667,34.674999,34.681999,34.692001,34.700001,34.705002,34.712002,34.719002,34.728001,34.73,34.741001,34.740002,34.750999,34.758999,34.764999,34.764,34.771999,34.772999,34.772999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_021","geolocation":{"type":"Point","coordinates":[12.925,-40.671]},"basin":1,"timestamp":"2005-08-26T01:45:00.000Z","date_updated_argovis":"2023-01-24T21:27:37.296Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_021.nc","date_updated":"2015-10-19T17:48:02.000Z"}],"cycle_number":21,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,56,65,74,85,95,106,115,125,134,145,155,166,176,186,196,205,215,225,235,245,255,265,275,286,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,446,456,465,475,485,495,513,538,563,589,612,637,663,688,712,737,762,788,813,838,862,888,912,937,962,988,1013,1037,1063,1087,1113,1138,1163,1188,1213,1238,1262,1287,1312,1337,1362,1387,1412,1437,1463,1488,1512,1538,1563,1587,1613,1637,1662,1687,1714,1737,1763,1787,1812,1838,1863,1888,1912,1938,1962,1982],[11.062,11.056,11.038,11.042,11.04,11.037,11.038,11.038,11.039,11.042,11.044,11.043,11.05,11.059,11.054,11.261,11.342,11.288,11.247,11.025,10.98,10.942,10.682,10.404,10.266,9.939,9.793,9.733,9.663,9.565,9.529,9.373,9.334,9.279,9.151,8.941,8.624,8.423,8.189,7.996,7.885,7.772,7.647,7.531,7.309,7.085,6.852,6.438,6.254,5.927,5.485,5.158,4.921,4.895,4.698,4.462,4.176,4.037,3.832,3.78,3.722,3.935,3.736,3.558,3.454,3.502,3.557,3.653,3.38,3.336,3.432,3.394,3.395,3.298,3.352,3.297,3.289,3.279,3.171,3.108,3.086,3.008,2.959,2.942,2.875,2.851,2.818,2.814,2.835,2.833,2.817,2.824,2.813,2.795,2.782,2.769,2.762,2.742,2.741,2.73,2.718,2.726,2.716,2.698,2.694,2.694,2.682,2.679,2.678],[34.721001,34.719002,34.716,34.716999,34.716,34.715,34.715,34.715,34.715,34.715,34.715,34.715,34.716999,34.727001,34.723999,34.838001,34.882999,34.900002,34.903,34.868999,34.866001,34.868,34.831001,34.786999,34.764999,34.722,34.714001,34.716,34.715,34.709999,34.707001,34.693001,34.688,34.68,34.661999,34.639,34.599998,34.59,34.569,34.554001,34.556,34.553001,34.540001,34.534,34.505001,34.483002,34.451,34.397999,34.380001,34.349998,34.304001,34.277,34.27,34.283001,34.271,34.249001,34.223999,34.223,34.213001,34.223999,34.234001,34.292,34.285,34.282001,34.283001,34.307999,34.334,34.368999,34.346001,34.355999,34.389,34.403999,34.428001,34.433998,34.460999,34.471001,34.487,34.5,34.505001,34.515999,34.533001,34.543999,34.554001,34.569,34.575001,34.591999,34.598999,34.609001,34.630001,34.641998,34.650002,34.661999,34.672001,34.681999,34.695999,34.707001,34.715,34.723,34.730999,34.731998,34.738998,34.751999,34.758999,34.764999,34.771999,34.778999,34.784,34.787998,34.792]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_020","geolocation":{"type":"Point","coordinates":[12.887,-40.467]},"basin":1,"timestamp":"2005-08-16T01:57:00.000Z","date_updated_argovis":"2023-01-24T21:27:35.385Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_020.nc","date_updated":"2015-10-19T17:48:02.000Z"}],"cycle_number":20,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,54,65,75,85,96,105,115,125,135,145,155,165,175,184,195,206,215,225,235,245,255,265,275,285,295,305,315,325,335,346,355,365,375,385,395,405,415,425,435,445,456,465,475,485,496,513,538,564,587,612,637,662,688,713,737,762,787,812,837,862,888,912,937,963,988,1012,1038,1063,1088,1113,1138,1162,1187,1212,1238,1262,1287,1313,1337,1363,1387,1412,1437,1462,1487,1513,1539,1563,1588,1613,1638,1663,1687,1713,1738,1762,1787,1812,1838,1863,1887,1912,1937,1963,1981],[11.102,11.101,11.108,11.102,11.097,11.093,11.082,11.083,11.062,10.986,10.954,10.934,10.524,10.067,10.106,10.686,10.847,10.776,10.645,10.452,10.114,9.964,9.466,9.31,9.116,9.088,9.032,8.893,8.78,8.616,8.462,8.326,8.103,7.988,7.88,7.648,7.515,7.352,7.156,6.983,6.721,6.549,6.264,6.027,5.934,5.87,5.817,5.753,5.631,5.393,5.095,4.968,4.759,4.572,4.396,4.227,4.143,4.044,3.932,3.76,3.65,3.554,3.496,3.436,3.414,3.504,3.46,3.322,3.176,3.205,3.391,3.456,3.447,3.421,3.334,3.286,3.198,3.185,3.166,3.066,3.055,2.954,2.909,2.906,2.865,2.836,2.82,2.796,2.766,2.739,2.721,2.707,2.701,2.7,2.704,2.699,2.694,2.691,2.69,2.705,2.699,2.701,2.697,2.695,2.693,2.69,2.683,2.677,2.675],[34.668999,34.667999,34.668999,34.667999,34.666,34.665001,34.662998,34.661999,34.657001,34.640999,34.636002,34.627998,34.547001,34.466999,34.498001,34.662998,34.710999,34.703999,34.692001,34.679001,34.643002,34.618999,34.547001,34.541,34.528,34.546001,34.544998,34.534,34.534,34.533001,34.529999,34.526001,34.505001,34.497002,34.483002,34.463001,34.448002,34.431,34.410999,34.391998,34.369999,34.354,34.330002,34.312,34.305,34.299999,34.297001,34.292999,34.285999,34.264,34.241001,34.236,34.226002,34.215,34.206001,34.205002,34.208,34.206001,34.207001,34.210999,34.221001,34.231998,34.238998,34.25,34.264999,34.297001,34.312,34.313999,34.314999,34.338001,34.389,34.418999,34.438,34.452999,34.459999,34.466,34.471001,34.485001,34.501999,34.514,34.530998,34.539001,34.556,34.571999,34.576,34.584,34.598999,34.605999,34.615002,34.627998,34.640999,34.648998,34.660999,34.672001,34.682999,34.692001,34.699001,34.707001,34.719002,34.730999,34.738998,34.747002,34.754002,34.762001,34.766998,34.775002,34.780998,34.785999,34.787998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_019","geolocation":{"type":"Point","coordinates":[13.01,-40.108000000000004]},"basin":1,"timestamp":"2005-08-06T01:52:00.000Z","date_updated_argovis":"2023-01-24T21:27:33.510Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_019.nc","date_updated":"2015-10-19T17:48:01.000Z"}],"cycle_number":19,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,76,85,95,105,115,125,135,146,155,165,176,185,195,206,215,226,235,244,255,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,416,425,435,445,455,465,475,485,495,512,537,563,587,613,638,662,687,712,737,762,788,813,838,862,888,912,938,963,988,1013,1038,1063,1088,1114,1138,1162,1188,1213,1238,1263,1288,1313,1338,1363,1387,1412,1437,1462,1488,1513,1538,1563,1587,1613,1638,1663,1687,1712,1737,1763,1788,1812,1837,1863,1888,1912,1937,1963,1983],[11.496,11.511,11.482,11.238,10.466,10.271,10.273,10.28,10.287,10.245,10.127,9.907,9.674,9.517,9.613,9.934,9.585,9.22,9.238,9.204,9.37,9.278,9.019,8.924,8.891,8.99,8.663,8.476,8.532,8.654,8.558,8.424,8.153,8.026,7.934,7.868,7.751,7.551,7.382,7.146,6.935,6.852,6.577,6.395,6.184,6.129,6.158,6.137,6.057,5.829,5.344,4.98,4.795,4.613,4.38,4.264,4.128,4.03,3.915,3.812,3.81,3.782,3.609,3.566,3.422,3.3,3.277,3.209,3.166,3.154,3.149,3.203,3.367,3.465,3.376,3.388,3.431,3.335,3.279,3.121,3.078,3.118,3.079,3.029,3.002,2.977,2.918,2.85,2.82,2.789,2.734,2.698,2.692,2.708,2.742,2.788,2.786,2.782,2.776,2.771,2.758,2.756,2.756,2.751,2.735,2.716,2.706,2.689,2.676],[34.668999,34.675999,34.674,34.629002,34.499001,34.469002,34.472,34.473999,34.483002,34.487999,34.490002,34.464001,34.449001,34.445,34.487999,34.577,34.521999,34.471001,34.492001,34.508999,34.556,34.556,34.526001,34.532001,34.543999,34.580002,34.532001,34.507,34.533001,34.578999,34.569,34.556999,34.532001,34.519001,34.509998,34.504002,34.487999,34.466,34.446999,34.418999,34.400002,34.396,34.365002,34.345001,34.331001,34.331001,34.346001,34.348,34.345001,34.320999,34.263,34.233002,34.223999,34.213001,34.205002,34.202,34.200001,34.205002,34.205002,34.209,34.224998,34.238998,34.236,34.252998,34.257999,34.263,34.271,34.276001,34.289001,34.301998,34.316002,34.341999,34.384998,34.428001,34.431,34.453999,34.481998,34.484001,34.495998,34.499001,34.511002,34.537998,34.555,34.569,34.577,34.584,34.584999,34.592999,34.601002,34.612999,34.631001,34.640999,34.646,34.657001,34.678001,34.705002,34.716,34.722,34.729,34.735001,34.751999,34.759998,34.764999,34.769001,34.777,34.783001,34.787998,34.792,34.799]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_018","geolocation":{"type":"Point","coordinates":[12.705,-39.676]},"basin":1,"timestamp":"2005-07-27T01:52:00.000Z","date_updated_argovis":"2023-01-24T21:27:31.581Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_018.nc","date_updated":"2015-10-19T17:48:01.000Z"}],"cycle_number":18,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,46,55,64,75,85,95,105,116,125,135,146,155,165,175,185,195,204,215,225,235,246,255,265,275,285,296,305,315,325,335,346,356,365,375,385,394,405,416,425,435,445,455,465,475,485,495,512,539,562,588,612,638,663,687,712,737,763,788,813,838,864,887,912,937,963,988,1012,1037,1063,1087,1112,1139,1162,1187,1212,1237,1262,1288,1313,1338,1364,1387,1412,1438,1463,1489,1512,1537,1563,1588,1612,1637,1663,1687,1712,1737,1763,1787,1812,1838,1863,1888,1913,1937,1963,1980],[11.639,11.638,11.636,11.635,11.632,11.618,11.54,11.144,11.036,10.974,10.691,10.442,10.136,9.818,9.886,9.501,9.242,9.29,9.151,9.184,9.587,9.645,9.558,9.135,9.012,8.955,8.923,8.705,8.623,8.648,8.809,8.725,8.612,8.404,8.399,8.355,8.293,8.358,8.391,8.442,8.338,8.273,8.18,8.064,7.908,7.728,7.652,7.533,7.473,6.778,6.204,5.995,5.683,5.267,5.051,4.893,4.663,4.476,4.381,4.223,4.132,4.013,3.819,3.743,3.749,3.673,3.627,3.543,3.332,3.214,3.179,3.132,3.068,3.045,3.012,2.987,3.069,3.144,3.133,3.053,3.053,3.056,3.076,3.043,2.975,2.952,2.911,2.899,2.884,2.877,2.863,2.848,2.833,2.823,2.812,2.807,2.796,2.787,2.778,2.772,2.765,2.758,2.751,2.742,2.735,2.727,2.718,2.712,2.706],[34.640999,34.640999,34.639999,34.639999,34.639,34.639999,34.626999,34.583,34.580002,34.580002,34.535,34.491001,34.442001,34.404999,34.438,34.384998,34.354,34.382999,34.373001,34.41,34.521999,34.550999,34.551998,34.500999,34.493,34.494999,34.500999,34.491001,34.492001,34.507,34.549999,34.546001,34.535999,34.509998,34.532001,34.540001,34.540001,34.560001,34.580002,34.595001,34.596001,34.591,34.584,34.577,34.567001,34.551998,34.541,34.534,34.530998,34.433998,34.367001,34.353001,34.324001,34.284,34.266998,34.265999,34.251999,34.25,34.257,34.257,34.257999,34.256001,34.244999,34.256001,34.273998,34.284,34.299999,34.301998,34.283001,34.284,34.294998,34.301998,34.319,34.344002,34.354,34.374001,34.411999,34.439999,34.452999,34.459,34.479,34.501999,34.526001,34.549999,34.562,34.577999,34.588001,34.605,34.613998,34.617001,34.624001,34.633999,34.646,34.653,34.660999,34.671001,34.685001,34.695999,34.708,34.716999,34.724998,34.733002,34.741001,34.747002,34.750999,34.758999,34.764999,34.773998,34.778999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_017","geolocation":{"type":"Point","coordinates":[11.673,-39.308]},"basin":1,"timestamp":"2005-07-17T01:52:00.000Z","date_updated_argovis":"2023-01-24T21:27:29.565Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_017.nc","date_updated":"2015-10-19T17:48:00.000Z"}],"cycle_number":17,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,106,115,125,136,145,155,165,175,185,195,205,214,224,235,246,255,265,275,285,296,305,314,325,336,345,355,365,376,385,395,405,415,424,435,446,455,465,475,485,495,512,538,562,587,612,638,662,687,713,738,763,787,813,839,862,887,912,937,963,988,1013,1037,1062,1087,1112,1137,1163,1187,1212,1237,1262,1287,1314,1337,1362,1387,1412,1437,1462,1488,1514,1537,1562,1588,1613,1637,1662,1687,1713,1737,1763,1788,1813,1838,1863,1888,1912,1937,1963,1978],[14.364,14.367,14.369,14.41,14.568,14.485,13.839,13.448,13.089,12.788,11.984,11.707,11.511,11.613,11.443,11.271,11.26,11.116,11.012,10.881,10.798,10.983,10.875,10.696,10.388,10.239,10.094,9.914,9.735,9.594,9.465,9.327,9.104,8.878,8.472,8.275,8.154,8.116,8.006,7.899,7.876,7.823,7.695,7.614,7.528,7.351,7.246,7.133,7.034,6.87,6.594,6.268,5.864,5.45,5.165,4.868,4.655,4.541,4.287,4.151,4.071,4.045,3.972,3.906,3.769,3.63,3.585,3.543,3.508,3.443,3.365,3.175,3.122,3.117,3.317,3.361,3.308,3.256,3.12,3.086,3.074,2.996,2.941,2.906,2.777,2.757,2.742,2.723,2.729,2.764,2.823,2.797,2.772,2.76,2.786,2.785,2.779,2.784,2.788,2.784,2.776,2.766,2.766,2.757,2.747,2.74,2.731,2.729,2.734],[35.035,35.035,35.035,35.049,35.098999,35.084999,34.966,34.964001,34.929001,34.881001,34.735001,34.738998,34.754002,34.794998,34.783001,34.787998,34.812,34.804001,34.806999,34.797001,34.794998,34.862,34.855999,34.835999,34.791,34.771,34.751999,34.73,34.708,34.689999,34.673,34.654999,34.630001,34.598999,34.529999,34.5,34.490002,34.493,34.487,34.487,34.491001,34.499001,34.493,34.488998,34.479,34.459999,34.455002,34.446999,34.443001,34.435001,34.409,34.380001,34.335999,34.293999,34.273998,34.252998,34.243999,34.249001,34.237,34.243,34.249001,34.257999,34.262001,34.268002,34.284,34.283001,34.292,34.300999,34.314999,34.323002,34.335999,34.332001,34.346001,34.367001,34.425999,34.456001,34.466999,34.477001,34.477001,34.487,34.507,34.509998,34.52,34.535,34.528999,34.535999,34.548,34.557999,34.576,34.598999,34.619999,34.629002,34.638,34.651001,34.665001,34.675999,34.683998,34.695,34.707001,34.716,34.722,34.731998,34.741001,34.749001,34.756001,34.762001,34.768002,34.773998,34.778999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_016","geolocation":{"type":"Point","coordinates":[10.936,-39.236000000000004]},"basin":1,"timestamp":"2005-07-07T01:59:00.000Z","date_updated_argovis":"2023-01-24T21:27:27.520Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_016.nc","date_updated":"2015-10-19T17:47:59.000Z"}],"cycle_number":16,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,46,55,65,75,86,95,105,115,126,135,146,155,165,176,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,426,435,445,456,465,475,485,495,512,537,563,589,613,638,662,688,712,737,763,787,813,838,862,888,912,938,963,987,1012,1037,1062,1089,1112,1137,1162,1187,1212,1237,1262,1288,1312,1338,1362,1388,1413,1438,1462,1488,1514,1537,1562,1587,1612,1637,1662,1687,1713,1738,1764,1787,1812,1838,1863,1887,1913,1937,1962,1983],[12.038,12.038,12.013,11.332,10.502,10.045,9.89,9.808,9.77,9.749,9.697,9.659,9.554,9.678,10.889,11.161,11.014,10.489,9.918,9.668,9.62,9.439,9.415,9.313,9.416,9.482,9.425,9.295,9.164,9.013,8.662,8.53,8.429,8.31,8.159,8.062,7.999,7.871,7.714,7.667,7.614,7.523,7.466,7.353,7.253,7.17,7.067,6.834,6.568,6.238,5.575,5.39,5.125,4.963,4.806,4.697,4.587,4.489,4.407,4.312,4.151,4.054,3.937,3.829,3.79,3.737,3.627,3.541,3.399,3.368,3.362,3.363,3.354,3.34,3.331,3.316,3.277,3.106,3.02,3.13,3.113,3.078,3.015,2.989,2.985,2.975,2.948,2.951,2.941,2.911,2.886,2.878,2.821,2.799,2.791,2.786,2.778,2.77,2.764,2.764,2.766,2.762,2.785,2.778,2.758,2.751,2.751,2.741,2.736],[34.591999,34.591,34.585999,34.495998,34.421001,34.384998,34.372002,34.367001,34.365002,34.363998,34.362,34.362,34.368999,34.439999,34.758999,34.827999,34.807999,34.709,34.601002,34.563,34.568001,34.560001,34.578999,34.578999,34.625,34.657001,34.655998,34.648998,34.638,34.620998,34.584999,34.571999,34.562,34.556999,34.540001,34.530998,34.523998,34.508999,34.495998,34.492001,34.487,34.479,34.473999,34.466,34.466,34.462002,34.452,34.429001,34.402,34.366001,34.296001,34.286999,34.264999,34.257999,34.248001,34.243999,34.242001,34.240002,34.243,34.248001,34.245998,34.262001,34.266998,34.27,34.285,34.293999,34.292999,34.306,34.313,34.337002,34.363998,34.382,34.390999,34.401001,34.412998,34.425999,34.441002,34.439999,34.456001,34.491001,34.502998,34.512001,34.523998,34.539001,34.553001,34.571999,34.587002,34.608002,34.623001,34.632,34.636002,34.643002,34.650002,34.657001,34.665001,34.672001,34.683998,34.694,34.705002,34.716,34.726002,34.731998,34.743,34.744999,34.75,34.758999,34.764,34.766998,34.77]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_015","geolocation":{"type":"Point","coordinates":[10.214,-39.777]},"basin":1,"timestamp":"2005-06-27T01:59:00.000Z","date_updated_argovis":"2023-01-24T21:27:25.609Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_015.nc","date_updated":"2015-10-19T17:47:59.000Z"}],"cycle_number":15,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,46,55,65,75,86,94,105,115,125,135,146,155,165,175,184,195,205,215,225,236,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,406,415,425,435,445,455,465,475,485,495,513,538,563,589,612,637,662,687,712,738,763,787,812,838,863,887,912,937,962,988,1013,1038,1063,1087,1114,1137,1162,1188,1213,1238,1263,1287,1312,1338,1364,1387,1412,1437,1462,1488,1513,1537,1562,1587,1612,1637,1662,1687,1713,1738,1764,1787,1812,1838,1862,1887,1912,1937,1963,1987],[12.95,12.948,12.954,12.956,12.959,12.962,12.963,12.962,12.761,12.404,12.191,11.977,11.982,11.68,11.469,11.447,10.889,10.654,10.499,10.4,10.384,10.439,10.498,10.412,10.334,10.264,10.211,10.094,9.894,9.632,9.454,9.31,9.229,9.101,8.972,8.958,8.784,8.602,8.454,8.212,8.101,7.88,7.68,7.56,7.288,7.041,6.913,6.83,6.636,6.371,6.047,5.775,5.526,5.233,5.02,4.83,4.624,4.499,4.389,4.199,4.098,4.042,4.007,3.892,3.775,3.719,3.654,3.625,3.468,3.406,3.354,3.231,3.243,3.275,3.274,3.241,3.159,3.14,3.145,3.108,3.062,3.02,2.974,2.926,2.91,2.891,2.874,2.867,2.855,2.848,2.869,2.846,2.821,2.802,2.794,2.791,2.784,2.774,2.766,2.76,2.755,2.747,2.739,2.734,2.722,2.713,2.706,2.701,2.695],[34.717999,34.716999,34.716999,34.717999,34.716999,34.717999,34.716999,34.716,34.712002,34.709999,34.688,34.676998,34.738998,34.692001,34.667999,34.671001,34.59,34.599998,34.615002,34.632999,34.662998,34.709999,34.749001,34.748001,34.744999,34.736,34.735001,34.727001,34.698002,34.667,34.653,34.644001,34.632,34.616001,34.616001,34.618999,34.604,34.584999,34.569,34.543999,34.534,34.509998,34.491001,34.477001,34.444,34.415001,34.403999,34.402,34.388,34.362999,34.332001,34.313999,34.298,34.27,34.257999,34.25,34.236,34.237,34.238998,34.229,34.236,34.245998,34.261002,34.27,34.275002,34.286999,34.299,34.314999,34.314999,34.327,34.332001,34.338001,34.362,34.388,34.398998,34.410999,34.418999,34.431,34.452,34.470001,34.487,34.504002,34.521,34.533001,34.542,34.556,34.57,34.581001,34.595001,34.609001,34.624001,34.633999,34.641998,34.653,34.66,34.668999,34.675999,34.685001,34.694,34.703999,34.712002,34.721001,34.728001,34.737,34.747002,34.754002,34.763,34.769001,34.773998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_014","geolocation":{"type":"Point","coordinates":[9.555,-40.131]},"basin":1,"timestamp":"2005-06-17T01:59:00.000Z","date_updated_argovis":"2023-01-24T21:27:23.708Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_014.nc","date_updated":"2015-10-19T17:47:58.000Z"}],"cycle_number":14,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,26,35,44,55,65,75,85,95,104,115,126,135,145,156,165,176,185,195,205,215,225,235,245,255,265,275,285,295,305,316,325,335,345,355,365,376,385,395,405,416,425,435,445,455,464,475,485,495,512,539,563,587,613,637,663,688,713,738,762,787,812,838,862,887,912,937,962,987,1012,1037,1063,1088,1112,1137,1162,1187,1213,1238,1263,1288,1314,1337,1362,1387,1412,1438,1463,1488,1512,1538,1562,1588,1613,1638,1662,1687,1713,1738,1762,1787,1812,1837,1862,1887,1912,1938,1963,1982],[11.408,11.383,11.358,11.349,11.36,11.4,11.407,11.41,11.416,11.427,11.34,11.5,11.461,11.535,11.457,11.337,11.223,11.103,10.909,10.783,10.616,10.494,10.338,10.234,10.073,9.887,9.808,9.741,9.531,9.267,8.887,8.754,8.561,8.492,8.471,8.362,8.196,8.02,7.886,7.734,7.577,7.477,7.313,7.116,6.947,6.755,6.609,6.409,6.256,6.068,5.735,5.504,5.268,5.096,4.899,4.82,4.744,4.596,4.5,4.341,4.172,4.032,3.895,3.754,3.737,3.628,3.606,3.534,3.441,3.413,3.425,3.407,3.204,3.124,3.086,3.068,3.174,3.165,3.109,3.071,3.015,2.984,2.945,2.912,2.883,2.859,2.862,2.89,2.874,2.853,2.84,2.826,2.814,2.803,2.796,2.788,2.78,2.77,2.763,2.754,2.749,2.746,2.741,2.735,2.729,2.722,2.711,2.704,2.698],[34.546001,34.542999,34.541,34.541,34.546001,34.557999,34.560001,34.560001,34.563999,34.574001,34.561001,34.625999,34.715,34.785,34.813999,34.830002,34.833,34.834999,34.819,34.806,34.792,34.784,34.771999,34.761002,34.744999,34.724998,34.716,34.706001,34.681,34.646,34.582001,34.558998,34.535,34.529999,34.530998,34.529999,34.514,34.5,34.492001,34.477001,34.462002,34.455002,34.441002,34.426998,34.415001,34.402,34.389,34.372002,34.360001,34.344002,34.314999,34.292999,34.273998,34.262001,34.257999,34.264999,34.271999,34.269001,34.271999,34.265999,34.263,34.261002,34.262001,34.258999,34.278,34.275002,34.291,34.303001,34.311001,34.334999,34.361,34.380001,34.369999,34.375,34.383999,34.398998,34.428001,34.438999,34.450001,34.464001,34.474998,34.487999,34.507,34.522999,34.537998,34.549999,34.57,34.592999,34.608002,34.620998,34.632999,34.643002,34.651001,34.66,34.667999,34.676998,34.683998,34.698002,34.707001,34.716999,34.723,34.730999,34.737,34.744999,34.750999,34.757,34.764999,34.769001,34.773998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_012","geolocation":{"type":"Point","coordinates":[8.636000000000001,-40.491]},"basin":1,"timestamp":"2005-05-28T01:54:00.000Z","date_updated_argovis":"2023-01-24T21:27:21.793Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_012.nc","date_updated":"2015-10-19T17:47:57.000Z"}],"cycle_number":12,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,104,115,125,134,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,395,405,415,425,435,445,456,465,475,485,495,512,537,563,588,613,638,662,687,713,738,762,788,814,837,862,887,912,937,962,987,1013,1037,1062,1089,1112,1138,1163,1187,1212,1237,1263,1288,1313,1337,1362,1388,1412,1437,1463,1487,1512,1539,1562,1588,1613,1638,1663,1688,1714,1738,1762,1787,1813,1838,1863,1888,1912,1937,1963,1984],[13.493,13.496,13.486,13.471,13.135,12.529,12.35,12.199,12.039,11.63,11.611,11.526,11.44,11.311,11.568,11.454,11.268,11.205,11.034,10.815,10.695,10.594,10.499,10.413,10.208,9.838,9.657,9.422,9.077,9.095,9.044,8.887,8.895,8.829,8.635,8.493,8.265,8.085,7.848,7.743,7.55,7.433,7.333,7.156,7.057,6.975,6.904,6.81,6.766,6.622,6.315,6.036,5.959,5.827,5.621,5.356,5.162,4.987,4.843,4.749,4.617,4.492,4.257,3.821,3.656,3.645,3.683,3.663,3.501,3.305,3.315,3.352,3.31,3.305,3.318,3.217,3.119,3.086,3.075,3.08,3.087,3.055,3.02,2.977,2.958,2.925,2.902,2.874,2.856,2.839,2.816,2.809,2.801,2.791,2.775,2.766,2.751,2.746,2.73,2.714,2.715,2.707,2.725,2.708,2.719,2.715,2.698,2.697,2.692],[34.662998,34.662998,34.661999,34.658001,34.606998,34.528,34.527,34.528,34.547001,34.632,34.748001,34.779999,34.778999,34.798,34.881001,34.875999,34.855,34.860001,34.830002,34.800999,34.791,34.782001,34.771999,34.764999,34.728001,34.666,34.645,34.608002,34.556,34.576,34.578999,34.558998,34.581001,34.589001,34.569,34.558998,34.527,34.502998,34.478001,34.466,34.448002,34.443001,34.438999,34.425999,34.417,34.409,34.402,34.395,34.397999,34.389,34.368,34.354,34.368,34.373001,34.359001,34.344002,34.333,34.323002,34.326,34.337002,34.34,34.345001,34.328999,34.285999,34.284,34.303001,34.327999,34.341,34.338001,34.327999,34.348,34.375,34.389,34.408001,34.431999,34.435001,34.437,34.452,34.465,34.485001,34.507999,34.521999,34.533001,34.542,34.553001,34.558998,34.569,34.577999,34.59,34.603001,34.618999,34.633999,34.646999,34.654999,34.664001,34.674999,34.686001,34.695999,34.702,34.709,34.716,34.723,34.733002,34.737999,34.749001,34.755001,34.759998,34.766998,34.771]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_011","geolocation":{"type":"Point","coordinates":[8.514000000000001,-40.355000000000004]},"basin":1,"timestamp":"2005-05-18T02:06:00.000Z","date_updated_argovis":"2023-01-24T21:27:19.976Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_011.nc","date_updated":"2015-10-19T17:47:57.000Z"}],"cycle_number":11,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,65,76,86,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,326,335,345,355,365,375,384,395,405,414,425,435,444,455,464,475,486,495,513,537,563,587,612,637,663,687,712,737,762,788,812,838,862,887,912,938,962,987,1012,1037,1063,1088,1112,1137,1162,1187,1212,1237,1264,1287,1312,1337,1362,1387,1412,1437,1462,1487,1512,1537,1562,1587,1613,1638,1663,1688,1713,1739,1762,1787,1813,1837,1862,1887,1912,1939,1962,1984],[13.303,13.305,13.307,13.308,13.305,13.308,13.304,12.601,11.489,11.236,10.749,10.818,10.747,10.668,10.733,10.736,10.587,10.443,10.378,10.28,10.044,9.841,9.626,9.401,9.434,9.476,9.396,9.34,9.248,9.069,8.918,8.786,8.681,8.551,8.436,8.287,8.167,8.018,7.893,7.774,7.664,7.514,7.391,7.244,7.133,7.003,6.902,6.803,6.68,6.379,6.098,5.79,5.556,5.448,5.39,5.18,4.752,4.569,4.424,4.272,4.262,4.128,4.015,3.841,3.852,3.561,3.486,3.379,3.366,3.331,3.458,3.509,3.49,3.467,3.405,3.136,3.092,3.055,3.013,3.01,3.055,3.043,3.052,3.008,2.985,2.968,2.95,2.904,2.89,2.862,2.843,2.816,2.805,2.797,2.789,2.788,2.781,2.77,2.758,2.752,2.74,2.721,2.723,2.718,2.708,2.714,2.725,2.721,2.713],[34.553001,34.553001,34.553001,34.553001,34.553001,34.553001,34.550999,34.542999,34.514999,34.569,34.534,34.583,34.610001,34.646,34.692001,34.710999,34.705002,34.693001,34.689999,34.688,34.655998,34.632999,34.608002,34.583,34.608002,34.633999,34.629002,34.637001,34.632999,34.615002,34.598999,34.588001,34.583,34.57,34.556999,34.542,34.530998,34.514999,34.502998,34.493,34.481998,34.467999,34.458,34.445,34.432999,34.419998,34.41,34.400002,34.391998,34.375,34.354,34.325001,34.310001,34.308998,34.317001,34.301998,34.255001,34.244999,34.243999,34.244999,34.264999,34.27,34.279999,34.280998,34.297001,34.272999,34.277,34.278,34.298,34.316002,34.356998,34.387001,34.408001,34.422001,34.431999,34.412998,34.431999,34.445999,34.458,34.471001,34.491001,34.501999,34.518002,34.533001,34.548,34.558998,34.573002,34.581001,34.598,34.608002,34.618999,34.629002,34.639999,34.652,34.665001,34.675999,34.682999,34.691002,34.700001,34.709,34.714001,34.720001,34.729,34.736,34.741001,34.749001,34.757999,34.762001,34.765999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_010","geolocation":{"type":"Point","coordinates":[8.38,-40.499]},"basin":1,"timestamp":"2005-05-08T01:54:00.000Z","date_updated_argovis":"2023-01-24T21:27:18.073Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_010.nc","date_updated":"2015-10-19T17:47:56.000Z"}],"cycle_number":10,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,45,55,65,75,85,96,105,115,125,135,145,155,165,175,185,195,206,216,225,235,245,255,265,275,285,295,305,314,325,335,345,355,365,375,384,395,405,415,425,435,445,455,465,475,485,495,513,537,563,588,613,638,663,688,713,738,763,788,813,838,863,888,913,938,963,988,1013,1037,1062,1087,1112,1137,1163,1187,1212,1238,1264,1287,1313,1337,1362,1387,1413,1438,1462,1487,1512,1538,1562,1587,1612,1638,1663,1687,1713,1737,1763,1788,1812,1837,1862,1887,1913,1938,1963,1984],[13.992,13.995,13.997,13.992,13.989,13.989,13.985,13.779,12.92,12.221,11.947,11.706,11.551,11.323,11.056,10.854,10.806,10.631,10.505,10.485,10.267,10.044,9.977,9.749,9.657,9.601,9.422,9.29,9.169,9.077,8.956,8.818,8.628,8.463,8.248,8.078,8.007,7.935,7.856,7.742,7.666,7.441,7.325,7.214,7.174,6.999,6.74,6.631,6.517,6.162,5.849,5.622,5.407,5.195,4.968,4.758,4.602,4.398,4.259,4.105,3.925,3.857,3.86,3.922,3.813,3.651,3.514,3.482,3.392,3.341,3.297,3.251,3.184,3.155,3.128,3.104,3.078,3.092,3.058,3.073,3.112,3.104,3.081,3.027,2.99,2.962,2.942,2.886,2.874,2.862,2.847,2.817,2.799,2.794,2.79,2.778,2.772,2.77,2.769,2.761,2.757,2.757,2.752,2.74,2.718,2.71,2.702,2.696,2.694],[34.506001,34.506001,34.506001,34.507,34.507999,34.507999,34.507999,34.511002,34.535,34.606998,34.636002,34.655998,34.665001,34.657001,34.640999,34.632,34.664001,34.660999,34.681999,34.708,34.685001,34.672001,34.672001,34.640999,34.647999,34.660999,34.645,34.632999,34.622002,34.612,34.602001,34.585999,34.567001,34.546001,34.521,34.504002,34.499001,34.5,34.495998,34.487999,34.480999,34.459,34.445999,34.439999,34.450001,34.43,34.402,34.389999,34.377998,34.341999,34.312,34.297001,34.282001,34.265999,34.247002,34.233002,34.234001,34.230999,34.229,34.226002,34.221001,34.231998,34.257999,34.285999,34.285999,34.291,34.287998,34.299999,34.310001,34.325001,34.334,34.346001,34.359001,34.374001,34.382,34.394001,34.411999,34.429001,34.439999,34.459,34.479,34.494999,34.509998,34.526001,34.536999,34.551998,34.571999,34.577999,34.587002,34.601002,34.612,34.625,34.636002,34.651001,34.661999,34.674,34.683998,34.695,34.703999,34.712002,34.717999,34.724998,34.73,34.735001,34.741001,34.748001,34.754002,34.757,34.763]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_009","geolocation":{"type":"Point","coordinates":[8.617,-40.329]},"basin":1,"timestamp":"2005-04-28T02:01:00.000Z","date_updated_argovis":"2023-01-24T21:27:16.075Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_009.nc","date_updated":"2015-10-19T17:47:55.000Z"}],"cycle_number":9,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,56,65,75,85,95,105,115,125,136,145,155,166,175,186,194,205,216,225,235,245,256,266,276,285,294,305,315,325,335,346,356,365,375,386,395,405,416,425,435,445,455,465,475,485,494,512,537,563,588,612,637,663,688,713,737,762,788,812,838,862,887,912,937,962,987,1013,1039,1062,1088,1113,1138,1162,1187,1212,1237,1262,1287,1314,1337,1363,1388,1412,1437,1462,1487,1513,1538,1563,1587,1613,1638,1662,1687,1713,1738,1763,1788,1812,1837,1862,1887,1912,1937,1963,1981],[14.417,14.362,14.33,14.281,14.202,14.017,13.06,12.467,12.21,11.947,11.676,11.511,11.275,11.06,10.769,10.709,10.904,10.761,10.477,10.176,10.032,10.001,10.225,10.152,10.026,9.876,9.727,9.613,9.38,9.142,9.045,8.969,8.855,8.744,8.724,8.669,8.506,8.349,8.239,8.092,7.953,7.694,7.421,7.254,7.083,6.948,6.812,6.635,6.434,6.218,5.972,5.708,5.308,5.023,4.777,4.583,4.435,4.394,4.274,4.242,4.192,4.154,4.032,3.946,3.873,3.768,3.691,3.677,3.599,3.532,3.358,3.337,3.288,3.197,3.13,3.081,3.056,3.014,2.99,3.021,3.055,3.092,3.091,3.058,3.071,3.052,3.012,2.964,2.953,2.913,2.886,2.856,2.832,2.815,2.795,2.783,2.768,2.758,2.747,2.736,2.733,2.725,2.72,2.712,2.707,2.701,2.691,2.675,2.662],[34.470001,34.466,34.460999,34.452999,34.439999,34.469002,34.502998,34.557999,34.657001,34.665001,34.652,34.643002,34.616001,34.597,34.574001,34.591,34.672001,34.667999,34.631001,34.608002,34.612999,34.641998,34.716,34.726002,34.710999,34.693001,34.674999,34.664001,34.636002,34.611,34.612,34.605,34.595001,34.592999,34.602001,34.597,34.582001,34.563999,34.550999,34.534,34.521999,34.485001,34.450001,34.431,34.416,34.403,34.391998,34.374001,34.353001,34.335999,34.321999,34.306999,34.277,34.261002,34.244999,34.231998,34.224998,34.231998,34.229,34.244999,34.257,34.272999,34.276001,34.280998,34.292999,34.299999,34.311001,34.330002,34.339001,34.348999,34.349998,34.366001,34.375,34.374001,34.382,34.389,34.403,34.416,34.426998,34.450001,34.478001,34.501999,34.519001,34.529999,34.547001,34.560001,34.57,34.584,34.604,34.620998,34.638,34.652,34.661999,34.673,34.681999,34.692001,34.700001,34.709,34.716999,34.723999,34.730999,34.740002,34.748001,34.754002,34.759998,34.765999,34.771,34.776001,34.779999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_008","geolocation":{"type":"Point","coordinates":[8.854000000000001,-40.1]},"basin":1,"timestamp":"2005-04-18T01:54:59.999Z","date_updated_argovis":"2023-01-24T21:27:14.204Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_008.nc","date_updated":"2015-10-19T17:47:55.000Z"}],"cycle_number":8,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,36,45,54,64,75,85,95,105,114,125,136,145,155,166,174,185,196,205,215,225,235,245,255,265,275,284,295,305,315,325,334,345,355,366,375,385,395,405,414,425,435,445,455,466,475,485,496,513,539,562,587,613,638,663,687,713,738,763,787,812,837,862,888,912,937,963,988,1012,1038,1063,1088,1113,1137,1162,1187,1212,1237,1262,1289,1312,1338,1363,1388,1412,1437,1462,1487,1512,1538,1562,1587,1612,1637,1662,1688,1713,1738,1762,1788,1813,1837,1862,1887,1912,1937,1963,1981],[14.73,14.73,14.733,14.737,14.676,13.944,13.487,12.886,12.454,11.974,11.681,11.445,11.172,11.017,10.829,10.498,10.331,10.212,10.117,10.07,10.017,9.856,9.796,9.827,9.955,10.209,10.147,10.024,9.863,9.762,9.643,9.558,9.472,9.401,9.23,8.955,8.647,8.659,8.386,8.129,7.86,7.887,7.833,7.742,7.592,7.432,7.293,6.948,6.787,6.571,6.227,5.966,5.843,5.335,5.064,4.857,4.932,4.879,4.643,4.39,4.234,4.132,4.037,4.019,4.066,3.92,3.767,3.562,3.546,3.472,3.517,3.449,3.454,3.424,3.373,3.33,3.324,3.254,3.172,3.102,3.023,3.008,2.975,2.953,2.979,2.953,2.928,2.913,2.896,2.861,2.845,2.838,2.831,2.818,2.803,2.789,2.779,2.769,2.756,2.751,2.74,2.727,2.728,2.733,2.727,2.725,2.721,2.717,2.713],[34.605999,34.605,34.605,34.605999,34.603001,34.514,34.497002,34.449001,34.436001,34.449001,34.469002,34.483002,34.512001,34.52,34.516998,34.497002,34.507,34.535,34.549,34.568001,34.584999,34.574001,34.575001,34.605,34.655998,34.742001,34.738998,34.723999,34.702999,34.698002,34.688,34.683998,34.674999,34.678001,34.66,34.625,34.580002,34.591999,34.554001,34.516998,34.485001,34.508999,34.513,34.508999,34.493,34.477001,34.457001,34.414001,34.400002,34.383999,34.361,34.342999,34.346001,34.294998,34.277,34.264,34.292999,34.304001,34.286999,34.269001,34.266998,34.276001,34.284,34.298,34.326,34.325001,34.324001,34.321999,34.334999,34.341,34.368,34.376999,34.396999,34.416,34.428001,34.438,34.459999,34.469002,34.474998,34.486,34.494999,34.507999,34.525002,34.536999,34.555,34.564999,34.575001,34.59,34.601002,34.612,34.623001,34.630001,34.639999,34.648998,34.659,34.667999,34.678001,34.687,34.698002,34.705002,34.716,34.724998,34.730999,34.740002,34.75,34.757,34.762001,34.763,34.764]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_007","geolocation":{"type":"Point","coordinates":[9.093,-39.953]},"basin":1,"timestamp":"2005-04-08T01:54:59.999Z","date_updated_argovis":"2023-01-24T21:27:12.312Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_007.nc","date_updated":"2015-10-19T17:47:54.000Z"}],"cycle_number":7,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,34,45,55,65,75,85,95,105,115,125,136,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,415,425,434,445,455,464,475,485,495,513,537,564,587,612,637,662,687,713,738,763,787,812,839,862,887,912,938,963,988,1013,1037,1062,1088,1112,1137,1163,1188,1212,1238,1263,1288,1313,1338,1362,1387,1412,1437,1462,1488,1513,1537,1562,1588,1612,1637,1662,1687,1713,1737,1762,1787,1813,1837,1862,1887,1912,1937,1962,1982],[15.056,15.059,15.263,15.662,15.59,15.596,15.358,13.275,12.63,12.711,12.242,12.581,12.33,12.266,12.181,12.146,11.935,12.048,11.842,11.58,11.064,10.797,10.63,10.113,9.845,9.663,9.585,9.518,9.418,9.339,9.217,9.056,8.862,8.709,8.583,8.391,8.168,7.945,7.771,7.572,7.395,7.271,7.158,7.048,6.994,6.84,6.763,6.567,6.44,6.188,5.926,5.642,5.48,5.201,4.965,4.694,4.519,4.42,4.322,4.206,4.236,4.005,4.043,3.997,4.02,3.982,3.856,3.76,3.678,3.608,3.565,3.386,3.377,3.364,3.428,3.396,3.288,3.241,3.175,3.134,3.026,2.962,2.957,2.954,2.927,2.896,2.885,2.874,2.868,2.852,2.807,2.799,2.809,2.808,2.802,2.793,2.777,2.76,2.759,2.762,2.754,2.733,2.728,2.729,2.72,2.701,2.692,2.677,2.671],[34.539001,34.540001,34.707001,34.969002,34.956001,34.962002,34.935001,34.577,34.560001,34.705002,34.647999,34.810001,34.810001,34.821999,34.848,34.882999,34.858002,34.918999,34.91,34.889,34.805,34.769001,34.749001,34.664001,34.639999,34.619999,34.630001,34.632,34.625999,34.624001,34.613998,34.602001,34.581001,34.566002,34.553001,34.533001,34.511002,34.492001,34.473,34.457001,34.442001,34.433998,34.424999,34.417,34.415001,34.400002,34.397999,34.376999,34.362,34.337002,34.323002,34.306,34.300999,34.277,34.256001,34.233002,34.224998,34.224998,34.226002,34.235001,34.263,34.25,34.285,34.293999,34.321999,34.334999,34.338001,34.341,34.351002,34.366001,34.377998,34.375999,34.397999,34.412998,34.439999,34.452,34.453999,34.463001,34.473,34.490002,34.493999,34.508999,34.522999,34.535999,34.546001,34.562,34.577999,34.594002,34.606998,34.625,34.632999,34.645,34.658001,34.669998,34.674999,34.683998,34.688999,34.695999,34.702999,34.715,34.722,34.73,34.737,34.744999,34.750999,34.759998,34.764999,34.771999,34.777]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_006","geolocation":{"type":"Point","coordinates":[10.228,-39.589]},"basin":1,"timestamp":"2005-03-29T02:08:00.000Z","date_updated_argovis":"2023-01-24T21:27:10.407Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_006.nc","date_updated":"2015-10-19T17:47:54.000Z"}],"cycle_number":6,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[16,25,35,45,55,64,75,85,95,105,115,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,345,355,364,375,386,395,405,415,425,434,445,455,465,475,485,495,513,537,563,588,612,638,663,688,712,737,763,788,814,838,862,887,912,937,963,988,1013,1038,1062,1087,1112,1138,1163,1188,1212,1237,1263,1288,1313,1337,1362,1387,1412,1438,1462,1487,1513,1537,1562,1587,1612,1637,1663,1690,1713,1737,1762,1787,1812,1838,1863,1887,1913,1938,1963,1981],[15.073,15.07,15.062,14.934,13.674,12.674,12.165,11.802,11.61,11.328,10.844,10.485,10.337,10.037,10.026,10.048,9.962,9.84,9.732,9.469,9.513,9.223,9.081,9.067,9.002,8.846,8.736,8.727,8.647,8.574,8.483,8.382,8.249,8.049,7.822,7.647,7.515,7.388,7.292,7.269,7.203,7.089,6.767,6.791,6.692,6.48,6.375,6.264,6.152,5.955,5.696,5.451,5.241,5.045,4.886,4.741,4.652,4.529,4.438,4.357,4.216,4.066,4.048,3.905,3.856,3.701,3.579,3.502,3.468,3.41,3.305,3.306,3.245,3.226,3.209,3.214,3.114,3.017,3.044,3.057,3.064,3.051,3.025,2.989,2.955,2.925,2.885,2.862,2.862,2.854,2.842,2.792,2.771,2.764,2.76,2.748,2.74,2.737,2.732,2.727,2.72,2.716,2.71,2.704,2.698,2.691,2.683,2.672,2.665],[34.528,34.527,34.525002,34.509998,34.488998,34.465,34.491001,34.495998,34.548,34.569,34.527,34.515999,34.549999,34.529999,34.542999,34.578999,34.589001,34.59,34.592999,34.563,34.59,34.549999,34.535999,34.550999,34.549,34.533001,34.526001,34.542999,34.544998,34.547001,34.542999,34.543999,34.530998,34.511002,34.487999,34.472,34.466,34.463001,34.455002,34.471001,34.467999,34.459,34.424999,34.442001,34.435001,34.407001,34.400002,34.389,34.384998,34.374001,34.348999,34.333,34.319,34.308998,34.305,34.300999,34.307999,34.311001,34.321999,34.331001,34.335999,34.334,34.347,34.352001,34.362999,34.356998,34.360001,34.368999,34.388,34.396999,34.401001,34.417,34.425999,34.442001,34.460999,34.478001,34.478001,34.483002,34.507999,34.530998,34.547001,34.558998,34.571999,34.584999,34.597,34.605,34.612,34.625,34.639,34.650002,34.660999,34.665001,34.675999,34.688,34.700001,34.709,34.720001,34.728001,34.736,34.743999,34.750999,34.756001,34.764999,34.771,34.775002,34.778,34.784,34.790001,34.792999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_005","geolocation":{"type":"Point","coordinates":[10.197000000000001,-39.279]},"basin":1,"timestamp":"2005-03-19T02:02:00.000Z","date_updated_argovis":"2023-01-24T21:27:08.677Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_005.nc","date_updated":"2015-10-19T17:47:53.000Z"}],"cycle_number":5,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,75,85,95,106,115,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,294,305,315,325,335,345,355,365,375,385,395,404,415,425,435,445,455,464,475,486,495,514,537,562,588,613,637,662,687,712,738,762,787,814,837,862,887,912,937,962,987,1012,1038,1063,1088,1113,1137,1162,1187,1213,1238,1262,1288,1314,1338,1363,1388,1413,1437,1463,1487,1513,1537,1563,1588,1612,1637,1662,1688,1713,1738,1762,1787,1812,1838,1863,1887,1913,1938,1963,1982],[15.676,15.317,14.138,13.908,13.27,12.383,11.641,11.334,11.087,10.768,10.619,10.287,9.969,9.825,9.662,9.65,9.829,9.82,9.782,9.551,9.502,9.327,9.155,9.179,9.261,8.966,8.808,8.695,8.682,8.693,8.548,8.372,8.194,8.124,7.958,7.801,7.638,7.515,7.416,7.282,7.087,6.939,6.872,6.745,6.538,6.505,6.446,6.219,6.103,6.03,5.909,5.827,5.425,5.017,4.876,4.699,4.683,5.154,5.166,4.923,4.727,4.724,4.61,4.269,3.977,3.775,3.646,3.528,3.448,3.389,3.346,3.42,3.486,3.499,3.458,3.365,3.285,3.253,3.031,3.006,2.977,2.956,2.935,2.903,2.895,2.876,2.863,2.877,2.869,2.856,2.822,2.823,2.812,2.792,2.783,2.764,2.759,2.757,2.76,2.763,2.755,2.747,2.739,2.726,2.713,2.713,2.708,2.693,2.685],[34.563,34.577,34.478001,34.474998,34.476002,34.421001,34.416,34.412998,34.433998,34.439999,34.462002,34.457001,34.449001,34.456001,34.452999,34.476002,34.534,34.550999,34.561001,34.536999,34.550999,34.535,34.522999,34.557999,34.588001,34.549999,34.528999,34.521999,34.535999,34.550999,34.540001,34.521,34.502998,34.499001,34.479,34.464001,34.453999,34.444,34.443001,34.431,34.411999,34.400002,34.397999,34.391998,34.367001,34.375,34.377998,34.354,34.347,34.351002,34.355999,34.367001,34.321999,34.278999,34.271999,34.262001,34.283001,34.382,34.414001,34.396999,34.390999,34.412998,34.415001,34.382,34.360001,34.349998,34.356998,34.362999,34.370998,34.382999,34.395,34.424,34.451,34.470001,34.479,34.484001,34.491001,34.499001,34.481998,34.493,34.506001,34.516998,34.530998,34.544998,34.558998,34.57,34.584999,34.608002,34.620998,34.629002,34.638,34.650002,34.66,34.671001,34.68,34.687,34.699001,34.709999,34.719002,34.728001,34.736,34.743,34.749001,34.751999,34.757,34.765999,34.771999,34.776001,34.780998]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_004","geolocation":{"type":"Point","coordinates":[9.928,-39.969]},"basin":1,"timestamp":"2005-03-09T01:56:00.000Z","date_updated_argovis":"2023-01-24T21:27:06.702Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_004.nc","date_updated":"2015-10-19T17:47:52.000Z"}],"cycle_number":4,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,36,46,55,65,75,85,95,105,116,126,135,145,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,336,345,356,366,375,385,395,405,414,425,435,445,455,465,475,485,496,513,537,562,587,612,637,662,687,712,737,764,787,812,837,863,887,912,937,962,987,1013,1037,1062,1088,1113,1137,1162,1188,1213,1238,1263,1288,1313,1338,1362,1387,1412,1437,1462,1487,1513,1537,1563,1587,1612,1637,1662,1688,1713,1738,1762,1787,1812,1838,1862,1888,1912,1938,1958],[15.841,15.845,15.829,14.94,14.036,13.65,12.489,11.908,11.426,11.253,10.917,10.736,10.951,11.69,11.176,10.786,10.888,10.836,10.698,10.487,10.403,10.279,10.088,9.701,9.488,9.284,9.079,8.725,8.827,8.866,8.828,8.671,8.426,8.205,7.917,7.787,7.571,7.444,7.356,7.297,7.186,7.213,7.101,6.939,6.698,6.583,6.496,6.41,6.499,6.315,5.858,5.784,5.679,5.462,5.336,5.129,5.083,4.678,4.541,4.509,4.327,3.973,3.804,4.046,3.919,3.823,3.66,3.586,3.623,3.463,3.47,3.265,3.175,3.278,3.067,3.066,3.005,2.965,2.943,2.921,2.924,2.889,2.857,2.861,2.862,2.845,2.819,2.794,2.788,2.784,2.778,2.771,2.772,2.764,2.761,2.757,2.753,2.733,2.731,2.726,2.727,2.73,2.718,2.693,2.689,2.686,2.677,2.671],[34.605,34.605999,34.605999,34.569,34.541,34.546001,34.432999,34.465,34.505001,34.556,34.534,34.543999,34.671001,34.889999,34.803001,34.759998,34.825001,34.853001,34.842999,34.821999,34.821999,34.814999,34.791,34.719002,34.693001,34.667999,34.639,34.585999,34.608002,34.632,34.632,34.609001,34.577,34.548,34.506001,34.488998,34.462002,34.446999,34.444,34.439999,34.437,34.458,34.452999,34.437,34.412998,34.408001,34.404999,34.405998,34.436001,34.424,34.373001,34.386002,34.388,34.379002,34.393002,34.389,34.411999,34.374001,34.376999,34.401001,34.394001,34.362999,34.362,34.414001,34.41,34.419998,34.417999,34.43,34.451,34.452,34.472,34.459,34.465,34.499001,34.483002,34.498001,34.507,34.518002,34.530998,34.542,34.556,34.568001,34.578999,34.597,34.612,34.623001,34.632,34.641998,34.651001,34.660999,34.669998,34.68,34.694,34.705002,34.713001,34.720001,34.73,34.735001,34.742001,34.745998,34.752998,34.758999,34.764999,34.771,34.777,34.780998,34.785,34.789001]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_003","geolocation":{"type":"Point","coordinates":[10.416,-39.910000000000004]},"basin":1,"timestamp":"2005-02-26T02:09:00.000Z","date_updated_argovis":"2023-01-24T21:27:04.793Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_003.nc","date_updated":"2015-10-19T17:47:51.000Z"}],"cycle_number":3,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[14,25,35,45,55,65,75,85,95,105,115,125,135,145,155,165,175,184,195,205,215,225,235,245,255,264,275,285,295,305,315,325,335,345,355,365,375,384,394,405,415,425,435,445,455,465,475,485,495,514,538,563,587,612,637,662,687,713,738,762,788,812,837,862,888,913,938,963,987,1012,1038,1062,1088,1113,1137,1162,1187,1213,1238,1263,1288,1313,1338,1362,1387,1412,1437,1462,1488,1512,1538,1563,1587,1612,1637,1663,1688,1713,1738,1763,1788,1812,1837,1862,1887,1912,1937,1962,1988],[14.911,14.903,14.748,14.37,13.567,12.532,11.571,10.909,10.34,9.868,10.071,10.019,9.892,9.622,9.407,9.268,9.022,9.151,9.262,9.188,9.036,8.657,8.36,8.305,8.156,8.093,8.121,8.493,8.751,8.687,8.605,8.474,8.4,8.237,8.075,8.092,8.065,7.974,7.929,7.977,7.976,7.855,7.735,7.47,7.156,6.791,6.596,6.503,6.319,6.121,5.779,5.847,5.871,5.756,5.668,5.608,5.509,5.276,4.969,4.803,4.475,4.36,4.385,4.201,4.027,3.94,3.968,3.552,3.276,3.395,3.396,3.325,3.298,3.327,3.25,3.226,3.27,3.186,3.07,2.991,2.88,2.867,2.847,2.822,2.812,2.815,2.834,2.831,2.811,2.796,2.775,2.772,2.766,2.762,2.759,2.761,2.76,2.746,2.758,2.747,2.735,2.73,2.718,2.706,2.696,2.68,2.675,2.671,2.666],[34.435001,34.435001,34.435001,34.423,34.404999,34.419998,34.432999,34.397999,34.348999,34.346001,34.443001,34.474998,34.478001,34.463001,34.452,34.445,34.423,34.479,34.533001,34.528999,34.509998,34.449001,34.407001,34.401001,34.389,34.393002,34.417,34.514,34.584999,34.577,34.568001,34.558998,34.556,34.539001,34.528999,34.554001,34.555,34.549,34.553001,34.574001,34.582001,34.573002,34.560001,34.525002,34.477001,34.424999,34.403999,34.393002,34.374001,34.365002,34.334999,34.375999,34.401001,34.403999,34.411999,34.424999,34.445999,34.437,34.418999,34.418999,34.403999,34.417,34.444,34.437,34.43,34.437,34.460999,34.419998,34.407001,34.443001,34.455002,34.466,34.477001,34.493999,34.499001,34.515999,34.541,34.548,34.549999,34.555,34.556,34.571999,34.588001,34.602001,34.612,34.627998,34.643002,34.648998,34.654999,34.664001,34.674,34.68,34.686001,34.693001,34.702999,34.712002,34.720001,34.724998,34.734001,34.738998,34.744999,34.751999,34.758999,34.764999,34.771,34.779999,34.785,34.787998,34.793999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_002","geolocation":{"type":"Point","coordinates":[10.991,-39.407000000000004]},"basin":1,"timestamp":"2005-02-16T02:09:00.000Z","date_updated_argovis":"2023-01-24T21:27:02.979Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_002.nc","date_updated":"2015-10-19T17:47:50.000Z"}],"cycle_number":2,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,54,65,75,85,94,105,115,124,135,145,155,165,175,185,196,205,215,225,236,245,255,265,275,285,294,305,315,325,334,345,355,364,375,385,395,406,415,425,436,445,455,465,475,485,495,513,539,562,587,612,637,662,687,712,737,763,788,813,838,863,887,912,938,963,987,1013,1037,1062,1088,1113,1137,1187,1237,1288,1338,1387,1437,1488,1513,1538,1562,1587,1612,1637,1662,1687,1713,1737,1762,1787,1812,1837,1863,1887,1912,1937,1962,1982],[17.290001,17.16,17.127001,17.094,16.841,16.665001,16.429001,15.862,14.607,13.428,13.031,12.465,12.102,11.882,11.755,11.59,10.907,11.052,10.533,10.869,11.437,11.664,11.647,11.214,10.969,10.666,10.509,10.359,10.11,9.789,9.463,9.358,9.32,9.157,9.033,8.92,8.727,8.718,8.619,8.494,8.364,8.21,7.884,7.753,7.707,7.472,7.263,6.798,6.564,6.321,6.019,5.605,5.443,5.404,5.038,4.959,5.078,4.965,5.042,4.983,4.869,4.581,4.562,4.368,4.367,4.287,4.161,4.058,3.472,3.306,3.466,3.409,3.371,3.373,3.323,3.186,3.108,3.021,3.009,2.92,2.895,2.838,2.813,2.789,2.765,2.756,2.74,2.733,2.733,2.733,2.725,2.733,2.742,2.736,2.709,2.701,2.72,2.715,2.711,2.684,2.648,2.654],[35.063,35.050999,35.054001,35.087002,35.207001,35.347,35.379002,35.300999,35.105999,34.911999,34.869999,34.786999,34.736,34.723,34.735001,34.738998,34.613998,34.701,34.605,34.716,34.874001,34.950001,34.980999,34.924,34.890999,34.861,34.852001,34.839001,34.812,34.762001,34.714001,34.702,34.708,34.692001,34.682999,34.668999,34.644001,34.652,34.644001,34.630001,34.618,34.596001,34.548,34.534,34.539001,34.507999,34.476002,34.403,34.381001,34.362999,34.341,34.299999,34.299999,34.314999,34.277,34.287998,34.328999,34.334999,34.379002,34.397999,34.408001,34.397999,34.415001,34.403,34.433998,34.453999,34.465,34.478001,34.416,34.416,34.462002,34.471001,34.480999,34.5,34.507,34.526001,34.551998,34.568001,34.591,34.609001,34.629002,34.652,34.659,34.660999,34.667,34.676998,34.686001,34.693001,34.700001,34.712002,34.717999,34.728001,34.738998,34.744999,34.745998,34.75,34.759998,34.764999,34.77,34.772999,34.773998,34.778999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_001","geolocation":{"type":"Point","coordinates":[10.599,-39.34]},"basin":1,"timestamp":"2005-02-06T02:02:59.999Z","date_updated_argovis":"2023-01-24T21:27:01.078Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_001.nc","date_updated":"2015-10-19T17:47:49.000Z"}],"cycle_number":1,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,74,85,95,105,114,125,135,146,155,165,175,185,195,205,215,225,235,245,255,265,275,285,295,305,315,325,335,346,355,364,375,385,395,405,415,425,434,445,455,465,475,485,495,515,537,563,587,612,637,662,687,713,737,763,788,813,837,862,888,913,938,963,987,1012,1038,1063,1087,1112,1138,1163,1188,1212,1238,1263,1287,1313,1337,1362,1387,1412,1437,1462,1488,1513,1538,1562,1587,1612,1637,1663,1688,1713,1738,1764,1788,1812,1837,1862,1887,1912,1937,1963,1983],[17.607,17.497,17.389999,16.993999,16.896,16.767,16.707001,16.301001,15.436,13.921,13.221,12.694,12.104,11.825,11.843,11.903,11.924,11.657,11.498,11.32,11.176,11.177,11.063,10.858,10.645,10.298,9.923,9.652,9.849,9.692,9.449,9.415,9.314,9.203,9.199,8.823,8.496,8.112,8.004,7.95,7.846,7.642,7.548,7.41,7.222,7.181,7.079,6.93,6.82,6.548,6.72,6.448,6.148,5.948,5.648,5.872,5.882,5.671,5.395,4.688,4.437,4.32,4.235,4.133,3.789,3.771,3.69,3.514,3.374,3.273,3.218,3.228,3.223,3.172,3.06,3.067,3.122,3.09,3.05,2.958,2.938,2.936,2.905,2.887,2.854,2.824,2.809,2.81,2.803,2.8,2.783,2.765,2.755,2.748,2.747,2.743,2.736,2.734,2.725,2.725,2.721,2.714,2.704,2.701,2.705,2.694,2.684,2.666,2.657],[35.005001,35,35.001999,35.153999,35.262001,35.328999,35.411999,35.383999,35.252998,34.990002,34.896,34.825001,34.730999,34.716999,34.750999,34.819,34.861,34.841999,34.837002,34.827999,34.837002,34.859001,34.855999,34.839001,34.805,34.750999,34.686001,34.645,34.713001,34.707001,34.681999,34.693001,34.683998,34.686001,34.696999,34.630001,34.577999,34.522999,34.514,34.513,34.5,34.474998,34.465,34.455002,34.438999,34.435001,34.424999,34.410999,34.402,34.375999,34.441002,34.422001,34.401001,34.391998,34.370998,34.439999,34.473999,34.472,34.448002,34.359001,34.342999,34.352001,34.360001,34.368999,34.351002,34.373001,34.383999,34.379002,34.376999,34.375999,34.384998,34.405998,34.421001,34.429001,34.431,34.457001,34.491001,34.506001,34.514999,34.514999,34.525002,34.542,34.558998,34.568001,34.577999,34.591999,34.605999,34.620998,34.632999,34.639,34.647999,34.655998,34.667999,34.679001,34.687,34.695999,34.702,34.715,34.727001,34.734001,34.737999,34.743999,34.750999,34.757,34.763,34.768002,34.772999,34.777,34.779999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_000","geolocation":{"type":"Point","coordinates":[10.809000000000001,-39.898]},"basin":1,"timestamp":"2005-01-27T02:04:00.000Z","date_updated_argovis":"2023-01-24T21:26:57.308Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_000.nc","date_updated":"2015-10-19T17:47:47.000Z"}],"cycle_number":0,"geolocation_argoqc":1,"profile_direction":"A","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 25 dbar average from 2000 dbar to 500 dbar; 10 sec sampling, 10 dbar average from 500 dbar to 10.0 dbar]","data":[[15,25,35,45,55,65,76,85,95,105,115,125,135,145,155,165,175,185,195,205,215,225,235,246,255,265,275,285,295,305,315,325,335,345,355,365,375,385,394,405,416,425,435,445,454,465,475,484,495,512,537,563,587,613,638,662,688,712,737,762,788,813,837,863,888,913,937,963,988,1012,1038,1064,1088,1112,1137,1163,1187,1212,1237,1263,1289,1312,1338,1362,1388,1413,1437,1463,1488,1513,1539,1563,1587,1613,1638,1663,1688,1713,1737,1763,1787,1812,1837,1862,1888,1912,1938,1963,1982],[18.530001,18.190001,15.842,14.399,13.998,13.431,12.79,12.952,13.111,13.19,12.491,11.796,11.376,11.108,11.262,11.528,11.697,11.661,11.642,11.617,11.261,10.979,10.783,10.619,10.416,10.331,10.266,10.071,9.632,9.142,9.103,8.948,8.886,8.765,8.609,8.593,8.721,8.546,8.296,7.763,7.523,7.35,7.248,7.16,7.059,6.93,6.797,6.652,6.513,6.324,5.945,5.633,5.394,5.125,4.986,4.817,4.586,4.44,4.29,4.16,3.946,3.802,3.605,3.448,3.37,3.322,3.273,3.256,3.213,3.181,3.208,3.211,3.222,3.129,3.193,3.234,3.089,3.143,3.119,3.101,3.068,3.035,2.993,2.921,2.861,2.842,2.802,2.805,2.809,2.83,2.814,2.804,2.783,2.762,2.755,2.76,2.757,2.748,2.737,2.715,2.686,2.679,2.673,2.649,2.62,2.611,2.604,2.586,2.578],[35.286999,35.249001,35.027,34.799,34.831001,34.832001,34.825001,34.911999,34.999001,35.036999,34.867001,34.800999,34.721001,34.667,34.740002,34.841,34.936001,34.948002,34.970001,34.972,34.903,34.832001,null,null,34.692001,34.698002,34.681999,34.772999,34.703999,34.618999,34.623001,34.612,34.617001,34.605999,34.591,34.611,34.643002,34.618,34.580002,34.493999,34.459999,34.459999,34.457001,34.457001,34.449001,34.437,34.426998,34.411999,34.400002,34.391998,34.356998,34.333,34.324001,34.308998,34.306,34.300999,34.285,34.285,34.286999,34.291,34.284,34.282001,34.277,34.285999,34.292999,34.303001,34.317001,34.341999,34.354,34.363998,34.384998,34.403999,34.422001,34.43,34.463001,34.487999,34.487,34.52,34.543999,34.549999,34.558998,34.564999,34.574001,34.578999,34.582001,34.591,34.609001,34.625999,34.639999,34.653999,34.669998,34.674999,34.681999,34.693001,34.699001,34.708,34.713001,34.721001,34.734001,34.736,34.741001,34.749001,34.757999,34.762001,34.764999,34.766998,34.768002,34.77,34.771999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +, +{"_id":"1900468_000D","geolocation":{"type":"Point","coordinates":[10.758000000000001,-40.0247]},"basin":1,"timestamp":"2005-01-24T20:52:00.000Z","date_updated_argovis":"2023-01-24T21:26:59.215Z","source":[{"source":["argo_core"],"url":"ftp://ftp.ifremer.fr/ifremer/argo/dac/coriolis/1900468/profiles/D1900468_000D.nc","date_updated":"2015-10-19T17:47:48.000Z"}],"cycle_number":0,"geolocation_argoqc":1,"profile_direction":"D","timestamp_argoqc":1,"vertical_sampling_scheme":"Primary sampling: averaged [10 sec sampling, 10 dbar average from surface to 500 dbar; 10 sec sampling, 25 dbar average from 500 dbar to 1000 dbar]","data":[[48,55,65,75,86,95,105,115,125,135,145,155,165,175,185,195,213,238,263,288,312,338,362,387,412,438,487,537,587,638,688,738,788,812,838,863,887,914,938,962],[13.3,13.146,13.677,13.864,12.494,11.944,11.739,11.362,10.971,10.79,10.671,10.52,10.556,10.445,10.197,10.05,10.23,9.715,9.415,9.212,8.837,8.379,7.923,7.679,7.284,7.069,6.328,5.548,4.984,4.567,4.187,4.018,3.806,3.706,3.63,3.576,3.57,3.511,3.42,3.352],[34.513,34.509998,34.686001,34.860001,34.706001,34.624001,34.619999,34.574001,34.526001,34.507,34.514,34.509998,34.561001,34.591999,34.557999,34.546001,34.641998,34.585999,34.577,34.587002,34.568001,34.511002,34.450001,34.451,34.410999,34.412998,34.372002,34.297001,34.257999,34.230999,34.219002,34.229,34.244999,34.245998,34.263,34.284,34.300999,34.299,34.312,34.321999]],"data_info":[["pressure","temperature","salinity"],["units","data_keys_mode"],[["decibar","D"],["degree_Celsius","D"],["psu","D"]]],"metadata":["1900468_m0"]} +] diff --git a/argopy/tests/test_data/ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec.json b/argopy/tests/test_data/ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec.json new file mode 100644 index 00000000..31cd34dc --- /dev/null +++ b/argopy/tests/test_data/ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec.json @@ -0,0 +1,3897 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_MCOMS", + "skos:altLabel": "NB_SAMPLE_MCOMS", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of MCOMS samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_MCOMS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of WET Labs MCOMS sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_OPTODE", + "skos:altLabel": "NB_SAMPLE_OPTODE", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of optode samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OPTODE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of optode samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/", + "pav:authoredOn": "2023-08-31 11:21:18.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/1/" + }, + "dce:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "pav:version": "1", + "skos:notation": "SDN:R03::CHLA_FLUORESCENCE", + "skos:altLabel": "CHLA_FLUORESCENCE", + "dc:date": "2023-08-31 11:21:18.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll fluorescence with factory calibration" + }, + "dc:identifier": "SDN:R03::CHLA_FLUORESCENCE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll fluorescence in relative unit with factory calibration" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_SUNA", + "skos:altLabel": "NB_SAMPLE_SUNA", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of SUNA samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_SUNA", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of SUNA sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_CYC", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_CYC", + "skos:altLabel": "NB_SAMPLE_CYC", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of CYCLOPS samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CYC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Cyclops sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_DURAFET", + "skos:altLabel": "NB_SAMPLE_DURAFET", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of DURAFET samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_DURAFET", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Durafet pH sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_CTD", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_CTD", + "skos:altLabel": "NB_SAMPLE_CTD", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of CTD samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CTD", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of CTD samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_OCR", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_OCR", + "skos:altLabel": "NB_SAMPLE_OCR", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of OCR samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_OCR", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of OCR sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_STM", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_STM", + "skos:altLabel": "NB_SAMPLE_STM", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of STM samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_STM", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Seapoint Turbidity Meter (STM) sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_ECO", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_ECO", + "skos:altLabel": "NB_SAMPLE_ECO", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ECO samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ECO", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of Environmental Characterization Optics (ECO) sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_CROVER", + "skos:altLabel": "NB_SAMPLE_CROVER", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of c-Rover samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_CROVER", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of c-Rover sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/1/" + }, + "dce:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "pav:version": "1", + "skos:notation": "SDN:R03::NB_SAMPLE_ISUS", + "skos:altLabel": "NB_SAMPLE_ISUS", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of ISUS samples in each pressure bin" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE_ISUS", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of In Situ Ultraviolet Spectrophotometer (ISUS) sensor samples in each pressure bin (dimensionless)." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/", + "pav:authoredOn": "2021-02-01 14:09:51.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/1/" + }, + "dce:identifier": "SDN:R03::TEMP_CNDC", + "pav:version": "1", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TMESCNDC/" + }, + "skos:notation": "SDN:R03::TEMP_CNDC", + "skos:altLabel": "TEMP_CNDC", + "dc:date": "2021-02-01 14:09:51.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the conductivity cell" + }, + "dc:identifier": "SDN:R03::TEMP_CNDC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal temperature (degC) of the conductivity cell." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the free scale." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_FREE", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (free scale)" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "PH_IN_SITU_FREE", + "skos:notation": "SDN:R03::PH_IN_SITU_FREE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHFRWCAL/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PH_IN_SITU_FREE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the total scale." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (total scale)" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "PH_IN_SITU_TOTAL", + "skos:notation": "SDN:R03::PH_IN_SITU_TOTAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHMASSXX/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PH_IN_SITU_TOTAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUPH/" + }, + "skos:definition": { + "@language": "en", + "@value": "pH against the seawater scale." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "skos:prefLabel": { + "@language": "en", + "@value": "pH (seawater scale)" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "PH_IN_SITU_SEAWATER", + "skos:notation": "SDN:R03::PH_IN_SITU_SEAWATER", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PHSWWCAL/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PH_IN_SITU_SEAWATER", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMES/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling photosynthetically available radiation (PAR) (uE/m^2/s)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling photosynthetically available radiation" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWNWELLING_PAR", + "skos:notation": "SDN:R03::DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXUD/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/1/" + }, + "pav:authoredOn": "2023-10-05 14:49:26.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal (volt) from thermistor on dissolved oxygen sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor voltage reported by oxygen sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2023-10-05 14:49:26.0", + "skos:altLabel": "TEMP_VOLTAGE_DOXY", + "skos:notation": "SDN:R03::TEMP_VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTOPTT/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::TEMP_VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal (volt) from pH sensor, equating to the potential between the transistor source and the reference electrode." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VRS_PH", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage difference between reference and source from pH sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "VRS_PH", + "skos:notation": "SDN:R03::VRS_PH", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PVLTGC01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::VRS_PH", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/1/" + }, + "dce:identifier": "SDN:R03::VK_PH", + "pav:version": "1", + "skos:notation": "SDN:R03::VK_PH", + "skos:altLabel": "VK_PH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode voltage of pH sensor" + }, + "dc:identifier": "SDN:R03::VK_PH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode signal (volt) from pH sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UVLT/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal (volt) from dissolved oxygen sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::VOLTAGE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Voltage reported by oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "VOLTAGE_DOXY", + "skos:notation": "SDN:R03::VOLTAGE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPVL/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::VOLTAGE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/1/" + }, + "dce:identifier": "SDN:R03::IK_PH", + "pav:version": "1", + "skos:notation": "SDN:R03::IK_PH", + "skos:altLabel": "IK_PH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Counter electrode current of pH sensor" + }, + "dc:identifier": "SDN:R03::IK_PH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Counter electrode current (nA) from pH sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/1/" + }, + "dce:identifier": "SDN:R03::IB_PH", + "pav:version": "1", + "skos:notation": "SDN:R03::IB_PH", + "skos:altLabel": "IB_PH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Base current of pH sensor" + }, + "dc:identifier": "SDN:R03::IB_PH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Base current (nA) of pH sensor chip." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/NAMP/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/1/" + }, + "dce:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R03::PHASE_DELAY_DOXY", + "skos:altLabel": "PHASE_DELAY_DOXY", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Phase delay reported by oxygen sensor" + }, + "dc:identifier": "SDN:R03::PHASE_DELAY_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw phase delay (usec) by optode." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USEC/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPBB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Oxygen partial pressure (mBar)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PPOX_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Partial pressure of oxygen" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "PPOX_DOXY", + "skos:notation": "SDN:R03::PPOX_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PPOXZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PPOX_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/", + "pav:authoredOn": "2019-10-11 15:02:22.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPDB/" + }, + "skos:definition": { + "@language": "en", + "@value": "The force per unit area exerted by the water column on a pressure sensor, corrected to read zero at sea level." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PRES", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea water pressure, equals 0 at sea-level" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:02:22.0", + "skos:altLabel": "PRES", + "skos:notation": "SDN:R03::PRES", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PRESPR01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PRES", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/", + "pav:authoredOn": "2019-10-11 15:02:22.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UECA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Measure of electrical flow through water." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CNDC", + "skos:prefLabel": { + "@language": "en", + "@value": "Electrical conductivity" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:02:22.0", + "skos:altLabel": "CNDC", + "skos:notation": "SDN:R03::CNDC", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CNDCST01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::CNDC", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/1/" + }, + "dce:identifier": "SDN:R03::MTIME", + "pav:version": "1", + "skos:notation": "SDN:R03::MTIME", + "skos:altLabel": "MTIME", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station" + }, + "dc:identifier": "SDN:R03::MTIME", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Fractional day of the individual measurement relative to JULD of the station (days)." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTAA/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation (/m) at 660 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP660", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at 660 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "CP660", + "skos:notation": "SDN:R03::CP660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATT650AC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::CP660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle beam attenuation (/m) at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "CP", + "skos:notation": "SDN:R03::CP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/ATTNZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::CP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance (W/m^2/nm/sr) at 555 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UP_RADIANCE555", + "skos:notation": "SDN:R03::UP_RADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU555L/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UP_RADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/1/" + }, + "dce:identifier": "SDN:R03::UP_RADIANCE", + "pav:version": "1", + "skos:notation": "SDN:R03::UP_RADIANCE", + "skos:altLabel": "UP_RADIANCE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at x nanometers" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance (W/m^2/nm/sr) at unspecified wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance (W/m^2/nm/sr) at 443 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UP_RADIANCE443", + "skos:notation": "SDN:R03::UP_RADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU443L/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UP_RADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance (W/m^2/nm/sr) at 412 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UP_RADIANCE412", + "skos:notation": "SDN:R03::UP_RADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU412L/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UP_RADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNS/" + }, + "skos:definition": { + "@language": "en", + "@value": "Upwelling radiance (W/m^2/nm/sr) at 490 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UP_RADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Upwelling radiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UP_RADIANCE490", + "skos:notation": "SDN:R03::UP_RADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUU490L/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UP_RADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPPB/" + }, + "skos:definition": { + "@language": "en", + "@value": "Coloured dissolved organic matter (CDOM) concentration (ppb)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Concentration of coloured dissolved organic matter in seawater" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "CDOM", + "skos:notation": "SDN:R03::CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CDOMZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXED/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at 412 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE412", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD412E/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at 490 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE490", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD490E/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at 443 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE443", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD443E/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at 380 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE380", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD380E/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UWNM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Downwelling irradiance (W/m^2/nm) at 555 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOWN_IRRADIANCE555", + "skos:notation": "SDN:R03::DOWN_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/RXUD555E/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOWN_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UTHZ/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal (hertz) from dissolved oxygen sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FREQUENCY_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Frequency reported by oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "FREQUENCY_DOXY", + "skos:notation": "SDN:R03::FREQUENCY_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOCPFR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::FREQUENCY_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering (/m) at 700 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP700", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 700 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BBP700", + "skos:notation": "SDN:R03::BBP700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117NIR/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BBP700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering (/m) at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BBP", + "skos:notation": "SDN:R03::BBP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BSXXXVSF/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BBP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering (/m) at 532 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP532", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 532 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BBP532", + "skos:notation": "SDN:R03::BBP532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117G01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BBP532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPRM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Particle backscattering (/m) at 470 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BBP470", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle backscattering at 470 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BBP470", + "skos:notation": "SDN:R03::BBP470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/BB117B01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BBP470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/1/" + }, + "dce:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "pav:version": "1", + "skos:notation": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:altLabel": "TEMP_SPECTROPHOTOMETER_NITRATE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Temperature of the spectrometer" + }, + "dc:identifier": "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Spectrometer temperature (degC) of nitrate sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature (degC) from thermistor on dissolved oxygen sensor, expressed against the International Temperature Scale 1990 (ITS-90) calibration standard." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from oxygen sensor ITS-90 scale" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "TEMP_DOXY", + "skos:notation": "SDN:R03::TEMP_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYTAAOP/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::TEMP_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/1/" + }, + "dce:identifier": "SDN:R03::TEMP_PH", + "pav:version": "1", + "skos:notation": "SDN:R03::TEMP_PH", + "skos:altLabel": "TEMP_PH", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature from pH sensor" + }, + "dc:identifier": "SDN:R03::TEMP_PH", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature (degC) of seawater from pH sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/1/" + }, + "dce:identifier": "SDN:R03::TEMP_NITRATE", + "pav:version": "1", + "skos:notation": "SDN:R03::TEMP_NITRATE", + "skos:altLabel": "TEMP_NITRATE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Internal temperature of the nitrate sensor" + }, + "dc:identifier": "SDN:R03::TEMP_NITRATE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Internal temperature (degC) of the nitrate sensor" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/1/" + }, + "dce:identifier": "SDN:R03::HUMIDITY_NITRATE", + "pav:version": "1", + "skos:notation": "SDN:R03::HUMIDITY_NITRATE", + "skos:altLabel": "HUMIDITY_NITRATE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Relative humidity inside the nitrate sensor" + }, + "dc:identifier": "SDN:R03::HUMIDITY_NITRATE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Relative humidity inside the nitrate sensor (If > 50% there is a leak)" + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPCT/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/1/" + }, + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C1PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "2", + "dc:date": "2020-05-03 17:42:05.0", + "skos:altLabel": "C1PHASE_DOXY", + "skos:notation": "SDN:R03::C1PHASE_DOXY", + "pav:version": "2", + "dce:identifier": "SDN:R03::C1PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/2/" + }, + "pav:authoredOn": "2020-05-03 17:42:05.0" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/1/" + }, + "pav:authoredOn": "2020-05-03 17:43:30.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated temperature compensated phase shift (deg) reported by oxygen sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated temperature compensated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "2", + "dc:date": "2020-05-03 17:43:30.0", + "skos:altLabel": "TPHASE_DOXY", + "skos:notation": "SDN:R03::TPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHTC/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::TPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/1/" + }, + "dce:identifier": "SDN:R03::TILT", + "pav:version": "1", + "skos:notation": "SDN:R03::TILT", + "skos:altLabel": "TILT", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical" + }, + "dc:identifier": "SDN:R03::TILT", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Inclination of the float axis in respect to the local vertical (deg)." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/1/" + }, + "pav:authoredOn": "2020-05-03 17:42:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::C2PHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift reported by Aanderaa optode 4330/4330F" + }, + "owl:versionInfo": "2", + "dc:date": "2020-05-03 17:42:33.0", + "skos:altLabel": "C2PHASE_DOXY", + "skos:notation": "SDN:R03::C2PHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::C2PHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/1/" + }, + "pav:authoredOn": "2020-05-03 17:41:38.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 3830." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated red excitation light phase shift reported by Aanderaa optode 3830" + }, + "owl:versionInfo": "2", + "dc:date": "2020-05-03 17:41:38.0", + "skos:altLabel": "RPHASE_DOXY", + "skos:notation": "SDN:R03::RPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAR/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::RPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/1/" + }, + "pav:authoredOn": "2020-05-03 17:40:52.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 3830." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 3830" + }, + "owl:versionInfo": "2", + "dc:date": "2020-05-03 17:40:52.0", + "skos:altLabel": "BPHASE_DOXY", + "skos:notation": "SDN:R03::BPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAB/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::BPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UAAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibrated phase (deg) by optode." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DPHASE_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Calibrated phase shift reported by oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DPHASE_DOXY", + "skos:notation": "SDN:R03::DPHASE_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYCPHAC/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DPHASE_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration (umol/l) uncorrected for salinity and pressure effects." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Uncompensated (pressure and salinity) oxygen concentration reported\nby the oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "MOLAR_DOXY", + "skos:notation": "SDN:R03::MOLAR_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYMMOP/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::MOLAR_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPOX/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration (umol/l)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MOLAR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Molar nitrate concentration" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "MOLAR_NITRATE", + "skos:notation": "SDN:R03::MOLAR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTRZMC01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::MOLAR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal (count) from backscattering meter at 700 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 700 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BETA_BACKSCATTERING700", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING700", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING700", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal (count) from backscattering meter at 470 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 470 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BETA_BACKSCATTERING470", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING470", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING470", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw turbidity signal (count) from side scattering sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "Turbidity signal from side scattering sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "SIDE_SCATTERING_TURBIDITY", + "skos:notation": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTTUR1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::SIDE_SCATTERING_TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/", + "pav:authoredOn": "2019-10-11 15:02:22.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Practical salinity of the water body by conductivity cell and computation using the UNESCO 1983 algorithm." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::PSAL", + "skos:prefLabel": { + "@language": "en", + "@value": "Practical salinity" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:02:22.0", + "skos:altLabel": "PSAL", + "skos:notation": "SDN:R03::PSAL", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/PSALST01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::PSAL", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal (count) from transmissometer sensor at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:prefLabel": { + "@language": "en", + "@value": "Beam attenuation from transmissometer sensor at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/1/" + }, + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "pav:version": "1", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "skos:altLabel": "RAW_UPWELLING_RADIANCE412", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 412 nanometers" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE412", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal (count) at 412 nm wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw output signal (count) from dissolved oxygen sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::COUNT_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Count reported by oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "COUNT_DOXY", + "skos:notation": "SDN:R03::COUNT_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/OXYOOPCT/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::COUNT_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at 490 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 490 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE490", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw beam attenuation signal (count) from transmissometer sensor at 660 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:prefLabel": { + "@language": "en", + "@value": "Particle beam attenuation from transmissometer sensor at 660 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "skos:notation": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NCNTATT1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal (count) in darkness from nitrate sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra-violet flux dark measurement from nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UV_INTENSITY_DARK_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVDAZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/1/" + }, + "dce:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "skos:altLabel": "LED_FLASHING_COUNT_DOXY", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of times oxygen sensor flashing to measure oxygen" + }, + "dc:identifier": "SDN:R03::LED_FLASHING_COUNT_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Light-emitting diode (LED) flashing frequency (count) from dissolved oxygen sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal (count) from nitrate sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra-violet flux from nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UV_INTENSITY_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVINZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UV_INTENSITY_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal (count) from coloured dissolved organic matter (CDOM) sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw fluorescence from coloured dissolved organic matter sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "FLUORESCENCE_CDOM", + "skos:notation": "SDN:R03::FLUORESCENCE_CDOM", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FLUOCDOM/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::FLUORESCENCE_CDOM", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/1/" + }, + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "pav:version": "1", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "skos:altLabel": "RAW_UPWELLING_RADIANCE555", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 555 nanometers" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE555", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal (count) at 555 nm wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Number of samples in bin (dimensionless)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NB_SAMPLE", + "skos:prefLabel": { + "@language": "en", + "@value": "Number of samples in bin" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "NB_SAMPLE", + "skos:notation": "SDN:R03::NB_SAMPLE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NUMVALES/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::NB_SAMPLE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at 380 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 380 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE380", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at 412 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 412 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE412", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal (count) from backscattering meter at unspecified wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at x nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BETA_BACKSCATTERING", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/1/" + }, + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "pav:version": "1", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE", + "skos:altLabel": "RAW_UPWELLING_RADIANCE", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at x nanometers" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal (count) at unspecified wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/1/" + }, + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "pav:version": "1", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "skos:altLabel": "RAW_UPWELLING_RADIANCE443", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 443 nanometers" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE443", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal (count) at 443 nm wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at 443 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 443 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE443", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw ultra-violet (UV) flux signal (count) in seawater and darkness from nitrate sensor." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Intensity of ultra-violet flux dark seawater from nitrate sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "UV_INTENSITY_DARK_SEAWATER_NITRATE", + "skos:notation": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/UVSDZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw fluorescence signal (count) from chlorophyll-a fluorometer." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw signal from chlorophyll-a fluorometer" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "FLUORESCENCE_CHLA", + "skos:notation": "SDN:R03::FLUORESCENCE_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/FCNTRW01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::FLUORESCENCE_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Calibration fit error of nitrate (dimensionless)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate fit error" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "FIT_ERROR_NITRATE", + "skos:notation": "SDN:R03::FIT_ERROR_NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NTFEZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::FIT_ERROR_NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling photosynthetically available radiation (PAR) signal (count)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling photosynthetically available radiation" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_PAR", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_PAR", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRRXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_PAR", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw downwelling irradiance signal (count) at 555 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw downwelling irradiance at 555 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "RAW_DOWNWELLING_IRRADIANCE555", + "skos:notation": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DWIRXXZZ/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/1/" + }, + "dce:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "pav:version": "1", + "skos:notation": "SDN:R03::TEMP_COUNT_DOXY", + "skos:altLabel": "TEMP_COUNT_DOXY", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Count which is expressive of uncalibrated temperature value reported by oxygen sensor" + }, + "dc:identifier": "SDN:R03::TEMP_COUNT_DOXY", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal (count) from thermistor on dissolved oxygen sensor." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/1/" + }, + "dce:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "pav:version": "1", + "skos:notation": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "skos:altLabel": "RAW_UPWELLING_RADIANCE490", + "dc:date": "2020-04-04 15:05:33.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Raw upwelling radiance at 490 nanometers" + }, + "dc:identifier": "SDN:R03::RAW_UPWELLING_RADIANCE490", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw upwelling radiance signal (count) at 490 nm wavelength." + }, + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw backscattering signal (count) from backscattering meter at 532 nm wavelength." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "skos:prefLabel": { + "@language": "en", + "@value": "Total angle specific volume from backscattering sensor at 532 nanometers" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BETA_BACKSCATTERING532", + "skos:notation": "SDN:R03::BETA_BACKSCATTERING532", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/NVLTOBS1/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BETA_BACKSCATTERING532", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/", + "pav:hasVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/1/" + }, + "pav:authoredOn": "2024-08-20 12:02:47.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UUUU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Raw temperature signal (count) from thermistor on backscattering meter and/or fluorometer." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP_CPU_CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Thermistor signal from backscattering meter and/or fluorometer" + }, + "owl:versionInfo": "2", + "dc:date": "2024-08-20 12:02:47.0", + "skos:altLabel": "TEMP_CPU_CHLA", + "skos:notation": "SDN:R03::TEMP_CPU_CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TCNTICPU/" + }, + "pav:version": "2", + "dce:identifier": "SDN:R03::TEMP_CPU_CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/2/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration (umol/kg)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Dissolved oxygen concentration" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "DOXY", + "skos:notation": "SDN:R03::DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXMZZXX/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Nitrate concentration (umol/kg)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::NITRATE", + "skos:prefLabel": { + "@language": "en", + "@value": "Nitrate concentration" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "NITRATE", + "skos:notation": "SDN:R03::NITRATE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP005/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::NITRATE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/KGUM/" + }, + "skos:definition": { + "@language": "en", + "@value": "Bisulfide concentration (umol/kg)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::BISULFIDE", + "skos:prefLabel": { + "@language": "en", + "@value": "Bisulfide concentration" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "BISULFIDE", + "skos:notation": "SDN:R03::BISULFIDE", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/H2SXZZ01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::BISULFIDE", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMLL/" + }, + "skos:definition": { + "@language": "en", + "@value": "Dissolved oxygen concentration (ml/l) uncorrected for salinity and pressure effects." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::MLPL_DOXY", + "skos:prefLabel": { + "@language": "en", + "@value": "Oxygen concentration reported by the oxygen sensor" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "MLPL_DOXY", + "skos:notation": "SDN:R03::MLPL_DOXY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/DOXYZZXX/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::MLPL_DOXY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/USTU/" + }, + "skos:definition": { + "@language": "en", + "@value": "Turbidity (NTU) of seawater." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TURBIDITY", + "skos:prefLabel": { + "@language": "en", + "@value": "seawater turbidity" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "TURBIDITY", + "skos:notation": "SDN:R03::TURBIDITY", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::TURBIDITY", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/", + "pav:authoredOn": "2020-04-04 15:05:33.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UMMC/" + }, + "skos:definition": { + "@language": "en", + "@value": "Chlorophyll-a concentration (mg/m^3)." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::CHLA", + "skos:prefLabel": { + "@language": "en", + "@value": "Chlorophyll-a concentration" + }, + "owl:versionInfo": "1", + "dc:date": "2020-04-04 15:05:33.0", + "skos:altLabel": "CHLA", + "skos:notation": "SDN:R03::CHLA", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/CPHLPR01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::CHLA", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/", + "pav:authoredOn": "2019-10-11 15:02:22.0", + "@type": "skos:Concept", + "skos:related": { + "@id": "http://vocab.nerc.ac.uk/collection/P06/current/UPAA/" + }, + "skos:definition": { + "@language": "en", + "@value": "Temperature of the water body expressed against the International Temperature Scale 1990 (ITS-90) calibration standard." + }, + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "owl:deprecated": "false", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "dc:identifier": "SDN:R03::TEMP", + "skos:prefLabel": { + "@language": "en", + "@value": "Sea temperature in-situ ITS-90 scale" + }, + "owl:versionInfo": "1", + "dc:date": "2019-10-11 15:02:22.0", + "skos:altLabel": "TEMP", + "skos:notation": "SDN:R03::TEMP", + "owl:sameAs": { + "@id": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPST01/" + }, + "pav:version": "1", + "dce:identifier": "SDN:R03::TEMP", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/1/" + } + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/", + "skos:member": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_MCOMS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OPTODE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA_FLUORESCENCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_SUNA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CYC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_DURAFET/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CTD/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_OCR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_STM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ECO/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_CROVER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE_ISUS/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_FREE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_TOTAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PH_IN_SITU_SEAWATER/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VRS_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/VOLTAGE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IK_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/IB_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PHASE_DELAY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PPOX_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PRES/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CNDC/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MTIME/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UP_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOWN_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FREQUENCY_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BBP470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_SPECTROPHOTOMETER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_PH/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/HUMIDITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C1PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TILT/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/C2PHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DPHASE_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MOLAR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING700/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING470/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/SIDE_SCATTERING_TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/PSAL/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/LED_FLASHING_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CDOM/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NB_SAMPLE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE380/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE412/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE443/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/UV_INTENSITY_DARK_SEAWATER_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FLUORESCENCE_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/FIT_ERROR_NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_PAR/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_DOWNWELLING_IRRADIANCE555/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_COUNT_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/RAW_UPWELLING_RADIANCE490/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BETA_BACKSCATTERING532/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP_CPU_CHLA/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/NITRATE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/BISULFIDE/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/MLPL_DOXY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TURBIDITY/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/TEMP/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/R03/current/CHLA/" + } + ], + "@type": "skos:Collection", + "dc:publisher": "Natural Environment Research Council", + "dc:description": "Terms describing individual measured phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel; R03 altLabel is also used to name netCDF profile files parameter variables .", + "dc:title": "Argo parameter codes", + "skos:prefLabel": "Argo parameter codes", + "owl:versionInfo": "7", + "dc:date": "2024-08-21 03:00:01.0", + "skos:altLabel": "PARAMETER", + "dc:creator": "Argo Data Management Team", + "dc:alternative": "PARAMETER", + "rdfs:comment": "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server.", + "grg:RE_RegisterOwner": "Argo Data Management Team", + "grg:RE_RegisterManager": "British Oceanographic Data Centre", + "rdfs:seeAlso": { + "@id": "https://github.com/nvs-vocabs/R03" + } + } + ], + "@context": { + "cpm": "http://purl.org/voc/cpm#", + "qudt": "https://qudt.org/2.1/schema/qudt#", + "void": "http://rdfs.org/ns/void#", + "pav": "http://purl.org/pav/", + "owl": "http://www.w3.org/2002/07/owl#", + "dce": "http://purl.org/dc/elements/1.1/", + "skos": "http://www.w3.org/2004/02/skos/core#", + "ns0": "http://www.w3.org/ns/dx/conneg/altr#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "iop": "https://w3id.org/iadopt/ont#", + "ns1": "http://www.w3.org/ns/dx/prof/", + "puv": "https://w3id.org/env/puv#", + "semapv": "http://w3id.org/semapv/vocab/", + "dct": "http://purl.org/dc/terms/", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "reg": "http://purl.org/linked-data/registry#", + "sssom": "https://w3id.org/sssom/schema/", + "dcat": "http://www.w3.org/ns/dcat#", + "grg": "http://www.isotc211.org/schemas/grg/", + "prov": "https://www.w3.org/ns/prov#", + "dc": "http://purl.org/dc/terms/" + } +} diff --git a/argopy/tests/test_data/edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83.nc b/argopy/tests/test_data/edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83.nc new file mode 100644 index 00000000..b9ad020a Binary files /dev/null and b/argopy/tests/test_data/edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83.nc differ diff --git a/argopy/tests/test_data/edb8b68fb8c15865fa88fcb3c6fda023df61947f681f2c7825ccd1decccebe16.nc b/argopy/tests/test_data/edb8b68fb8c15865fa88fcb3c6fda023df61947f681f2c7825ccd1decccebe16.nc new file mode 100644 index 00000000..bb539d97 Binary files /dev/null and b/argopy/tests/test_data/edb8b68fb8c15865fa88fcb3c6fda023df61947f681f2c7825ccd1decccebe16.nc differ diff --git a/argopy/tests/test_data/edbe43a0013d0aca347c1b337b2adc097f902c329a4e6150472b7e0fe22dd388.nc b/argopy/tests/test_data/edbe43a0013d0aca347c1b337b2adc097f902c329a4e6150472b7e0fe22dd388.nc new file mode 100644 index 00000000..5176fec8 Binary files /dev/null and b/argopy/tests/test_data/edbe43a0013d0aca347c1b337b2adc097f902c329a4e6150472b7e0fe22dd388.nc differ diff --git a/argopy/tests/test_data/ef557b97d59455c59dd73f80a9e76136b5f2347f220a18344545bbfb9c9b8beb.ncHeader b/argopy/tests/test_data/ef557b97d59455c59dd73f80a9e76136b5f2347f220a18344545bbfb9c9b8beb.ncHeader new file mode 100644 index 00000000..1623d315 --- /dev/null +++ b/argopy/tests/test_data/ef557b97d59455c59dd73f80a9e76136b5f2347f220a18344545bbfb9c9b8beb.ncHeader @@ -0,0 +1,763 @@ +netcdf ArgoFloats-synthetic-BGC_4ff2_1795_245b.nc { + dimensions: + row = 732; + bbp700_adjusted_qc_strlen = 1; + bbp700_qc_strlen = 1; + cdom_adjusted_qc_strlen = 1; + cdom_qc_strlen = 1; + chla_adjusted_qc_strlen = 1; + chla_qc_strlen = 1; + cp660_adjusted_qc_strlen = 1; + cp660_qc_strlen = 1; + direction_strlen = 1; + down_irradiance380_adjusted_qc_strlen = 1; + down_irradiance380_qc_strlen = 1; + down_irradiance412_adjusted_qc_strlen = 1; + down_irradiance412_qc_strlen = 1; + down_irradiance490_adjusted_qc_strlen = 1; + down_irradiance490_qc_strlen = 1; + downwelling_par_adjusted_qc_strlen = 1; + downwelling_par_qc_strlen = 1; + doxy_adjusted_qc_strlen = 1; + doxy_qc_strlen = 1; + nitrate_adjusted_qc_strlen = 1; + nitrate_qc_strlen = 1; + ph_in_situ_total_adjusted_qc_strlen = 1; + ph_in_situ_total_qc_strlen = 1; + platform_number_strlen = 7; + pres_adjusted_qc_strlen = 1; + pres_qc_strlen = 1; + psal_adjusted_qc_strlen = 1; + psal_qc_strlen = 1; + temp_adjusted_qc_strlen = 1; + temp_qc_strlen = 1; + variables: + float bbp700(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002184519f, 0.005617575f; // float + :C_format = "%.7f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :sdn_parameter_urn = "SDN:P01::BB117NIR"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float bbp700_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002184519f, 0.005617575f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Particle backscattering at 700 nanometers"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + float bbp700_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.7f"; + :FORTRAN_format = "F.7"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-7f; // float + :units = "m-1"; + + char bbp700_adjusted_qc(row=732, bbp700_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char bbp700_qc(row=732, bbp700_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float cdom(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = -0.073775f, 0.724f; // float + :C_format = "%.3f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::CDOMZZ01"; + :units = "ppb"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cdom_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Concentration of coloured dissolved organic matter in sea water"; + :resolution = 0.001f; // float + :units = "ppb"; + + float cdom_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "ppb"; + + char cdom_adjusted_qc(row=732, cdom_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char cdom_qc(row=732, cdom_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float chla(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.3338091f, 1.605407f; // float + :C_format = "%.4f"; + :cf_standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :sdn_parameter_urn = "SDN:P01::CPHLPR01"; + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float chla_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.4818f, 1.56585f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Chlorophyll-A"; + :resolution = 0.025f; // float + :standard_name = "mass_concentration_of_chlorophyll_a_in_sea_water"; + :units = "mg/m3"; + + float chla_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.025f; // float + :units = "mg/m3"; + + char chla_adjusted_qc(row=732, chla_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char chla_qc(row=732, chla_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + int config_mission_number(row=732); + :_ChunkSizes = 44; // int + :_FillValue = 99999; // int + :actual_range = 1, 9; // int + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "1...N, 1 : first complete mission"; + :ioos_category = "Statistics"; + :long_name = "Unique number denoting the missions performed by the float"; + + float cp660(row=732); + :_FillValue = 99999.0f; // float + :actual_range = 0.4816013f, 1.036972f; // float + :cf_standard_name = "-"; + :long_name = "Particle beam attenuation at 660 nanometers"; + :sdn_parameter_urn = "SDN:P01::ATT650AC"; + :units = "m-1"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float cp660_adjusted(row=732); + :actual_range = 99999.0f, 99999.0f; // float + + float cp660_adjusted_error(row=732); + :actual_range = 99999.0f, 99999.0f; // float + + char cp660_adjusted_qc(row=732, cp660_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char cp660_qc(row=732, cp660_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + int cycle_number(row=732); + :_FillValue = 99999; // int + :actual_range = 7, 157; // int + :cf_role = "profile_id"; + :colorBarMaximum = 100.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"; + :long_name = "Float cycle number"; + + char direction(row=732, direction_strlen=1); + :_ChunkSizes = 44; // int + :_Encoding = "ISO-8859-1"; + :colorBarMaximum = 360.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "A: ascending profiles, D: descending profiles"; + :ioos_category = "Currents"; + :long_name = "Direction of the station profiles"; + + float down_irradiance380(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.04950013f, 0.472008f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD380E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance380_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.04933397f, 0.4718581f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 380 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance380_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 9.866795E-4f, 0.009437162f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance380_adjusted_qc(row=732, down_irradiance380_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance380_qc(row=732, down_irradiance380_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance412(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.1373402f, 0.8742672f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD412E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance412_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.1372784f, 0.8742118f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 412 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance412_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002745568f, 0.01748424f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance412_adjusted_qc(row=732, down_irradiance412_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance412_qc(row=732, down_irradiance412_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float down_irradiance490(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.3044119f, 1.255575f; // float + :C_format = "%.6f"; + :cf_standard_name = "-"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :sdn_parameter_urn = "SDN:P01::RXUD490E"; + :units = "W/m^2/nm"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float down_irradiance490_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.3044299f, 1.255584f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Downwelling irradiance at 490 nanometers"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + float down_irradiance490_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.006088599f, 0.02511167f; // float + :C_format = "%.6f"; + :FORTRAN_format = "F.6"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-6f; // float + :units = "W/m^2/nm"; + + char down_irradiance490_adjusted_qc(row=732, down_irradiance490_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char down_irradiance490_qc(row=732, down_irradiance490_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float downwelling_par(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 211.6906f, 1309.106f; // float + :C_format = "%.3f"; + :cf_standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DWIRRXUD"; + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float downwelling_par_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 211.224f, 1308.671f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Downwelling photosynthetic available radiation"; + :resolution = 0.001f; // float + :standard_name = "downwelling_photosynthetic_photon_flux_in_sea_water"; + :units = "microMoleQuanta/m^2/sec"; + + float downwelling_par_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 10.5612f, 65.43353f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "microMoleQuanta/m^2/sec"; + + char downwelling_par_adjusted_qc(row=732, downwelling_par_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char downwelling_par_qc(row=732, downwelling_par_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float doxy(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 248.6568f, 288.2258f; // float + :C_format = "%.3f"; + :cf_standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::DOXMZZXX"; + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 269.7927f, 308.8627f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Dissolved oxygen"; + :resolution = 0.001f; // float + :standard_name = "moles_of_oxygen_per_unit_mass_in_sea_water"; + :units = "micromole/kg"; + :valid_max = 600.0f; // float + :valid_min = -5.0f; // float + + float doxy_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.415855f, 16.55767f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "micromole/kg"; + + char doxy_adjusted_qc(row=732, doxy_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char doxy_qc(row=732, doxy_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double latitude(row=732); + :_CoordinateAxisType = "Lat"; + :_FillValue = 99999.0; // double + :actual_range = 55.019996666666664, 56.95117983333333; // double + :axis = "Y"; + :colorBarMaximum = 90.0; // double + :colorBarMinimum = -90.0; // double + :ioos_category = "Location"; + :long_name = "Latitude of the station, best estimate"; + :standard_name = "latitude"; + :units = "degrees_north"; + :valid_max = 90.0; // double + :valid_min = -90.0; // double + + double longitude(row=732); + :_CoordinateAxisType = "Lon"; + :_FillValue = 99999.0; // double + :actual_range = -54.40875833333333, -47.62549666666666; // double + :axis = "X"; + :colorBarMaximum = 180.0; // double + :colorBarMinimum = -180.0; // double + :ioos_category = "Location"; + :long_name = "Longitude of the station, best estimate"; + :standard_name = "longitude"; + :units = "degrees_east"; + :valid_max = 180.0; // double + :valid_min = -180.0; // double + + float nitrate(row=732); + :_FillValue = 99999.0f; // float + :actual_range = 3.829968f, 5.665306f; // float + :cf_standard_name = "moles_of_nitrate_per_unit_mass_in_sea_water"; + :long_name = "Nitrate"; + :sdn_parameter_urn = "SDN:P01::MDMAP005"; + :units = "micromole/kg"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float nitrate_adjusted(row=732); + :actual_range = 0.9696299f, 99999.0f; // float + + float nitrate_adjusted_error(row=732); + :actual_range = 5.0f, 99999.0f; // float + + char nitrate_adjusted_qc(row=732, nitrate_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char nitrate_qc(row=732, nitrate_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + float ph_in_situ_total(row=732); + :_FillValue = 99999.0f; // float + :actual_range = 8.114964f, 8.152939f; // float + :cf_standard_name = "sea_water_ph_reported_on_total_scale"; + :long_name = "pH"; + :sdn_parameter_urn = "SDN:P01::PHMASSXX"; + :units = "dimensionless"; + :valid_max = NaNf; // float + :valid_min = NaNf; // float + + float ph_in_situ_total_adjusted(row=732); + :actual_range = 99999.0f, 99999.0f; // float + + float ph_in_situ_total_adjusted_error(row=732); + :actual_range = 99999.0f, 99999.0f; // float + + char ph_in_situ_total_adjusted_qc(row=732, ph_in_situ_total_adjusted_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char ph_in_situ_total_qc(row=732, ph_in_situ_total_qc_strlen=1); + :_Encoding = "ISO-8859-1"; + + char platform_number(row=732, platform_number_strlen=7); + :_Encoding = "ISO-8859-1"; + :cf_role = "trajectory_id"; + :conventions = "WMO float identifier : A9IIIII"; + :ioos_category = "Identifier"; + :long_name = "Float unique identifier"; + + char position_qc(row=732); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on position (latitude and longitude)"; + + float pres(row=732); + :_ChunkSizes = 44, 751; // int + :_CoordinateAxisType = "Height"; + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 10.0f; // float + :axis = "Z"; + :C_format = "%.3f"; + :cf_standard_name = "sea_water_pressure"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::PRESPR01"; + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.0f, 9.9f; // float + :axis = "Z"; + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea water pressure, equals 0 at sea-level"; + :resolution = 0.001f; // float + :standard_name = "sea_water_pressure"; + :units = "decibar"; + :valid_max = 12000.0f; // float + :valid_min = 0.0f; // float + + float pres_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 2.000083f, 2.004125f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "decibar"; + + char pres_adjusted_qc(row=732, pres_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char pres_qc(row=732, pres_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float psal(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 31.927f, 34.478f; // float + :C_format = "%.4f"; + :cf_standard_name = "sea_water_salinity"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :sdn_parameter_urn = "SDN:P01::PSALST01"; + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 31.96201f, 34.488f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Practical salinity"; + :resolution = 1.0E-4f; // float + :standard_name = "sea_water_salinity"; + :units = "psu"; + :valid_max = 41.0f; // float + :valid_min = 2.0f; // float + + float psal_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.004f, 0.004f; // float + :C_format = "%.4f"; + :FORTRAN_format = "F.4"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 1.0E-4f; // float + :units = "psu"; + + char psal_adjusted_qc(row=732, psal_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char psal_qc(row=732, psal_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + float temp(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.247f, 11.566f; // float + :C_format = "%.3f"; + :cf_standard_name = "sea_water_temperature"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :sdn_parameter_urn = "SDN:P01::TEMPST01"; + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 8.278f, 11.566f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Sea temperature in-situ ITS-90 scale"; + :resolution = 0.001f; // float + :standard_name = "sea_water_temperature"; + :units = "degree_Celsius"; + :valid_max = 40.0f; // float + :valid_min = -2.5f; // float + + float temp_adjusted_error(row=732); + :_ChunkSizes = 44, 751; // int + :_FillValue = 99999.0f; // float + :actual_range = 0.002f, 0.002f; // float + :C_format = "%.3f"; + :FORTRAN_format = "F.3"; + :long_name = "Contains the error on the adjusted values as determined by the delayed mode QC process"; + :resolution = 0.001f; // float + :units = "degree_Celsius"; + + char temp_adjusted_qc(row=732, temp_adjusted_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + char temp_qc(row=732, temp_qc_strlen=1); + :_ChunkSizes = 44, 751; // int + :_Encoding = "ISO-8859-1"; + :conventions = "Argo reference table 2"; + :long_name = "quality flag"; + + double time(row=732); + :_CoordinateAxisType = "Time"; + :actual_range = 1.6591383E9, 1.66561998E9; // double + :axis = "T"; + :conventions = "Relative julian days with decimal part (as parts of day)"; + :ioos_category = "Time"; + :long_name = "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"; + :source_name = "JULD"; + :standard_name = "time"; + :time_origin = "01-JAN-1970 00:00:00"; + :units = "seconds since 1970-01-01T00:00:00Z"; + + char time_qc(row=732); + :actual_range = "11"; + :colorBarMaximum = 150.0; // double + :colorBarMinimum = 0.0; // double + :conventions = "Argo reference table 2"; + :long_name = "Quality on date and time"; + + // global attributes: + :cdm_altitude_proxy = "pres"; + :cdm_data_type = "TrajectoryProfile"; + :cdm_profile_variables = "cycle_number, latitude, longitude, time"; + :cdm_trajectory_variables = "platform_number"; + :Conventions = "Argo-3.1 CF-1.6, COARDS, ACDD-1.3"; + :creator_name = "Argo"; + :creator_type = "institution"; + :creator_url = "http://www.argodatamgt.org/Documentation"; + :defaultGraphQuery = "longitude%2Clatitude%2Cph_in_situ_total&time>=now-2days&time<=now&pres<=10&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"; + :Easternmost_Easting = -47.62549666666666; // double + :featureType = "TrajectoryProfile"; + :geospatial_lat_max = 56.95117983333333; // double + :geospatial_lat_min = 55.019996666666664; // double + :geospatial_lat_units = "degrees_north"; + :geospatial_lon_max = -47.62549666666666; // double + :geospatial_lon_min = -54.40875833333333; // double + :geospatial_lon_units = "degrees_east"; + :history = "2024-09-22T15:15:17Z creation (software version 1.18 (version 11.01.2024 for ARGO_simplified_profile)) +2024-09-24T12:46:27Z (local files) +2024-09-24T12:46:27Z https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude%3E=-55&longitude%3C=-47&latitude%3E=55&latitude%3C=57&pres%3E=0&pres%3C=10&time%3E=1658724480.0&time%3C=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(%22time,pres%22)"; + :id = "https://doi.org/10.17882/42182"; + :infoUrl = "http://www.argodatamgt.org/Documentation"; + :institution = "Argo"; + :keywords = "adjusted, argo, array, centre, charge, chemistry, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, delayed, denoting, density, determined, direction, displacement, dissolved, doxy, DOXY_ADJUSTED, DOXY_ADJUSTED_ERROR, DOXY_ADJUSTED_QC, DOXY_dPRES, DOXY_QC, earth, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, geostrophic, global, handbook, HANDBOOK_VERSION, identifier, in-situ, instrument, investigator, its, its-90, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, mass, missions, mode, moles, moles_of_oxygen_per_unit_mass_in_sea_water, name, number, O2, ocean, oceanography, oceans, original, oxygen, per, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_DOXY_QC, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_dPRES, PSAL_QC, quality, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, relative, salinity, sampled, scale, science, sea, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_dPRES, TEMP_QC, temperature, time, type, unique, unit, update, value, values, version, vertical, water, WMO_INST_TYPE"; + :keywords_vocabulary = "GCMD Science Keywords"; + :license = "The data may be used and redistributed for free but is not intended +for legal use, since it may contain inaccuracies. Neither the data +Contributor, ERD, NOAA, nor the United States Government, nor any +of their employees or contractors, makes any warranty, express or +implied, including warranties of merchantability and fitness for a +particular purpose, or assumes any legal liability for the accuracy, +completeness, or usefulness, of this information."; + :Northernmost_Northing = 56.95117983333333; // double + :references = "http://www.argodatamgt.org/Documentation"; + :software_version = "1.18 (version 11.01.2024 for ARGO_simplified_profile)"; + :source = "Argo float"; + :sourceUrl = "(local files)"; + :Southernmost_Northing = 55.019996666666664; // double + :standard_name_vocabulary = "CF Standard Name Table v55"; + :subsetVariables = "data_type, data_centre, platform_type, wmo_inst_type, time_qc, position_qc, pres_qc"; + :summary = "Argo float synthetic vertical profiles : BGC data"; + :testOutOfDate = "now-5days"; + :time_coverage_end = "2022-10-13T00:13:00Z"; + :time_coverage_start = "2022-07-29T23:45:00Z"; + :title = "Argo float synthetic vertical profiles : BGC data"; + :user_manual_version = "1.0"; + :Westernmost_Easting = -54.40875833333333; // double +} diff --git a/argopy/tests/test_data/f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa.json b/argopy/tests/test_data/f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa.json new file mode 100644 index 00000000..a0aba931 --- /dev/null +++ b/argopy/tests/test_data/f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa.json @@ -0,0 +1 @@ +OK \ No newline at end of file diff --git a/argopy/tests/test_data/f3bc9c5a878b1e190a86e4326855f6e0e6cb44fe3d46836c31eb2ac9812a7668.nc b/argopy/tests/test_data/f3bc9c5a878b1e190a86e4326855f6e0e6cb44fe3d46836c31eb2ac9812a7668.nc new file mode 100644 index 00000000..e560471e Binary files /dev/null and b/argopy/tests/test_data/f3bc9c5a878b1e190a86e4326855f6e0e6cb44fe3d46836c31eb2ac9812a7668.nc differ diff --git a/argopy/tests/test_data/f48857083d3f8a30db7b7c35b541db5c39035280646eb47af8ba65dbb587e78a.nc b/argopy/tests/test_data/f48857083d3f8a30db7b7c35b541db5c39035280646eb47af8ba65dbb587e78a.nc new file mode 100644 index 00000000..c6c8006b Binary files /dev/null and b/argopy/tests/test_data/f48857083d3f8a30db7b7c35b541db5c39035280646eb47af8ba65dbb587e78a.nc differ diff --git a/argopy/tests/test_data/f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d.json b/argopy/tests/test_data/f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d.json new file mode 100644 index 00000000..b6e0c75c --- /dev/null +++ b/argopy/tests/test_data/f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d.json @@ -0,0 +1,115 @@ +{ + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Other"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.99948666666666"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "82.79761333333333"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-77.44"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.99948666666666"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "Mon Apr 29 14:02:51 2024: ncks -d n_levels,1501,2034 7402.nc 7402_3.nc"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.argodatamgt.org/DMQC/Reference-data-base"], + ["attribute", "NC_GLOBAL", "institution", "String", "Argo"], + ["attribute", "NC_GLOBAL", "keywords", "String", "cycle, cycle_number, data, latitude, levels, local, longitude, n_levels, n_prof, name, number, pi_name, platform, platform_number, pres, pressure, prof, psal, ptmp, source, temp, temperature, time"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "NCO", "String", "netCDF Operators version 4.9.7 (Homepage = http://nco.sf.net, Code = https://github.com/nco/nco)"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "82.79761333333333"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-77.44"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "Argo float vertical profiles to be used in DMQC. The free-moving nature of profiling floats means that most float measurements are without accompanying in-situ ground truth values for absolute calibration (such as those afforded by shipboard CTD measurements). Therefore Argo delayed-mode procedures for checking sensor drifts and offsets in salinity rely on reference datasets and statistical methods. Dataset assembled by John Gilson (SCRIPPS)"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2022-09-20T03:36:32Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1998-08-05T07:52:42Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Argo Reference Measurements"], + ["attribute", "NC_GLOBAL", "version", "String", "2023V3"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.0"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_ChunkSizes", "int", "1227"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "_FillValue", "double", "NaN"], + ["attribute", "latitude", "actual_range", "double", "-77.44, 82.79761333333333"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "90.0"], + ["attribute", "latitude", "colorBarMinimum", "double", "-90.0"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_ChunkSizes", "int", "1227"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "_FillValue", "double", "NaN"], + ["attribute", "longitude", "actual_range", "double", "-180.0, 179.99948666666666"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "180.0"], + ["attribute", "longitude", "colorBarMinimum", "double", "-180.0"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "platform_number", "", "String", ""], + ["attribute", "platform_number", "_ChunkSizes", "int", "1227"], + ["attribute", "platform_number", "ioos_category", "String", "Unknown"], + ["attribute", "platform_number", "long_name", "String", "Platform number"], + ["variable", "cycle_number", "", "String", ""], + ["attribute", "cycle_number", "_ChunkSizes", "int", "1227"], + ["attribute", "cycle_number", "ioos_category", "String", "Unknown"], + ["attribute", "cycle_number", "long_name", "String", "Cycle number"], + ["variable", "pi_name", "", "String", ""], + ["attribute", "pi_name", "_ChunkSizes", "int", "1227"], + ["attribute", "pi_name", "ioos_category", "String", "Identifier"], + ["attribute", "pi_name", "long_name", "String", "pi name"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_ChunkSizes", "int", "1227"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "9.02303562E8, 1.663644992E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "pres", "", "double", ""], + ["attribute", "pres", "_ChunkSizes", "int", "64, 154"], + ["attribute", "pres", "_FillValue", "double", "NaN"], + ["attribute", "pres", "actual_range", "double", "-5.300000190734863, 4011.60009765625"], + ["attribute", "pres", "ioos_category", "String", "Pressure"], + ["attribute", "pres", "long_name", "String", "Pressure"], + ["attribute", "pres", "missing_value", "double", "NaN"], + ["variable", "temp", "", "double", ""], + ["attribute", "temp", "_ChunkSizes", "int", "64, 154"], + ["attribute", "temp", "_FillValue", "double", "NaN"], + ["attribute", "temp", "actual_range", "double", "-2.0, 33.38999938964844"], + ["attribute", "temp", "ioos_category", "String", "Temperature"], + ["attribute", "temp", "long_name", "String", "Temperature"], + ["attribute", "temp", "missing_value", "double", "NaN"], + ["variable", "ptmp", "", "double", ""], + ["attribute", "ptmp", "_ChunkSizes", "int", "64, 154"], + ["attribute", "ptmp", "_FillValue", "double", "NaN"], + ["attribute", "ptmp", "actual_range", "double", "-2.000404051401031, 33.38918683999088"], + ["attribute", "ptmp", "ioos_category", "String", "Unknown"], + ["attribute", "ptmp", "long_name", "String", "ptmp"], + ["attribute", "ptmp", "missing_value", "double", "NaN"], + ["variable", "psal", "", "double", ""], + ["attribute", "psal", "_ChunkSizes", "int", "64, 154"], + ["attribute", "psal", "_FillValue", "double", "NaN"], + ["attribute", "psal", "actual_range", "double", "16.551000595092773, 39.957000732421875"], + ["attribute", "psal", "ioos_category", "String", "Salinity"], + ["attribute", "psal", "long_name", "String", "psal"], + ["attribute", "psal", "missing_value", "double", "NaN"], + ["variable", "n_levels", "", "long", ""], + ["attribute", "n_levels", "_FillValue", "long", "9223372036854775807"], + ["attribute", "n_levels", "actual_range", "long", "0, 2034"], + ["attribute", "n_levels", "ioos_category", "String", "Unknown"], + ["attribute", "n_levels", "long_name", "String", "n levels"], + ["variable", "n_prof", "", "String", ""], + ["attribute", "n_prof", "ioos_category", "String", "Unknown"], + ["attribute", "n_prof", "long_name", "String", "n prof"] + ] + } +} diff --git a/argopy/tests/test_data/f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7.json b/argopy/tests/test_data/f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7.json new file mode 100644 index 00000000..310c61a4 --- /dev/null +++ b/argopy/tests/test_data/f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7.json @@ -0,0 +1,200 @@ +{ + "@graph": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/SECMC/", + "pav:authoredOn": "2021-11-30 12:44:50.0", + "pav:hasCurrentVersion": { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/SECMC/1/" + }, + "dce:identifier": "SDN:RMC::SECMC", + "pav:version": "1", + "skos:notation": "SDN:RMC::SECMC", + "skos:altLabel": "Secondary MC", + "dc:date": "2021-11-30 12:44:50.0", + "owl:versionInfo": "1", + "skos:prefLabel": { + "@language": "en", + "@value": "Secondary Measurement Codes (MC)" + }, + "dc:identifier": "SDN:RMC::SECMC", + "skos:note": { + "@language": "en", + "@value": "accepted" + }, + "owl:deprecated": "false", + "void:inDataset": { + "@id": "http://vocab.nerc.ac.uk/.well-known/void" + }, + "skos:definition": { + "@language": "en", + "@value": "Measurement codes marking a recommended cycle timing variable. These are used to determine trajectory estimates for a range of float types." + }, + "@type": "skos:Concept" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RGENC/", + "pav:hasVersion": [ + { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RGENC/2/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RGENC/3/" + }, + { + "@id": "http://vocab.nerc.ac.uk/collection/RMC/current/RGENC/1/" + } + ], + "@type": "skos:Concept", + "skos:definition": { + "@language": "en", + "@value": "Measurement codes marking measurements recorded while transitioning towards a primary or secondary measurement code, or taken as part of a surface sequence of in-water or in-air samples. If 'MC' is defined as a primary or secondary measurement code, relative generic codes 'RGENC' correspond to all codes falling within the (MC-15) and (MC-10) range, and within the (MC-6) and (MC-1) range; i.e. (MC-16) < RGENC < (MC-9) and (MC-7) +PREFIX dc: +PREFIX dcat: +PREFIX dce: +PREFIX dct: +PREFIX grg: +PREFIX iop: +PREFIX ns0: +PREFIX ns1: +PREFIX owl: +PREFIX pav: +PREFIX prov: +PREFIX puv: +PREFIX qudt: +PREFIX rdf: +PREFIX rdfs: +PREFIX reg: +PREFIX semapv: +PREFIX skos: +PREFIX sssom: +PREFIX void: + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_MCOMS"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_MCOMS"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_MCOMS"; + skos:definition "Number of WET Labs MCOMS sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_MCOMS"; + skos:note "accepted"@en; + skos:prefLabel "Number of MCOMS samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_OPTODE"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_OPTODE"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_OPTODE"; + skos:definition "Number of optode samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_OPTODE"; + skos:note "accepted"@en; + skos:prefLabel "Number of optode samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CHLA_FLUORESCENCE"; + dc:date "2023-08-31 11:21:18.0"; + dc:identifier "SDN:R03::CHLA_FLUORESCENCE"; + pav:authoredOn "2023-08-31 11:21:18.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "CHLA_FLUORESCENCE"; + skos:definition "Chlorophyll fluorescence in relative unit with factory calibration"@en; + skos:notation "SDN:R03::CHLA_FLUORESCENCE"; + skos:note "accepted"@en; + skos:prefLabel "Chlorophyll fluorescence with factory calibration"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_SUNA"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_SUNA"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_SUNA"; + skos:definition "Number of SUNA sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_SUNA"; + skos:note "accepted"@en; + skos:prefLabel "Number of SUNA samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_CYC"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_CYC"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_CYC"; + skos:definition "Number of Cyclops sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_CYC"; + skos:note "accepted"@en; + skos:prefLabel "Number of CYCLOPS samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_DURAFET"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_DURAFET"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_DURAFET"; + skos:definition "Number of Durafet pH sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_DURAFET"; + skos:note "accepted"@en; + skos:prefLabel "Number of DURAFET samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_CTD"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_CTD"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_CTD"; + skos:definition "Number of CTD samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_CTD"; + skos:note "accepted"@en; + skos:prefLabel "Number of CTD samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_OCR"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_OCR"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_OCR"; + skos:definition "Number of OCR sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_OCR"; + skos:note "accepted"@en; + skos:prefLabel "Number of OCR samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_STM"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_STM"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_STM"; + skos:definition "Number of Seapoint Turbidity Meter (STM) sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_STM"; + skos:note "accepted"@en; + skos:prefLabel "Number of STM samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_ECO"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_ECO"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_ECO"; + skos:definition "Number of Environmental Characterization Optics (ECO) sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_ECO"; + skos:note "accepted"@en; + skos:prefLabel "Number of ECO samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_CROVER"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_CROVER"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_CROVER"; + skos:definition "Number of c-Rover sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_CROVER"; + skos:note "accepted"@en; + skos:prefLabel "Number of c-Rover samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE_ISUS"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::NB_SAMPLE_ISUS"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE_ISUS"; + skos:definition "Number of In Situ Ultraviolet Spectrophotometer (ISUS) sensor samples in each pressure bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE_ISUS"; + skos:note "accepted"@en; + skos:prefLabel "Number of ISUS samples in each pressure bin"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_CNDC"; + dc:date "2021-02-01 14:09:51.0"; + dc:identifier "SDN:R03::TEMP_CNDC"; + pav:authoredOn "2021-02-01 14:09:51.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TEMP_CNDC"; + skos:definition "Internal temperature (degC) of the conductivity cell."@en; + skos:notation "SDN:R03::TEMP_CNDC"; + skos:note "accepted"@en; + skos:prefLabel "Internal temperature of the conductivity cell"@en . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PH_IN_SITU_FREE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::PH_IN_SITU_FREE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PH_IN_SITU_FREE"; + skos:definition "pH against the free scale."@en; + skos:notation "SDN:R03::PH_IN_SITU_FREE"; + skos:note "accepted"@en; + skos:prefLabel "pH (free scale)"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PH_IN_SITU_TOTAL"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::PH_IN_SITU_TOTAL"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PH_IN_SITU_TOTAL"; + skos:definition "pH against the total scale."@en; + skos:notation "SDN:R03::PH_IN_SITU_TOTAL"; + skos:note "accepted"@en; + skos:prefLabel "pH (total scale)"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PH_IN_SITU_SEAWATER"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::PH_IN_SITU_SEAWATER"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PH_IN_SITU_SEAWATER"; + skos:definition "pH against the seawater scale."@en; + skos:notation "SDN:R03::PH_IN_SITU_SEAWATER"; + skos:note "accepted"@en; + skos:prefLabel "pH (seawater scale)"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWNWELLING_PAR"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWNWELLING_PAR"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWNWELLING_PAR"; + skos:definition "Downwelling photosynthetically available radiation (PAR) (uE/m^2/s)."@en; + skos:notation "SDN:R03::DOWNWELLING_PAR"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling photosynthetically available radiation"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_VOLTAGE_DOXY"; + dc:date "2023-10-05 14:49:26.0"; + dc:identifier "SDN:R03::TEMP_VOLTAGE_DOXY"; + pav:authoredOn "2023-10-05 14:49:26.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "TEMP_VOLTAGE_DOXY"; + skos:definition "Raw temperature signal (volt) from thermistor on dissolved oxygen sensor."@en; + skos:notation "SDN:R03::TEMP_VOLTAGE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Thermistor voltage reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::VRS_PH"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::VRS_PH"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "VRS_PH"; + skos:definition "Raw output signal (volt) from pH sensor, equating to the potential between the transistor source and the reference electrode."@en; + skos:notation "SDN:R03::VRS_PH"; + skos:note "accepted"@en; + skos:prefLabel "Voltage difference between reference and source from pH sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::VK_PH"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::VK_PH"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "VK_PH"; + skos:definition "Counter electrode signal (volt) from pH sensor."@en; + skos:notation "SDN:R03::VK_PH"; + skos:note "accepted"@en; + skos:prefLabel "Counter electrode voltage of pH sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::VOLTAGE_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::VOLTAGE_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "VOLTAGE_DOXY"; + skos:definition "Raw output signal (volt) from dissolved oxygen sensor."@en; + skos:notation "SDN:R03::VOLTAGE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Voltage reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::IK_PH"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::IK_PH"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "IK_PH"; + skos:definition "Counter electrode current (nA) from pH sensor."@en; + skos:notation "SDN:R03::IK_PH"; + skos:note "accepted"@en; + skos:prefLabel "Counter electrode current of pH sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::IB_PH"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::IB_PH"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "IB_PH"; + skos:definition "Base current (nA) of pH sensor chip."@en; + skos:notation "SDN:R03::IB_PH"; + skos:note "accepted"@en; + skos:prefLabel "Base current of pH sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PHASE_DELAY_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::PHASE_DELAY_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "PHASE_DELAY_DOXY"; + skos:definition "Raw phase delay (usec) by optode."@en; + skos:notation "SDN:R03::PHASE_DELAY_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Phase delay reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PPOX_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::PPOX_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PPOX_DOXY"; + skos:definition "Oxygen partial pressure (mBar)."@en; + skos:notation "SDN:R03::PPOX_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Partial pressure of oxygen"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PRES"; + dc:date "2019-10-11 15:02:22.0"; + dc:identifier "SDN:R03::PRES"; + pav:authoredOn "2019-10-11 15:02:22.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PRES"; + skos:definition "The force per unit area exerted by the water column on a pressure sensor, corrected to read zero at sea level."@en; + skos:notation "SDN:R03::PRES"; + skos:note "accepted"@en; + skos:prefLabel "Sea water pressure, equals 0 at sea-level"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CNDC"; + dc:date "2019-10-11 15:02:22.0"; + dc:identifier "SDN:R03::CNDC"; + pav:authoredOn "2019-10-11 15:02:22.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "CNDC"; + skos:definition "Measure of electrical flow through water."@en; + skos:notation "SDN:R03::CNDC"; + skos:note "accepted"@en; + skos:prefLabel "Electrical conductivity"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::MTIME"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::MTIME"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "MTIME"; + skos:definition "Fractional day of the individual measurement relative to JULD of the station (days)."@en; + skos:notation "SDN:R03::MTIME"; + skos:note "accepted"@en; + skos:prefLabel "Fractional day of the individual measurement relative to JULD of the station"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CP660"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::CP660"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "CP660"; + skos:definition "Particle beam attenuation (/m) at 660 nm wavelength."@en; + skos:notation "SDN:R03::CP660"; + skos:note "accepted"@en; + skos:prefLabel "Particle beam attenuation at 660 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CP"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::CP"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "CP"; + skos:definition "Particle beam attenuation (/m) at unspecified wavelength."@en; + skos:notation "SDN:R03::CP"; + skos:note "accepted"@en; + skos:prefLabel "Particle beam attenuation at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UP_RADIANCE555"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UP_RADIANCE555"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UP_RADIANCE555"; + skos:definition "Upwelling radiance (W/m^2/nm/sr) at 555 nm wavelength."@en; + skos:notation "SDN:R03::UP_RADIANCE555"; + skos:note "accepted"@en; + skos:prefLabel "Upwelling radiance at 555 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UP_RADIANCE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UP_RADIANCE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "UP_RADIANCE"; + skos:definition "Upwelling radiance (W/m^2/nm/sr) at unspecified wavelength."@en; + skos:notation "SDN:R03::UP_RADIANCE"; + skos:note "accepted"@en; + skos:prefLabel "Upwelling radiance at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UP_RADIANCE443"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UP_RADIANCE443"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UP_RADIANCE443"; + skos:definition "Upwelling radiance (W/m^2/nm/sr) at 443 nm wavelength."@en; + skos:notation "SDN:R03::UP_RADIANCE443"; + skos:note "accepted"@en; + skos:prefLabel "Upwelling radiance at 443 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UP_RADIANCE412"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UP_RADIANCE412"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UP_RADIANCE412"; + skos:definition "Upwelling radiance (W/m^2/nm/sr) at 412 nm wavelength."@en; + skos:notation "SDN:R03::UP_RADIANCE412"; + skos:note "accepted"@en; + skos:prefLabel "Upwelling radiance at 412 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UP_RADIANCE490"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UP_RADIANCE490"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UP_RADIANCE490"; + skos:definition "Upwelling radiance (W/m^2/nm/sr) at 490 nm wavelength."@en; + skos:notation "SDN:R03::UP_RADIANCE490"; + skos:note "accepted"@en; + skos:prefLabel "Upwelling radiance at 490 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CDOM"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::CDOM"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "CDOM"; + skos:definition "Coloured dissolved organic matter (CDOM) concentration (ppb)."@en; + skos:notation "SDN:R03::CDOM"; + skos:note "accepted"@en; + skos:prefLabel "Concentration of coloured dissolved organic matter in seawater"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE"; + skos:definition "Downwelling irradiance (W/m^2/nm) at unspecified wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE412"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE412"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE412"; + skos:definition "Downwelling irradiance (W/m^2/nm) at 412 nm wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE412"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at 412 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE490"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE490"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE490"; + skos:definition "Downwelling irradiance (W/m^2/nm) at 490 nm wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE490"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at 490 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE443"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE443"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE443"; + skos:definition "Downwelling irradiance (W/m^2/nm) at 443 nm wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE443"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at 443 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE380"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE380"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE380"; + skos:definition "Downwelling irradiance (W/m^2/nm) at 380 nm wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE380"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at 380 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOWN_IRRADIANCE555"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOWN_IRRADIANCE555"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOWN_IRRADIANCE555"; + skos:definition "Downwelling irradiance (W/m^2/nm) at 555 nm wavelength."@en; + skos:notation "SDN:R03::DOWN_IRRADIANCE555"; + skos:note "accepted"@en; + skos:prefLabel "Downwelling irradiance at 555 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::FREQUENCY_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::FREQUENCY_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "FREQUENCY_DOXY"; + skos:definition "Raw output signal (hertz) from dissolved oxygen sensor."@en; + skos:notation "SDN:R03::FREQUENCY_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Frequency reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BBP700"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BBP700"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BBP700"; + skos:definition "Particle backscattering (/m) at 700 nm wavelength."@en; + skos:notation "SDN:R03::BBP700"; + skos:note "accepted"@en; + skos:prefLabel "Particle backscattering at 700 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BBP"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BBP"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BBP"; + skos:definition "Particle backscattering (/m) at unspecified wavelength."@en; + skos:notation "SDN:R03::BBP"; + skos:note "accepted"@en; + skos:prefLabel "Particle backscattering at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BBP532"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BBP532"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BBP532"; + skos:definition "Particle backscattering (/m) at 532 nm wavelength."@en; + skos:notation "SDN:R03::BBP532"; + skos:note "accepted"@en; + skos:prefLabel "Particle backscattering at 532 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BBP470"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BBP470"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BBP470"; + skos:definition "Particle backscattering (/m) at 470 nm wavelength."@en; + skos:notation "SDN:R03::BBP470"; + skos:note "accepted"@en; + skos:prefLabel "Particle backscattering at 470 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "TEMP_SPECTROPHOTOMETER_NITRATE"; + skos:definition "Spectrometer temperature (degC) of nitrate sensor."@en; + skos:notation "SDN:R03::TEMP_SPECTROPHOTOMETER_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Temperature of the spectrometer"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TEMP_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TEMP_DOXY"; + skos:definition "Temperature (degC) from thermistor on dissolved oxygen sensor, expressed against the International Temperature Scale 1990 (ITS-90) calibration standard."@en; + skos:notation "SDN:R03::TEMP_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Sea temperature from oxygen sensor ITS-90 scale"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_PH"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TEMP_PH"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "TEMP_PH"; + skos:definition "Temperature (degC) of seawater from pH sensor."@en; + skos:notation "SDN:R03::TEMP_PH"; + skos:note "accepted"@en; + skos:prefLabel "Sea temperature from pH sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TEMP_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "TEMP_NITRATE"; + skos:definition "Internal temperature (degC) of the nitrate sensor"@en; + skos:notation "SDN:R03::TEMP_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Internal temperature of the nitrate sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::HUMIDITY_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::HUMIDITY_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "HUMIDITY_NITRATE"; + skos:definition "Relative humidity inside the nitrate sensor (If > 50% there is a leak)"@en; + skos:notation "SDN:R03::HUMIDITY_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Relative humidity inside the nitrate sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::C1PHASE_DOXY"; + dc:date "2020-05-03 17:42:05.0"; + dc:identifier "SDN:R03::C1PHASE_DOXY"; + pav:authoredOn "2020-05-03 17:42:05.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "2"; + skos:altLabel "C1PHASE_DOXY"; + skos:definition "Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F."@en; + skos:notation "SDN:R03::C1PHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 4330/4330F"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TPHASE_DOXY"; + dc:date "2020-05-03 17:43:30.0"; + dc:identifier "SDN:R03::TPHASE_DOXY"; + pav:authoredOn "2020-05-03 17:43:30.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "TPHASE_DOXY"; + skos:definition "Uncalibrated temperature compensated phase shift (deg) reported by oxygen sensor."@en; + skos:notation "SDN:R03::TPHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncalibrated temperature compensated phase shift reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TILT"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TILT"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "TILT"; + skos:definition "Inclination of the float axis in respect to the local vertical (deg)."@en; + skos:notation "SDN:R03::TILT"; + skos:note "accepted"@en; + skos:prefLabel "Inclination of the float axis in respect to the local vertical"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::C2PHASE_DOXY"; + dc:date "2020-05-03 17:42:33.0"; + dc:identifier "SDN:R03::C2PHASE_DOXY"; + pav:authoredOn "2020-05-03 17:42:33.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "C2PHASE_DOXY"; + skos:definition "Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 4330/4330F."@en; + skos:notation "SDN:R03::C2PHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncalibrated red excitation light phase shift reported by Aanderaa optode 4330/4330F"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RPHASE_DOXY"; + dc:date "2020-05-03 17:41:38.0"; + dc:identifier "SDN:R03::RPHASE_DOXY"; + pav:authoredOn "2020-05-03 17:41:38.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "RPHASE_DOXY"; + skos:definition "Uncalibrated red excitation light phase shift (deg) reported by Aanderaa optode 3830."@en; + skos:notation "SDN:R03::RPHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncalibrated red excitation light phase shift reported by Aanderaa optode 3830"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BPHASE_DOXY"; + dc:date "2020-05-03 17:40:52.0"; + dc:identifier "SDN:R03::BPHASE_DOXY"; + pav:authoredOn "2020-05-03 17:40:52.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "BPHASE_DOXY"; + skos:definition "Uncalibrated blue excitation light phase shift (deg) reported by Aanderaa optode 3830."@en; + skos:notation "SDN:R03::BPHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncalibrated blue excitation light phase shift reported by Aanderaa optode 3830"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DPHASE_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DPHASE_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DPHASE_DOXY"; + skos:definition "Calibrated phase (deg) by optode."@en; + skos:notation "SDN:R03::DPHASE_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Calibrated phase shift reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::MOLAR_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::MOLAR_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "MOLAR_DOXY"; + skos:definition "Dissolved oxygen concentration (umol/l) uncorrected for salinity and pressure effects."@en; + skos:notation "SDN:R03::MOLAR_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Uncompensated (pressure and salinity) oxygen concentration reported\nby the oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::MOLAR_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::MOLAR_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "MOLAR_NITRATE"; + skos:definition "Nitrate concentration (umol/l)."@en; + skos:notation "SDN:R03::MOLAR_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Molar nitrate concentration"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BETA_BACKSCATTERING700"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BETA_BACKSCATTERING700"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BETA_BACKSCATTERING700"; + skos:definition "Raw backscattering signal (count) from backscattering meter at 700 nm wavelength."@en; + skos:notation "SDN:R03::BETA_BACKSCATTERING700"; + skos:note "accepted"@en; + skos:prefLabel "Total angle specific volume from backscattering sensor at 700 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BETA_BACKSCATTERING470"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BETA_BACKSCATTERING470"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BETA_BACKSCATTERING470"; + skos:definition "Raw backscattering signal (count) from backscattering meter at 470 nm wavelength."@en; + skos:notation "SDN:R03::BETA_BACKSCATTERING470"; + skos:note "accepted"@en; + skos:prefLabel "Total angle specific volume from backscattering sensor at 470 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::SIDE_SCATTERING_TURBIDITY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::SIDE_SCATTERING_TURBIDITY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "SIDE_SCATTERING_TURBIDITY"; + skos:definition "Raw turbidity signal (count) from side scattering sensor."@en; + skos:notation "SDN:R03::SIDE_SCATTERING_TURBIDITY"; + skos:note "accepted"@en; + skos:prefLabel "Turbidity signal from side scattering sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::PSAL"; + dc:date "2019-10-11 15:02:22.0"; + dc:identifier "SDN:R03::PSAL"; + pav:authoredOn "2019-10-11 15:02:22.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "PSAL"; + skos:definition "Practical salinity of the water body by conductivity cell and computation using the UNESCO 1983 algorithm."@en; + skos:notation "SDN:R03::PSAL"; + skos:note "accepted"@en; + skos:prefLabel "Practical salinity"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION"; + skos:definition "Raw beam attenuation signal (count) from transmissometer sensor at unspecified wavelength."@en; + skos:notation "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION"; + skos:note "accepted"@en; + skos:prefLabel "Beam attenuation from transmissometer sensor at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_UPWELLING_RADIANCE412"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_UPWELLING_RADIANCE412"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "RAW_UPWELLING_RADIANCE412"; + skos:definition "Raw upwelling radiance signal (count) at 412 nm wavelength."@en; + skos:notation "SDN:R03::RAW_UPWELLING_RADIANCE412"; + skos:note "accepted"@en; + skos:prefLabel "Raw upwelling radiance at 412 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::COUNT_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::COUNT_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "COUNT_DOXY"; + skos:definition "Raw output signal (count) from dissolved oxygen sensor."@en; + skos:notation "SDN:R03::COUNT_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Count reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE490"; + skos:definition "Raw downwelling irradiance signal (count) at 490 nm wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE490"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at 490 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660"; + skos:definition "Raw beam attenuation signal (count) from transmissometer sensor at 660 nm wavelength."@en; + skos:notation "SDN:R03::TRANSMITTANCE_PARTICLE_BEAM_ATTENUATION660"; + skos:note "accepted"@en; + skos:prefLabel "Particle beam attenuation from transmissometer sensor at 660 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UV_INTENSITY_DARK_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UV_INTENSITY_DARK_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UV_INTENSITY_DARK_NITRATE"; + skos:definition "Raw ultra-violet (UV) flux signal (count) in darkness from nitrate sensor."@en; + skos:notation "SDN:R03::UV_INTENSITY_DARK_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Intensity of ultra-violet flux dark measurement from nitrate sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::LED_FLASHING_COUNT_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::LED_FLASHING_COUNT_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "LED_FLASHING_COUNT_DOXY"; + skos:definition "Light-emitting diode (LED) flashing frequency (count) from dissolved oxygen sensor."@en; + skos:notation "SDN:R03::LED_FLASHING_COUNT_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Number of times oxygen sensor flashing to measure oxygen"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UV_INTENSITY_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UV_INTENSITY_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UV_INTENSITY_NITRATE"; + skos:definition "Raw ultra-violet (UV) flux signal (count) from nitrate sensor."@en; + skos:notation "SDN:R03::UV_INTENSITY_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Intensity of ultra-violet flux from nitrate sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::FLUORESCENCE_CDOM"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::FLUORESCENCE_CDOM"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "FLUORESCENCE_CDOM"; + skos:definition "Raw fluorescence signal (count) from coloured dissolved organic matter (CDOM) sensor."@en; + skos:notation "SDN:R03::FLUORESCENCE_CDOM"; + skos:note "accepted"@en; + skos:prefLabel "Raw fluorescence from coloured dissolved organic matter sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_UPWELLING_RADIANCE555"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_UPWELLING_RADIANCE555"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "RAW_UPWELLING_RADIANCE555"; + skos:definition "Raw upwelling radiance signal (count) at 555 nm wavelength."@en; + skos:notation "SDN:R03::RAW_UPWELLING_RADIANCE555"; + skos:note "accepted"@en; + skos:prefLabel "Raw upwelling radiance at 555 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NB_SAMPLE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::NB_SAMPLE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "NB_SAMPLE"; + skos:definition "Number of samples in bin (dimensionless)."@en; + skos:notation "SDN:R03::NB_SAMPLE"; + skos:note "accepted"@en; + skos:prefLabel "Number of samples in bin"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE380"; + skos:definition "Raw downwelling irradiance signal (count) at 380 nm wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE380"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at 380 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE412"; + skos:definition "Raw downwelling irradiance signal (count) at 412 nm wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE412"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at 412 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE"; + skos:definition "Raw downwelling irradiance signal (count) at unspecified wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BETA_BACKSCATTERING"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BETA_BACKSCATTERING"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BETA_BACKSCATTERING"; + skos:definition "Raw backscattering signal (count) from backscattering meter at unspecified wavelength."@en; + skos:notation "SDN:R03::BETA_BACKSCATTERING"; + skos:note "accepted"@en; + skos:prefLabel "Total angle specific volume from backscattering sensor at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_UPWELLING_RADIANCE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_UPWELLING_RADIANCE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "RAW_UPWELLING_RADIANCE"; + skos:definition "Raw upwelling radiance signal (count) at unspecified wavelength."@en; + skos:notation "SDN:R03::RAW_UPWELLING_RADIANCE"; + skos:note "accepted"@en; + skos:prefLabel "Raw upwelling radiance at x nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_UPWELLING_RADIANCE443"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_UPWELLING_RADIANCE443"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "RAW_UPWELLING_RADIANCE443"; + skos:definition "Raw upwelling radiance signal (count) at 443 nm wavelength."@en; + skos:notation "SDN:R03::RAW_UPWELLING_RADIANCE443"; + skos:note "accepted"@en; + skos:prefLabel "Raw upwelling radiance at 443 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE443"; + skos:definition "Raw downwelling irradiance signal (count) at 443 nm wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE443"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at 443 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "UV_INTENSITY_DARK_SEAWATER_NITRATE"; + skos:definition "Raw ultra-violet (UV) flux signal (count) in seawater and darkness from nitrate sensor."@en; + skos:notation "SDN:R03::UV_INTENSITY_DARK_SEAWATER_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Intensity of ultra-violet flux dark seawater from nitrate sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::FLUORESCENCE_CHLA"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::FLUORESCENCE_CHLA"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "FLUORESCENCE_CHLA"; + skos:definition "Raw fluorescence signal (count) from chlorophyll-a fluorometer."@en; + skos:notation "SDN:R03::FLUORESCENCE_CHLA"; + skos:note "accepted"@en; + skos:prefLabel "Raw signal from chlorophyll-a fluorometer"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::FIT_ERROR_NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::FIT_ERROR_NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "FIT_ERROR_NITRATE"; + skos:definition "Calibration fit error of nitrate (dimensionless)."@en; + skos:notation "SDN:R03::FIT_ERROR_NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Nitrate fit error"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_PAR"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_PAR"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_PAR"; + skos:definition "Raw downwelling photosynthetically available radiation (PAR) signal (count)."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_PAR"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling photosynthetically available radiation"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "RAW_DOWNWELLING_IRRADIANCE555"; + skos:definition "Raw downwelling irradiance signal (count) at 555 nm wavelength."@en; + skos:notation "SDN:R03::RAW_DOWNWELLING_IRRADIANCE555"; + skos:note "accepted"@en; + skos:prefLabel "Raw downwelling irradiance at 555 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_COUNT_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TEMP_COUNT_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "TEMP_COUNT_DOXY"; + skos:definition "Raw temperature signal (count) from thermistor on dissolved oxygen sensor."@en; + skos:notation "SDN:R03::TEMP_COUNT_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Count which is expressive of uncalibrated temperature value reported by oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::RAW_UPWELLING_RADIANCE490"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::RAW_UPWELLING_RADIANCE490"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:versionInfo "1"; + skos:altLabel "RAW_UPWELLING_RADIANCE490"; + skos:definition "Raw upwelling radiance signal (count) at 490 nm wavelength."@en; + skos:notation "SDN:R03::RAW_UPWELLING_RADIANCE490"; + skos:note "accepted"@en; + skos:prefLabel "Raw upwelling radiance at 490 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BETA_BACKSCATTERING532"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BETA_BACKSCATTERING532"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BETA_BACKSCATTERING532"; + skos:definition "Raw backscattering signal (count) from backscattering meter at 532 nm wavelength."@en; + skos:notation "SDN:R03::BETA_BACKSCATTERING532"; + skos:note "accepted"@en; + skos:prefLabel "Total angle specific volume from backscattering sensor at 532 nanometers"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP_CPU_CHLA"; + dc:date "2024-08-20 12:02:47.0"; + dc:identifier "SDN:R03::TEMP_CPU_CHLA"; + pav:authoredOn "2024-08-20 12:02:47.0"; + pav:hasCurrentVersion ; + pav:hasVersion ; + pav:version "2"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "2"; + skos:altLabel "TEMP_CPU_CHLA"; + skos:definition "Raw temperature signal (count) from thermistor on backscattering meter and/or fluorometer."@en; + skos:notation "SDN:R03::TEMP_CPU_CHLA"; + skos:note "accepted"@en; + skos:prefLabel "Thermistor signal from backscattering meter and/or fluorometer"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "DOXY"; + skos:definition "Dissolved oxygen concentration (umol/kg)."@en; + skos:notation "SDN:R03::DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Dissolved oxygen concentration"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::NITRATE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::NITRATE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "NITRATE"; + skos:definition "Nitrate concentration (umol/kg)."@en; + skos:notation "SDN:R03::NITRATE"; + skos:note "accepted"@en; + skos:prefLabel "Nitrate concentration"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::BISULFIDE"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::BISULFIDE"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "BISULFIDE"; + skos:definition "Bisulfide concentration (umol/kg)."@en; + skos:notation "SDN:R03::BISULFIDE"; + skos:note "accepted"@en; + skos:prefLabel "Bisulfide concentration"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::MLPL_DOXY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::MLPL_DOXY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "MLPL_DOXY"; + skos:definition "Dissolved oxygen concentration (ml/l) uncorrected for salinity and pressure effects."@en; + skos:notation "SDN:R03::MLPL_DOXY"; + skos:note "accepted"@en; + skos:prefLabel "Oxygen concentration reported by the oxygen sensor"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TURBIDITY"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::TURBIDITY"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TURBIDITY"; + skos:definition "Turbidity (NTU) of seawater."@en; + skos:notation "SDN:R03::TURBIDITY"; + skos:note "accepted"@en; + skos:prefLabel "seawater turbidity"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::CHLA"; + dc:date "2020-04-04 15:05:33.0"; + dc:identifier "SDN:R03::CHLA"; + pav:authoredOn "2020-04-04 15:05:33.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "CHLA"; + skos:definition "Chlorophyll-a concentration (mg/m^3)."@en; + skos:notation "SDN:R03::CHLA"; + skos:note "accepted"@en; + skos:prefLabel "Chlorophyll-a concentration"@en; + skos:related . + + + rdf:type skos:Concept; + dce:identifier "SDN:R03::TEMP"; + dc:date "2019-10-11 15:02:22.0"; + dc:identifier "SDN:R03::TEMP"; + pav:authoredOn "2019-10-11 15:02:22.0"; + pav:hasCurrentVersion ; + pav:version "1"; + void:inDataset ; + owl:deprecated "false"; + owl:sameAs ; + owl:versionInfo "1"; + skos:altLabel "TEMP"; + skos:definition "Temperature of the water body expressed against the International Temperature Scale 1990 (ITS-90) calibration standard."@en; + skos:notation "SDN:R03::TEMP"; + skos:note "accepted"@en; + skos:prefLabel "Sea temperature in-situ ITS-90 scale"@en; + skos:related . + + + rdf:type skos:Collection; + rdfs:comment "Governance for vocabularies used in the Argo data system, published and maintained by the Argo Data Management Team (ADMT) and hosted on the NERC Vocabulary Server."; + rdfs:seeAlso ; + dc:alternative "PARAMETER"; + dc:creator "Argo Data Management Team"; + dc:date "2024-08-21 03:00:01.0"; + dc:description "Terms describing individual measured phenomena, used to mark up sets of data in Argo netCDF arrays. Argo netCDF variables PARAMETER and TRAJECTORY_PARAMETERS are populated by R03 altLabel; R03 altLabel is also used to name netCDF profile files parameter variables ."; + dc:publisher "Natural Environment Research Council"; + dc:title "Argo parameter codes"; + grg:RE_RegisterManager "British Oceanographic Data Centre"; + grg:RE_RegisterOwner "Argo Data Management Team"; + owl:versionInfo "7"; + skos:altLabel "PARAMETER"; + skos:member , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ; + skos:prefLabel "Argo parameter codes" . diff --git a/argopy/tests/test_data/f6990bb0022179dc69dfd490237af3b90f3b1dd325eee7a37e1095346af72945.nc b/argopy/tests/test_data/f6990bb0022179dc69dfd490237af3b90f3b1dd325eee7a37e1095346af72945.nc new file mode 100644 index 00000000..db3795bb Binary files /dev/null and b/argopy/tests/test_data/f6990bb0022179dc69dfd490237af3b90f3b1dd325eee7a37e1095346af72945.nc differ diff --git a/argopy/tests/test_data/f860cf0afde256266830eac4f99bee7fd5c02ea642f28bee789aae059c3e54e8.nc b/argopy/tests/test_data/f860cf0afde256266830eac4f99bee7fd5c02ea642f28bee789aae059c3e54e8.nc new file mode 100644 index 00000000..dad7b031 Binary files /dev/null and b/argopy/tests/test_data/f860cf0afde256266830eac4f99bee7fd5c02ea642f28bee789aae059c3e54e8.nc differ diff --git a/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json b/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json new file mode 100644 index 00000000..99f7f1ee --- /dev/null +++ b/argopy/tests/test_data/f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e.json @@ -0,0 +1,422 @@ +{ + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_altitude_proxy", "String", "pres"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TrajectoryProfile"], + ["attribute", "NC_GLOBAL", "cdm_profile_variables", "String", "cycle_number, data_type, format_version, handbook_version, reference_date_time, date_creation, date_update, direction, data_center, dc_reference, data_state_indicator, data_mode, firmware_version, wmo_inst_type, time, time_qc, time_location, latitude, longitude, position_qc, positioning_system, profile_pres_qc, profile_temp_qc, profile_psal_qc, vertical_sampling_scheme"], + ["attribute", "NC_GLOBAL", "cdm_trajectory_variables", "String", "platform_number, project_name, pi_name, platform_type, float_serial_no"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "Argo-3.1, CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "support@argo.net"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "Argo"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://argo.ucsd.edu/"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "longitude%2Clatitude%2Ctemp&time>=now-2d&time<=now&pres>=0&pres<=5&.draw=markers&.marker=5|5&.color=0x000000&.colorBar=|||||&.bgColor=0xffccccff"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "180.0"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TrajectoryProfile"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "89.97058333333334"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-99.999"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-179.99942"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://argo.ucsd.edu/"], + ["attribute", "NC_GLOBAL", "institution", "String", "Argo"], + ["attribute", "NC_GLOBAL", "keywords", "String", "adjusted, argo, array, assembly, best, centre, centres, charge, coded, CONFIG_MISSION_NUMBER, contains, coriolis, creation, currents, cycle, CYCLE_NUMBER, data, DATA_CENTRE, DATA_MODE, DATA_STATE_INDICATOR, DATA_TYPE, date, DATE_CREATION, DATE_UPDATE, day, days, DC_REFERENCE, degree, delayed, denoting, density, determined, direction, Earth Science > Oceans > Ocean Pressure > Water Pressure, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, equals, error, estimate, file, firmware, FIRMWARE_VERSION, flag, float, FLOAT_SERIAL_NO, format, FORMAT_VERSION, gdac, geostrophic, global, handbook, HANDBOOK_VERSION, have, identifier, in-situ, instrument, investigator, its, its-90, JULD, JULD_LOCATION, JULD_QC, julian, latitude, level, longitude, missions, mode, name, number, ocean, oceanography, oceans, passed, performed, PI_NAME, PLATFORM_NUMBER, PLATFORM_TYPE, position, POSITION_QC, positioning, POSITIONING_SYSTEM, practical, pres, PRES_ADJUSTED, PRES_ADJUSTED_ERROR, PRES_ADJUSTED_QC, PRES_QC, pressure, principal, process, processing, profile, PROFILE_PRES_QC, PROFILE_PSAL_QC, PROFILE_TEMP_QC, profiles, project, PROJECT_NAME, psal, PSAL_ADJUSTED, PSAL_ADJUSTED_ERROR, PSAL_ADJUSTED_QC, PSAL_QC, quality, rdac, real, real time, real-time, realtime, reference, REFERENCE_DATE_TIME, regional, relative, salinity, sampling, scale, scheme, sea, sea level, sea-level, sea_water_practical_salinity, sea_water_pressure, sea_water_temperature, seawater, serial, situ, station, statistics, system, TEMP, TEMP_ADJUSTED, TEMP_ADJUSTED_ERROR, TEMP_ADJUSTED_QC, TEMP_QC, temperature, through, time, type, unique, update, values, version, vertical, VERTICAL_SAMPLING_SCHEME, water, WMO_INST_TYPE"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "falsestandard]"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "89.97058333333334"], + ["attribute", "NC_GLOBAL", "references", "String", "http://www.argodatamgt.org/Documentation"], + ["attribute", "NC_GLOBAL", "source", "String", "Argo float"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-99.999"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v29"], + ["attribute", "NC_GLOBAL", "summary", "String", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2026-12-27T14:48:20Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1997-07-28T20:26:20Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Argo Float Measurements"], + ["attribute", "NC_GLOBAL", "user_manual_version", "String", "3.1"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-179.99942"], + ["variable", "fileNumber", "", "String", ""], + ["attribute", "fileNumber", "ioos_category", "String", "Identifier"], + ["attribute", "fileNumber", "long_name", "String", "File Number"], + ["variable", "data_type", "", "String", ""], + ["attribute", "data_type", "conventions", "String", "Argo reference table 1"], + ["attribute", "data_type", "ioos_category", "String", "Unknown"], + ["attribute", "data_type", "long_name", "String", "Data type"], + ["variable", "format_version", "", "String", ""], + ["attribute", "format_version", "ioos_category", "String", "Unknown"], + ["attribute", "format_version", "long_name", "String", "File format version"], + ["variable", "handbook_version", "", "String", ""], + ["attribute", "handbook_version", "ioos_category", "String", "Unknown"], + ["attribute", "handbook_version", "long_name", "String", "Data handbook version"], + ["variable", "reference_date_time", "", "double", ""], + ["attribute", "reference_date_time", "actual_range", "double", "-6.31152E8, -6.31152E8"], + ["attribute", "reference_date_time", "ioos_category", "String", "Time"], + ["attribute", "reference_date_time", "long_name", "String", "Date of reference for Julian days"], + ["attribute", "reference_date_time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "reference_date_time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "date_creation", "", "double", ""], + ["attribute", "date_creation", "actual_range", "double", "1.076437173E9, 1.727132219E9"], + ["attribute", "date_creation", "ioos_category", "String", "Time"], + ["attribute", "date_creation", "long_name", "String", "Date of file creation"], + ["attribute", "date_creation", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "date_creation", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "date_update", "", "double", ""], + ["attribute", "date_update", "actual_range", "double", "1.523152396E9, 1.727164162E9"], + ["attribute", "date_update", "ioos_category", "String", "Time"], + ["attribute", "date_update", "long_name", "String", "Date of update of this file"], + ["attribute", "date_update", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "date_update", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "platform_number", "", "String", ""], + ["attribute", "platform_number", "cf_role", "String", "trajectory_id"], + ["attribute", "platform_number", "conventions", "String", "WMO float identifier : A9IIIII"], + ["attribute", "platform_number", "ioos_category", "String", "Identifier"], + ["attribute", "platform_number", "long_name", "String", "Float unique identifier"], + ["variable", "project_name", "", "String", ""], + ["attribute", "project_name", "ioos_category", "String", "Identifier"], + ["attribute", "project_name", "long_name", "String", "Name of the project"], + ["variable", "pi_name", "", "String", ""], + ["attribute", "pi_name", "ioos_category", "String", "Identifier"], + ["attribute", "pi_name", "long_name", "String", "Name of the principal investigator"], + ["variable", "cycle_number", "", "int", ""], + ["attribute", "cycle_number", "_FillValue", "int", "99999"], + ["attribute", "cycle_number", "actual_range", "int", "0, 3253"], + ["attribute", "cycle_number", "cf_role", "String", "profile_id"], + ["attribute", "cycle_number", "colorBarMaximum", "double", "200.0"], + ["attribute", "cycle_number", "colorBarMinimum", "double", "0.0"], + ["attribute", "cycle_number", "conventions", "String", "0...N, 0 : launch cycle (if exists), 1 : first complete cycle"], + ["attribute", "cycle_number", "ioos_category", "String", "Statistics"], + ["attribute", "cycle_number", "long_name", "String", "Float cycle number"], + ["variable", "direction", "", "String", ""], + ["attribute", "direction", "colorBarMaximum", "double", "360.0"], + ["attribute", "direction", "colorBarMinimum", "double", "0.0"], + ["attribute", "direction", "conventions", "String", "A: ascending profiles, D: descending profiles"], + ["attribute", "direction", "ioos_category", "String", "Currents"], + ["attribute", "direction", "long_name", "String", "Direction of the station profiles"], + ["variable", "data_center", "", "String", ""], + ["attribute", "data_center", "conventions", "String", "Argo reference table 4"], + ["attribute", "data_center", "ioos_category", "String", "Unknown"], + ["attribute", "data_center", "long_name", "String", "Data centre in charge of float data processing"], + ["variable", "dc_reference", "", "String", ""], + ["attribute", "dc_reference", "conventions", "String", "Data centre convention"], + ["attribute", "dc_reference", "ioos_category", "String", "Identifier"], + ["attribute", "dc_reference", "long_name", "String", "Station unique identifier in data centre"], + ["variable", "data_state_indicator", "", "String", ""], + ["attribute", "data_state_indicator", "conventions", "String", "Argo reference table 6"], + ["attribute", "data_state_indicator", "ioos_category", "String", "Location"], + ["attribute", "data_state_indicator", "long_name", "String", "Degree of processing the data have passed through"], + ["variable", "data_mode", "", "String", ""], + ["attribute", "data_mode", "conventions", "String", "R : real time; D : delayed mode; A : real time with adjustment"], + ["attribute", "data_mode", "ioos_category", "String", "Time"], + ["attribute", "data_mode", "long_name", "String", "Delayed mode or real time data"], + ["variable", "platform_type", "", "String", ""], + ["attribute", "platform_type", "conventions", "String", "Argo reference table 23"], + ["attribute", "platform_type", "ioos_category", "String", "Unknown"], + ["attribute", "platform_type", "long_name", "String", "Type of float"], + ["variable", "float_serial_no", "", "String", ""], + ["attribute", "float_serial_no", "colorBarMaximum", "double", "100.0"], + ["attribute", "float_serial_no", "colorBarMinimum", "double", "0.0"], + ["attribute", "float_serial_no", "ioos_category", "String", "Statistics"], + ["attribute", "float_serial_no", "long_name", "String", "Serial number of the float"], + ["variable", "firmware_version", "", "String", ""], + ["attribute", "firmware_version", "ioos_category", "String", "Unknown"], + ["attribute", "firmware_version", "long_name", "String", "Instrument firmware version"], + ["variable", "wmo_inst_type", "", "String", ""], + ["attribute", "wmo_inst_type", "conventions", "String", "Argo reference table 8"], + ["attribute", "wmo_inst_type", "ioos_category", "String", "Unknown"], + ["attribute", "wmo_inst_type", "long_name", "String", "Coded instrument type"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "8.7012158E8, 1.7983829E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Julian day (UTC) of the station relative to REFERENCE_DATE_TIME"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "time_qc", "", "String", ""], + ["attribute", "time_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "time_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "time_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "time_qc", "ioos_category", "String", "Quality"], + ["attribute", "time_qc", "long_name", "String", "Quality on date and time"], + ["variable", "time_location", "", "double", ""], + ["attribute", "time_location", "actual_range", "double", "-5.81172992E8, 1.798383866E9"], + ["attribute", "time_location", "ioos_category", "String", "Time"], + ["attribute", "time_location", "long_name", "String", "Julian day (UTC) of the location relative to REFERENCE_DATE_TIME"], + ["attribute", "time_location", "standard_name", "String", "time"], + ["attribute", "time_location", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time_location", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "_FillValue", "double", "99999.0"], + ["attribute", "latitude", "actual_range", "double", "-99.999, 89.97058333333334"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "90.0"], + ["attribute", "latitude", "colorBarMinimum", "double", "-90.0"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude of the station, best estimate"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["attribute", "latitude", "valid_max", "double", "90.0"], + ["attribute", "latitude", "valid_min", "double", "-90.0"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "_FillValue", "double", "99999.0"], + ["attribute", "longitude", "actual_range", "double", "-179.99942, 180.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "180.0"], + ["attribute", "longitude", "colorBarMinimum", "double", "-180.0"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude of the station, best estimate"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["attribute", "longitude", "valid_max", "double", "180.0"], + ["attribute", "longitude", "valid_min", "double", "-180.0"], + ["variable", "position_qc", "", "String", ""], + ["attribute", "position_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "position_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "position_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "position_qc", "ioos_category", "String", "Quality"], + ["attribute", "position_qc", "long_name", "String", "Quality on position (latitude and longitude)"], + ["variable", "positioning_system", "", "String", ""], + ["attribute", "positioning_system", "ioos_category", "String", "Unknown"], + ["attribute", "positioning_system", "long_name", "String", "Positioning system"], + ["variable", "profile_pres_qc", "", "String", ""], + ["attribute", "profile_pres_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_pres_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_pres_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_pres_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_pres_qc", "long_name", "String", "Global quality flag of PRES profile"], + ["variable", "profile_temp_qc", "", "String", ""], + ["attribute", "profile_temp_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_temp_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_temp_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_temp_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_temp_qc", "long_name", "String", "Global quality flag of TEMP profile"], + ["variable", "profile_psal_qc", "", "String", ""], + ["attribute", "profile_psal_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "profile_psal_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "profile_psal_qc", "conventions", "String", "Argo reference table 2a"], + ["attribute", "profile_psal_qc", "ioos_category", "String", "Quality"], + ["attribute", "profile_psal_qc", "long_name", "String", "Global quality flag of PSAL profile"], + ["variable", "vertical_sampling_scheme", "", "String", ""], + ["attribute", "vertical_sampling_scheme", "conventions", "String", "Argo reference table 16"], + ["attribute", "vertical_sampling_scheme", "ioos_category", "String", "Unknown"], + ["attribute", "vertical_sampling_scheme", "long_name", "String", "Vertical sampling scheme"], + ["variable", "config_mission_number", "", "int", ""], + ["attribute", "config_mission_number", "_FillValue", "int", "99999"], + ["attribute", "config_mission_number", "actual_range", "int", "-2147483648, 1768910368"], + ["attribute", "config_mission_number", "colorBarMaximum", "double", "100.0"], + ["attribute", "config_mission_number", "colorBarMinimum", "double", "0.0"], + ["attribute", "config_mission_number", "conventions", "String", "1...N, 1 : first complete mission"], + ["attribute", "config_mission_number", "ioos_category", "String", "Statistics"], + ["attribute", "config_mission_number", "long_name", "String", "Unique number denoting the missions performed by the float"], + ["variable", "pres", "", "float", ""], + ["attribute", "pres", "_CoordinateAxisType", "String", "Height"], + ["attribute", "pres", "_FillValue", "float", "99999.0"], + ["attribute", "pres", "actual_range", "float", "-1.701412E38, 1.32701395E12"], + ["attribute", "pres", "axis", "String", "Z"], + ["attribute", "pres", "C_format", "String", "%7.1f"], + ["attribute", "pres", "colorBarMaximum", "double", "5000.0"], + ["attribute", "pres", "colorBarMinimum", "double", "0.0"], + ["attribute", "pres", "FORTRAN_format", "String", "F7.1"], + ["attribute", "pres", "ioos_category", "String", "Sea Level"], + ["attribute", "pres", "long_name", "String", "Sea water pressure, equals 0 at sea-level"], + ["attribute", "pres", "sdn_parameter_urn", "String", "SDN:P01::PRESPR01"], + ["attribute", "pres", "standard_name", "String", "sea_water_pressure"], + ["attribute", "pres", "units", "String", "decibar"], + ["attribute", "pres", "valid_max", "float", "12000.0"], + ["attribute", "pres", "valid_min", "float", "0.0"], + ["variable", "pres_qc", "", "String", ""], + ["attribute", "pres_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "pres_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "pres_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "pres_qc", "ioos_category", "String", "Quality"], + ["attribute", "pres_qc", "long_name", "String", "quality flag"], + ["variable", "pres_adjusted", "", "float", ""], + ["attribute", "pres_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "pres_adjusted", "actual_range", "float", "-3276.8, 99996.8"], + ["attribute", "pres_adjusted", "axis", "String", "Z"], + ["attribute", "pres_adjusted", "C_format", "String", "%7.1f"], + ["attribute", "pres_adjusted", "colorBarMaximum", "double", "5000.0"], + ["attribute", "pres_adjusted", "colorBarMinimum", "double", "0.0"], + ["attribute", "pres_adjusted", "FORTRAN_format", "String", "F7.1"], + ["attribute", "pres_adjusted", "ioos_category", "String", "Sea Level"], + ["attribute", "pres_adjusted", "long_name", "String", "Sea water pressure, equals 0 at sea-level"], + ["attribute", "pres_adjusted", "standard_name", "String", "sea_water_pressure"], + ["attribute", "pres_adjusted", "units", "String", "decibar"], + ["attribute", "pres_adjusted", "valid_max", "float", "12000.0"], + ["attribute", "pres_adjusted", "valid_min", "float", "0.0"], + ["variable", "pres_adjusted_qc", "", "String", ""], + ["attribute", "pres_adjusted_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "pres_adjusted_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "pres_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "pres_adjusted_qc", "ioos_category", "String", "Quality"], + ["attribute", "pres_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "pres_adjusted_error", "", "float", ""], + ["attribute", "pres_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "pres_adjusted_error", "actual_range", "float", "0.0, 100001.4"], + ["attribute", "pres_adjusted_error", "C_format", "String", "%7.1f"], + ["attribute", "pres_adjusted_error", "colorBarMaximum", "double", "50.0"], + ["attribute", "pres_adjusted_error", "colorBarMinimum", "double", "0.0"], + ["attribute", "pres_adjusted_error", "FORTRAN_format", "String", "F7.1"], + ["attribute", "pres_adjusted_error", "ioos_category", "String", "Statistics"], + ["attribute", "pres_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "pres_adjusted_error", "units", "String", "decibar"], + ["variable", "temp", "", "float", ""], + ["attribute", "temp", "_FillValue", "float", "99999.0"], + ["attribute", "temp", "actual_range", "float", "-160.168, 9999.0"], + ["attribute", "temp", "C_format", "String", "%9.3f"], + ["attribute", "temp", "colorBarMaximum", "double", "32.0"], + ["attribute", "temp", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp", "FORTRAN_format", "String", "F9.3"], + ["attribute", "temp", "ioos_category", "String", "Temperature"], + ["attribute", "temp", "long_name", "String", "Sea temperature in-situ ITS-90 scale"], + ["attribute", "temp", "sdn_parameter_urn", "String", "SDN:P01::TEMPST01"], + ["attribute", "temp", "standard_name", "String", "sea_water_temperature"], + ["attribute", "temp", "units", "String", "degree_Celsius"], + ["attribute", "temp", "valid_max", "float", "40.0"], + ["attribute", "temp", "valid_min", "float", "-2.5"], + ["variable", "temp_qc", "", "String", ""], + ["attribute", "temp_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "temp_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "temp_qc", "ioos_category", "String", "Quality"], + ["attribute", "temp_qc", "long_name", "String", "quality flag"], + ["variable", "temp_adjusted", "", "float", ""], + ["attribute", "temp_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "temp_adjusted", "actual_range", "float", "-9.0, 99.999"], + ["attribute", "temp_adjusted", "C_format", "String", "%9.3f"], + ["attribute", "temp_adjusted", "colorBarMaximum", "double", "32.0"], + ["attribute", "temp_adjusted", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp_adjusted", "FORTRAN_format", "String", "F9.3"], + ["attribute", "temp_adjusted", "ioos_category", "String", "Temperature"], + ["attribute", "temp_adjusted", "long_name", "String", "Sea temperature in-situ ITS-90 scale"], + ["attribute", "temp_adjusted", "standard_name", "String", "sea_water_temperature"], + ["attribute", "temp_adjusted", "units", "String", "degree_Celsius"], + ["attribute", "temp_adjusted", "valid_max", "float", "40.0"], + ["attribute", "temp_adjusted", "valid_min", "float", "-2.5"], + ["variable", "temp_adjusted_qc", "", "String", ""], + ["attribute", "temp_adjusted_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "temp_adjusted_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "temp_adjusted_qc", "ioos_category", "String", "Quality"], + ["attribute", "temp_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "temp_adjusted_error", "", "float", ""], + ["attribute", "temp_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "temp_adjusted_error", "actual_range", "float", "0.0, 26.578"], + ["attribute", "temp_adjusted_error", "C_format", "String", "%9.3f"], + ["attribute", "temp_adjusted_error", "colorBarMaximum", "double", "1.0"], + ["attribute", "temp_adjusted_error", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp_adjusted_error", "FORTRAN_format", "String", "F9.3"], + ["attribute", "temp_adjusted_error", "ioos_category", "String", "Statistics"], + ["attribute", "temp_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "temp_adjusted_error", "units", "String", "degree_Celsius"], + ["variable", "psal", "", "float", ""], + ["attribute", "psal", "_FillValue", "float", "99999.0"], + ["attribute", "psal", "actual_range", "float", "-1.701412E38, 9999.0"], + ["attribute", "psal", "C_format", "String", "%9.3f"], + ["attribute", "psal", "colorBarMaximum", "double", "37.0"], + ["attribute", "psal", "colorBarMinimum", "double", "32.0"], + ["attribute", "psal", "FORTRAN_format", "String", "F9.3"], + ["attribute", "psal", "ioos_category", "String", "Salinity"], + ["attribute", "psal", "long_name", "String", "Practical salinity"], + ["attribute", "psal", "sdn_parameter_urn", "String", "SDN:P01::PSALST01"], + ["attribute", "psal", "standard_name", "String", "sea_water_practical_salinity"], + ["attribute", "psal", "units", "String", "PSU"], + ["attribute", "psal", "valid_max", "float", "41.0"], + ["attribute", "psal", "valid_min", "float", "2.0"], + ["variable", "psal_qc", "", "String", ""], + ["attribute", "psal_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "psal_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "psal_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "psal_qc", "ioos_category", "String", "Quality"], + ["attribute", "psal_qc", "long_name", "String", "quality flag"], + ["variable", "psal_adjusted", "", "float", ""], + ["attribute", "psal_adjusted", "_FillValue", "float", "99999.0"], + ["attribute", "psal_adjusted", "actual_range", "float", "-1.701412E38, 171521.4"], + ["attribute", "psal_adjusted", "C_format", "String", "%9.3f"], + ["attribute", "psal_adjusted", "colorBarMaximum", "double", "37.0"], + ["attribute", "psal_adjusted", "colorBarMinimum", "double", "32.0"], + ["attribute", "psal_adjusted", "FORTRAN_format", "String", "F9.3"], + ["attribute", "psal_adjusted", "ioos_category", "String", "Salinity"], + ["attribute", "psal_adjusted", "long_name", "String", "Practical salinity"], + ["attribute", "psal_adjusted", "standard_name", "String", "sea_water_practical_salinity"], + ["attribute", "psal_adjusted", "units", "String", "PSU"], + ["attribute", "psal_adjusted", "valid_max", "float", "41.0"], + ["attribute", "psal_adjusted", "valid_min", "float", "2.0"], + ["variable", "psal_adjusted_qc", "", "String", ""], + ["attribute", "psal_adjusted_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "psal_adjusted_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "psal_adjusted_qc", "conventions", "String", "Argo reference table 2"], + ["attribute", "psal_adjusted_qc", "ioos_category", "String", "Quality"], + ["attribute", "psal_adjusted_qc", "long_name", "String", "quality flag"], + ["variable", "psal_adjusted_error", "", "float", ""], + ["attribute", "psal_adjusted_error", "_FillValue", "float", "99999.0"], + ["attribute", "psal_adjusted_error", "actual_range", "float", "-99992.94, 8.499573E31"], + ["attribute", "psal_adjusted_error", "C_format", "String", "%9.3f"], + ["attribute", "psal_adjusted_error", "colorBarMaximum", "double", "1.0"], + ["attribute", "psal_adjusted_error", "colorBarMinimum", "double", "0.0"], + ["attribute", "psal_adjusted_error", "FORTRAN_format", "String", "F9.3"], + ["attribute", "psal_adjusted_error", "ioos_category", "String", "Statistics"], + ["attribute", "psal_adjusted_error", "long_name", "String", "Contains the error on the adjusted values as determined by the delayed mode QC process"], + ["attribute", "psal_adjusted_error", "units", "String", "psu"], + ["variable", "doxy", "", "float", ""], + ["attribute", "doxy", "colorBarMaximum", "double", "600.0"], + ["attribute", "doxy", "colorBarMinimum", "double", "-5.0"], + ["attribute", "doxy", "sdn_parameter_urn", "String", "SDN:P01::DOXMZZXX"], + ["attribute", "doxy", "standard_name", "String", "moles_of_oxygen_per_unit_mass_in_sea_water"], + ["attribute", "doxy", "units", "String", "micromole/kg"], + ["variable", "doxy_qc", "", "String", ""], + ["attribute", "doxy_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "doxy_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "doxy_qc", "ioos_category", "String", "Quality"], + ["variable", "temp_doxy", "", "float", ""], + ["attribute", "temp_doxy", "colorBarMaximum", "double", "40.0"], + ["attribute", "temp_doxy", "colorBarMinimum", "double", "-2.0"], + ["attribute", "temp_doxy", "sdn_parameter_urn", "String", "SDN:P01::OXYTAAOP"], + ["attribute", "temp_doxy", "standard_name", "String", "temperature_of_sensor_for_oxygen_in_sea_water"], + ["attribute", "temp_doxy", "units", "String", "degree_Celsius"], + ["variable", "temp_doxy_qc", "", "String", ""], + ["attribute", "temp_doxy_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "temp_doxy_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "temp_doxy_qc", "ioos_category", "String", "Quality"], + ["variable", "molar_doxy", "", "float", ""], + ["attribute", "molar_doxy", "colorBarMaximum", "double", "650.0"], + ["attribute", "molar_doxy", "colorBarMinimum", "double", "0.0"], + ["attribute", "molar_doxy", "sdn_parameter_urn", "String", "SDN:P01::DOXYMMOP"], + ["attribute", "molar_doxy", "standard_name", "String", "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water"], + ["attribute", "molar_doxy", "units", "String", "micromole/l"], + ["variable", "molar_doxy_qc", "", "String", ""], + ["attribute", "molar_doxy_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "molar_doxy_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "molar_doxy_qc", "ioos_category", "String", "Quality"], + ["variable", "turbidity", "", "float", ""], + ["attribute", "turbidity", "sdn_parameter_urn", "String", "SDN:P01::TURBXXXX"], + ["attribute", "turbidity", "standard_name", "String", "sea_water_turbidity"], + ["attribute", "turbidity", "units", "String", "ntu"], + ["variable", "turbidity_qc", "", "String", ""], + ["attribute", "turbidity_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "turbidity_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "turbidity_qc", "ioos_category", "String", "Quality"], + ["variable", "chla", "", "float", ""], + ["attribute", "chla", "sdn_parameter_urn", "String", "SDN:P01::CPHLPR01"], + ["attribute", "chla", "standard_name", "String", "mass_concentration_of_chlorophyll_a_in_sea_water"], + ["attribute", "chla", "units", "String", "mg/m3"], + ["variable", "chla_qc", "", "String", ""], + ["attribute", "chla_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "chla_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "chla_qc", "ioos_category", "String", "Quality"], + ["variable", "nitrate", "", "float", ""], + ["attribute", "nitrate", "sdn_parameter_urn", "String", "SDN:P01::MDMAP005"], + ["attribute", "nitrate", "standard_name", "String", "moles_of_nitrate_per_unit_mass_in_sea_water"], + ["attribute", "nitrate", "units", "String", "micromole/kg"], + ["variable", "nitrate_qc", "", "String", ""], + ["attribute", "nitrate_qc", "colorBarMaximum", "double", "150.0"], + ["attribute", "nitrate_qc", "colorBarMinimum", "double", "0.0"], + ["attribute", "nitrate_qc", "ioos_category", "String", "Quality"] + ] + } +} diff --git a/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json b/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json new file mode 100644 index 00000000..99d33bc2 --- /dev/null +++ b/argopy/tests/test_data/f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604.json @@ -0,0 +1 @@ +{"data":[{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-02T00:00:00","lat":17.2523,"lon":-24.503,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"7901001"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-21T23:08:00","lat":12.6297,"lon":-69.1456,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903629"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T17:59:00","lat":15.4256,"lon":-68.3489,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"3902456"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903766"},{"program":{"country":{"nameShort":"NETHERLANDS"},"nameShort":"Argo_NETHERLANDS"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2144,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-15T14:35:00","lat":45.1374,"lon":-10.9924,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902574"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-06T14:43:00","lat":43.5917,"lon":-41.4583,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904238"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-05T14:39:00","lat":43.3217,"lon":-36.7483,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902458"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T18:31:03","lat":58.8731,"lon":-49.3763,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903634"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:24:28","lat":56.8168,"lon":-52.2524,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904241"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-21T14:33:21","lat":58.8346,"lon":-49.4362,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904240"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T18:46:00","lat":74.497,"lon":-7.039,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903771"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T07:24:00","lat":74.5,"lon":-3.02,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902463"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T14:03:00","lat":68.664,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902579"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T08:47:00","lat":66.125,"lon":-3.631,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902462"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-15T10:12:00","lat":69.083,"lon":-10.0,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"7901006"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-28T21:50:00","lat":24.1667,"lon":-39.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902580"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-30T10:00:00","lat":24.1667,"lon":-33.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"2903772"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-08-31T10:19:00","lat":38.7775,"lon":-62.5756,"noSite":null},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6990501"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-20T13:15:00","lat":14.6855,"lon":-17.7155,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"7901014"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-22T05:23:00","lat":13.4152,"lon":-17.6037,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"3902476"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-12-29T07:52:00","lat":13.23,"lon":-17.68,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903643"},{"program":{"country":{"nameShort":"EUROPE"},"nameShort":"EA-RISE"},"ptfDepl":{"deplDate":"2022-03-06T16:59:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"2903882"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:47:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990628"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-06T16:38:00","lat":29.15,"lon":-19.0,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6990627"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-04T11:46:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904179"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-04T11:38:00","lat":37.0015,"lon":-13.2367,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904184"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-03-03T17:12:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904180"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-03-03T17:10:00","lat":34.73,"lon":-12.6733,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904183"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-16T16:31:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904181"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-16T21:14:00","lat":57.3048,"lon":-10.3793,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904192"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-05-08T16:47:00","lat":49.0047,"lon":-16.502,"noSite":0},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6904190"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:49:00","lat":57.962,"lon":-23.1712,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904191"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-02-16T16:26:00","lat":27.185,"lon":-21.9917,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904182"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T13:57:00","lat":22.0465,"lon":-57.0016,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902313"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T22:32:00","lat":24.4632,"lon":-69.2685,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902311"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T07:55:00","lat":22.8425,"lon":-61.0008,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902316"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-21T03:58:00","lat":21.6472,"lon":-54.9995,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902317"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T02:53:00","lat":23.6331,"lon":-65.0038,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902314"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T21:20:00","lat":24.4125,"lon":-68.9999,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902324"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T15:30:00","lat":16.9745,"lon":-32.0007,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902309"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-22T17:00:00","lat":23.2388,"lon":-63.0,"noSite":null},"ptfModel":{"nameShort":null},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902325"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T03:59:00","lat":18.5135,"lon":-39.5078,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902321"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-23T11:05:00","lat":24.0238,"lon":-67.0023,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902308"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-19T16:07:00","lat":23.763,"lon":-24.155,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":5,"description":"The platform is not emitting a pulse since a long time, it is considered as dead","name":"CLOSED"},"ref":"6903757"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK"},"ptfDepl":{"deplDate":"2022-02-21T21:15:00","lat":24.9378,"lon":-21.2698,"noSite":0},"ptfModel":{"nameShort":"APEX"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903758"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T08:38:00","lat":22.9275,"lon":-20.7907,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904122"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T20:01:00","lat":21.5555,"lon":-21.7294,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904123"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-04T11:16:00","lat":20.378,"lon":-22.492,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904124"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-03-05T17:24:00","lat":24.2239,"lon":-19.9758,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904125"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-05T08:16:00","lat":0.2322,"lon":-23.1205,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902414"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-03T23:44:00","lat":0.3878,"lon":-25.6917,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902401"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-06T15:34:00","lat":0.0018,"lon":-21.6107,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902400"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-04T08:43:00","lat":0.3318,"lon":-24.6233,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902415"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T18:52:00","lat":21.2392,"lon":-52.9983,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902312"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-20T09:45:00","lat":20.8444,"lon":-50.9997,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902319"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T06:02:00","lat":17.5912,"lon":-35.002,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902318"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-17T13:58:00","lat":17.9034,"lon":-36.5028,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902322"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-18T10:49:00","lat":18.8225,"lon":-41.0056,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902320"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-16T01:33:00","lat":16.3528,"lon":-29.0027,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902323"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T17:14:00","lat":19.1245,"lon":-42.5008,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902384"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-18T20:12:00","lat":18.2064,"lon":-38.0015,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902380"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T07:57:00","lat":16.6656,"lon":-30.4884,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902382"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-16T22:44:00","lat":17.2845,"lon":-33.5009,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902381"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-21T22:41:00","lat":22.4445,"lon":-59.0006,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902383"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.7177,"lon":-64.1518,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903273"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-01-14T03:00:00","lat":31.718,"lon":-64.1512,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903274"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-01-23T15:43:00","lat":24.2182,"lon":-67.9966,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"1902385"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-08T20:00:00","lat":0.0138,"lon":-9.8597,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903105"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-22T20:29:00","lat":0.0033,"lon":-2.995,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903110"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-29T17:45:00","lat":0.0096,"lon":-23.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903103"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903079"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-03-26T07:33:00","lat":0.0034,"lon":-9.8302,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903047"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T11:25:00","lat":43.469,"lon":-57.5479,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902577"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-15T22:55:00","lat":42.0612,"lon":-49.2781,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902595"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-18T15:45:00","lat":47.0213,"lon":-42.9891,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902582"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-16T11:19:00","lat":41.3674,"lon":-48.6206,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902575"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-04-01T04:26:00","lat":43.5975,"lon":-58.0655,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902576"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T01:04:00","lat":12.8814,"lon":-69.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903135"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T21:08:00","lat":15.8844,"lon":-68.2147,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903137"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-21T23:07:00","lat":12.63,"lon":-69.145,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903134"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-04-22T17:58:00","lat":15.4258,"lon":-68.3486,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903136"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-05-07T17:09:00","lat":0.001,"lon":-14.9884,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904215"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-14T07:17:00","lat":58.6358,"lon":-50.416,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902580"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-19T06:28:00","lat":56.5543,"lon":-52.6615,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902581"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:15:00","lat":57.1655,"lon":-52.0125,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902593"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T18:06:00","lat":57.3788,"lon":-51.7952,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902579"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:16:00","lat":58.1697,"lon":-50.8643,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902592"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-17T14:06:00","lat":59.0655,"lon":-49.95,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902594"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-12T03:24:00","lat":57.773,"lon":-51.3748,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902591"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T03:24:00","lat":58.1678,"lon":-50.8738,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902557"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T20:52:00","lat":42.035,"lon":-61.0877,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902578"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:13:00","lat":41.412,"lon":-60.6668,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902590"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-24T04:20:00","lat":41.4105,"lon":-60.6682,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902556"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-05-18T22:28:00","lat":57.1638,"lon":-52.0093,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902535"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-05-29T11:10:00","lat":56.7906,"lon":-52.3528,"noSite":null},"ptfModel":{"nameShort":"ARVOR_D"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6902895"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-05T13:14:00","lat":74.5,"lon":-5.006,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903592"},{"program":{"country":{"nameShort":"NORWAY"},"nameShort":"Argo_NORWAY"},"ptfDepl":{"deplDate":"2022-06-17T20:26:00","lat":65.577,"lon":-2.27,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903591"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-25T07:18:00","lat":60.0588,"lon":-42.8413,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903377"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-06T23:11:00","lat":15.9522,"lon":-59.6637,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903111"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-07T14:13:00","lat":17.156,"lon":-57.7667,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903112"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-09-01T15:28:00","lat":68.5452,"lon":-18.279,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903131"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-08-22T10:46:00","lat":69.0038,"lon":-10.06,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6903113"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-10T21:22:00","lat":36.8522,"lon":-67.9919,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903456"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T04:42:00","lat":25.4994,"lon":-85.9991,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903466"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T10:31:00","lat":24.9945,"lon":-85.9877,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903469"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T13:39:00","lat":25.2492,"lon":-86.4977,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903465"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T17:24:00","lat":25.0,"lon":-87.0,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903464"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-03T20:30:00","lat":25.5,"lon":-86.9988,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903467"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T03:47:00","lat":26.0018,"lon":-87.9003,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903468"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-02T20:26:00","lat":26.4875,"lon":-86.9715,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903470"},{"program":{"country":{"nameShort":"USA"},"nameShort":null},"ptfDepl":{"deplDate":"2022-10-04T00:30:00","lat":25.7522,"lon":-87.4972,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903471"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-02T13:49:00","lat":26.9675,"lon":-87.66,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903472"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-09-29T02:00:00","lat":52.4958,"lon":-12.175,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902613"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T22:53:00","lat":19.9257,"lon":-67.0401,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903473"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-12T16:47:00","lat":16.0454,"lon":-55.7728,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903474"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-10-09T20:32:00","lat":20.234,"lon":-67.4128,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903475"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-09T19:35:00","lat":42.0303,"lon":-61.0846,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902598"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"Argo_CANADA"},"ptfDepl":{"deplDate":"2022-10-13T11:51:00","lat":43.4733,"lon":-57.5281,"noSite":null},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902599"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-10-01T10:16:00","lat":58.4397,"lon":-49.5603,"noSite":0},"ptfModel":{"nameShort":"PROVOR_III"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904231"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-10-15T19:40:00","lat":14.7421,"lon":-50.934,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903458"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-02T18:27:00","lat":11.7565,"lon":-56.0079,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903476"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T12:20:00","lat":0.9975,"lon":-35.7532,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903477"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-04T16:00:00","lat":8.3648,"lon":-48.5578,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903462"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-07T03:00:00","lat":4.1539,"lon":-38.1565,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903459"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-18T20:54:00","lat":9.998,"lon":-22.9981,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903481"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-10T05:50:00","lat":1.998,"lon":-36.2373,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903479"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI"},"ptfDepl":{"deplDate":"2022-11-15T13:03:00","lat":2.031,"lon":-22.9979,"noSite":null},"ptfModel":{"nameShort":"S2A"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903478"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-11-17T09:54:00","lat":5.9998,"lon":-23.0002,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903463"},{"program":{"country":{"nameShort":"GERMANY"},"nameShort":"Argo_BSH"},"ptfDepl":{"deplDate":"2022-11-25T14:05:00","lat":18.1667,"lon":-51.0,"noSite":0},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6904223"},{"program":{"country":{"nameShort":"USA"},"nameShort":"GO-BGC, WHOI"},"ptfDepl":{"deplDate":"2022-09-19T03:52:00","lat":31.7013,"lon":-64.165,"noSite":null},"ptfModel":{"nameShort":"NAVIS_EBR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903457"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"REFINE"},"ptfDepl":{"deplDate":"2022-05-29T12:06:21","lat":56.8163,"lon":-52.2573,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V - J"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"1902578"},{"program":{"country":{"nameShort":"UK"},"nameShort":"Argo_UK_Bio"},"ptfDepl":{"deplDate":"2022-07-24T23:55:00","lat":57.9534,"lon":-23.1693,"noSite":0},"ptfModel":{"nameShort":"PROVOR"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"6904185"},{"program":{"country":{"nameShort":"FRANCE"},"nameShort":"Coriolis"},"ptfDepl":{"deplDate":"2022-07-28T16:50:00","lat":89.9667,"lon":-43.75,"noSite":null},"ptfModel":{"nameShort":"ARVOR"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"6903147"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-27T00:23:00","lat":60.3669,"lon":-42.8097,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903375"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-08-30T14:29:00","lat":62.258,"lon":-41.787,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4903455"},{"program":{"country":{"nameShort":"USA"},"nameShort":"Argo_WHOI_eq"},"ptfDepl":{"deplDate":"2022-09-02T23:13:00","lat":60.4128,"lon":-42.7594,"noSite":null},"ptfModel":{"nameShort":"ALTO"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4903366"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:49:00","lat":72.8945,"lon":-65.6012,"noSite":null},"ptfModel":{"nameShort":"FLOAT"},"ptfStatus":{"id":6,"description":"Automatically set when the platform is emitting a pulse and observations are distributed within a certain time interval","name":"OPERATIONAL"},"ref":"4902437"},{"program":{"country":{"nameShort":"CANADA"},"nameShort":"NAOS-Canada"},"ptfDepl":{"deplDate":"2022-10-12T10:57:00","lat":72.8932,"lon":-65.595,"noSite":null},"ptfModel":{"nameShort":"PROVOR_V"},"ptfStatus":{"id":4,"description":"The platform is not emitting a pulse since a certain time","name":"INACTIVE"},"ref":"4902630"}],"total":139} \ No newline at end of file diff --git a/argopy/tests/test_data/ff77518bab21f6d8bd6f9450f69572e6793279803090963a3552629e4b180d7b.nc b/argopy/tests/test_data/ff77518bab21f6d8bd6f9450f69572e6793279803090963a3552629e4b180d7b.nc new file mode 100644 index 00000000..b77eb4da Binary files /dev/null and b/argopy/tests/test_data/ff77518bab21f6d8bd6f9450f69572e6793279803090963a3552629e4b180d7b.nc differ diff --git a/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html b/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html new file mode 100644 index 00000000..f87602e9 --- /dev/null +++ b/argopy/tests/test_data/ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8.html @@ -0,0 +1,16 @@ + + + DMQC Cookbook for Core Argo parameters + + + + + + +

DMQC Cookbook for Core Argo parameters

This cookbook is to document the end-to-end processing chain of Delayed Mode Quality Control (DMQC) of Core Argo parameters. It provides guidlines on existing manuals, and explains best practices through case studies. This document was initiated after the 1st EU DMQC workshop held in Brest in April 2018, under the MOCCA project.  Lately, this work has been undertaken under EuroArgo RISE project.

+ +

The document is organized as follows.The first part gives some general information (e.g.: How to check quality indicators in delayed mode? What are the reference databases? How to correct pressure? How to use the OWC software to correct salinity? What are the common failures? etc.). The second part gives more specific information for the regional analysis (specific difficulties encountered, reference data available in regional seas, configuration parameters usually used, etc...). The regions covered so far are: the sub-polar Atlantic zone, the Nordic Seas, the Mediterranean and Black Seas, and the Southern Ocean.The third part of the cookbook presents detailled examples of delayed-mode processing for float data in these regions.

Full Text

FilePagesSizeAccess
Publisher's official version
7817 Mo
How to cite
Cabanes Cecile, Angel-Benavides Ingrid, Buck Justin, Coatanoan Christine, Dobler Delphine, Herbert Gaelle, Klein Birgit, Maze Guillaume, Notarstefano Guilio, Owens Breck, Thierry Virginie, Walicka Kamila, Wong Annie (2021). DMQC Cookbook for Core Argo parameters. Ifremer. https://doi.org/10.13155/78994

Copy this text

+ + + diff --git a/argopy/tests/test_data/httpmocked_uri_index.json b/argopy/tests/test_data/httpmocked_uri_index.json new file mode 100644 index 00000000..4910e9f9 --- /dev/null +++ b/argopy/tests/test_data/httpmocked_uri_index.json @@ -0,0 +1,1843 @@ +[ + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5bef8b392db7b081c587402156770890550eba0ffa155c66a9566a7326a06ede", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "18666bf00f9be91b8426d41cb086fc32a88c1c0c6316d52bcd316f53657d51e3", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a75f8e8ffc8542ce9ebce8e09b29e1d6b2cf3993ff812726c5fcf7452fa999d4", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "19979ec39369bdbec2168b3509d8ce1be0802f58df94bae47aabf79374941769", + "type": "text/plain", + "ts": "2024-09-25 05:47:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3404fc17d902df206ea9c9cb7adac78b68ae3bf3b1473620d6247367f1d9c423", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "73e262cd948072bc9b67846cdf5b919aec54feffa08e2cdacfd2144bac706864", + "type": "text/plain", + "ts": "2024-09-25 05:48:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8b6ccd8c2c1bbed33b70d9ef5921ef18bb7d6518c326bde0df404f5e1b4a77f7", + "type": "text/plain", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "d14e2f7fbc74cb9c4d5e9fc2dcaf5ffeb25266ff6db8647abc930d1ddd052a2a", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "33499f0838e0d2c8d423e8610590d7e4f9515877454c7fe20dfaf7f70926b0d9", + "type": "text/plain", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f860cf0afde256266830eac4f99bee7fd5c02ea642f28bee789aae059c3e54e8", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:03" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "ba00ca02d6838cd1acf58922b21a12e39319fbaff877b811419d9d21a98385f2", + "type": "text/plain", + "ts": "2024-09-25 05:48:03" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "a4158168493b83985cd50812fc3830d2bc634a23d3e88773b7df57971786f8cb", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:04" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2191bb2c378531f7490e89fd3026828c65f3be71ae9018514bf11e5aeab370d0", + "type": "text/plain", + "ts": "2024-09-25 05:48:04" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "891bc99f0d7b049195f7f42ef0c724e08bd15329b02c99abd794add57265e6c3", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "dcb0b1d7fcb97cca8a1c3ed4d0f97f449d88d6988e5e8b7549b152f4719a3a68", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "893b1c1d47463b38969ea18011112690c6f98cd189d3b1bc500bef7ffe3dda65", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "03a4f252ca48f9c683fbb0a3059d788dbd00c9f99c58a3927bd00076bc8febb0", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "1cd3f4906c02ed6f576989fdaa1b742fc607f453caac8d3a5af387603003f0fe", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "3131b8e4f2ab0957731e5968a337f87d6905abb64d363369d6c5169a85ce1e47", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "47c8abcb9ad9e1d857e0bbc000f36ba5150d21111cf40ef7f0e0127a5779567e", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "7b0efd4231f4ac6ff7c5a68a35252c3589448e44f774d044d0f8ad142c056388", + "type": "text/plain", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "06e127414eaa6b32d9e6fcb381fa4e3c13cd245adeffbbe151c0430df748d267", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "33acf641a9eba548ad0d2b929d92f3f61beb2aec7cf942be1d1f75c5026365a8", + "type": "text/plain", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "5557b333ce112d39056a955cfa6ddad2e2a0256b4fa351551eddd648543ef4e5", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "92f8242645b957569610e01ac67f756166ff1d2948eac5eee454e2034085cfc7", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "edbe43a0013d0aca347c1b337b2adc097f902c329a4e6150472b7e0fe22dd388", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "206dc5d4e36abfa7cab56b1bc7b615cad696d02702faef0e1bdb024248817dbe", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "bd0945a7bf7f06db4f3bbfecdfc2c299b9b0b439187633803b866cc98495fbf7", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "b3773588673ea9df44061f87f638145417061f4396e7fa6d1bd93dbbcc443910", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "90aba90b541e593ff265ed3bef52805141f33315e8c37617549178d333edbe82", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "09e6dbede3a159faaf33ea3f4be9cff3e25352c4e65d73499e6d0fffcc0b1823", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2b3e5d4f7c0b5ee442dbf7e621e42b5762a51fb0bb2307e90b67c11f64c5297a", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "2636d64e2d00870fb7375e89b9528bd8115afb30498f44dcaddd50601b14bdf1", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "c5a369a1b1dc6fee88f431144bec5704fc3aca3f22e00963d77c75183018e718", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:28" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "cf9d23834fa5d1959c13788184086c40f66795ac295533f39b61bc9a93f6a8f7", + "type": "text/plain", + "ts": "2024-09-24 12:42:28" + }, + { + "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", + "ext": "gz", + "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", + "type": "application/x-gzip", + "ts": "2024-09-24 12:42:28" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5150c8a2024690637cdd9498f9e9dddeda167d8aaf286bb0a256245025d40923", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:29" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "057f3062b1aa30d31b04f3cf028f5f8a14ba826787aab9eca371f20f39b4c22b", + "type": "text/plain", + "ts": "2024-09-24 12:42:29" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5b98ae6601f522b8df882d58a10e562a6a28c7508b24204828918ccc4ca29d58", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "c9ad15c94f3e8d714e3c0423bc8611423c543ad02af12934e455b2f59e9dc543", + "type": "text/plain", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "903baa969cf055fca46818948dcbac9ccc02642aea747769d2bad692e1c04953", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "b50e6ad8b4eedb373b17a1bd3eb668d481efe190762b91dbe1e7041134abf167", + "type": "text/plain", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "888487608637748a579126f9c9d20cb3e1ddd5f489271afb7daedddb0351b8fc", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8f371321f042787dcf9ccef1a90a4c1c709e705d16a1e3a940fc89997fc838a2", + "type": "text/plain", + "ts": "2024-09-24 12:42:31" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "33e947c1d24507fd7f92858e2716362f171d6867398fc893ce46f1cfa8a41973", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d6e43fb877b88d33b02763432ee4514fdd21f8feaaa234b3e4351b8cf00c7a9c", + "type": "text/plain", + "ts": "2024-09-24 12:42:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "547fa82ac64b5bc91813230a48416ef6bb92011e4c11be22a93d7dd589d19822", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "0dff09b865c98d376e650f80954c0d8de288d51dd030262b7085db0eab41a3eb", + "type": "text/plain", + "ts": "2024-09-24 12:42:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3b10495d5b70484c9eda7a5572af79fceb3ba19166e3733b9638f578e7803e89", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "918d01b8821b8c7ed4cf8381f92997155c7c659bae31d4114aa848c0764c5636", + "type": "text/plain", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "0a9892220be0aee7ef6dfd747a8139d6634f89f95e4e60ffaf8b2834a8a4e03c", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "b387b63261a185e98eca228dcd8019b15ada0a5524f6cc160c7a158c98641ac6", + "type": "text/plain", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "256df2864499d7cd270eb5e126e076b13f2a48403f72b31c45590a0f6b1618d9", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "163a1c42f872d1a3d10a795d581fa8e676d2698a8ef9135bde278cdbb05612d9", + "type": "text/plain", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "4abf41b2d9b1474c4bfe0f608b198b76da1abf4b92d014a37f51ebc28d13a353", + "type": "text/plain", + "ts": "2024-09-24 12:42:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a7dfc250e257f32e87de2fda119f7aa46da19cf75d44d97fc6f0043a3b63c5b9", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:34" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d852c53da273d758191fabae43d1643af4dff383f0adb91e49297cab388d64d2", + "type": "text/plain", + "ts": "2024-09-24 12:42:34" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "f6990bb0022179dc69dfd490237af3b90f3b1dd325eee7a37e1095346af72945", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "3a521d6229d9cee668a1fdd89fcf803fcfae2b9d18e6b9c93b4f46f2f278629b", + "type": "text/plain", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "ff77518bab21f6d8bd6f9450f69572e6793279803090963a3552629e4b180d7b", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "ef557b97d59455c59dd73f80a9e76136b5f2347f220a18344545bbfb9c9b8beb", + "type": "text/plain", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9f173587de223b11b550709a78a9876eb4bc1ba9616cd046a4647b704a7e84ae", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "2d5339f3b2caaf91525188c2d13186f85f9557b06a994a6f808bd2c5335c1505", + "type": "text/plain", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "cdbcc470470af9797f94119181c2b3df35d3e6effb3ef14b97b3f68438387703", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "22586dfd77c2728828c99bf2dec530c63ee34295ca97dfff55ffaf689e2ca228", + "type": "text/plain", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "02c95ca7d2eb2f17554615839c5937afc242e589dce4d7b615856df577d3d389", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "e5b2e64e8bdc6dd5079c652e75b3ba871c8aa21ed2787619bc42317b4a2a9507", + "type": "text/plain", + "ts": "2024-09-24 12:42:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "df16c31e8ba4856676441c17ef6738c6fb34459a3a89511a9ad31369f71c0730", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "90ad7404e541b019eab281db18b6dce6dfb519db7513eeb27c59c1e1cb3a3509", + "type": "text/plain", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "eb37c7699374ae67a89d0e6de661bed842970de78085d8ce372ead9fca0cbd5a", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "7cb9b350c04b2e50a6a8845ed95d90cf69ab8d41bae7dafcc91fcb1ed52505e6", + "type": "text/plain", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "edb8b68fb8c15865fa88fcb3c6fda023df61947f681f2c7825ccd1decccebe16", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "17a9ded7322a3fda5ae7b0ed858a472e191a4d65d4425cb88f82e9fb3d847ad6", + "type": "text/plain", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "28f0d591f5dca848ac0c17ca8d1d4813f85f130b6aeec802ff410198b8b428b9", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "9932e6f6dcf682694b7577749050c91940946b8f2adea75046d31684bfd067e9", + "type": "text/plain", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "97dd965aa0b685f35f4ff29505902e9bebd8e9c13addfdae96be246eceaf205a", + "type": "application/x-netcdf", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "22ff01487a0390094ea6b3d9957f3ccbbbe83968e2b18bd31852eb88fb394230", + "type": "text/plain", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", + "ext": "json", + "sha": "39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009", + "type": "application/json", + "ts": "2024-09-24 12:43:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "d0969db4b577d2c36a23af45e9fa73125ca91961bc440498342e16a6e3dae47a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9b628fdfa706e7fefd0751123ff0608e5c20a57e62fdec8107d46b0ed6835566", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "66fa6f9cd55b68bdfbc2f05de41d8ca12fbbc6521a7879b8c16ac9dfc6323686", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9dda67ac1e3fca6a147791645bda5c5cbf0b4db4767be683ef94830cecedac68", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "48fe8a21fd44dcd9e37805b955d7215f4969f8d686eaf773cccb162412a00c4c", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a01ebcc88c67402bbed8ca2ca2a00984bf22eae43e284c46323b1784109b10a5", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "17943e904712471c5ba2c9dff54308b93d8a79559bafb386c1eaa71b754736a1", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6918ebb21678ed4afaea25795956bcff02c9b8eb4680c21320e42a033eb449d8", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "4c0e422543c33345c935a18fd37154565b7e02a279c23da382f1b8318187c34a", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "7c3a19176d6b988bb1eaf062c057a5610b4263732b6cd2c3638f1d2bf847f510", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "3795115e1bc0e253b8ef101a54a0d9c1b31ebfb22447701720b5ddba56e67eb7", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6659da36f0ec790950cc035377a6aba8e90ed1db2c770b582bfbc95bee830bff", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "936a40ab98e5e729e241006691ddeb914f14e5601e3e59b0513e3ea8a3e32295", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "32512780d58ca0df4b7a77302bee300c6538b4d5edf2523e6541c028782a46e4", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "24253f9c7f10474895261e16d33abb0aff8d29bb21d2a2b5980bc0f455a326d9", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "1bdabcd873e5df4cc55467bcb9eda0323f3b1181d20a75281cb08118ec4a698d", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "c9d0dfdf08ba58c96a7048e66a941090516edf2cc4c4823359ce8db2b1a2a1ac", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "3a6da1b027346db6f51ff448646b5f723fbc03385de68fdd4365909c12171fe1", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "38afb063c3e76deda3f018e527c0d657fb61d562ae06280a4d135ef77dcf8517", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f48857083d3f8a30db7b7c35b541db5c39035280646eb47af8ba65dbb587e78a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "aff6cb12376bd9c0dd08ce1e157e61a914264daeccdd30916778dd029e52093b", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "9220cb543038c779fc346c06f2868449ce3d201be3b7c24e0d4aa4c01273a9a4", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "a3a5b8ce7905ecd25d2b89ebd3899a09ec93d44c0abcfaa341b810177e56a367", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&time>=1072915200.0&time<=1075507200.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f3bc9c5a878b1e190a86e4326855f6e0e6cb44fe3d46836c31eb2ac9812a7668", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&time>=1072915200.0&time<=1075507200.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "5c3b9c5a5376f2f49bf2146c091ca10baf498c826c7ab908f258ac2f85ebe505", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "0f97280439abec15c50d6e73f8b18cc52ce57a833f0091ee02cf30830423a8f0", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "42bf3189d45e09b853c94262ca6a1e080b82c9ed02a20e7e7ae72c9307d4274e", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3b78450daf9c2a79c7da5a4ebcbf98025f7851c3eca1c4cf4e633d8a92df44e5", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "03f7d373c2a0e9efad57bedeb468d1c54f2b83a6dfad06b7e5cef1d9c05b5c61", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5ba4bf7f88a6ebed02d3a0a34398a2a5ba0fe8cae65e83d4da02820a16875e52", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "c0770be1ac57c131636d8bc05976b1d135ee0e787671a64b4019fd1505710c20", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8d7b59726fd07fca3f55889fe8666cf958829e48e6bfc544baf9fabf6ca66844", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6a83503d6022c7f803d9c5ff544f7c114aa79fb533176aee1a71479f2d97a20a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "819c42622a8205a721de4444b18fe6b091bdd2d4022a9a67341267bad92018a1", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "47f8daa8ebd57ff95a73d2e5fdc9cdcdc70bcbfed16b113d196b6a735752fcfc", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2ec85ca4e982af9b25a0b5d4f891e9b2ea078e3c8d688d1c0d90facb932c5cd8", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "a8eb77f4c5868560853170afecb82fd5f0345d0cf96dc688c5ce8bd6d20fafc3", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "470b660b087c94de3ec43b56cb18e4ac54e992ea1b0b57f52d8f0423fac53011", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&time>=1185926400.0&time<=1188604800.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "06cac898c9fffa0176c4e844c690fbd29b75242fe0e1412ba991085e97dd1298", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&time>=1185926400.0&time<=1188604800.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "c3f134a69f38f36307f2db7ff94f9cc2dd48d323a614d9b32032eb55e7ce84aa", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", + "ext": "json", + "sha": "f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", + "ext": "json", + "sha": "f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/index.json", + "ext": "json", + "sha": "3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/13857_prof.nc", + "ext": "nc", + "sha": "5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:45" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_090.nc", + "ext": "nc", + "sha": "61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:48" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", + "ext": "nc", + "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", + "ext": "nc", + "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", + "ext": "nc", + "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", + "ext": "nc", + "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", + "ext": "nc", + "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", + "ext": "nc", + "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", + "ext": "nc", + "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", + "ext": "nc", + "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", + "ext": "nc", + "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", + "ext": "nc", + "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", + "ext": "nc", + "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", + "ext": "nc", + "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", + "ext": "nc", + "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", + "ext": "nc", + "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", + "ext": "nc", + "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", + "ext": "nc", + "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", + "ext": "nc", + "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", + "ext": "nc", + "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", + "ext": "nc", + "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", + "ext": "nc", + "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", + "ext": "nc", + "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", + "ext": "nc", + "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", + "ext": "nc", + "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", + "ext": "nc", + "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", + "ext": "nc", + "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", + "ext": "nc", + "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902070/1902070_prof.nc", + "ext": "nc", + "sha": "d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", + "ext": "nc", + "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", + "ext": "nc", + "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", + "ext": "nc", + "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", + "ext": "nc", + "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_001.nc", + "ext": "nc", + "sha": "4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_002.nc", + "ext": "nc", + "sha": "19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_003.nc", + "ext": "nc", + "sha": "dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/profiles/R13858_004.nc", + "ext": "nc", + "sha": "5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/profiles/R13859_001.nc", + "ext": "nc", + "sha": "4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/ar_index_global_prof.txt.gz", + "ext": "gz", + "sha": "05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53", + "type": "application/x-gzip", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac", + "ext": "html", + "sha": "c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d", + "type": "text/html", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/5904989_Sprof.nc", + "ext": "nc", + "sha": "edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:55" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/3902131/3902131_Sprof.nc", + "ext": "nc", + "sha": "9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:55" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/6903247/6903247_Sprof.nc", + "ext": "nc", + "sha": "5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/profiles/SD5904989_012.nc", + "ext": "nc", + "sha": "41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/argo_bio-profile_index.txt.gz", + "ext": "gz", + "sha": "109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444", + "type": "application/x-gzip", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1901393&data=pressure,temperature,salinity", + "ext": "js", + "sha": "990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=6902746&data=pressure,temperature,salinity", + "ext": "js", + "sha": "1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_034&data=pressure,temperature,salinity", + "ext": "js", + "sha": "cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_001&data=pressure,temperature,salinity", + "ext": "js", + "sha": "4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_012&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-01-01T00:00:00Z&endDate=2012-03-01T00:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "9f048fe71f0edf2d136d419d278a72c0b5df167e945c36556c70802c82253264", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-01-01T00:00:00Z&endDate=2012-02-20T16:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "92c42c14ebd6b15156e067be012411ff281071a324ad6d82391c6c7765e8397f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-02-20T16:00:00Z&endDate=2012-04-11T08:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "63ec40c2aac7113ca9ac4ca572447aafee0c11bce17c5aa5599857f086180677", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-04-11T08:00:00Z&endDate=2012-06-01T00:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "8ff0d7680d72c8cd969ecea6fcb628f481d5ffa98531e9e1f462a26831d7d0fd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900468&data=pressure,temperature,salinity", + "ext": "js", + "sha": "eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900117&data=pressure,temperature,salinity", + "ext": "js", + "sha": "328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900386&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/ping", + "ext": "json", + "sha": "f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://coastwatch.pfeg.noaa.gov/erddap/griddap/GEBCO_2020.nc?elevation[(-67.00):10:(-54.00)][(81.00):10:(123.00)]", + "ext": "nc", + "sha": "1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate>=$var5 and ptfStatus>=$var6\", -90, 0, 0, 90, \"2022-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate>=$var5\", -90, 0, 0, 90, \"2022-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon<=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", 0, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon<=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", 0, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 0, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 0, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 0, 90, \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 0, 90, \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/oceanops-api.yaml", + "ext": "yaml", + "sha": "4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b", + "type": "text/yaml", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R01/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R04/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R05/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R06/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R07/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R08/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R09/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R10/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R11/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R12/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R13/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R15/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R16/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R18/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R19/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R20/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R21/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R22/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "f5431ce20497c13c4ae0cd5d8fdf234cdcea3919b29cabed391e51a943bcd4c1", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R23/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R24/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R25/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R26/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R27/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R28/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R40/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RD2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RMC/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RP2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RR2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RTV/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/rdf+xml", + "ext": "xml", + "sha": "78bc3091b4e335a8f3f1929e855477d8684119cc86f9a918fe76893399023615", + "type": "application/rdf+xml", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=text/turtle", + "ext": "txt", + "sha": "f694b62ce2d9c9a9ed8c754e6d922be225d2c5adcac4561fb6d5e022a65d1d04", + "type": "text/plain", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/29825", + "ext": "html", + "sha": "ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/33951", + "ext": "html", + "sha": "153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46542", + "ext": "html", + "sha": "a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/40879", + "ext": "html", + "sha": "7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/35385", + "ext": "html", + "sha": "86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/84370", + "ext": "html", + "sha": "81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/62466", + "ext": "html", + "sha": "bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/41151", + "ext": "html", + "sha": "dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/29824", + "ext": "html", + "sha": "980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/78994", + "ext": "html", + "sha": "ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39795", + "ext": "html", + "sha": "cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39459", + "ext": "html", + "sha": "2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39468", + "ext": "html", + "sha": "75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/47998", + "ext": "html", + "sha": "577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/54541", + "ext": "html", + "sha": "6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46121", + "ext": "html", + "sha": "9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/51541", + "ext": "html", + "sha": "13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/57195", + "ext": "html", + "sha": "442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46120", + "ext": "html", + "sha": "54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/52154", + "ext": "html", + "sha": "210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/55637", + "ext": "html", + "sha": "941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46202", + "ext": "html", + "sha": "97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/97828", + "ext": "html", + "sha": "671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/2901623.png", + "ext": "png", + "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", + "ext": "png", + "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6901929", + "ext": "json", + "sha": "86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/5904797", + "ext": "json", + "sha": "28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6902755", + "ext": "json", + "sha": "237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/2901623", + "ext": "json", + "sha": "d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://api.ifremer.fr/argopy/data/ARGO-FULL.json", + "ext": "json", + "sha": "5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://api.ifremer.fr/argopy/data/ARGO-BGC.json", + "ext": "json", + "sha": "3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/5900865_prof.nc", + "ext": "nc", + "sha": "dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/ar_index_global_prof.txt", + "ext": "txt", + "sha": "332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f", + "type": "text/plain", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_001.nc", + "ext": "nc", + "sha": "9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_002.nc", + "ext": "nc", + "sha": "c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/2901623.png", + "ext": "png", + "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", + "ext": "png", + "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/argopy/tests/test_deprecated.py b/argopy/tests/test_deprecated.py index 7846b6c4..9ec4fff2 100644 --- a/argopy/tests/test_deprecated.py +++ b/argopy/tests/test_deprecated.py @@ -25,9 +25,3 @@ def test_deprecated_option_ftp(): def test_deprecated_fetcher_argument_ftp(): with pytest.deprecated_call(): argopy.DataFetcher(src='gdac', ftp='https://data-argo.ifremer.fr') - -@requires_erddap -def test_deprecated_accessor_filter_data_mode(mocked_erddapserver): - with pytest.deprecated_call(): - ds = argopy.DataFetcher(src='erddap', mode='expert', server=mocked_server_address).profile(6902746, 34).to_xarray() - ds.argo.filter_data_mode() diff --git a/argopy/tests/test_fetchers_data_erddap.py b/argopy/tests/test_fetchers_data_erddap.py index e52da841..e20d1c93 100644 --- a/argopy/tests/test_fetchers_data_erddap.py +++ b/argopy/tests/test_fetchers_data_erddap.py @@ -35,8 +35,6 @@ {"region": [-20, -16., 0, 1, 0, 100., "2004-01-01", "2004-01-31"]}, ]}, {"ref": [ - # {"region": [-70, -65, 35.0, 40.0, 0, 10.0]}, - # {"region": [-70, -65, 35.0, 40.0, 0, 10.0, "2012-01-1", "2012-12-31"]}, {"region": [-25, -10, 36, 40, 0, 10.]}, {"region": [-25, -10, 36, 40, 0, 10., '20180101', '20190101']}, ]}, @@ -53,6 +51,7 @@ List user modes to be tested """ USER_MODES = ['standard', 'expert', 'research'] +# USER_MODES = ['research'] """ diff --git a/argopy/tests/test_fetchers_data_erddap_bgc.py b/argopy/tests/test_fetchers_data_erddap_bgc.py index 9c5f1ece..025575f9 100644 --- a/argopy/tests/test_fetchers_data_erddap_bgc.py +++ b/argopy/tests/test_fetchers_data_erddap_bgc.py @@ -46,8 +46,8 @@ """ List user modes to be tested """ -# USER_MODES = ['standard', 'expert', 'research'] -USER_MODES = ['expert'] +USER_MODES = ['standard', 'expert', 'research'] +# USER_MODES = ['expert'] """ List of 'params' fetcher arguments to be tested @@ -101,8 +101,9 @@ def assert_fetcher(mocked_erddapserver, this_fetcher, cacheable=False): This should be used by all tests asserting a fetcher """ def assert_all(this_fetcher, cacheable): + # `this_fetcher` is a facade instance not a :class:`argopy.data_fetchers.ArgoDataFetcherProto` - # We use the facade to test 'to_xarray' in order to make sure to test all filters required by user mode + # We use the facade to test 'to_xarray' in order to make sure to test all transforms/filters required by user mode ds = this_fetcher.to_xarray(errors='raise') assert isinstance(ds, xr.Dataset) diff --git a/argopy/tests/test_fetchers_facade_data.py b/argopy/tests/test_fetchers_facade_data.py index 17e0646c..a6edd17d 100644 --- a/argopy/tests/test_fetchers_facade_data.py +++ b/argopy/tests/test_fetchers_facade_data.py @@ -87,12 +87,6 @@ def test_invalid_accesspoint(self): with pytest.raises(InvalidFetcherAccessPoint): self.__get_fetcher()[0].invalid_accesspoint.to_xarray() - def test_warnings(self): - with pytest.warns(UserWarning): - ArgoDataFetcher(src='erddap', ds='bgc', mode='standard') - with pytest.warns(UserWarning): - ArgoDataFetcher(src='erddap', ds='bgc', mode='research') - def test_no_uri(self): with pytest.raises(InvalidFetcherAccessPoint): self.__get_fetcher()[0].uri diff --git a/argopy/tests/test_fetchers_proto.py b/argopy/tests/test_fetchers_proto.py index 24f669ff..7bd54420 100644 --- a/argopy/tests/test_fetchers_proto.py +++ b/argopy/tests/test_fetchers_proto.py @@ -10,6 +10,9 @@ class Fetcher(ArgoDataFetcherProto): def to_xarray(self, *args, **kwargs): super(Fetcher, self).to_xarray(*args, **kwargs) + def transform_data_mode(self, *args, **kwargs): + super(Fetcher, self).transform_data_mode(*args, **kwargs) + def filter_data_mode(self, *args, **kwargs): super(Fetcher, self).filter_data_mode(*args, **kwargs) @@ -26,7 +29,10 @@ def test_required_methods(): f.to_xarray() with pytest.raises(NotImplementedError): - f.filter_data_mode(xarray.Dataset, str) + f.transform_data_mode(xarray.Dataset) + + with pytest.raises(NotImplementedError): + f.filter_data_mode(xarray.Dataset) with pytest.raises(NotImplementedError): f.filter_qc(xarray.Dataset) diff --git a/argopy/tests/test_related.py b/argopy/tests/test_related.py index b01f8bf1..730cb43f 100644 --- a/argopy/tests/test_related.py +++ b/argopy/tests/test_related.py @@ -318,8 +318,8 @@ def test_invalid_dictionnary_key(): @pytest.mark.parametrize("params", [[6901929, None], [6901929, 12]], indirect=False, ids=['float', 'profile']) def test_get_coriolis_profile_id(params, mocked_httpserver): - with argopy.set_options(cachedir=tempfile.mkdtemp()): - assert isinstance(get_coriolis_profile_id(params[0], params[1], api_server=mocked_server_address), pd.core.frame.DataFrame) + with argopy.set_options(cachedir=tempfile.mkdtemp(), server=mocked_server_address): + assert isinstance(get_coriolis_profile_id(params[0], params[1]), pd.core.frame.DataFrame) @pytest.mark.parametrize("params", [[6901929, None], [6901929, 12]], indirect=False, ids=['float', 'profile']) def test_get_ea_profile_page(params, mocked_httpserver): diff --git a/argopy/tutorial.py b/argopy/tutorial.py index 37762764..ffa2227b 100644 --- a/argopy/tutorial.py +++ b/argopy/tutorial.py @@ -7,8 +7,8 @@ ``` import argopy ftproot, flist = argopy.tutorial.open_dataset('gdac') -txtfile = argopy.tutorial.open_dataset('weekly_index_prof') -txtfile = argopy.tutorial.open_dataset('global_index_prof') +ftproot, flist = argopy.tutorial.open_dataset('weekly_index_prof') +ftproot, flist = argopy.tutorial.open_dataset('global_index_prof') # To force a new download of the data repo: argopy.tutorial.repodata().download(overwrite=True) diff --git a/argopy/utils/__init__.py b/argopy/utils/__init__.py index 5afa936d..7df7294f 100644 --- a/argopy/utils/__init__.py +++ b/argopy/utils/__init__.py @@ -23,8 +23,13 @@ from .lists import ( list_available_data_src, list_available_index_src, - list_standard_variables, list_multiprofile_file_variables, + list_core_parameters, + list_standard_variables, + list_bgc_s_variables, + list_bgc_s_parameters, + list_radiometry_variables, + list_radiometry_parameters, ) from .caching import clear_cache, lscache from .monitored_threadpool import MyThreadPoolExecutor as MonitoredThreadPoolExecutor @@ -49,10 +54,17 @@ from .transform import ( fill_variables_not_in_all_datasets, drop_variables_not_in_all_datasets, + merge_param_with_param_adjusted, + filter_param_by_data_mode, + split_data_mode, ) from .format import argo_split_path, format_oneline, UriCName from .loggers import warnUnless, log_argopy_callerstack +import importlib +path2assets = importlib.util.find_spec('argopy.static.assets').submodule_search_locations[0] + + __all__ = ( # Checkers: "is_box", @@ -82,8 +94,13 @@ # Lists: "list_available_data_src", "list_available_index_src", - "list_standard_variables", "list_multiprofile_file_variables", + "list_standard_variables", + "list_core_parameters", + "list_bgc_s_variables", + "list_bgc_s_parameters", + "list_radiometry_variables", + "list_radiometry_parameters", # Cache management: "clear_cache", "lscache", @@ -108,9 +125,12 @@ # Computation with datasets: "linear_interpolation_remap", "groupby_remap", - # Manipulate datasets: + # Transform datasets: "fill_variables_not_in_all_datasets", "drop_variables_not_in_all_datasets", + "merge_param_with_param_adjusted", + "filter_param_by_data_mode", + "split_data_mode", # Formatters: "format_oneline", "argo_split_path", diff --git a/argopy/utils/accessories.py b/argopy/utils/accessories.py index d3109c59..14755141 100644 --- a/argopy/utils/accessories.py +++ b/argopy/utils/accessories.py @@ -102,7 +102,7 @@ def __hash__(self): class Registry(UserList): - """A list manager can that validate item type + """A list manager that can validate item type Examples -------- diff --git a/argopy/utils/checkers.py b/argopy/utils/checkers.py index 9bc5b778..51fd20f6 100644 --- a/argopy/utils/checkers.py +++ b/argopy/utils/checkers.py @@ -419,8 +419,23 @@ def check_index_cols(column_names: list, convention: str = "ar_index_global_prof "date_update", ] + if ( + convention == "argo_aux-profile_index" + ): + # ['file', 'date', 'latitude', 'longitude', 'ocean', 'profiler_type', 'institution', 'parameters', 'date_update'] + ref = [ + "file", + "date", + "latitude", + "longitude", + "ocean", + "profiler_type", + "institution", + "parameters", + "date_update", + ] if not is_list_equal(column_names, ref): - # log.debug("Expected: %s, got: %s" % (";".join(ref), ";".join(column_names))) + log.debug("Expected (convention=%s): %s, got: %s" % (convention, ";".join(ref), ";".join(column_names))) raise InvalidDatasetStructure("Unexpected column names in this index !") else: return column_names diff --git a/argopy/utils/compute.py b/argopy/utils/compute.py index 62e59ef0..402066b7 100644 --- a/argopy/utils/compute.py +++ b/argopy/utils/compute.py @@ -1,5 +1,5 @@ """ -Mathematically or statistically compute something output of xarray objects +Mathematically or statistically compute something out of xarray objects """ import numpy as np diff --git a/argopy/utils/format.py b/argopy/utils/format.py index c2845a7a..dad3ca00 100644 --- a/argopy/utils/format.py +++ b/argopy/utils/format.py @@ -216,9 +216,16 @@ def erddapuri2fetchobj(uri: str) -> dict: float(params["longitude<"][0]), float(params["latitude>"][0]), float(params["latitude<"][0]), - float(params["pres>"][0]), - float(params["pres<"][0]), ] + if "pres>" in params: + box.append(float(params["pres>"][0])) + box.append(float(params["pres<"][0])) + elif "pres_adjusted>" in params: + box.append(float(params["pres_adjusted>"][0])) + box.append(float(params["pres_adjusted<"][0])) + else: + raise ValueError("This erddap uri is invalid, it must have pressure constraints with coordinates constraints: %s" % uri) + if "time>" in params.keys(): box.append( pd.to_datetime(float(params["time>"][0]), unit="s").strftime("%Y-%m-%d") @@ -226,6 +233,7 @@ def erddapuri2fetchobj(uri: str) -> dict: box.append( pd.to_datetime(float(params["time<"][0]), unit="s").strftime("%Y-%m-%d") ) + result["box"] = box elif "platform_number" in params: wmo = params["platform_number"][0].replace("~", "").replace('"', "").split("|") diff --git a/argopy/utils/lists.py b/argopy/utils/lists.py index 32ae6f82..2fec787a 100644 --- a/argopy/utils/lists.py +++ b/argopy/utils/lists.py @@ -1,9 +1,17 @@ import sys import warnings +import importlib +import os +import json from ..options import OPTIONS +from typing import List +path2assets = importlib.util.find_spec( + "argopy.static.assets" +).submodule_search_locations[0] -def list_available_data_src(): + +def list_available_data_src() -> dict: """List all available data sources""" sources = {} try: @@ -56,7 +64,7 @@ def list_available_data_src(): return sources -def list_available_index_src(): +def list_available_index_src() -> dict: """List all available index sources""" sources = {} try: @@ -96,44 +104,8 @@ def list_available_index_src(): return sources -def list_standard_variables(): - """List of variables for standard users""" - return [ - "DATA_MODE", - "LATITUDE", - "LONGITUDE", - "POSITION_QC", - "DIRECTION", - "PLATFORM_NUMBER", - "CYCLE_NUMBER", - "PRES", - "TEMP", - "PSAL", - "PRES_QC", - "TEMP_QC", - "PSAL_QC", - "PRES_ADJUSTED", - "TEMP_ADJUSTED", - "PSAL_ADJUSTED", - "PRES_ADJUSTED_QC", - "TEMP_ADJUSTED_QC", - "PSAL_ADJUSTED_QC", - "PRES_ADJUSTED_ERROR", - "TEMP_ADJUSTED_ERROR", - "PSAL_ADJUSTED_ERROR", - "PRES_ERROR", # can be created from PRES_ADJUSTED_ERROR after a filter_data_mode - "TEMP_ERROR", - "PSAL_ERROR", - "JULD", - "JULD_QC", - "TIME", - "TIME_QC", - # "CONFIG_MISSION_NUMBER", - ] - - -def list_multiprofile_file_variables(): - """List of variables in a netcdf multiprofile file. +def list_multiprofile_file_variables() -> List[str]: + """List of all 🟡 core + 🔵 deep variables that can be found in a multi-profile netcdf file This is for files created by GDAC under //_prof.nc """ @@ -203,3 +175,218 @@ def list_multiprofile_file_variables(): "VERTICAL_SAMPLING_SCHEME", "WMO_INST_TYPE", ] + + +def list_core_parameters() -> List[str]: + """List of all 🟡 core + 🔵 deep parameters that can be found in mono and multi-profile netcdf files + + This list is restricted to PARAMETERs for which the following variables can be found: + + - _DATA_MODE, + - _QC, + - _ADJUSTED, + - _ADJUSTED_QC + - _ADJUSTED_ERROR + + Returns + ------- + List[str] + + """ + return ["PRES", "TEMP", "PSAL"] + + +def list_standard_variables(ds: str = 'phy') -> List[str]: + """List of dataset variables possibly return in ``standard`` user mode + + Parameters + ---------- + ds: str, default='phy' + + Return variables for one of the argopy ``dataset`` option possible values: + + - ``phy`` is valid for the 🟡 core and 🔵 deep missions variables + - ``bgc`` is valid for the 🟢 BGC missions variables + + Returns + ------- + List[str] + """ + + # List of coordinates and meta-data to preserve in ``standard`` user mode: + sv = [ + "LATITUDE", + "LONGITUDE", + "POSITION_QC", + + "DIRECTION", + "PLATFORM_NUMBER", + "CYCLE_NUMBER", + # "CONFIG_MISSION_NUMBER", + + "JULD", + "JULD_QC", + "TIME", + "TIME_QC", + ] + + if ds == 'phy': + parameters = list_core_parameters() + sv.append("DATA_MODE") + elif ds in ['bgc', 'bgc-s']: + parameters = list_bgc_s_parameters() + + for param in parameters: + sv.append(param) + if ds in ['bgc', 'bgc-s']: + sv.append("%s_DATA_MODE" % param) + sv.append("%s_QC" % param) + sv.append("%s_ERROR" % param) # _ERROR variables are added by :class:`Dataset.argo.transform_data_mode` + + sv.append("%s_ADJUSTED" % param) + sv.append("%s_ADJUSTED_QC" % param) + sv.append("%s_ADJUSTED_ERROR" % param) + + return sv + + +def list_bgc_s_variables() -> List[str]: + """List of all 🟢 BGC mission variables that can be found in a BGC **Synthetic** netcdf files + + This list includes (*but is not limited to*) PARAMETERs for which the following variables can be found: + + - _DATA_MODE, + - _QC, + - _ADJUSTED, + - _ADJUSTED_QC + - _ADJUSTED_ERROR + + This list also includes coordinates meta-data variables like LATITUDE or CONFIG_MISSION_NUMBER + + Returns + ------- + List[str] + + See Also + -------- + :meth:`argopy.utils.list_standard_variables`, + :meth:`argopy.utils.list_bgc_s_parameters`, + :meth:`argopy.utils.list_radiometry_variables` + :meth:`argopy.utils.list_radiometry_parameters`, + """ + with open(os.path.join(path2assets, "variables_bgc_synthetic.json"), "r") as f: + vlist = json.load(f) + return vlist["data"]["variables"] + + +def list_bgc_s_parameters() -> List[str]: + """List of all 🟢 BGC mission parameters that can be found in a BGC **Synthetic** netcdf files + + This list is **restricted** to PARAMETERs for which the following variables can be found: + + - _DATA_MODE, + - _QC, + - _ADJUSTED, + - _ADJUSTED_QC + - _ADJUSTED_ERROR + + Returns + ------- + List[str] + + See Also + -------- + :meth:`argopy.utils.list_standard_variables`, + :meth:`argopy.utils.list_bgc_s_variables`, + :meth:`argopy.utils.list_radiometry_variables` + :meth:`argopy.utils.list_radiometry_parameters`, + """ + misc_meta = [ + "LATITUDE", + "LONGITUDE", + "DIRECTION", + "PLATFORM_NUMBER", + "CYCLE_NUMBER", + "JULD", + "TIME", + "CONFIG_MISSION_NUMBER", + "DATA_CENTRE", + "DATA_TYPE", + "DATE_UPDATE", + "PI_NAME", + "PLATFORM_TYPE", + "WMO_INST_TYPE", + ] + return [ + v + for v in list_bgc_s_variables() + if "DATA_MODE" not in v + and "QC" not in v + and "ADJUSTED" not in v + and v not in misc_meta + ] + + +def list_radiometry_variables() -> List[str]: + """List of all 🟢 BGC mission variables related to **radiometry** that can be found in a BGC **Synthetic** netcdf files + + This is a subset of the list returned by :meth:`argopy.utils.list_bgc_s_variables`. + + This list includes (but is not limited to) PARAMETERs for which the following variables can be found: + + - _DATA_MODE, + - _QC, + - _ADJUSTED, + - _ADJUSTED_QC + - _ADJUSTED_ERROR + + Returns + ------- + List[str] + + See Also + -------- + :meth:`argopy.utils.list_standard_variables`, + :meth:`argopy.utils.list_bgc_s_variables` + :meth:`argopy.utils.list_bgc_s_parameters`, + :meth:`argopy.utils.list_radiometry_parameters`, + """ + bgc_vlist_erddap = list_bgc_s_variables() + vlist = [] + [vlist.append(v) for v in bgc_vlist_erddap if "up_radiance" in v.lower()] + [vlist.append(v) for v in bgc_vlist_erddap if "down_irradiance" in v.lower()] + [vlist.append(v) for v in bgc_vlist_erddap if "downwelling_par" in v.lower()] + vlist.sort() + return vlist + + +def list_radiometry_parameters() -> List[str]: + """List of all 🟢 BGC mission parameters related to **radiometry** that can be found in a BGC **Synthetic** netcdf files + + This is a subset of the list returned by :meth:`argopy.utils.list_radiometry_variables`. + + This list is restricted to PARAMETERs for which the following variables can be found: + + - _DATA_MODE, + - _QC, + - _ADJUSTED, + - _ADJUSTED_QC + - _ADJUSTED_ERROR + + Returns + ------- + List[str] + + See Also + -------- + :meth:`argopy.utils.list_standard_variables`, + :meth:`argopy.utils.list_bgc_s_variables`, + :meth:`argopy.utils.list_bgc_s_parameters` + :meth:`argopy.utils.list_radiometry_variables`, + """ + params = list_radiometry_variables() + return [ + v + for v in params + if "DATA_MODE" not in v and "QC" not in v and "ADJUSTED" not in v + ] diff --git a/argopy/utils/transform.py b/argopy/utils/transform.py index 4dfb30e7..e752532a 100644 --- a/argopy/utils/transform.py +++ b/argopy/utils/transform.py @@ -4,7 +4,10 @@ import numpy as np import xarray as xr import logging -from typing import List +from typing import List, Union + +from ..errors import InvalidDatasetStructure +from .lists import list_core_parameters log = logging.getLogger("argopy.utils.manip") @@ -71,8 +74,7 @@ def fill_variables_not_in_all_datasets( ds_collection: List[xarray.Dataset] A list of :class:`xarray.Dataset` concat_dim: str, default='rows' - Name of the dimension to use to create new variables. Typically, this is the name of the dimension the collection will - be concatenated along afterward. + Name of the dimension to use to create new variables. Typically, this is the name of the dimension the collection will be concatenated along afterward. Returns ------- @@ -145,3 +147,199 @@ def fillvalue(da): # return results + + +def merge_param_with_param_adjusted(ds: xr.Dataset, param: str, errors: str = 'raise') -> xr.Dataset: + """Copy _ADJUSTED values onto for points where param data mode is 'A' or 'D' + + After values have been copied, all _ADJUSTED* variables are dropped to avoid confusion. + + For core and deep datasets (ds='phy'), we use the ``_MODE`` variable. + + For the bgc dataset (ds='bgc'), we use the ``_DATA_MODE`` variables. + + The type of dataset is inferred automatically. + + Parameters + ---------- + ds: :class:`xarray.Dataset` + Dataset to transform + param: str + Name of the parameter to merge + errors: str, optional, default='raise' + If 'raise': raises a InvalidDatasetStructure error if any of the expected dataset variables is + not found. + If 'ignore', fails silently and return unmodified dataset. + + Returns + ------- + :class:`xarray.Dataset` + + """ + if "%s_ADJUSTED" % param not in ds: + if errors == 'raise': + raise InvalidDatasetStructure("Parameter '%s_ADJUSTED' adjusted values not found in this dataset" % param) + else: + return ds + if ds.argo._type != "point": + raise InvalidDatasetStructure( + "Method only available to a collection of points" + ) + + core_ds = False + if "%s_DATA_MODE" % param not in ds and param in list_core_parameters(): + if "DATA_MODE" not in ds: + if errors == 'raise': + raise InvalidDatasetStructure( + "Parameter '%s' data mode not found in this dataset (no 'DATA_MODE')" % param + ) + else: + return ds + else: + core_ds = True + # Create a bgc-like parameter data mode variable: + ds["%s_DATA_MODE" % param] = ds["DATA_MODE"].copy() + # that will be dropped at the end of the process + + if param not in ds: + ds[param] = ds["%s_ADJUSTED" % param].copy() + if "%s_QC" % param not in ds and "%s_ADJUSTED_QC" % param in ds: + ds["%s_QC" % param] = ds["%s_ADJUSTED_QC" % param].copy() + if "%s_ERROR" % param not in ds and "%s_ADJUSTED_ERROR" % param in ds: + ds["%s_ERROR" % param] = ds["%s_ADJUSTED_ERROR" % param].copy() + + ii_measured = np.logical_or.reduce((ds["%s_DATA_MODE" % param] == 'R', + ds["%s_DATA_MODE" % param] == 'A', + ds["%s_DATA_MODE" % param] == 'D')) + ii_missing = np.logical_and.reduce((ds["%s_DATA_MODE" % param] != 'R', + ds["%s_DATA_MODE" % param] != 'A', + ds["%s_DATA_MODE" % param] != 'D')) + assert ii_measured.sum() + ii_missing.sum() == len(ds['N_POINTS']), "Unexpected data mode values !" + + ii_measured_adj = np.logical_and.reduce((ii_measured, + np.logical_or.reduce((ds["%s_DATA_MODE" % param] == 'A', + ds["%s_DATA_MODE" % param] == 'D')) + )) + + # Copy param_adjusted values onto param indexes where data_mode is in 'a' or 'd': + ds["%s" % param].loc[dict(N_POINTS=ii_measured_adj)] = ds["%s_ADJUSTED" % param].loc[ + dict(N_POINTS=ii_measured_adj)] + ds = ds.drop_vars(["%s_ADJUSTED" % param]) + + if "%s_ADJUSTED_QC" % param in ds and "%s_ADJUSTED_QC" % param in ds: + ds["%s_QC" % param].loc[dict(N_POINTS=ii_measured_adj)] = ds["%s_ADJUSTED_QC" % param].loc[ + dict(N_POINTS=ii_measured_adj)] + ds = ds.drop_vars(["%s_ADJUSTED_QC" % param]) + + if "%s_ERROR" % param in ds and "%s_ADJUSTED_ERROR" % param in ds: + ds["%s_ERROR" % param].loc[dict(N_POINTS=ii_measured_adj)] = ds["%s_ADJUSTED_ERROR" % param].loc[ + dict(N_POINTS=ii_measured_adj)] + ds = ds.drop_vars(["%s_ADJUSTED_ERROR" % param]) + + if core_ds: + ds = ds.drop_vars(["%s_DATA_MODE" % param]) + + return ds + + +def filter_param_by_data_mode(ds: xr.Dataset, + param: str, + dm: Union[str, List[str]] = ['R', 'A', 'D'], + mask: bool = False, + errors: str = 'raise') -> xr.Dataset: + """Filter measurements according to a parameter data mode + + Filter the dataset to keep points where a parameter is in any of the data mode specified. + + This method can return the filtered dataset or the filter mask. + + Notes + ----- + - Method compatible with core, deep and BGC datasets + - Can be applied after the :class:`xarray.Dataset.transform_data_mode` + + Parameters + ---------- + ds: :class:`xarray.Dataset` + The dataset to work filter + param: str + Name of the parameter to apply the filter to + dm: str, list(str), optional, default=['R', 'A', 'D'] + List of DATA_MODE values (string) to keep + mask: bool, optional, default=False + Determine if we should return the filter mask or the filtered dataset + errors: str, optional, default='raise' + If ``raise``, raises a InvalidDatasetStructure error if any of the expected variables is + not found. + If ``ignore``, fails silently and return unmodified dataset. + + Returns + ------- + :class:`xarray.Dataset` + """ + + core_ds = False + if "%s_DATA_MODE" % param not in ds and param in list_core_parameters(): + if "DATA_MODE" not in ds: + if errors == 'raise': + raise InvalidDatasetStructure( + "Parameter '%s' data mode not found in this dataset (no 'DATA_MODE')" % param + ) + else: + return ds + else: + core_ds = True + # Create a bgc-like parameter data mode variable: + ds["%s_DATA_MODE" % param] = ds["DATA_MODE"].copy() + # that will be dropped at the end of the process + + filter = [] + for this_dm in dm: + vname = "%s_DATA_MODE" % param + if vname not in ds: + log.warning("The parameter '%s' has no associated data mode" % vname) + else: + filter.append(ds[vname] == "%s" % this_dm.upper()) + + if len(filter) > 0: + filter = np.logical_or.reduce(filter) + + if core_ds: + ds = ds.drop_vars(["%s_DATA_MODE" % param]) + + if mask: + return filter + else: + return ds.loc[dict(N_POINTS=filter)] if len(filter) > 0 else ds + + +def split_data_mode(ds: xr.Dataset) -> xr.Dataset: + """Convert PARAMETER_DATA_MODE(N_PROF, N_PARAM) into several _DATA_MODE(N_PROF) variables + + Using the list of *PARAM* found in ``STATION_PARAMETERS``, this method will create ``N_PARAM`` + new variables in the dataset ``*PARAM*_DATA_MODE(N_PROF)``. + + The variable ``PARAMETER_DATA_MODE`` is drop from the dataset at the end of the process. + + Returns + ------- + :class:`xr.Dataset` + """ + if "STATION_PARAMETERS" in ds and "PARAMETER_DATA_MODE" in ds: + + u64 = lambda s: "%s%s" % (s, " " * (64 - len(s))) + params = [p.strip() for p in np.unique(ds['STATION_PARAMETERS'])] + + for param in params: + name = "%s_DATA_MODE" % param.replace("_PARAMETER", "").replace("PARAMETER_", "") + mask = ds['STATION_PARAMETERS'] == xr.full_like(ds['STATION_PARAMETERS'], u64(param), + dtype=ds['STATION_PARAMETERS'].dtype) + da = ds['PARAMETER_DATA_MODE'].where(mask, drop=True).isel(N_PARAM=0) + da = da.rename(name) + da = da.astype(ds['PARAMETER_DATA_MODE'].dtype) + ds[name] = da + + ds = ds.drop_vars('PARAMETER_DATA_MODE') + ds.argo.add_history("Transformed with 'split_data_mode'") + + return ds diff --git a/argopy/xarray.py b/argopy/xarray.py index b0a82a35..8fd669fa 100644 --- a/argopy/xarray.py +++ b/argopy/xarray.py @@ -5,6 +5,7 @@ import pandas as pd import xarray as xr import logging +from typing import Union, List from xarray.backends import BackendEntrypoint # For xarray > 0.18 try: @@ -14,19 +15,26 @@ except ModuleNotFoundError: with_gsw = False -from .utils.checkers import is_list_of_strings -from .utils.casting import ( +from .utils import is_list_of_strings +from .utils import ( cast_Argo_variable_type, DATA_TYPES, + to_list, ) -from .utils.compute import ( +from .utils import ( linear_interpolation_remap, groupby_remap, ) -from .utils.geo import toYearFraction -from .utils.decorators import deprecated -from .errors import InvalidDatasetStructure, DataNotFound, OptionValueError +from .utils import list_core_parameters +from .utils import toYearFraction +from .utils import ( + merge_param_with_param_adjusted, + filter_param_by_data_mode, + split_data_mode, +) +from .utils import deprecated +from .errors import InvalidDatasetStructure, DataNotFound, OptionValueError log = logging.getLogger("argopy.xarray") @@ -38,26 +46,48 @@ class ArgoAccessor: Examples -------- - Ensure all variables are of the Argo required dtype with: + >>> ds.argo.cast_types() + - Convert a collection of points into a collection of profiles: + >>> ds.argo.point2profile() + - Convert a collection of profiles to a collection of points: + >>> ds.argo.profile2point() - - Filter measurements according to data mode: - >>> ds.argo.filter_data_mode() + + - Transform dataset variables according to data mode: + + >>> ds.argo.transform_data_mode() + + - Filter measurements according to data mode values: + + >>> ds.argo.filter_date_mode(dm=['D'], params='all') + - Filter measurements according to QC flag values: + >>> ds.argo.filter_qc(QC_list=[1, 2], QC_fields='all') - - Filter variables according OWC salinity calibration requirements: + + - Filter variables according to OWC salinity calibration requirements: + >>> ds.argo.filter_scalib_pres(force='default') + - Interpolate measurements on pressure levels: + >>> ds.argo.inter_std_levels(std_lev=[10., 500., 1000.]) + - Group and reduce measurements by pressure bins: + >>> ds.argo.groupby_pressure_bins(bins=[0, 200., 500., 1000.]) + - Compute and add additional variables to the dataset: + >>> ds.argo.teos10(vlist='PV') + - Preprocess data for OWC salinity calibration: - >>> ds.argo.create_float_source("output_folder") + >>> ds.argo.create_float_source("output_folder") """ def __init__(self, xarray_obj): @@ -65,8 +95,10 @@ def __init__(self, xarray_obj): self._obj = xarray_obj self._added = list() # Will record all new variables added by argo # self._register = collections.OrderedDict() # Will register mutable instances of sub-modules like 'plot' + # Variables present in the initial dataset self._vars = list(xarray_obj.variables.keys()) + # Store the initial list of dimensions self._dims = list(xarray_obj.sizes.keys()) self.encoding = xarray_obj.encoding @@ -87,7 +119,7 @@ def __init__(self, xarray_obj): self._mode = "standard" else: raise InvalidDatasetStructure( - "Argo dataset structure not recognised (no PRES nor PRES_ADJUSTED" + "Argo dataset structure not recognised (no PRES nor PRES_ADJUSTED)" ) def __repr__(self): @@ -172,11 +204,11 @@ def N_POINTS(self): N_POINTS = len(np.unique(self._obj["N_POINTS"])) return N_POINTS - def _add_history(self, txt): - if "history" in self._obj.attrs: - self._obj.attrs["history"] += "; %s" % txt + def add_history(self, txt): + if "Processing_history" in self._obj.attrs: + self._obj.attrs["Processing_history"] += "; %s" % txt else: - self._obj.attrs["history"] = txt + self._obj.attrs["Processing_history"] = txt def _where(self, cond, other=xr.core.dtypes.NA, drop: bool = False): """where that preserve dtypes of Argo fields @@ -197,10 +229,10 @@ def _where(self, cond, other=xr.core.dtypes.NA, drop: bool = False): this = self._obj.copy(deep=True) this = this.where(cond, other=other, drop=drop) this = this.argo.cast_types() - # this.argo._add_history("Modified with 'where' statement") + # this.argo.add_history("Modified with 'where' statement") return this - def cast_types(self, **kwargs): # noqa: C901 + def cast_types(self, **kwargs) -> xr.Dataset: # noqa: C901 """Make sure variables are of the appropriate types according to Argo""" ds = self._obj return cast_Argo_variable_type(ds, **kwargs) @@ -233,7 +265,7 @@ def uid(self, wmo_or_uid, cyc=None, direction=None): cyc: int, optional Cycle number (to encode), not used to decode direction: str, optional - Direction of the profile, must be 'A' (Ascending) or 'D' (Descending) + Direction of the profile, must be ``A`` (Ascending) or ``D`` (Descending) Returns ------- @@ -364,11 +396,11 @@ def domain(self): np.max(this_ds["TIME"].values), ] - def point2profile(self, drop: bool = False): # noqa: C901 + def point2profile(self, drop: bool = False) -> xr.Dataset: # noqa: C901 """Transform a collection of points into a collection of profiles - A "point" is a single location for measurements in space and time - A "point" is localised as unique UID based on WMO, CYCLE_NUMBER and DIRECTION variable values. + - A "point" is a location with unique (N_PROF, N_LEVELS) indexes + - A "profile" is a collection of points with an unique UID based on WMO, CYCLE_NUMBER and DIRECTION Parameters ---------- @@ -376,6 +408,14 @@ def point2profile(self, drop: bool = False): # noqa: C901 By default will return all variables. But if set to True, then all [N_PROF, N_LEVELS] 2d variables will be dropped, and only 1d variables of dimension [N_PROF] will be returned. + Returns + ------- + :class:`xr.dataset` + + See Also + -------- + :meth:`profile2point` + """ if self._type != "point": raise InvalidDatasetStructure( @@ -521,21 +561,38 @@ def fillvalue(da): new_ds.encoding = self.encoding # Preserve low-level encoding information new_ds.attrs = self.attrs # Preserve original attributes if not drop: - new_ds.argo._add_history("Transformed with point2profile") + new_ds.argo.add_history("Transformed with 'point2profile'") new_ds.argo._type = "profile" return new_ds - def profile2point(self): - """Convert a collection of profiles to a collection of points + def profile2point(self) -> xr.Dataset: + """Transform a collection of profiles to a collection of points + + - A "point" is a location with unique (N_PROF, N_LEVELS) indexes + - A "profile" is a collection of points with an unique UID based on WMO, CYCLE_NUMBER and DIRECTION - A "point" is a single location for measurements in space and time - A "point" is localised as unique UID based on WMO, CYCLE_NUMBER and DIRECTION variable values. + Returns + ------- + :class:`xr.dataset` + + Warnings + -------- + This method will remove any variable that is not with dimensions (N_PROF,) or (N_PROF, N_LEVELS) + + See Also + -------- + :meth:`point2profile` """ if self._type != "profile": raise InvalidDatasetStructure( "Method only available for a collection of profiles (N_PROF dimension)" ) ds = self._obj + # print(ds.attrs) + ds = split_data_mode( + ds + ) # Otherwise this method will fail with BGC netcdf files + # print(ds.attrs) # Remove all variables for which a dimension is length=0 (eg: N_HISTORY) # todo: We should be able to find a way to keep them somewhere in the data structure @@ -567,257 +624,247 @@ def profile2point(self): # Remove index without data (useless points) ds = ds.where(~np.isnan(ds["PRES"]), drop=1) - ds = ds.sortby("TIME") + ds = ds.sortby("TIME") if "TIME" in ds else ds.sortby("JULD") ds["N_POINTS"] = np.arange(0, len(ds["N_POINTS"])) - ds = ds.argo.cast_types() + ds = cast_Argo_variable_type(ds) ds = ds[np.sort(ds.data_vars)] ds.encoding = self.encoding # Preserve low-level encoding information - ds.attrs = self.attrs # Preserve original attributes - ds.argo._add_history("Transformed with profile2point") + ds.argo.add_history("Transformed with 'profile2point'") ds.argo._type = "point" return ds - @deprecated( - "This method is deprecated and will break your code for versions >= 0.1.18. ", - ignore_caller="postprocessing", - version="0.1.17", - ) - def filter_data_mode( # noqa: C901 - self, keep_error: bool = True, errors: str = "raise" - ): - """Filter variables according to their data mode + def split_data_mode(self, **kw) -> xr.Dataset: + ds = self._obj + return split_data_mode(ds, **kw) - This filter applies to and + def transform_data_mode( + self, params: Union[str, List[str]] = "all", errors: str = "raise" + ) -> xr.Dataset: + """Merge and _ADJUSTED variables according to DATA_MODE or _DATA_MODE - For data mode 'R' and 'A': keep (eg: 'PRES', 'TEMP' and 'PSAL') + Merging is done as follows: - For data mode 'D': keep (eg: 'PRES_ADJUSTED', 'TEMP_ADJUSTED' and 'PSAL_ADJUSTED') + - For measurements with data mode ``R``: keep (eg: 'DOXY') + - For measurements with data mode ``D`` or ``A``: keep _ADJUSTED (eg: 'DOXY_ADJUSTED') - Since ADJUSTED variables are not required anymore after the filter, all *ADJUSTED* variables are dropped in - order to avoid confusion wrt variable content. DATA_MODE is preserved for the record. + Since adjusted variables are not required anymore after the transformation, all _ADJUSTED variables + are dropped from the dataset in order to avoid confusion with regard to variable content. + Variable DATA_MODE or _DATA_MODE are preserved for the record. Parameters ---------- - keep_error: bool, optional - If true (default) keep the measurements error fields or not. - - errors: {'raise','ignore'}, optional - If 'raise' (default), raises a InvalidDatasetStructure error if any of the expected dataset variables is - not found. If 'ignore', fails silently and return unmodified dataset. + params: str, List[str], optional, default='all' + Name or list of names of the parameter(s) to merge. + Use the default keyword ``all`` to merge all possible parameters in the :class:`xarray.Dataset`. + errors: str, optional, default='raise' + If ``raise``, raises a :class:`argopy.errors.InvalidDatasetStructure` error if any of the expected variables is + not found. + If ``ignore``, fails silently and return unmodified dataset. Returns ------- :class:`xarray.Dataset` + Notes + ----- + This method is compatible with core, deep and BGC datasets - .. deprecated:: 0.1.7 - - This method action and signature are deprecated and will break your code for versions >= 0.1.18. - + See Also + -------- + :meth:`filter_data_mode` """ if self._type != "point": raise InvalidDatasetStructure( "Method only available to a collection of points" ) + else: + this = self._obj + + # Determine the list of variables to transform: + params = to_list(params) + parameters = [] + # log.debug(params) + if params[0] == "all": + if "DATA_MODE" in this.data_vars: + for p in list_core_parameters(): + if p in this.data_vars or "%s_ADJUSTED" % p in this.data_vars: + parameters.append(p) + else: + parameters = [ + p.replace("_DATA_MODE", "") + for p in this.data_vars + if "_DATA_MODE" in p + ] + else: + [parameters.append(v) for v in params] + # log.debug(parameters) - ######### - # Sub-functions - ######### - def safe_where_eq(xds, key, value): - # xds.where(xds[key] == value, drop=True) is not safe to empty time variables, cf issue #64 - try: - return xds.where(xds[key] == value, drop=True) - except ValueError as v: - if v.args[0] == ( - "zero-size array to reduction operation " - "minimum which has no identity" - ): - # A bug in xarray will cause a ValueError if trying to - # decode the times in a NetCDF file with length 0. - # See: - # https://github.com/pydata/xarray/issues/1329 - # https://github.com/euroargodev/argopy/issues/64 - # Here, we just need to return an empty array - TIME = xds["TIME"] - xds = xds.drop_vars("TIME") - xds = xds.where(xds[key] == value, drop=True) - xds["TIME"] = xr.DataArray( - np.empty((len(xds["N_POINTS"]),), dtype="datetime64[ns]"), - dims="N_POINTS", - attrs=TIME.attrs, - ) - xds = xds.set_coords("TIME") - return xds + # Transform data: + for param in parameters: + this = merge_param_with_param_adjusted(this, param, errors=errors) - def ds_split_datamode(xds): - """Create one dataset for each of the data_mode + # Finalise: + this = this[np.sort(this.data_vars)] + this.argo.add_history( + "[%s] real-time and adjusted/delayed variables merged according to their data mode" + % (",".join(parameters)) + ) - Split full dataset into 3 datasets - """ - # Real-time: - argo_r = safe_where_eq(xds, "DATA_MODE", "R") - for v in plist: - vname = v.upper() + "_ADJUSTED" - if vname in argo_r: - argo_r = argo_r.drop_vars(vname) - vname = v.upper() + "_ADJUSTED_QC" - if vname in argo_r: - argo_r = argo_r.drop_vars(vname) - vname = v.upper() + "_ADJUSTED_ERROR" - if vname in argo_r: - argo_r = argo_r.drop_vars(vname) - # Real-time adjusted: - argo_a = safe_where_eq(xds, "DATA_MODE", "A") - for v in plist: - vname = v.upper() - if vname in argo_a: - argo_a = argo_a.drop_vars(vname) - vname = v.upper() + "_QC" - if vname in argo_a: - argo_a = argo_a.drop_vars(vname) - # Delayed mode: - argo_d = safe_where_eq(xds, "DATA_MODE", "D") - - return argo_r, argo_a, argo_d - - def fill_adjusted_nan(this_ds, vname): - """Fill in the adjusted field with the non-adjusted wherever it is NaN - - Ensure to have values even for bad QC data in delayed mode - """ - ii = this_ds.where(np.isnan(this_ds[vname + "_ADJUSTED"]), drop=1)[ - "N_POINTS" - ] - this_ds[vname + "_ADJUSTED"].loc[dict(N_POINTS=ii)] = this_ds[vname].loc[ - dict(N_POINTS=ii) - ] - return this_ds + return this - def merge_arrays(this_argo_r, this_argo_a, this_argo_d, this_vname): - """Merge one variable from 3 DataArrays + def filter_data_mode( + self, # noqa: C901 + dm: Union[str, List[str]] = ["R", "A", "D"], + params: Union[str, List[str]] = "all", + logical: str = "and", + mask: bool = False, + errors: str = "raise", + ): + """Filter measurements according to parameters data mode - Based on xarray merge function with ’no_conflicts’: only values - which are not null in all datasets must be equal. The returned - dataset then contains the combination of all non-null values. + Filter the dataset to keep points where all or some of the parameters are in any of the data mode specified. - Return a xarray.DataArray - """ + This method can return the filtered dataset or the filter mask. - def merge_this(a1, a2, a3): - return xr.merge((xr.merge((a1, a2)), a3)) + Parameters + ---------- + dm: str, List[str], optional, default=[``R``, ``A``, ``D``] + List of data mode values (string) to keep + params: str, List[str], optional, default='all' + List of parameters to apply the filter to. By default, we use all parameters for which a data mode + can be found + logical: str, optional, default='and' + Reduce parameter filters with a logical ``and`` or ``or``. With ``and`` the filter shall be True + if all parameters match the data mode requested, while with ``or`` it will be True for at least one parameter. + mask: bool, optional, default=False + Determine if we should return the filter mask or the filtered dataset + errors: str, optional, default='raise' + If ``raise``, raises a :class:`argopy.errors.InvalidDatasetStructure` error if any of the expected variables is + not found. + If ``ignore``, fails silently and return unmodified dataset. - DA = merge_this( - this_argo_r[this_vname], - this_argo_a[this_vname + "_ADJUSTED"].rename(this_vname), - this_argo_d[this_vname + "_ADJUSTED"].rename(this_vname), - ) - DA_QC = merge_this( - this_argo_r[this_vname + "_QC"], - this_argo_a[this_vname + "_ADJUSTED_QC"].rename(this_vname + "_QC"), - this_argo_d[this_vname + "_ADJUSTED_QC"].rename(this_vname + "_QC"), - ) + Returns + ------- + :class:`xarray.Dataset` - if keep_error: - DA_ERROR = xr.merge( - ( - this_argo_a[this_vname + "_ADJUSTED_ERROR"].rename( - this_vname + "_ERROR" - ), - this_argo_d[this_vname + "_ADJUSTED_ERROR"].rename( - this_vname + "_ERROR" - ), - ) - ) - DA = merge_this(DA, DA_QC, DA_ERROR) - else: - DA = xr.merge((DA, DA_QC)) - return DA + Notes + ----- + - Method compatible with core, deep and BGC datasets + - Can be applied after :meth:`transform_data_mode` - ######### - # filter - ######### - ds = self._obj - if "DATA_MODE" not in ds: - if errors == "raise": - raise InvalidDatasetStructure( - "Method only available for dataset with a 'DATA_MODE' variable " - ) + See Also + -------- + :meth:`transform_data_mode` + + """ + if self._type != "point": + raise InvalidDatasetStructure( + "Method only available to a collection of points" + ) + else: + this = self._obj + + # Make sure we deal with a list of strings: + if not isinstance(dm, list): + dm = to_list(dm) + dm = [str(x).upper() for x in dm] + + if logical not in ["and", "or"]: + raise ValueError("'logical' must be 'and' or 'or'") + + # Determine the list of variables to filter: + params = to_list(params) + if params[0] == "all": + if "DATA_MODE" in this.data_vars: + params = ["PRES", "TEMP"] + if "PSAL" in this.data_vars: + params.append("PSAL") else: - # todo should raise a warning instead ? - return ds - - # Define variables to filter: - possible_list = [ - "PRES", - "TEMP", - "PSAL", - "DOXY", - "CHLA", - "BBP532", - "BBP700", - "DOWNWELLING_PAR", - "DOWN_IRRADIANCE380", - "DOWN_IRRADIANCE412", - "DOWN_IRRADIANCE490", - ] - plist = [p for p in possible_list if p in ds.data_vars] - - # Create one dataset for each of the data_mode: - argo_r, argo_a, argo_d = ds_split_datamode(ds) - - # Fill in the adjusted field with the non-adjusted wherever it is NaN - for v in plist: - argo_d = fill_adjusted_nan(argo_d, v.upper()) - - # Drop QC fields in delayed mode dataset: - for v in plist: - vname = v.upper() - if vname in argo_d: - argo_d = argo_d.drop_vars(vname) - vname = v.upper() + "_QC" - if vname in argo_d: - argo_d = argo_d.drop_vars(vname) - - # Create new arrays with the appropriate variables: - vlist = [merge_arrays(argo_r, argo_a, argo_d, v) for v in plist] - - # Create final dataset by merging all available variables - final = xr.merge(vlist) - - # Merge with all other variables: - other_variables = list( - set([v for v in list(ds.data_vars) if "ADJUSTED" not in v]) - - set(list(final.data_vars)) + params = [ + p.replace("_DATA_MODE", "") + for p in this.data_vars + if "_DATA_MODE" in p + ] + elif params[0] == "core": + params = list_core_parameters() + else: + for p in params: + if p not in this.data_vars: + if errors == "raise": + raise InvalidDatasetStructure( + "Parameter '%s' not found in this dataset" % p + ) + else: + log.debug("Parameter '%s' not found in this dataset" % p) + params.remove(p) + + if len(params) == 0: + this.argo.add_history("Found no variables to select according to DATA_MODE") + return this + + logging.debug( + "filter_data_mode: Filtering dataset to keep points with DATA_MODE in %s for '%s' fields in %s" + % (dm, logical, ",".join(params)) ) - # other_variables.remove('DATA_MODE') # Not necessary anymore - for p in other_variables: - final = xr.merge((final, ds[p])) - final.attrs = ds.attrs - final.argo._add_history("Variables filtered according to DATA_MODE") - final = final[np.sort(final.data_vars)] + # Get a filter mask for each variables: + filter = [] + for param in params: + f = filter_param_by_data_mode(this, param, dm=dm, mask=True) + [filter.append(f) if len(f) > 0 else None] - # Cast data types and add attributes: - final = final.argo.cast_types() + # Reduce dataset: + if len(filter) > 0: + if logical == "and": + filter = np.logical_and.reduce(filter) + else: + filter = np.logical_or.reduce(filter) + + if mask: + # Return mask: + return filter + elif len(filter) > 0: + # Apply mask: + this = this.loc[dict(N_POINTS=filter)] + + # Finalise: + this = this[np.sort(this.data_vars)] + this.argo.add_history( + "[%s] filtered to retain points with data mode in [%s]" + % (",".join(params), ",".join(dm)) + ) - return final + if this.argo.N_POINTS == 0: + log.warning("No data left after DATA_MODE filtering !") + + return this + + else: + this.argo.add_history( + "No data mode found for [%s], no filtering applied" % (",".join(params)) + ) + return this def filter_qc( # noqa: C901 self, QC_list=[1, 2], QC_fields="all", drop=True, mode="all", mask=False ): - """Filter data set according to QC values + """Filter measurements according to QC values - Filter the dataset to keep points where ``all`` or ``any`` of the QC fields has a value in the list of - integer QC flags. + Filter the dataset to keep points where ``all`` or ``any`` of the QC fields has a value in the list + of integer QC flags. This method can return the filtered dataset or the filter mask. + Warnings + -------- + This method does not consider PROFILE QC variable(s). + Parameters ---------- QC_list: list(int) List of QC flag values (integers) to keep QC_fields: 'all' or list(str) - List of QC fields to consider to apply the filter. By default we use all available QC fields + List of QC fields to consider to apply the filter. By default, we use all available QC fields drop: bool Drop values not matching the QC filter, default is True mode: str @@ -878,7 +925,7 @@ def filter_qc( # noqa: C901 ) # log.debug("filter_qc: Filter applied to '%s' of the fields: %s" % (mode, ",".join(QC_fields))) - QC_fields = this[QC_fields] + QC_fields = this[QC_fields] # QC_fields is now a :class:`xr.Dataset` for v in QC_fields.data_vars: QC_fields[v] = QC_fields[v].astype(int) @@ -898,7 +945,13 @@ def filter_qc( # noqa: C901 if not mask: this = this.argo._where(this_mask, drop=drop) - this.argo._add_history("Variables selected according to QC") + this.argo.add_history( + "[%s] filtered to retain points with QC in [%s]" + % ( + ",".join(list(QC_fields.data_vars)), + ",".join([str(qc) for qc in QC_list]), + ) + ) if this.argo.N_POINTS == 0: log.warning("No data left after QC filtering !") return this @@ -968,10 +1021,16 @@ def filter_scalib_pres(self, force: str = "default", inplace: bool = True): # All ADJUSTED variables are removed (not required anymore, avoid confusion with variable content): this = this.drop_vars([v for v in this.data_vars if "ADJUSTED" in v]) else: + if "PRES_ADJUSTED" not in this: + raise InvalidDatasetStructure( + "%s_ADJUSTED not in this dataset. Tip: fetch data in 'expert' mode" + % "PRES" + ) + # In default mode, we just need to do something if PRES_ADJUSTED is different from PRES, meaning # pressure was adjusted: if np.any(this["PRES_ADJUSTED"] == this["PRES"]): # Yes - # We need to recompute salinity with adjusted pressur, so + # We need to recompute salinity with adjusted pressure, so # Compute raw conductivity from raw salinity and raw pressure: cndc = gsw.C_from_SP( this["PSAL"].values, this["TEMP"].values, this["PRES"].values @@ -989,7 +1048,7 @@ def filter_scalib_pres(self, force: str = "default", inplace: bool = True): this = this.drop_vars([v for v in this.data_vars if "ADJUSTED" in v]) # Manage output: - this.argo._add_history("Variables filtered according to OWC methodology") + this.argo.add_history("Variables filtered according to OWC methodology") this = this[np.sort(this.data_vars)] if to_profile: this = this.argo.point2profile() @@ -1004,7 +1063,11 @@ def filter_scalib_pres(self, force: str = "default", inplace: bool = True): def filter_researchmode(self) -> xr.Dataset: """Filter dataset for research user mode - This filter will select only data with QC=1, in delayed mode and with pressure errors smaller than 20db + This filter depends on the dataset: + + - For the ``phy`` dataset (core/deep missions): select delayed mode data with QC=1 and with pressure errors smaller than 20db + - For the ``bgc`` dataset: do nothing, filtering for the ``research`` user mode is implemented in the fetcher facade + Returns ------- @@ -1018,27 +1081,40 @@ def filter_researchmode(self) -> xr.Dataset: to_profile = True this = this.argo.profile2point() - # Apply filter - this = this.argo.filter_data_mode(errors="ignore") - if "DATA_MODE" in this.data_vars: - this = this.where(this["DATA_MODE"] == "D", drop=True) - this = this.argo.filter_qc(QC_list=1) + core_params = list_core_parameters() + if "PSAL" not in this.data_vars and "PSAL_ADJUSTED" not in this.data_vars: + core_params.remove("PSAL") + + # Apply transforms and filters: + this = this.argo.filter_qc(QC_list=1, QC_fields=["POSITION_QC", "TIME_QC"]) + this = this.argo.transform_data_mode(params=core_params) + this = this.argo.filter_data_mode(params=core_params, dm="D") + + this = this.argo.filter_qc( + QC_list=1, QC_fields=["%s_QC" % p for p in core_params] + ) + if ( "PRES_ERROR" in this.data_vars - ): # PRES_ADJUSTED_ERROR was renamed PRES_ERROR by filter_data_mode + ): # PRES_ADJUSTED_ERROR was renamed PRES_ERROR by transform_data_mode this = this.where(this["PRES_ERROR"] < 20, drop=True) + this.argo.add_history( + "[%s] parameters selected for pressure error < 20db" + % (",".join(core_params)) + ) # Manage output: if to_profile: this = this.argo.point2profile() - this.argo._add_history("Variables selected for pressure error < 20db") if this.argo.N_POINTS == 0: log.warning("No data left after Research-mode filtering !") else: this = this.argo.cast_types() return this - def interp_std_levels(self, std_lev: list or np.array, axis: str = "PRES"): + def interp_std_levels( + self, std_lev: list or np.array, axis: str = "PRES" + ) -> xr.Dataset: """Interpolate measurements to standard pressure levels Parameters @@ -1151,7 +1227,7 @@ def interp_std_levels(self, std_lev: list or np.array, axis: str = "PRES"): ds_out = ds_out[np.sort(ds_out.data_vars)] ds_out = ds_out.argo.cast_types() ds_out.attrs = self.attrs # Preserve original attributes - ds_out.argo._add_history("Interpolated on standard %s levels" % axis) + ds_out.argo.add_history("Interpolated on standard %s levels" % axis) # if to_point: # ds_out = ds_out.argo.profile2point() @@ -1166,7 +1242,7 @@ def groupby_pressure_bins( select: str = "deep", squeeze: bool = True, merge: bool = True, - ): + ) -> xr.Dataset: """Group measurements by pressure bins This method can be used to subsample and align an irregular dataset (pressure not being similar in all profiles) @@ -1428,7 +1504,7 @@ def merge_all_matching_levels(this_ds: xr.Dataset) -> xr.Dataset: new_ds = new_ds.argo.cast_types() new_ds = new_ds[np.sort(new_ds.data_vars)] new_ds.attrs = this_dsp.attrs # Preserve original attributes - new_ds.argo._add_history("Sub-sampled and re-aligned on standard bins") + new_ds.argo.add_history("Sub-sampled and re-aligned on standard bins") if merge: new_ds = merge_bin_matching_levels(new_ds) @@ -1624,7 +1700,7 @@ def mid(x): k: this[k] for k in [ "TIME", - " LATITUDE", + "LATITUDE", "LONGITUDE", "PRES", "PRES_ADJUSTED", @@ -2062,7 +2138,7 @@ def list_N_PROF_variables(self, uid=False): return list_1d, dummy_argo_uid def list_WMO_CYC(self): - """Given a dataset, return a list with all possible (PLATFORM_NUMBER, CYCLE_NUMBER) tuple""" + """Return a tuple with all (PLATFORM_NUMBER, CYCLE_NUMBER) in the dataset""" profiles = [] for wmo, grp in self._obj.groupby("PLATFORM_NUMBER"): [profiles.append((wmo, cyc)) for cyc in np.unique(grp["CYCLE_NUMBER"])] diff --git a/ci/requirements/py3.10-all-free.yml b/ci/requirements/py3.10-all-free.yml index 59129715..d5150f76 100644 --- a/ci/requirements/py3.10-all-free.yml +++ b/ci/requirements/py3.10-all-free.yml @@ -19,7 +19,7 @@ dependencies: # EXT.UTIL: - boto3 - gsw - - s3fs + - s3fs > 2023.12.12 - tqdm - zarr diff --git a/ci/requirements/py3.10-all-pinned.yml b/ci/requirements/py3.10-all-pinned.yml index 9a5b7e1c..6983f38b 100644 --- a/ci/requirements/py3.10-all-pinned.yml +++ b/ci/requirements/py3.10-all-pinned.yml @@ -19,7 +19,7 @@ dependencies: # EXT.UTIL: - boto3 = 1.35.22 - gsw = 3.6.19 - - s3fs = 0.4.2 + - s3fs > 2023.12.12 - tqdm = 4.66.5 - zarr = 2.18.3 diff --git a/cli/citests_httpdata_manager b/cli/citests_httpdata_manager index f41e5b46..2f9b72ee 100755 --- a/cli/citests_httpdata_manager +++ b/cli/citests_httpdata_manager @@ -5,7 +5,7 @@ CI Tests data manager Use this script to download all possible tests data to be used by the local http server fixture >>> citests_httpdata_manager --help ->>> citests_httpdata_manager --destinatio +>>> citests_httpdata_manager --destination >>> citests_httpdata_manager -a check @@ -29,13 +29,17 @@ Use this script to download all possible tests data to be used by the local http >>> citests_httpdata_manager -a download -t ea_dataselection >>> citests_httpdata_manager -a download -t ifremer_api >>> citests_httpdata_manager -a download -t github +>>> citests_httpdata_manager -a download -t altim If some downloads (eg erddap) are difficult: ->>> citests_httpdata_manager -t erddap_bgc -a dry ->>> citests_httpdata_manager -t erddap_bgc -a download ->>> citests_httpdata_manager -t erddap_bgc -a check ->>> citests_httpdata_manager -t erddap_bgc -a download +>>> citests_httpdata_manager -t erddap_bgc -a check # Delete files raising errors +>>> citests_httpdata_manager -t erddap_bgc -a download # Try another download +>>> citests_httpdata_manager -t erddap_bgc -a check # Delete files raising errors, then trying again download + +Clean up all data for a fresh start: +>>> citests_httpdata_manager -a clear --refresh + """ @@ -105,6 +109,7 @@ DEFAULT_TARGETS = [ "oops", "nvs", "docs", + "altim", "ea_dataselection", "ifremer_api", "github", @@ -576,33 +581,33 @@ class Lister: cache=True, ) measured = None - mode = "expert" - for params in ["all", "DOXY"]: - fetcher = DataFetcher( - src="erddap", - ds="bgc", - cache=True, - mode=mode, - params=params, - measured=measured, - indexfs=indexfs, - ) - for access_point in requests_seq: - [ - add_to_URI(fetcher.profile(*cfg)) - for cfg in requests_seq[access_point] - if access_point == "profile" - ] - [ - add_to_URI(fetcher.float(cfg)) - for cfg in requests_seq[access_point] - if access_point == "float" - ] - [ - add_to_URI(fetcher.region(cfg)) - for cfg in requests_seq[access_point] - if access_point == "region" - ] + for mode in ['expert', 'standard', 'research']: + for params in ["all", "DOXY"]: + fetcher = DataFetcher( + src="erddap", + ds="bgc", + cache=True, + mode=mode, + params=params, + measured=measured, + indexfs=indexfs, + ) + for access_point in requests_seq: + [ + add_to_URI(fetcher.profile(*cfg)) + for cfg in requests_seq[access_point] + if access_point == "profile" + ] + [ + add_to_URI(fetcher.float(cfg)) + for cfg in requests_seq[access_point] + if access_point == "float" + ] + [ + add_to_URI(fetcher.region(cfg)) + for cfg in requests_seq[access_point] + if access_point == "region" + ] for measured in [None, "all", "DOXY"]: for params in ["all"]: @@ -691,7 +696,7 @@ class Lister: def add_to_URI(facade): [this_URI.commit(self.dfile(uri, "nc")) for uri in facade.uri] - fetcher = DataFetcher(src="gdac", ftp=server, ds="phy", MAX_FILES=100) + fetcher = DataFetcher(src="gdac", gdac=server, ds="phy", MAX_FILES=100) for access_point in requests_seq: [ add_to_URI(fetcher.profile(*cfg)) @@ -729,7 +734,7 @@ class Lister: [this_URI.commit(self.dfile(uri, "nc")) for uri in facade.uri] fetcher = DataFetcher( - src="gdac", ftp=server, ds="bgc", mode="expert", MAX_FILES=100 + src="gdac", gdac=server, ds="bgc", mode="expert", MAX_FILES=100 ) for access_point in requests_seq: [ @@ -1078,8 +1083,8 @@ def consolidate(target=None): print("▶ Content:", data[0:100]) txt = "" while txt.lower() not in ["y", "n"]: - txt = input("Do you confirm to suppress this record [y/n] ? ") - if txt == "y": + txt = input("Do you confirm to suppress this record ? [y]/n") + if txt == "y" or txt == "": n_delete += 1 file_path.unlink() URIs.remove(item) diff --git a/cli/citests_httpdata_manager_altim.json b/cli/citests_httpdata_manager_altim.json new file mode 100644 index 00000000..381c25e9 --- /dev/null +++ b/cli/citests_httpdata_manager_altim.json @@ -0,0 +1,16 @@ +[ + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/2901623.png", + "ext": "png", + "sha": "1d08ef19cbfc76909fba6d03c90c5c9d5c17c68e40e3316e8ac41109eb33fe7b", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/etc/argo-ast9-item13-AltimeterComparison/figures/6901929.png", + "ext": "png", + "sha": "8b31f74aba6fe7f7093a5d0d7ebe17a044472e2982bf59c5ce7157597eb8fba5", + "type": "image/png", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_argovis.json b/cli/citests_httpdata_manager_argovis.json new file mode 100644 index 00000000..e92f8e36 --- /dev/null +++ b/cli/citests_httpdata_manager_argovis.json @@ -0,0 +1,93 @@ +[ + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1901393&data=pressure,temperature,salinity", + "ext": "js", + "sha": "990959c7c9e8d7c4d2530fd09d6bca6fa67c225e677686373fd6d1a2b3229229", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=6902746&data=pressure,temperature,salinity", + "ext": "js", + "sha": "1ac285919474b8e5588c10417786fd71f6465604d7003b5c622d8213d9a7ad29", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_034&data=pressure,temperature,salinity", + "ext": "js", + "sha": "cae04f55309cb1fdcef6cfd3a245b0fc23236b93a0dd87ffa51b57d0d195ae2e", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_001&data=pressure,temperature,salinity", + "ext": "js", + "sha": "4c7f0662242944ffadc6c04a87e9c8312b8070794da337421fb3c5e98ee74067", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?id=6902746_012&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d0f2403e46211a2969858266b1c1ecd594ed0d8771f313a0a21e56be6da17d6a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-01-01T00:00:00Z&endDate=2012-03-01T00:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "9f048fe71f0edf2d136d419d278a72c0b5df167e945c36556c70802c82253264", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-01-01T00:00:00Z&endDate=2012-02-20T16:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "92c42c14ebd6b15156e067be012411ff281071a324ad6d82391c6c7765e8397f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-02-20T16:00:00Z&endDate=2012-04-11T08:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "63ec40c2aac7113ca9ac4ca572447aafee0c11bce17c5aa5599857f086180677", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?data=pressure,temperature,salinity&box=%5B%5B-70,35.0%5D,%5B-65,40.0%5D%5D&startDate=2012-04-11T08:00:00Z&endDate=2012-06-01T00:00:00Z&presRange=0,10.0", + "ext": "js", + "sha": "8ff0d7680d72c8cd969ecea6fcb628f481d5ffa98531e9e1f462a26831d7d0fd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900468&data=pressure,temperature,salinity", + "ext": "js", + "sha": "eb40b40373f9e49d50e1a9de3d2f53bf71444fd1f0ef9adb41270c05491a96d2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900117&data=pressure,temperature,salinity", + "ext": "js", + "sha": "328cecb3db6cbdae1a48f3598045c4709bd1cc2b71b778310336928e6f411ccd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/argo?platform=1900386&data=pressure,temperature,salinity", + "ext": "js", + "sha": "d4d195e9e6adf1d81a188a454638606d515fb17540993ff403b805abbfecf9a2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://argovis-api.colorado.edu/ping", + "ext": "json", + "sha": "f0082673deeae58d99e57f1fd92f505fc966466aff4d22c6046d57ead6a52bfa", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_docs.json b/cli/citests_httpdata_manager_docs.json new file mode 100644 index 00000000..520c43b3 --- /dev/null +++ b/cli/citests_httpdata_manager_docs.json @@ -0,0 +1,163 @@ +[ + { + "uri": "https://dx.doi.org/10.13155/29825", + "ext": "html", + "sha": "ba3563da17c45d0cf54c76c6f064cd5f9349f1a27932706df6adb0faeec63777", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/33951", + "ext": "html", + "sha": "153b4d3ac7f427e3bbeea9ec3b0a93c487fda47873f47ec33452fb61ff1ab605", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46542", + "ext": "html", + "sha": "a47129e3a128f0899792c7f4055c73c75d4f58a921d5f9479220140547c85d01", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/40879", + "ext": "html", + "sha": "7e774d89fb0dd9623910539237a7e48dabb128fb47311e188e6bc559530fb4a4", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/35385", + "ext": "html", + "sha": "86c30bc8cd0e4699271da5f8145e1ad2a4f92e5784e80c0e83ced4ff493f8ec1", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/84370", + "ext": "html", + "sha": "81a689ce24c6900d604fbd1cf829be8d590b779896b398aa78fb83fe1d040026", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/62466", + "ext": "html", + "sha": "bf5c13c46e58262a417766cb7ee83528f5e245de853d4d210f0923cdfc8d88bb", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/41151", + "ext": "html", + "sha": "dce5c0b88dda8a2d374c20dd50fc9a6c768a56731776c1d5c60dde49707b324b", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/29824", + "ext": "html", + "sha": "980302fa35808db34ea92fbb30f5b43df4915037e48b8f6d6e8872dfdc17c340", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/78994", + "ext": "html", + "sha": "ff86679c33b92e1e89b4ba5db9006def8d8e89e4c25f9616ecb1e7a2229b1aa8", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39795", + "ext": "html", + "sha": "cafd6dd329c2d1adadf5dc752f4c98ef4e1a2f463d0f3ac246820160263680e9", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39459", + "ext": "html", + "sha": "2e1d8835d1da66e42d095c30534b23959d1b22fda466b397f285025f138ec229", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/39468", + "ext": "html", + "sha": "75e19ebe22535a74e91dcc5855a078084f74b12e6b214b4464b9ec2389381f7f", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/47998", + "ext": "html", + "sha": "577127670305b7a06ab3ea77e5ac5e2aa693fe288e4eb711c181347f94725a7d", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/54541", + "ext": "html", + "sha": "6a313102a5bd801690824452bd4fdee05e87e890c670214355cfc78932ff82b7", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46121", + "ext": "html", + "sha": "9f6f876163819e670f5287f58a01be659f8b6a3a48048b9fb3c745757c881666", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/51541", + "ext": "html", + "sha": "13ede145ffeb1deaa7b445a4c094da587e03eb6bb9aac7bb95f3a567a56ef45c", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/57195", + "ext": "html", + "sha": "442c404a3a8c39fdb023df1022c3ea3d44aa19ad4f5bf26563f9d55a6ab9fe53", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46120", + "ext": "html", + "sha": "54178ef5aab2a9dcd6cf5e81e30b09cd7f5d45a492e65bf516a0a4102408dd1a", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/52154", + "ext": "html", + "sha": "210ae117281f44939303e772d03b83f3280f86523ddff392e89ae66d5e8f3fd5", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/55637", + "ext": "html", + "sha": "941d81ad6852945dc830a63af6bbca89806f53c2b1cbf93556c85c42780d9588", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/46202", + "ext": "html", + "sha": "97351132f7d20857963c0ad559c3c1c0099da3f491e2e37b42fc2f4c41af29d9", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dx.doi.org/10.13155/97828", + "ext": "html", + "sha": "671de7781d554d612185553c0fd1c787e6fae0ad69d903030a8ea9d51cd6badf", + "type": "text/html", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ea_dataselection.json b/cli/citests_httpdata_manager_ea_dataselection.json new file mode 100644 index 00000000..7deb1507 --- /dev/null +++ b/cli/citests_httpdata_manager_ea_dataselection.json @@ -0,0 +1,30 @@ +[ + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6901929", + "ext": "json", + "sha": "86fefaa3fd8436f967d9d226765404d7e2542a72b8446ba802211eb9f75def7f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/5904797", + "ext": "json", + "sha": "28aa9ecc6cc62f53304aabc5d4514cd7607d986887509485bd0ffe2806f3d1a2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/6902755", + "ext": "json", + "sha": "237ec57996b0c89599212910ad056d4977d2391cfd4f6739b5b864450448d0f7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://dataselection.euro-argo.eu/api/trajectory/2901623", + "ext": "json", + "sha": "d410e6e4cd9b1997eeca96d6c9d63101af097403e0b2d3ed363bc9779af7bf58", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_erddap.json b/cli/citests_httpdata_manager_erddap.json new file mode 100644 index 00000000..cf053e25 --- /dev/null +++ b/cli/citests_httpdata_manager_erddap.json @@ -0,0 +1,303 @@ +[ + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9b628fdfa706e7fefd0751123ff0608e5c20a57e62fdec8107d46b0ed6835566", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "66fa6f9cd55b68bdfbc2f05de41d8ca12fbbc6521a7879b8c16ac9dfc6323686", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9dda67ac1e3fca6a147791645bda5c5cbf0b4db4767be683ef94830cecedac68", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "48fe8a21fd44dcd9e37805b955d7215f4969f8d686eaf773cccb162412a00c4c", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a01ebcc88c67402bbed8ca2ca2a00984bf22eae43e284c46323b1784109b10a5", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "17943e904712471c5ba2c9dff54308b93d8a79559bafb386c1eaa71b754736a1", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6918ebb21678ed4afaea25795956bcff02c9b8eb4680c21320e42a033eb449d8", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "4c0e422543c33345c935a18fd37154565b7e02a279c23da382f1b8318187c34a", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "7c3a19176d6b988bb1eaf062c057a5610b4263732b6cd2c3638f1d2bf847f510", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "3795115e1bc0e253b8ef101a54a0d9c1b31ebfb22447701720b5ddba56e67eb7", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6659da36f0ec790950cc035377a6aba8e90ed1db2c770b582bfbc95bee830bff", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres>=0&pres<=100.0&time>=1072915200.0&time<=1075507200.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "936a40ab98e5e729e241006691ddeb914f14e5601e3e59b0513e3ea8a3e32295", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "32512780d58ca0df4b7a77302bee300c6538b4d5edf2523e6541c028782a46e4", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "24253f9c7f10474895261e16d33abb0aff8d29bb21d2a2b5980bc0f455a326d9", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "1bdabcd873e5df4cc55467bcb9eda0323f3b1181d20a75281cb08118ec4a698d", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1901393|6902746\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "c9d0dfdf08ba58c96a7048e66a941090516edf2cc4c4823359ce8db2b1a2a1ac", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "3a6da1b027346db6f51ff448646b5f723fbc03385de68fdd4365909c12171fe1", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "38afb063c3e76deda3f018e527c0d657fb61d562ae06280a4d135ef77dcf8517", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f48857083d3f8a30db7b7c35b541db5c39035280646eb47af8ba65dbb587e78a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"6902746\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "aff6cb12376bd9c0dd08ce1e157e61a914264daeccdd30916778dd029e52093b", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "9220cb543038c779fc346c06f2868449ce3d201be3b7c24e0d4aa4c01273a9a4", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "a3a5b8ce7905ecd25d2b89ebd3899a09ec93d44c0abcfaa341b810177e56a367", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&time>=1072915200.0&time<=1075507200.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f3bc9c5a878b1e190a86e4326855f6e0e6cb44fe3d46836c31eb2ac9812a7668", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-20&longitude<=-16.0&latitude>=0&latitude<=1&pres_adjusted>=0&pres_adjusted<=100.0&time>=1072915200.0&time<=1075507200.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "5c3b9c5a5376f2f49bf2146c091ca10baf498c826c7ab908f258ac2f85ebe505", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "0f97280439abec15c50d6e73f8b18cc52ce57a833f0091ee02cf30830423a8f0", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "42bf3189d45e09b853c94262ca6a1e080b82c9ed02a20e7e7ae72c9307d4274e", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.nc?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3b78450daf9c2a79c7da5a4ebcbf98025f7851c3eca1c4cf4e633d8a92df44e5", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-reference.ncHeader?cycle_number,latitude,longitude,platform_number,pres,psal,ptmp,temp,time&longitude>=-25&longitude<=-10&latitude>=36&latitude<=40&pres>=0&pres<=10.0&time>=1514764800.0&time<=1546300800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "03f7d373c2a0e9efad57bedeb468d1c54f2b83a6dfad06b7e5cef1d9c05b5c61", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5ba4bf7f88a6ebed02d3a0a34398a2a5ba0fe8cae65e83d4da02820a16875e52", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "c0770be1ac57c131636d8bc05976b1d135ee0e787671a64b4019fd1505710c20", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "d0969db4b577d2c36a23af45e9fa73125ca91961bc440498342e16a6e3dae47a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8d7b59726fd07fca3f55889fe8666cf958829e48e6bfc544baf9fabf6ca66844", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "6a83503d6022c7f803d9c5ff544f7c114aa79fb533176aee1a71479f2d97a20a", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres>=0.0&pres<=20.0&time>=1185926400.0&time<=1188604800.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "819c42622a8205a721de4444b18fe6b091bdd2d4022a9a67341267bad92018a1", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "47f8daa8ebd57ff95a73d2e5fdc9cdcdc70bcbfed16b113d196b6a735752fcfc", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&platform_number=~\"1900468|1900117|1900386\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2ec85ca4e982af9b25a0b5d4f891e9b2ea078e3c8d688d1c0d90facb932c5cd8", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "a8eb77f4c5868560853170afecb82fd5f0345d0cf96dc688c5ce8bd6d20fafc3", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "470b660b087c94de3ec43b56cb18e4ac54e992ea1b0b57f52d8f0423fac53011", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.nc?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&time>=1185926400.0&time<=1188604800.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "06cac898c9fffa0176c4e844c690fbd29b75242fe0e1412ba991085e97dd1298", + "type": "application/x-netcdf", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats.ncHeader?config_mission_number,cycle_number,data_mode,direction,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc,vertical_sampling_scheme&longitude>=-60&longitude<=-55&latitude>=40.0&latitude<=45.0&pres_adjusted>=0.0&pres_adjusted<=20.0&time>=1185926400.0&time<=1188604800.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "c3f134a69f38f36307f2db7ff94f9cc2dd48d323a614d9b32032eb55e7ce84aa", + "type": "text/plain", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", + "ext": "json", + "sha": "f912c39019f215a08583c457d9e71d5fb594429e38c31abec934454d397d5f8e", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-reference/index.json", + "ext": "json", + "sha": "f4bdba7f58e6710128352ffa25c4656e80198c3c8aa12732ec50031a987e5a1d", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/index.json", + "ext": "json", + "sha": "3390b51587135ad525d8886aaaac3ed55587b5e4a76004671fc568166beb5670", + "type": "application/json", + "ts": "2024-09-24 08:51:58" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_erddap_bgc.json b/cli/citests_httpdata_manager_erddap_bgc.json new file mode 100644 index 00000000..a76bdc7e --- /dev/null +++ b/cli/citests_httpdata_manager_erddap_bgc.json @@ -0,0 +1,548 @@ +[ + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "c5a369a1b1dc6fee88f431144bec5704fc3aca3f22e00963d77c75183018e718", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:52" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "cf9d23834fa5d1959c13788184086c40f66795ac295533f39b61bc9a93f6a8f7", + "type": "text/plain", + "ts": "2024-09-25 05:47:52" + }, + { + "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", + "ext": "gz", + "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", + "type": "application/x-gzip", + "ts": "2024-09-25 05:47:52" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5150c8a2024690637cdd9498f9e9dddeda167d8aaf286bb0a256245025d40923", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:53" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "057f3062b1aa30d31b04f3cf028f5f8a14ba826787aab9eca371f20f39b4c22b", + "type": "text/plain", + "ts": "2024-09-25 05:47:53" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5b98ae6601f522b8df882d58a10e562a6a28c7508b24204828918ccc4ca29d58", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:55" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "c9ad15c94f3e8d714e3c0423bc8611423c543ad02af12934e455b2f59e9dc543", + "type": "text/plain", + "ts": "2024-09-25 05:47:55" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "903baa969cf055fca46818948dcbac9ccc02642aea747769d2bad692e1c04953", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:55" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "b50e6ad8b4eedb373b17a1bd3eb668d481efe190762b91dbe1e7041134abf167", + "type": "text/plain", + "ts": "2024-09-25 05:47:55" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "888487608637748a579126f9c9d20cb3e1ddd5f489271afb7daedddb0351b8fc", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8f371321f042787dcf9ccef1a90a4c1c709e705d16a1e3a940fc89997fc838a2", + "type": "text/plain", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "33e947c1d24507fd7f92858e2716362f171d6867398fc893ce46f1cfa8a41973", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d6e43fb877b88d33b02763432ee4514fdd21f8feaaa234b3e4351b8cf00c7a9c", + "type": "text/plain", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "547fa82ac64b5bc91813230a48416ef6bb92011e4c11be22a93d7dd589d19822", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "0dff09b865c98d376e650f80954c0d8de288d51dd030262b7085db0eab41a3eb", + "type": "text/plain", + "ts": "2024-09-25 05:47:56" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3b10495d5b70484c9eda7a5572af79fceb3ba19166e3733b9638f578e7803e89", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "918d01b8821b8c7ed4cf8381f92997155c7c659bae31d4114aa848c0764c5636", + "type": "text/plain", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "0a9892220be0aee7ef6dfd747a8139d6634f89f95e4e60ffaf8b2834a8a4e03c", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "b387b63261a185e98eca228dcd8019b15ada0a5524f6cc160c7a158c98641ac6", + "type": "text/plain", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "256df2864499d7cd270eb5e126e076b13f2a48403f72b31c45590a0f6b1618d9", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "163a1c42f872d1a3d10a795d581fa8e676d2698a8ef9135bde278cdbb05612d9", + "type": "text/plain", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "2636d64e2d00870fb7375e89b9528bd8115afb30498f44dcaddd50601b14bdf1", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "4abf41b2d9b1474c4bfe0f608b198b76da1abf4b92d014a37f51ebc28d13a353", + "type": "text/plain", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a7dfc250e257f32e87de2fda119f7aa46da19cf75d44d97fc6f0043a3b63c5b9", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "d852c53da273d758191fabae43d1643af4dff383f0adb91e49297cab388d64d2", + "type": "text/plain", + "ts": "2024-09-25 05:47:57" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "a75f8e8ffc8542ce9ebce8e09b29e1d6b2cf3993ff812726c5fcf7452fa999d4", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:47:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904240\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "19979ec39369bdbec2168b3509d8ce1be0802f58df94bae47aabf79374941769", + "type": "text/plain", + "ts": "2024-09-25 05:47:59" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "3404fc17d902df206ea9c9cb7adac78b68ae3bf3b1473620d6247367f1d9c423", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&platform_number=~\"6904241\"&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "73e262cd948072bc9b67846cdf5b919aec54feffa08e2cdacfd2144bac706864", + "type": "text/plain", + "ts": "2024-09-25 05:48:00" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "5bef8b392db7b081c587402156770890550eba0ffa155c66a9566a7326a06ede", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "8b6ccd8c2c1bbed33b70d9ef5921ef18bb7d6518c326bde0df404f5e1b4a77f7", + "type": "text/plain", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "d14e2f7fbc74cb9c4d5e9fc2dcaf5ffeb25266ff6db8647abc930d1ddd052a2a", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "33499f0838e0d2c8d423e8610590d7e4f9515877454c7fe20dfaf7f70926b0d9", + "type": "text/plain", + "ts": "2024-09-25 05:48:02" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "f860cf0afde256266830eac4f99bee7fd5c02ea642f28bee789aae059c3e54e8", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:03" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "ba00ca02d6838cd1acf58922b21a12e39319fbaff877b811419d9d21a98385f2", + "type": "text/plain", + "ts": "2024-09-25 05:48:03" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "a4158168493b83985cd50812fc3830d2bc634a23d3e88773b7df57971786f8cb", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:04" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2191bb2c378531f7490e89fd3026828c65f3be71ae9018514bf11e5aeab370d0", + "type": "text/plain", + "ts": "2024-09-25 05:48:04" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "891bc99f0d7b049195f7f42ef0c724e08bd15329b02c99abd794add57265e6c3", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "dcb0b1d7fcb97cca8a1c3ed4d0f97f449d88d6988e5e8b7549b152f4719a3a68", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "893b1c1d47463b38969ea18011112690c6f98cd189d3b1bc500bef7ffe3dda65", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"34\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "03a4f252ca48f9c683fbb0a3059d788dbd00c9f99c58a3927bd00076bc8febb0", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "1cd3f4906c02ed6f576989fdaa1b742fc607f453caac8d3a5af387603003f0fe", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"12|13\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "3131b8e4f2ab0957731e5968a337f87d6905abb64d363369d6c5169a85ce1e47", + "type": "text/plain", + "ts": "2024-09-25 05:48:06" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "47c8abcb9ad9e1d857e0bbc000f36ba5150d21111cf40ef7f0e0127a5779567e", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"5903248\"&cycle_number=~\"1|12\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "7b0efd4231f4ac6ff7c5a68a35252c3589448e44f774d044d0f8ad142c056388", + "type": "text/plain", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "06e127414eaa6b32d9e6fcb381fa4e3c13cd245adeffbbe151c0430df748d267", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "33acf641a9eba548ad0d2b929d92f3f61beb2aec7cf942be1d1f75c5026365a8", + "type": "text/plain", + "ts": "2024-09-25 05:48:07" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "5557b333ce112d39056a955cfa6ddad2e2a0256b4fa351551eddd648543ef4e5", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,config_mission_number,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cycle_number,direction,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "92f8242645b957569610e01ac67f756166ff1d2948eac5eee454e2034085cfc7", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "edbe43a0013d0aca347c1b337b2adc097f902c329a4e6150472b7e0fe22dd388", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904240\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "206dc5d4e36abfa7cab56b1bc7b615cad696d02702faef0e1bdb024248817dbe", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "bd0945a7bf7f06db4f3bbfecdfc2c299b9b0b439187633803b866cc98495fbf7", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&platform_number=~\"6904241\"&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "b3773588673ea9df44061f87f638145417061f4396e7fa6d1bd93dbbcc443910", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "18666bf00f9be91b8426d41cb086fc32a88c1c0c6316d52bcd316f53657d51e3", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "90aba90b541e593ff265ed3bef52805141f33315e8c37617549178d333edbe82", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "nc", + "sha": "09e6dbede3a159faaf33ea3f4be9cff3e25352c4e65d73499e6d0fffcc0b1823", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,latitude,longitude,platform_number,position_qc,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres_adjusted>=0&pres_adjusted<=10&time>=1651363200.0&time<=1688169600.0&pres_adjusted!=NaN&temp_adjusted!=NaN&psal_adjusted!=NaN&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres_adjusted\")", + "ext": "ncHeader", + "sha": "2b3e5d4f7c0b5ee442dbf7e621e42b5762a51fb0bb2307e90b67c11f64c5297a", + "type": "text/plain", + "ts": "2024-09-25 05:48:08" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "f6990bb0022179dc69dfd490237af3b90f3b1dd325eee7a37e1095346af72945", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "3a521d6229d9cee668a1fdd89fcf803fcfae2b9d18e6b9c93b4f46f2f278629b", + "type": "text/plain", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "ff77518bab21f6d8bd6f9450f69572e6793279803090963a3552629e4b180d7b", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "ef557b97d59455c59dd73f80a9e76136b5f2347f220a18344545bbfb9c9b8beb", + "type": "text/plain", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "9f173587de223b11b550709a78a9876eb4bc1ba9616cd046a4647b704a7e84ae", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "2d5339f3b2caaf91525188c2d13186f85f9557b06a994a6f808bd2c5335c1505", + "type": "text/plain", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "cdbcc470470af9797f94119181c2b3df35d3e6effb3ef14b97b3f68438387703", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "22586dfd77c2728828c99bf2dec530c63ee34295ca97dfff55ffaf689e2ca228", + "type": "text/plain", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "02c95ca7d2eb2f17554615839c5937afc242e589dce4d7b615856df577d3d389", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?bbp700,bbp700_adjusted,bbp700_adjusted_error,bbp700_adjusted_qc,bbp700_qc,cdom,cdom_adjusted,cdom_adjusted_error,cdom_adjusted_qc,cdom_qc,chla,chla_adjusted,chla_adjusted_error,chla_adjusted_qc,chla_qc,config_mission_number,cp660,cp660_adjusted,cp660_adjusted_error,cp660_adjusted_qc,cp660_qc,cycle_number,direction,down_irradiance380,down_irradiance380_adjusted,down_irradiance380_adjusted_error,down_irradiance380_adjusted_qc,down_irradiance380_qc,down_irradiance412,down_irradiance412_adjusted,down_irradiance412_adjusted_error,down_irradiance412_adjusted_qc,down_irradiance412_qc,down_irradiance490,down_irradiance490_adjusted,down_irradiance490_adjusted_error,down_irradiance490_adjusted_qc,down_irradiance490_qc,downwelling_par,downwelling_par_adjusted,downwelling_par_adjusted_error,downwelling_par_adjusted_qc,downwelling_par_qc,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,nitrate,nitrate_adjusted,nitrate_adjusted_error,nitrate_adjusted_qc,nitrate_qc,ph_in_situ_total,ph_in_situ_total_adjusted,ph_in_situ_total_adjusted_error,ph_in_situ_total_adjusted_qc,ph_in_situ_total_qc,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "e5b2e64e8bdc6dd5079c652e75b3ba871c8aa21ed2787619bc42317b4a2a9507", + "type": "text/plain", + "ts": "2024-09-25 05:48:32" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "df16c31e8ba4856676441c17ef6738c6fb34459a3a89511a9ad31369f71c0730", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1651363200.0&time<=1658724480.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "90ad7404e541b019eab281db18b6dce6dfb519db7513eeb27c59c1e1cb3a3509", + "type": "text/plain", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "eb37c7699374ae67a89d0e6de661bed842970de78085d8ce372ead9fca0cbd5a", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1658724480.0&time<=1666085760.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "7cb9b350c04b2e50a6a8845ed95d90cf69ab8d41bae7dafcc91fcb1ed52505e6", + "type": "text/plain", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "edb8b68fb8c15865fa88fcb3c6fda023df61947f681f2c7825ccd1decccebe16", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1666085760.0&time<=1673447040.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "17a9ded7322a3fda5ae7b0ed858a472e191a4d65d4425cb88f82e9fb3d847ad6", + "type": "text/plain", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "28f0d591f5dca848ac0c17ca8d1d4813f85f130b6aeec802ff410198b8b428b9", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1673447040.0&time<=1680808320.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "9932e6f6dcf682694b7577749050c91940946b8f2adea75046d31684bfd067e9", + "type": "text/plain", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.nc?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "nc", + "sha": "97dd965aa0b685f35f4ff29505902e9bebd8e9c13addfdae96be246eceaf205a", + "type": "application/x-netcdf", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/tabledap/ArgoFloats-synthetic-BGC.ncHeader?config_mission_number,cycle_number,direction,doxy,doxy_adjusted,doxy_adjusted_error,doxy_adjusted_qc,doxy_qc,latitude,longitude,platform_number,position_qc,pres,pres_adjusted,pres_adjusted_error,pres_adjusted_qc,pres_qc,psal,psal_adjusted,psal_adjusted_error,psal_adjusted_qc,psal_qc,temp,temp_adjusted,temp_adjusted_error,temp_adjusted_qc,temp_qc,time,time_qc&longitude>=-55&longitude<=-47&latitude>=55&latitude<=57&pres>=0&pres<=10&time>=1680808320.0&time<=1688169600.0&latitude!=NaN&longitude!=NaN&distinct()&orderBy(\"time,pres\")", + "ext": "ncHeader", + "sha": "22ff01487a0390094ea6b3d9957f3ccbbbe83968e2b18bd31852eb88fb394230", + "type": "text/plain", + "ts": "2024-09-25 05:48:33" + }, + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", + "ext": "json", + "sha": "39355008875080930830ce994ccec162ba924d3570b3e703acb32bfb2fe0f009", + "type": "application/json", + "ts": "2024-09-25 05:48:33" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_github.json b/cli/citests_httpdata_manager_github.json new file mode 100644 index 00000000..7c0db19d --- /dev/null +++ b/cli/citests_httpdata_manager_github.json @@ -0,0 +1,30 @@ +[ + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/5900865_prof.nc", + "ext": "nc", + "sha": "dff6f7de714ad05a4d6c09ef07377c6263bfe54fa99f8d1dc0b5313e3b909316", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/ar_index_global_prof.txt", + "ext": "txt", + "sha": "332692d1bf34e66520aac05841ef45a1fdb1eb0bacb96dcecaf1f963d9c4e34f", + "type": "text/plain", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_001.nc", + "ext": "nc", + "sha": "9155e85ef1b48c01d44a24dd080959d7464f698e005269a94acd20beb46a0b1a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://github.com/euroargodev/argopy-data/raw/master/ftp/dac/csiro/5900865/profiles/D5900865_002.nc", + "ext": "nc", + "sha": "c65eb1888699965bcda9f215fccac07b11d5f86cd9cdf798c97c0fa39054e090", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ifremer_api.json b/cli/citests_httpdata_manager_ifremer_api.json new file mode 100644 index 00000000..85d64de6 --- /dev/null +++ b/cli/citests_httpdata_manager_ifremer_api.json @@ -0,0 +1,16 @@ +[ + { + "uri": "https://api.ifremer.fr/argopy/data/ARGO-FULL.json", + "ext": "json", + "sha": "5cf80c9330a7befe09246770236bfd5f5147a2a0ccfd2e29ebdfba2609a197ad", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://api.ifremer.fr/argopy/data/ARGO-BGC.json", + "ext": "json", + "sha": "3c0d46e0e115812606b9796f2d51a57b2ef226bd4c046afb67d2dc617c0ee6dd", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ifremer_gdac.json b/cli/citests_httpdata_manager_ifremer_gdac.json new file mode 100644 index 00000000..ec81fe07 --- /dev/null +++ b/cli/citests_httpdata_manager_ifremer_gdac.json @@ -0,0 +1,282 @@ +[ + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/13857_prof.nc", + "ext": "nc", + "sha": "5baab8b80a58383f9f2a36c5f51282d3d5b673e9f2e3904c3dbb9ff600ceb230", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:45" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_090.nc", + "ext": "nc", + "sha": "61826c0b5eaa64c194edf932dad4a3588b4b557089ce8b045e3a327e22111227", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:48" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/13858_prof.nc", + "ext": "nc", + "sha": "729d60a7d1b546ab122bcd8f2f88550652bd0a92de69c3b528fcd45b2b2707e6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900564/3900564_prof.nc", + "ext": "nc", + "sha": "148da521a45d125dd127860a552fd231b10fe1fbf85c0b491c8d732a6ade0191", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900561/1900561_prof.nc", + "ext": "nc", + "sha": "465e4dda08985393838c626c8e77396b9fe39a06b993467dd2d442a24c472d7b", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900783/1900783_prof.nc", + "ext": "nc", + "sha": "20cbe5a0eed5d67a198d8f87770d554409deabcb79acfcc63c900443812c379a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/39008/39008_prof.nc", + "ext": "nc", + "sha": "98bab99907e1e8f80a4158a0b171b0187661247ba1760d7b66c6a7e5392bf225", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902401/1902401_prof.nc", + "ext": "nc", + "sha": "40fd4997660cf5b89a50139c7b931810371acb774849aa4f4c170669a1a3f8a5", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901692/1901692_prof.nc", + "ext": "nc", + "sha": "125fbde9f271588262a6abce052f563406e76fabc97154c4b4592d256c69b200", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901462/1901462_prof.nc", + "ext": "nc", + "sha": "2ae6fc97206e120dde68592ec863c874fc7cff132749bbbdf6c48865c60d24d5", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900500/1900500_prof.nc", + "ext": "nc", + "sha": "8953e390e5d3c15c828b78237fcc2e248e2a86fe03b6282a7e848325d3ee3cb6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/13859_prof.nc", + "ext": "nc", + "sha": "7424d25381dab63d8bf90539fcd38dbd8e2618ddb25552c1b47be04aee3eb47f", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901589/1901589_prof.nc", + "ext": "nc", + "sha": "34bdcd0292644dec5925b7d89a311a9021f11a0e35ac5d0889aae181be9a76b6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901685/1901685_prof.nc", + "ext": "nc", + "sha": "705387652d52a694d070c7c18e1616530e2544f7539d6d5e210332d86cfe23f9", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1900818/1900818_prof.nc", + "ext": "nc", + "sha": "769ba7376a0f14aa14f310bf323ecea1885da9113b36a1a8bc3a5508c0eb5a00", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900706/3900706_prof.nc", + "ext": "nc", + "sha": "87b2352dbddbca447627615252066c642bb2f5b1d16c59a64e226eeffe65914d", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901709/1901709_prof.nc", + "ext": "nc", + "sha": "9361751935dfa1ca2d0bd61eec17c517b9d7f47cc01e7c34dcc55b67addeae19", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901450/1901450_prof.nc", + "ext": "nc", + "sha": "661a469dfbbd13a6c296ab4bf13d142f073cb2699998ed8575f4f7b6e796c996", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901826/1901826_prof.nc", + "ext": "nc", + "sha": "1e8980bc79037a776ceb21fde05c9ac45420e41013a1851d308666552e8ce8ee", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902414/1902414_prof.nc", + "ext": "nc", + "sha": "37b4fe616c2f98f48939f6dd7e69b4d52ebb965d9b5fddd9091c0898b4acd73a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901820/1901820_prof.nc", + "ext": "nc", + "sha": "3c16609cd4c11dda82abcb41f3a501ddc15c502e80507c41417fa61daa712b51", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3901242/3901242_prof.nc", + "ext": "nc", + "sha": "44cd4faa933a86d8833096fc987432a596715c33db7b44cdd140d9b8b5308295", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902072/1902072_prof.nc", + "ext": "nc", + "sha": "62f05073f9219dce4491a0d29e730c2f71afbf5f17b83cd06dfaa5b0da08ece6", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902436/1902436_prof.nc", + "ext": "nc", + "sha": "60066a9c43e4103277e70c81607c6a78e3d3db53dd7b65c40f519ae457218302", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901467/1901467_prof.nc", + "ext": "nc", + "sha": "2dc90517bda298b776b21e5f2510769216c153e4fd1b6b7ade4c9a1803aec902", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901806/1901806_prof.nc", + "ext": "nc", + "sha": "700ae50b274601f3a221689ea7b3b76d46e5035832ecd6d1fdf341edfe27a597", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902415/1902415_prof.nc", + "ext": "nc", + "sha": "28a3d6682b41b12fa25eac5ca11b15de5abcb970ee991efe14d51712dd90405f", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900296/3900296_prof.nc", + "ext": "nc", + "sha": "2c26380148e45b76e7f5d8867e84405be9e5f4f1a5211e89abb36b7e8ce7e859", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902070/1902070_prof.nc", + "ext": "nc", + "sha": "d091612ad7c1f8187ba25eefc9f68a303c39646626c425c891362909cf47bcc8", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/3900707/3900707_prof.nc", + "ext": "nc", + "sha": "1d8ba196cf4c82844027ad17622e31cd214cecb1881015341f9c90103bbb2a2a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1902400/1902400_prof.nc", + "ext": "nc", + "sha": "e60de23c325823b63bad40d6bd763fd3f3c7408a08962f76b08f49bdba816448", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901458/1901458_prof.nc", + "ext": "nc", + "sha": "01b049d8bfb0a4e104e59f3e084e763c4a0e78606476144ec3657abe695a2f5e", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/1901449/1901449_prof.nc", + "ext": "nc", + "sha": "99b96aa829f6683cb035a11eb1628e5d03f9168ef52e964ed8a3dccd67390054", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:51" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_001.nc", + "ext": "nc", + "sha": "4ff9d2d81bf838cd912985cc9e5d4763f2b6860b4334fa352237e21517d93611", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_002.nc", + "ext": "nc", + "sha": "19dae4d3c5269c14618df62f1150eeda1536347047db31a8c19ca01c5a1b408a", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13857/profiles/R13857_003.nc", + "ext": "nc", + "sha": "dd5a8ab1c038f6c6093360f16b874617f2da4fb6beb22ff4a68449956a2c9fba", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13858/profiles/R13858_004.nc", + "ext": "nc", + "sha": "5974bc7ae4645de10b254671f22517dea9b886a8d07daa633740d4be56654848", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/aoml/13859/profiles/R13859_001.nc", + "ext": "nc", + "sha": "4d8d211924c073f7ce74fd9ffc6319698224643bb5b55e6aed016534033bf122", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/ar_index_global_prof.txt.gz", + "ext": "gz", + "sha": "05c1dd2e89c619af221fa155a81c3cd4a262131187f8eb3a8eda266ae2706d53", + "type": "application/x-gzip", + "ts": "2024-09-23 13:41:54" + }, + { + "uri": "https://data-argo.ifremer.fr/dac", + "ext": "html", + "sha": "c054d15eec83bae19b8604a691a5066af9b97a4ce90d5b72676f732c5d8b636d", + "type": "text/html", + "ts": "2024-09-23 13:41:54" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_ifremer_gdac_bgc.json b/cli/citests_httpdata_manager_ifremer_gdac_bgc.json new file mode 100644 index 00000000..6c3e74d4 --- /dev/null +++ b/cli/citests_httpdata_manager_ifremer_gdac_bgc.json @@ -0,0 +1,44 @@ +[ + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/5904989_Sprof.nc", + "ext": "nc", + "sha": "edb7631698039a5ff0e389d6791b07800dc004058e8aa91cf6d38bf1769f2b83", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:55" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/3902131/3902131_Sprof.nc", + "ext": "nc", + "sha": "9ac344b346e765c2fd099bdc175e2473b69457657f13e0c145883d624c42125b", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:55" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/6903247/6903247_Sprof.nc", + "ext": "nc", + "sha": "5eaf037dd59f0db0e55a3cf7371f4e2550d73dc6a1df732d8d489fc8eb73a485", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/dac/coriolis/5904989/profiles/SD5904989_012.nc", + "ext": "nc", + "sha": "41d59c8d3eb1cea1c97953a93242fc58d94e52a0c5e4d08f0e6b4ef480b5d825", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/argo_bio-profile_index.txt.gz", + "ext": "gz", + "sha": "109e79b4798289619a901d65865b957fe8064f390d06d4e7ee9eb40657bab444", + "type": "application/x-gzip", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://data-argo.ifremer.fr/argo_synthetic-profile_index.txt.gz", + "ext": "gz", + "sha": "608114c1d0fad1409ff406acd5fc04b86e071e5d2e76da15f55d9b0b635c86ec", + "type": "application/x-gzip", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_nvs.json b/cli/citests_httpdata_manager_nvs.json new file mode 100644 index 00000000..dc637a98 --- /dev/null +++ b/cli/citests_httpdata_manager_nvs.json @@ -0,0 +1,233 @@ +[ + { + "uri": "https://vocab.nerc.ac.uk/collection/R01/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "a710bd6c5eff99fce61c4e165dea53857a278e472febd783e210c8b7bdb25eda", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "ebdc6ce705160d0e429a599a788433f399b6eeea27d07c61a3e1c6baa949d7ec", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R04/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "976c1cec8bdf83a123624964d2f74cd5af98dd54d654b1078f8eebe51c57cc2d", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R05/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5e1038afcd7fa32054cfc96c8dc0f3a6dae11b86fcad47795dfa30253652c16f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R06/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5f3d1109028808eed08f60733a6f58ab8ec8613345234a67c23eef6341817076", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R07/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "b637c6ec1bebc25856000206bfc22c6afb091ae388d311989ec839c8127bf462", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R08/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "3b3f761904b50b1ec263c317ce97e1d7c9a274afaba1174ed236238c2da101ff", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R09/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "7da84086dd9aaeab787f121d57cd8de7ddc1d15a31de30a89215f9570c70d859", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R10/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "aec7dd03c6bfd5550099f8ccf0f433e0d12d557e274ed114054f70585d33ba94", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R11/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "bb6577ae0ef9548983948a19637a8ffdf7a8f251c3a9f5a661a3ba414705644f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R12/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "c78fa91988e96ad5e0d54e273c8d3bc63e79dfcdafbcdf1bc5e4edf8e7105513", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R13/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "5a5ba4173ec3e86eb130b8f7d02a17f4d1ad65d959186d6e308ef6f824e936e1", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R15/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "4c78a777b4e4af13aef1f9139ceb5fddad753bfcd7246425d6448e5262655bd2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R16/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "49fb14861dcc61e983b008996f601ea8b4314e46653e2af2381a9c289f551221", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R18/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "44a8212688a625768443e7cd547779265f303b74783517bb3680abf2629db8de", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R19/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "208f7853196d1056f243bc19513a3eb290aa54d931fff43c397d97edfc9051a7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R20/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "235bd3ec4783b14ead8e0b4dc7a32b66e323eb230d6afc8ab7ac222adce34ef6", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R21/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "0e924d764d60dc3ecad8a8bbbd0ca30c57d9a83c8d6027fd7f9081d35d05a6ba", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R22/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "f5431ce20497c13c4ae0cd5d8fdf234cdcea3919b29cabed391e51a943bcd4c1", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R23/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "32d1c5feaaf75f908ea8573410a390871d6a6e44770cfb84141edb49a133f118", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R24/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "b455fd6e5024dfba03c5674537d6f94fc7ca99d16603ee2be54e7fcd332c3f9f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R25/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "36e6314a009ae3674ac0883ffda1ab4a041df6cf10474c5084a6c1826c64e30a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R26/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "1555ff843864b325ce6547cc4608ca86db5770ca2955d99c48da940563e932e2", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R27/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "27d7b1ef7aaa76798f7f8eedc7fec0eb510c808949d926dc2ffa754fe958b870", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R28/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "568034bdb70ee1e12cccbb6616784c8c463e80c14ff6301f7fc0b34945f5c819", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R40/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "683edb12dc06650e5d8271ed444af120bff3311b9bb7c0ad60035dc07af150c3", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RD2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "ceb40cf78b87922ec6b3fe0d589bf8f1cde1d9f3e8b5eee8b802897d41cb996c", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RMC/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "f53d3f618df452ec32e1b3c148275328b49863b2e4cc3fc793206976aa934ec7", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RP2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "c16f43521f4e1dca7b0080fb519623f0549472d435cb9d51d47ae566bc9fdfe6", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RR2/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "6d57f2755018695c32823b761ba552329c9fc903dcfb84232691b2b4d92784b3", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/RTV/current/?_profile=nvs&_mediatype=application/ld+json", + "ext": "json", + "sha": "0819f83da75f4015ffab5293e03ab30799fee9dbc0c26d1feceb43f72e18bfea", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=application/rdf+xml", + "ext": "xml", + "sha": "78bc3091b4e335a8f3f1929e855477d8684119cc86f9a918fe76893399023615", + "type": "application/rdf+xml", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://vocab.nerc.ac.uk/collection/R03/current/?_profile=nvs&_mediatype=text/turtle", + "ext": "txt", + "sha": "f694b62ce2d9c9a9ed8c754e6d922be225d2c5adcac4561fb6d5e022a65d1d04", + "type": "text/plain", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_oops.json b/cli/citests_httpdata_manager_oops.json new file mode 100644 index 00000000..c98826f7 --- /dev/null +++ b/cli/citests_httpdata_manager_oops.json @@ -0,0 +1,93 @@ +[ + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate>=$var5 and ptfStatus>=$var6\", -90, 0, 0, 90, \"2022-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "2dd1ce221e25128b947dacb8ea904de17ce1b12384f8aef909396aa8ae4c5957", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate>=$var5\", -90, 0, 0, 90, \"2022-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "e46a16b17affadcd7fbaee0e7028f1030d5ff90a81694c833da7adaa428c400e", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon<=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", 0, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "a3dfd8ac41e22763e0020a8bea50535ec41cff15fc65ad64abde4c8aa096e580", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon<=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", 0, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "6270b81ef4a5a8e19ae77f895c77fdd0bd71f7596505911d329618eb8ee27d82", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "7321fca614893c8ec8cc62bc2179f4a5bcbc82970bf3948a5d22c770d2371b3c", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lat>=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "dfc6582dc67e6003d8add1b74bce6b8da7104315dffa4cecfc384aa5cd9b661a", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "5923f2965a8cf88a261e179203ab1699fe4fed43d8cd8767304633614c07a61f", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat<=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 90, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "b525af3619e549419bc25d16bf2ad88650f97d8f6cef5e6b1110181ade4f1f76", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 0, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "f99dcbdb28e5fda186604deafaf0a7f2857c9d4a15a4fa583660f3b770caf604", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.deplDate>=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 0, \"2022-01-01 00:00:00\", \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "0a6b66400575b6b32fb4d029770c70ba4ff0b973e79237e41beea72a624aef06", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate<=$var5 and ptfStatus>=$var6\", -90, 0, 0, 90, \"2023-01-01 00:00:00\", 4]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "4a9e3960df6073af92d2ceb35525c5c2b656726fc92e66851c903c7cf5ac2eda", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/data/platform?exp=[\"networkPtfs.network.name='Argo' and ptfDepl.lon>=$var1 and ptfDepl.lon<=$var2 and ptfDepl.lat>=$var3 and ptfDepl.lat<=$var4 and ptfDepl.deplDate<=$var5\", -90, 0, 0, 90, \"2023-01-01 00:00:00\"]&include=[\"ref\",\"ptfDepl.lat\",\"ptfDepl.lon\",\"ptfDepl.deplDate\",\"ptfStatus.id\",\"ptfStatus.name\",\"ptfStatus.description\",\"program.nameShort\",\"program.country.nameShort\",\"ptfModel.nameShort\",\"ptfDepl.noSite\"]", + "ext": "json", + "sha": "e2d3f37e53b7486e7e5eed35d3992e03572ddabd25077f108a5f0574787b43c0", + "type": "application/json", + "ts": "2024-09-23 13:41:56" + }, + { + "uri": "https://www.ocean-ops.org/api/1/oceanops-api.yaml", + "ext": "yaml", + "sha": "4e2f9e17a10cdf4b1e9cb06c33e9927948fb229c3f10e63b46a6eef51910970b", + "type": "text/yaml", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/citests_httpdata_manager_topo.json b/cli/citests_httpdata_manager_topo.json new file mode 100644 index 00000000..2ad10053 --- /dev/null +++ b/cli/citests_httpdata_manager_topo.json @@ -0,0 +1,9 @@ +[ + { + "uri": "https://coastwatch.pfeg.noaa.gov/erddap/griddap/GEBCO_2020.nc?elevation[(-67.00):10:(-54.00)][(81.00):10:(123.00)]", + "ext": "nc", + "sha": "1d16184686cce8f1b47b0170491f9ce23c3f58fa654beee9aece9158ed2f7d68", + "type": "application/x-netcdf", + "ts": "2024-09-23 13:41:56" + } +] \ No newline at end of file diff --git a/cli/create_json_assets b/cli/create_json_assets old mode 100644 new mode 100755 diff --git a/cli/llcache b/cli/llcache index f3404ae4..1ab4469d 100755 --- a/cli/llcache +++ b/cli/llcache @@ -5,7 +5,9 @@ import sys import pickle import math import pandas as pd - +import json +import fsspec +from packaging import version def convert_size(size_bytes): if size_bytes == 0: @@ -60,12 +62,18 @@ def listscache(cache_path: str, file=sys.stdout): cached_files = [] fn = os.path.join(apath, "cache") if os.path.exists(fn): - with open(fn, "rb") as f: - loaded_cached_files = pickle.load(f) - for c in loaded_cached_files.values(): - if isinstance(c["blocks"], list): - c["blocks"] = set(c["blocks"]) - cached_files.append(loaded_cached_files) + if version.parse(fsspec.__version__) <= version.parse("2023.6.0"): + with open(fn, "rb") as f: + loaded_cached_files = pickle.load( + f + ) # nosec B301 because files controlled internally + else: + with open(fn, "r") as f: + loaded_cached_files = json.load(f) + for c in loaded_cached_files.values(): + if isinstance(c["blocks"], list): + c["blocks"] = set(c["blocks"]) + cached_files.append(loaded_cached_files) else: # raise ValueError("This is not a valid fsspec cache folder (missing 'cache' pickle file)") cached_files.append({}) diff --git a/cli/lscache b/cli/lscache index ac53ba95..9574ea2e 100755 --- a/cli/lscache +++ b/cli/lscache @@ -6,6 +6,9 @@ import pickle import math from datetime import datetime import pandas as pd +import json +import fsspec +from packaging import version def convert_size(size_bytes): @@ -74,12 +77,18 @@ def listscache(cache_path: str, file=sys.stdout): cached_files = [] fn = os.path.join(apath, "cache") if os.path.exists(fn): - with open(fn, "rb") as f: - loaded_cached_files = pickle.load(f) - for c in loaded_cached_files.values(): - if isinstance(c["blocks"], list): - c["blocks"] = set(c["blocks"]) - cached_files.append(loaded_cached_files) + if version.parse(fsspec.__version__) <= version.parse("2023.6.0"): + with open(fn, "rb") as f: + loaded_cached_files = pickle.load( + f + ) # nosec B301 because files controlled internally + else: + with open(fn, "r") as f: + loaded_cached_files = json.load(f) + for c in loaded_cached_files.values(): + if isinstance(c["blocks"], list): + c["blocks"] = set(c["blocks"]) + cached_files.append(loaded_cached_files) else: # raise ValueError("This is not a valid fsspec cache folder (missing 'cache' pickle file)") cached_files.append({}) diff --git a/cli/test_data b/cli/test_data new file mode 100755 index 00000000..ae4aaf7c --- /dev/null +++ b/cli/test_data @@ -0,0 +1,880 @@ +#!/usr/bin/env python +""" +Tests data manager + +Use this script to download all possible tests data to be used by the local http server fixture + +It is possible to add more urls in the 'fetch_download_links' function + +If you add more urls, don't forget to update the 'patterns' list in: tests/helpers/mocked_http.py + +>>> test_data --help +""" +import os +import sys +import argparse +import aiohttp +import asyncio +import aiofiles +import xarray as xr +import pickle +from urllib.parse import urlparse, parse_qs, unquote +import logging +import hashlib +import numpy as np +# from tqdm.asyncio import tqdm_asyncio +from pathlib import Path + +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) +from argopy import DataFetcher +from argopy.related import TopoFetcher, OceanOPSDeployments, ArgoNVSReferenceTables, ArgoDocs + + +log = logging.getLogger("argopy.cli.test_data") + +# Where to save remote data to: +DATA_FOLDER = os.path.dirname(os.path.realpath(__file__)).replace("cli", "argopy/tests/test_data") +DB_FILE = os.path.join(DATA_FOLDER, "mocked_file_index.pkl") + +# Dictionary mapping of file extension with http data content type +CONTENT_TYPE = { + "js": "application/json", + "json": "application/json", + "yaml": "text/yaml", + "ld+json": "application/ld+json", + "rdf+xml": "application/rdf+xml", + "xml": "application/rdf+xml", + "text/turtle": "text/turtle", + "turtle": "text/turtle", + "nc": "application/x-netcdf", + "ncHeader": "text/plain", + "txt": "text/plain", + "html": "text/html", + "png": "image/png", + "gz": "application/x-gzip", +} + +# Dictionary mapping of URL requests as keys, and expected responses as values +MOCKED_REQUESTS = {} + +start_with = ( + lambda f, x: f[0 : len(x)] == x if len(x) <= len(f) else False +) # noqa: E731 + + + +def list_files(load=True): + # Dictionary mapping of URL requests as keys, and expected responses as values: + # (this will be filling the mocked http server content) + # The real address must be made relative + if os.path.exists(DB_FILE): + with open(DB_FILE, "rb") as f: + URI = pickle.load(f) + for resource in URI: + test_data_file = os.path.join( + DATA_FOLDER, "%s.%s" % (resource["sha"], resource["ext"]) + ) + if load: + with open(test_data_file, mode="rb") as file: + data = file.read() + else: + data = "---" + print(log_file_desc(test_data_file, data, resource)) + else: + print("😱 There is no '%s' in %s !" % (DB_FILE.replace(DATA_FOLDER,""), DATA_FOLDER)) + + +def can_be_xr_opened(src, file): + try: + xr.open_dataset(file) + return src + except: + # print("This source can't be opened with xarray: %s" % src) + return src + + +def log_file_desc(file, data, src): + size = float(os.stat(file).st_size / (1024 * 1024)) + prt_size = lambda x: "Size < 1Mb" if x < 1 else "Size = %0.2dMb" % x + msg = [] + # msg.append("- %s, %s" % (file.replace(DATA_FOLDER, ''), data[0:3])) + if "erddap.ifremer.fr" in src["uri"]: + if src['ext'] != 'json': + msg.append("\n🤖 ERDDAP: %s" % parse_qs(src["uri"])) + else: + msg.append("\n🤖 ERDDAP: %s" % src["uri"]) + + elif "coastwatch.pfeg.noaa.gov/erddap" in src['uri']: + # msg.append("\n🤖 NOAA ERDDAP: %s" % urlparse(unquote(src["uri"])).query) + msg.append("\n🤖 NOAA ERDDAP: %s" % unquote(src["uri"])) + # elif "github.com/euroargodev/argopy-data" in src['uri']: + # msg.append("\n🤖 GITHUB ARGOPY-DATA: %s" % parse_qs(src["uri"])) + + elif "https://www.ocean-ops.org/api/1" in src['uri']: + msg.append("\n🤖 Ocean-OPS API: %s" % unquote(src["uri"])) + + else: + msg.append("\n🤖 %s" % src["uri"]) + + msg.append( + "%s, %s, %s" + % (file.replace(DATA_FOLDER, ""), data[0:3], prt_size(size)) + ) + return " 🔸 ".join(msg) + + +def list_erddap_links(session: aiohttp.ClientSession): + this_URI = [] + + # This should correspond to all the possible erddap requests made during CI tests. + # And because of the erddap fetcher N_POINT attribute, we also need to fetch ".ncHeader" on top of ".nc" files + requests_phy = { + "float": [[1901393], [1901393, 6902746]], + "profile": [[6902746, 34], [6902746, np.arange(12, 13)], [6902746, [1, 12]]], + "region": [ + [-20, -16.0, 0, 1, 0, 100.0], + # [-20, -16., 0, 1, 0, 100., "1997-07-01", "1997-09-01"] + [-20, -16.0, 0, 1, 0, 100.0, "2004-01-01", "2004-01-31"], + [ + -75, + -55, + 30.0, + 40.0, + 0, + 100.0, + "2011-01-01", + "2011-01-15", + ], # used by test_xarray + ], + } + requests_ref = { + "region": [ + [-70, -65, 35.0, 40.0, 0, 10.0], + [-70, -65, 35.0, 40.0, 0, 10.0, "2012-01-01", "2012-12-31"], + ] + } + requests_seq = {"phy": requests_phy, "ref": requests_ref} + + requests_par = { + # "float": [[6902766, 6902772, 6902914]], # >128Mb file ! + "float": [[1900468, 1900117, 1900386]], + "region": [ + [-60, -55, 40.0, 45.0, 0.0, 20.0], + [-60, -55, 40.0, 45.0, 0.0, 20.0, "2007-08-01", "2007-09-01"], + ], + } + + + def nc_file(url, sha, iter): + return { + "uri": url, + "ext": "nc", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["nc"], + } + + def ncHeader_file(url, sha, iter): + return { + "uri": url, + "ext": "ncHeader", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["ncHeader"], + } + + def add_to_URI(facade): + uri = facade.uri + for ii, url in enumerate(uri): + this_URI.append(nc_file(url, facade.fetcher.sha, ii)) + this_URI.append(ncHeader_file(url.replace("." + facade.fetcher.erddap.response, ".ncHeader"), facade.fetcher.sha, ii)) + + for ds in requests_seq: + fetcher = DataFetcher(src="erddap", ds=ds) + for access_point in requests_seq[ds]: + [add_to_URI(fetcher.profile(*cfg)) for cfg in requests_seq[ds][access_point] if access_point == "profile"] + [add_to_URI(fetcher.float(cfg)) for cfg in requests_seq[ds][access_point] if access_point == "float"] + [add_to_URI(fetcher.region(cfg)) for cfg in requests_seq[ds][access_point] if access_point == "region"] + + fetcher = DataFetcher(src="erddap", ds="phy", parallel=True) + for access_point in requests_par: + [add_to_URI(fetcher.profile(*cfg)) for cfg in requests_par[access_point] if access_point == "profile"] + [add_to_URI(fetcher.float(cfg)) for cfg in requests_par[access_point] if access_point == "float"] + [add_to_URI(fetcher.region(cfg)) for cfg in requests_par[access_point] if access_point == "region"] + + # Add more URI from the erddap: + this_URI.append( + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json", + "ext": "json", + "sha": hashlib.sha256( + "https://erddap.ifremer.fr/erddap/info/ArgoFloats/index.json".encode() + ).hexdigest(), + "type": CONTENT_TYPE["json"], + } + ) + this_URI.append( + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-ref/index.json", + "ext": "json", + "sha": hashlib.sha256( + "https://erddap.ifremer.fr/erddap/info/ArgoFloats-ref/index.json".encode() + ).hexdigest(), + "type": CONTENT_TYPE["json"], + } + ) + this_URI.append( + { + "uri": "https://erddap.ifremer.fr/erddap/info/index.json", + "ext": "json", + "sha": hashlib.sha256( + "https://erddap.ifremer.fr/erddap/info/index.json".encode() + ).hexdigest(), + "type": CONTENT_TYPE["json"], + } + ) + + return this_URI + + +def list_erddap_links_bgc(session: aiohttp.ClientSession): + this_URI = [] + + # This should correspond to all the possible erddap requests made during CI tests. + # And because of the erddap fetcher N_POINT attribute, we also need to fetch ".ncHeader" on top of ".nc" files + requests_seq = { + "float": [[5903248], [6904240], [5903248, 6904241]], + "profile": [[5903248, 34], [5903248, np.arange(12, 14)], [5903248, [1, 12]]], + "region": [ + [-55, -47, 55, 57, 0, 10], + [-55, -47, 55, 57, 0, 10, "2022-05-1", "2023-07-01"], + ], + } + + requests_par = { + "float": [[5903248, 6904241]], + "region": [ + [-55, -47, 55, 57, 0, 10, "2022-05-1", "2023-07-01"], + ], + } + + def nc_file(url, sha, iter): + return { + "uri": url, + "ext": "nc", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["nc"], + } + + def ncHeader_file(url, sha, iter): + return { + "uri": url, + "ext": "ncHeader", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["ncHeader"], + } + + def gzip_file(url): + return { + "uri": url, + "ext": "gz", + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE['gz'], # but we should also modify the header: Content-Encoding: gzip + } + + def add_to_URI(facade): + uri = facade.uri + for ii, url in enumerate(uri): + this_URI.append(nc_file(url, facade.fetcher.sha, ii)) + this_URI.append(ncHeader_file(url.replace("." + facade.fetcher.erddap.response, ".ncHeader"), facade.fetcher.sha, ii)) + + uri = facade.fetcher.fs.urls_registry + for ii, url in enumerate(uri): + suffix = Path(urlparse(url).path).suffix + if suffix == '.gz': + this_URI.append(gzip_file(url)) + + + for params in ['all', 'DOXY']: + for measured in ['all', 'DOXY', None]: + for mode in ['expert', 'standard', 'research']: + fetcher = DataFetcher(src="erddap", ds='bgc-s', cache=True, + mode=mode, params=params, measured=measured) + for access_point in requests_seq: + [add_to_URI(fetcher.profile(*cfg)) for cfg in requests_seq[access_point] if access_point == "profile"] + [add_to_URI(fetcher.float(cfg)) for cfg in requests_seq[access_point] if access_point == "float"] + [add_to_URI(fetcher.region(cfg)) for cfg in requests_seq[access_point] if access_point == "region"] + + for params in ['all', 'DOXY']: + for measured in ['all', 'DOXY', None]: + for mode in ['expert', 'standard', 'research']: + fetcher = DataFetcher(src="erddap", ds='bgc-s', cache=True, + parallel=True, parallel_method='erddap', + mode=mode, params=params, measured=measured) + for access_point in requests_par: + [add_to_URI(fetcher.profile(*cfg)) for cfg in requests_par[access_point] if access_point == "profile"] + [add_to_URI(fetcher.float(cfg)) for cfg in requests_par[access_point] if access_point == "float"] + [add_to_URI(fetcher.region(cfg)) for cfg in requests_par[access_point] if access_point == "region"] + + # Add more URI from the erddap: + this_URI.append( + { + "uri": "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json", + "ext": "json", + "sha": hashlib.sha256( + "https://erddap.ifremer.fr/erddap/info/ArgoFloats-synthetic-BGC/index.json".encode() + ).hexdigest(), + "type": CONTENT_TYPE["json"], + } + ) + + return this_URI + + +def list_github_links(session: aiohttp.ClientSession): + this_URI = [] + repo = "https://github.com/euroargodev/argopy-data/raw/master" + uris = [ + "ftp/dac/csiro/5900865/5900865_prof.nc", + "ftp/ar_index_global_prof.txt", + "ftp/dac/csiro/5900865/profiles/D5900865_001.nc", + "ftp/dac/csiro/5900865/profiles/D5900865_002.nc", + ] + for uri in uris: + file_extension = uri.split(".")[-1] + this_URI.append( + { + "uri": repo + "/" + uri, + "ext": file_extension, + "sha": hashlib.sha256(("%s/%s" % (repo, uri)).encode()).hexdigest(), + "type": CONTENT_TYPE[file_extension], + } + ) + return this_URI + + +def list_api_ifremer_links(session: aiohttp.ClientSession): + this_URI = [] + repo = "https://api.ifremer.fr" + uris = ["argopy/data/ARGO-FULL.json", "argopy/data/ARGO-BGC.json"] + for uri in uris: + file_extension = uri.split(".")[-1] + this_URI.append( + { + "uri": repo + "/" + uri, + "ext": file_extension, + "sha": hashlib.sha256(("%s/%s" % (repo, uri)).encode()).hexdigest(), + "type": CONTENT_TYPE[file_extension], + } + ) + return this_URI + + +def list_gdac_links_core(session: aiohttp.ClientSession): + this_URI = [] + server = "https://data-argo.ifremer.fr" + + requests = { + "float": [[13857]], + "profile": [[13857, 90]], + "region": [ + [-20, -16.0, 0, 1, 0, 100.0], + [-20, -16.0, 0, 1, 0, 100.0, "1997-07-01", "1997-09-01"], + ], + } + + def nc_file(url, sha, iter): + return { + "uri": url, + "ext": "nc", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["nc"], + } + + def add_to_URI(this, this_fetcher): + uri = this_fetcher.uri + for ii, url in enumerate(uri): + this.append(nc_file(url, this_fetcher.fetcher.sha, ii)) + return this + + fetcher = DataFetcher(src="gdac", ftp=server, ds="phy", N_RECORDS=100) + for access_point in requests: + if access_point == "profile": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.profile(*cfg)) + if access_point == "float": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.float(cfg)) + if access_point == "region": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.region(cfg)) + + # Add more URI from the IFREMER GDAC: + this_URI.append( + { + "uri": "%s/ar_index_global_prof.txt.gz" % server, + "ext": "gz", + "sha": hashlib.sha256( + ("%s/ar_index_global_prof.txt.gz" % server).encode() + ).hexdigest(), + "type": CONTENT_TYPE['gz'], # but we should also modify the header: Content-Encoding: gzip + } + ) + this_URI.append( + { + "uri": "%s/dac" % server, # This uri is used by to check if the server is GDAC compliant ! + "ext": "html", + "sha": hashlib.sha256(("%s/dac" % server).encode()).hexdigest(), + "type": CONTENT_TYPE['html'], + } + ) + + # Used by Test_open_sat_altim_report: + def dfile(url, fmt): + return { + "uri": url, + "ext": fmt, + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE[fmt], + } + for scenario in [[2901623], [2901623, 6901929]]: + for wmo in scenario: + url = "%s/etc/argo-ast9-item13-AltimeterComparison/figures/%i.png" % (server, wmo) + this_URI.append(dfile(url, 'png')) + + return this_URI + + +def list_gdac_links_bgc(session: aiohttp.ClientSession): + this_URI = [] + server = "https://data-argo.ifremer.fr" + + requests = { + "float": [[5904989],[3902131],[6903247]], + "profile": [[5904989, 12]], + } + + def nc_file(url, sha, iter): + return { + "uri": url, + "ext": "nc", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["nc"], + } + + def add_to_URI(this, this_fetcher): + uri = this_fetcher.uri + for ii, url in enumerate(uri): + this.append(nc_file(url, this_fetcher.fetcher.sha, ii)) + return this + + fetcher = DataFetcher(src="gdac", ftp=server, ds="bgc", mode='expert', N_RECORDS=100) + for access_point in requests: + if access_point == "profile": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.profile(*cfg)) + if access_point == "float": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.float(cfg)) + if access_point == "region": + for cfg in requests[access_point]: + this_URI = add_to_URI(this_URI, fetcher.region(cfg)) + + this_URI.append( + { + "uri": "%s/argo_bio-profile_index.txt.gz" % server, + "ext": "gz", + "sha": hashlib.sha256( + ("%s/argo_bio-profile_index.txt.gz" % server).encode() + ).hexdigest(), + "type": CONTENT_TYPE['gz'], # but we should also modify the header: Content-Encoding: gzip + } + ) + # + # this_URI.append( + # { + # "uri": "%s/argo_synthetic-profile_index.txt" % server, + # "ext": "txt", + # "sha": hashlib.sha256( + # ("%s/argo_synthetic-profile_index.txt" % server).encode() + # ).hexdigest(), + # "type": CONTENT_TYPE['txt'], + # } + # ) + this_URI.append( + { + "uri": "%s/argo_synthetic-profile_index.txt.gz" % server, + "ext": "gz", + "sha": hashlib.sha256( + ("%s/argo_synthetic-profile_index.txt.gz" % server).encode() + ).hexdigest(), + "type": CONTENT_TYPE['gz'], # but we should also modify the header: Content-Encoding: gzip + } + ) + + return this_URI + + +def list_topo_links(session: aiohttp.ClientSession): + """ https://coastwatch.pfeg.noaa.gov/erddap """ + this_URI = [] + + box = [81, 123, -67, -54] + fetcher = TopoFetcher(box, ds='gebco', stride=[10, 10], cache=True) + + this_URI.append( + { + "uri": unquote(fetcher.uri[0]), + "ext": "nc", + "sha": hashlib.sha256(fetcher.uri[0].encode()).hexdigest(), + "type": CONTENT_TYPE["nc"], + } + ) + + return this_URI + + +def list_oops_links(session: aiohttp.ClientSession): + this_URI = [] + + scenarios = [ + # (None, False), # Can't be handled by the mocked server (test date is surely different from the test data date) + # ([-90, 0, 0, 90], False), # Can't be handled by the mocked server (test date is surely different from the test data date) + ([-90, 0, 0, 90, '2022-01'], True), + ([-90, 0, 0, 90, '2022-01'], False), + ([None, 0, 0, 90, '2022-01-01', '2023-01-01'], True), + ([None, 0, 0, 90, '2022-01-01', '2023-01-01'], False), + ([-90, None, 0, 90, '2022-01-01', '2023-01-01'], True), + ([-90, None, 0, 90, '2022-01-01', '2023-01-01'], False), + ([-90, 0, None, 90, '2022-01-01', '2023-01-01'], True), + ([-90, 0, None, 90, '2022-01-01', '2023-01-01'], False), + ([-90, 0, 0, None, '2022-01-01', '2023-01-01'], True), + ([-90, 0, 0, None, '2022-01-01', '2023-01-01'], False), + ([-90, 0, 0, 90, None, '2023-01-01'], True), + ([-90, 0, 0, 90, None, '2023-01-01'], False), + ([-90, 0, 0, 90, '2022-01-01', None], True), + ([-90, 0, 0, 90, '2022-01-01', None], False)] + + def dfile(url, fmt='json'): + return { + "uri": unquote(url), + "ext": fmt, + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE[fmt], + } + + for sc in scenarios: + box, deployed_only = sc + oops = OceanOPSDeployments(box, deployed_only=deployed_only) + this_URI.append(dfile(oops.uri)) + + this_URI.append(dfile('https://www.ocean-ops.org/api/1/oceanops-api.yaml', fmt='yaml')) + + return this_URI + + +def list_dataselection_links(session: aiohttp.ClientSession): + this_URI = [] + WMO_list = [6901929, 5904797, 6902755] + + def dfile(url): + return { + "uri": unquote(url), + "ext": "json", + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE["json"], + } + + for uri in ["https://dataselection.euro-argo.eu/api/trajectory/%i" % wmo for wmo in WMO_list]: + this_URI.append(dfile(uri)) + + return this_URI + + +def list_nvs_links(session: aiohttp.ClientSession): + this_URI = [] + nvs = ArgoNVSReferenceTables() + + def dfile(url, fmt): + return { + "uri": unquote(url), + "ext": fmt, + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE[fmt], + } + + for rtid in nvs.valid_ref: + url = nvs.get_url(rtid) + this_URI.append(dfile(url, "json")) + + fmts = {"ld+json": "json", "rdf+xml": "xml", "text/turtle": "txt"} + for fmt in fmts.keys(): + url = nvs.get_url(3, fmt=fmt) + this_URI.append(dfile(url, fmts[fmt])) + + return this_URI + + +def list_argovis_links(session: aiohttp.ClientSession): + this_URI = [] + + requests_phy = { + "float": [[1901393], [1901393, 6902746]], + "profile": [[6902746, [1, 12]]], + "region": [ + [-70, -65, 35.0, 40.0, 0, 10.0, "2012-01", "2012-03"], + [-70, -65, 35.0, 40.0, 0, 10.0, "2012-01", "2012-06"], + ], + } + requests = {"phy": requests_phy} + + requests_par = { + "float": [[6902766, 6902772, 6902914]], + "region": [ + [-60, -55, 40.0, 45.0, 0.0, 10.0], + [-60, -55, 40.0, 45.0, 0.0, 10.0, "2007-08-01", "2007-09-01"], + ], + } + + def js_file(url, sha, iter): + return { + "uri": url, + "ext": "js", + "sha": "%s_%03.d" % (sha, iter), + "type": CONTENT_TYPE["js"], + } + + def add_to_URI(this, this_fetcher): + uri = this_fetcher.uri + for ii, url in enumerate(uri): + this.append(js_file(url, this_fetcher.fetcher.sha, ii)) + return this + + for ds in requests: + fetcher = DataFetcher(src="argovis", ds=ds) + for access_point in requests[ds]: + if access_point == "profile": + for cfg in requests[ds][access_point]: + this_URI = add_to_URI(this_URI, fetcher.profile(*cfg)) + if access_point == "float": + for cfg in requests[ds][access_point]: + this_URI = add_to_URI(this_URI, fetcher.float(cfg)) + if access_point == "region": + for cfg in requests[ds][access_point]: + this_URI = add_to_URI(this_URI, fetcher.region(cfg)) + + fetcher = DataFetcher(src="argovis", parallel=True) + for access_point in requests_par: + if access_point == "profile": + for cfg in requests_par[access_point]: + this_URI = add_to_URI(this_URI, fetcher.profile(*cfg)) + if access_point == "float": + for cfg in requests_par[access_point]: + this_URI = add_to_URI(this_URI, fetcher.float(cfg)) + if access_point == "region": + for cfg in requests_par[access_point]: + this_URI = add_to_URI(this_URI, fetcher.region(cfg)) + + return this_URI + + +def list_ArgoDocs(session: aiohttp.ClientSession): + this_URI = [] + + def dfile(url, fmt): + return { + "uri": unquote(url), + "ext": fmt, + "sha": hashlib.sha256(url.encode()).hexdigest(), + "type": CONTENT_TYPE[fmt], + } + + docs = ArgoDocs().list + for ii, doc in docs.iterrows(): + + Ad = ArgoDocs(doc['id']) + + doi = "https://dx.doi.org/%s" % Ad.js['doi'] + this_URI.append(dfile(doi, 'html')) + + Ad.ris # Load RIS file and populate internal fields + # pdf = Ad.ris['UR'] + # url = Ad._risfile + # this_URI.append(dfile(url, 'txt')) + + return this_URI + + +async def fetch_download_links(session: aiohttp.ClientSession): + """Gather the list of all remote resources to download + + The return list is a list of dictionaries with all the necessary keys to save and retrieve requests offline using + the fixture of the local HTTP server + """ + URI = [] + + # REQUESTS to: https://erddap.ifremer.fr/erddap + [URI.append(link) for link in list_erddap_links(session)] + [URI.append(link) for link in list_erddap_links_bgc(session)] + + # REQUESTS to: https://github.com/euroargodev/argopy-data/raw/master + [URI.append(link) for link in list_github_links(session)] + + # REQUESTS to: https://api.ifremer.fr + [URI.append(link) for link in list_api_ifremer_links(session)] + + # REQUESTS to: https://data-argo.ifremer.fr + [URI.append(link) for link in list_gdac_links_core(session)] + [URI.append(link) for link in list_gdac_links_bgc(session)] + + # REQUESTS to: https://coastwatch.pfeg.noaa.gov/erddap + [URI.append(link) for link in list_topo_links(session)] + + # REQUESTS to: https://www.ocean-ops.org/api/1 + [URI.append(link) for link in list_oops_links(session)] + + # REQUESTS to: https://dataselection.euro-argo.eu/api + [URI.append(link) for link in list_dataselection_links(session)] + + # REQUESTS to: https://vocab.nerc.ac.uk/collection + [URI.append(link) for link in list_nvs_links(session)] + + # REQUESTS to: https://argovisbeta02.colorado.edu + [URI.append(link) for link in list_argovis_links(session)] + + # REQUESTS to: + # https://dx.doi.org/10.13155/ + # https://archimer.ifremer.fr/doc/00187/29825/export.txt + [URI.append(link) for link in list_ArgoDocs(session)] + + # Return the list of dictionaries + log.debug("Found %i uri to download" % len(URI)) + return URI + + +async def place_file(session: aiohttp.ClientSession, source: dict) -> None: + """Download remote file and save it locally""" + test_data_file = os.path.join( + DATA_FOLDER, "%s.%s" % (source["sha"], source["ext"]) + ) + if OVERWRITE or not os.path.exists(test_data_file): + async with session.get(source["uri"], ssl=False, timeout=60*10) as r: + if r.content_type not in CONTENT_TYPE.values(): + print( + "Unexpected content type (%s) with this GET request: %s (%s extension)" + % ( + r.content_type, + source["uri"], + os.path.splitext(urlparse(source["uri"]).path)[1], + ) + ) + + async with aiofiles.open(test_data_file, "wb") as f: + data = await r.content.read(n=-1) # load all read bytes ! + await f.write(data) + print(log_file_desc(f.name, data, source)) + return can_be_xr_opened(source, test_data_file) + else: + # print("%s already exists !" % test_data_file) + return can_be_xr_opened(source, test_data_file) + + +async def download(): + connector = aiohttp.TCPConnector(limit=1, force_close=True) + async with aiohttp.ClientSession(connector=connector, timeout=aiohttp.ClientTimeout(total=60*10)) as session: + urls = await fetch_download_links(session) + return await asyncio.gather(*[place_file(session, url) for url in urls]) + + +async def dry_download(): + connector = aiohttp.TCPConnector(limit=1, force_close=True) + async with aiohttp.ClientSession(connector=connector, timeout=aiohttp.ClientTimeout(total=60*10)) as session: + return await fetch_download_links(session) + + +def data_cleanup(): + for filename in os.listdir(DATA_FOLDER): + file_path = os.path.join(DATA_FOLDER, filename) + try: + if os.path.isfile(file_path) or os.path.islink(file_path): + os.unlink(file_path) + elif os.path.isdir(file_path): + os.rmdir(file_path) + except Exception as e: + print('Failed to delete %s. Reason: %s' % (file_path, e)) + + +def setup_args(): + icons_help_string = """This script aims to ease test data management.""" + + parser = argparse.ArgumentParser( + description="argopy test data manager", + formatter_class=argparse.RawTextHelpFormatter, + epilog="%s\n(c) Argo-France/Ifremer/LOPS, 2023-2024" % icons_help_string, + ) + + def choicesDescriptions(): + return """ + destination - return absolute path to test data storage folder + download - download all test data + list - list available test data + clean - delete all test data and associated files + dry - list URI to be accessed and stored + """ + + def getChoices(): + return ["list", "destination", "download", "clean", "dry"] + + parser.add_argument( + "-a", + "--action", + choices=getChoices(), + help="action to perform among: %s" % choicesDescriptions(), + metavar="", + ) + parser.add_argument("-f", "--force", help="Force write on data files even if they already exist", action='store_true') + + return parser + + +if __name__ == "__main__": + logging.basicConfig( + level=logging.DEBUG, + datefmt='%m/%d/%Y %I:%M:%S %p', + handlers=[logging.FileHandler("test_data.log", mode='w')] + ) + + ARGS = setup_args().parse_args() + OVERWRITE = ARGS.force + + if ARGS.action == "destination" or ARGS.action == "dest": + print("Tests data are stored in:\n%s" % DATA_FOLDER) + + if ARGS.action == "list": + list_files(load=False) + + if ARGS.action == "download": + # print("Trigger download") + # Async download of all remote resources: + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) + URLS = loop.run_until_complete(download()) + + # Save the URI list in a pickle file to be loaded and used by the HTTP server fixture: + with open(DB_FILE, "wb") as f: + pickle.dump(URLS, f) + + # URLS = [url for url in URLS if url is not None] + print("\nSaved %i urls" % len(URLS)) + + if ARGS.action == "clean": + data_cleanup() + + if ARGS.action == "dry": + # Dry download of all remote resources (just list urls): + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) + URLS = loop.run_until_complete(fetch_download_links(None)) + for url in URLS: + url.pop('ext') + url.pop('sha') + print("\n-", url) + print("\nFound %i uri to download to populate mocked servers" % len(URLS)) diff --git a/docs/Makefile b/docs/Makefile index c9c2fc97..f47db144 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -3,7 +3,8 @@ # You can set these variables from the command line. #SPHINXOPTS = -T -E -SPHINXOPTS = -T +SPHINXOPTS = --show-traceback +#SPHINXOPTS = --show-traceback --verbose --verbose SPHINXBUILD = sphinx-build SPHINXAUTOBUILD = sphinx-autobuild PAPER = @@ -12,7 +13,7 @@ BUILDDIR = _build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = --jobs auto --show-traceback --verbose --warning-file make.log --doctree-dir $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +ALLSPHINXOPTS = --jobs auto --verbose --warning-file make.log --doctree-dir $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . @@ -56,7 +57,7 @@ clean: .PHONY: html html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + $(SPHINXBUILD) --builder html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." diff --git a/docs/api-hidden.rst b/docs/api-hidden.rst index 0face099..bd2aa31d 100644 --- a/docs/api-hidden.rst +++ b/docs/api-hidden.rst @@ -68,6 +68,11 @@ argopy.utils.list_available_index_src argopy.utils.list_standard_variables argopy.utils.list_multiprofile_file_variables + argopy.utils.list_core_parameters + argopy.utils.list_bgc_s_variables + argopy.utils.list_bgc_s_parameters + argopy.utils.list_radiometry_variables + argopy.utils.list_radiometry_parameters argopy.utils.Chunker @@ -141,6 +146,11 @@ argopy.related.ArgoDOI.file argopy.related.ArgoDOI.dx + argopy.extensions.CanyonMED + argopy.extensions.CanyonMED.predict + argopy.extensions.CanyonMED.input + argopy.extensions.CanyonMED.output_list + argopy.plot argopy.plot.dashboard argopy.plot.bar_plot @@ -298,8 +308,9 @@ argopy.xarray.ArgoAccessor.groupby_pressure_bins argopy.xarray.ArgoAccessor.teos10 argopy.xarray.ArgoAccessor.create_float_source - argopy.xarray.ArgoAccessor.filter_qc + argopy.xarray.ArgoAccessor.transform_data_mode argopy.xarray.ArgoAccessor.filter_data_mode + argopy.xarray.ArgoAccessor.filter_qc argopy.xarray.ArgoAccessor.filter_scalib_pres argopy.xarray.ArgoAccessor.filter_researchmode argopy.xarray.ArgoAccessor.cast_types @@ -309,3 +320,9 @@ argopy.xarray.ArgoEngine + argopy.extensions.register_argo_accessor + argopy.extensions.ArgoAccessorExtension + argopy.extensions.CanyonMED + + argopy.errors.InvalidDatasetStructure + diff --git a/docs/api.rst b/docs/api.rst index 529c8501..9bfe3930 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -87,14 +87,12 @@ Utilities for Argo related data status ArgoIndex + ArgoDocs + ArgoDOI ArgoNVSReferenceTables OceanOPSDeployments CTDRefDataFetcher TopoFetcher - ArgoDocs - ArgoDOI - related.get_coriolis_profile_id - related.get_ea_profile_page .. _Module Visualisation: @@ -142,7 +140,7 @@ This accessor extends :py:class:`xarray.Dataset`. Proper use of this accessor sh .. code-block:: python >>> import xarray as xr # first import xarray - >>> import argopy # import argopy (the dataset 'argo' accessor is registered) + >>> import argopy # import argopy (the dataset 'argo' accessor is then registered) >>> from argopy import DataFetcher >>> ds = DataFetcher().float([6902766, 6902772, 6902914, 6902746]).load().data >>> ds.argo @@ -160,6 +158,8 @@ Data Transformation Dataset.argo.profile2point Dataset.argo.interp_std_levels Dataset.argo.groupby_pressure_bins + Dataset.argo.transform_data_mode + Data Filters ------------ @@ -168,12 +168,12 @@ Data Filters :toctree: generated/ :template: autosummary/accessor_method.rst - Dataset.argo.filter_qc Dataset.argo.filter_data_mode + Dataset.argo.filter_qc Dataset.argo.filter_scalib_pres Dataset.argo.filter_researchmode -Processing +Extensions ---------- .. autosummary:: @@ -182,6 +182,13 @@ Processing Dataset.argo.teos10 Dataset.argo.create_float_source + Dataset.argo.canyon_med + +.. currentmodule:: argopy + +You can register your own extension inheriting from :class:`argopy.extensions.ArgoAccessorExtension` and decorated with :class:`argopy.extensions.register_argo_accessor` + +.. currentmodule:: xarray Misc ---- @@ -210,6 +217,11 @@ Function under the ``argopy.utils`` submodule. list_available_index_src list_standard_variables list_multiprofile_file_variables + list_core_parameters + list_bgc_s_variables + list_bgc_s_parameters + list_radiometry_variables + list_radiometry_parameters check_wmo check_cyc diff --git a/docs/contributing.rst b/docs/contributing.rst index 0b7af9d9..750088ee 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -366,16 +366,17 @@ If you want to add your own data fetcher for a new service, then, keep in mind t * ``exit_formats``, eg: ['xarray'] * ``dataset_ids``, eg: ['phy', 'ref', 'bgc'] - * provides the facade API (:class:`argopy.fetchers.ArgoDataFetcher`) methods to filter data + * provides the facade API (:class:`argopy.fetchers.ArgoDataFetcher`) methods to transform or filter data according to user level or requests. These must includes: - * :func:`filter_data_mode` + * :func:`transform_data_mode` * :func:`filter_qc` * :func:`filter_variables` + * :func:`filter_researchmode` It is the responsibility of the facade API (:class:`argopy.fetchers.ArgoDataFetcher`) to run -filters according to user level or requests, not the data fetcher. +transformers and filters according to user level or requests, not the data fetcher. Detailed guideline ^^^^^^^^^^^^^^^^^^ diff --git a/docs/metadata_fetching.rst b/docs/metadata_fetching.rst index ab2e870c..3148e579 100644 --- a/docs/metadata_fetching.rst +++ b/docs/metadata_fetching.rst @@ -177,7 +177,7 @@ And finally the list of methods and properties for **search results**: Usage with **bgc** index """"""""""""""""""""""""""" -The **argopy** index store supports the Bio and Synthetic Profile directory files: +The **argopy** index store supports the Bio, Synthetic and Auxiliary Profile directory files: .. ipython:: python :okwarning: diff --git a/docs/user-guide/fetching-argo-data/user_mode.rst b/docs/user-guide/fetching-argo-data/user_mode.rst index fa1df7b8..ca96a9b3 100644 --- a/docs/user-guide/fetching-argo-data/user_mode.rst +++ b/docs/user-guide/fetching-argo-data/user_mode.rst @@ -1,8 +1,14 @@ .. currentmodule:: argopy .. _user-mode: -User mode (🏄, 🏊, 🚣) -======================= +.. |ds_phy| replace:: 🟡+🔵 +.. |ds_bgc| replace:: 🟢 +.. |mode_expert| replace:: 🏄 +.. |mode_standard| replace:: 🏊 +.. |mode_research| replace:: 🚣 + +User modes (🏄, 🏊, 🚣) +======================== .. hint:: @@ -11,7 +17,7 @@ User mode (🏄, 🏊, 🚣) .. contents:: Contents :local: -**Problem** +**The problem we're trying to solve** For non-experts of the Argo dataset, it can be quite complicated to get access to Argo measurements. Indeed, the Argo data @@ -31,17 +37,17 @@ This is mainly due to: principle of functioning, is a rather complex robot that needs a lot of data to be monitored and logged. -**Solution** +**The solution proposed by argopy** In order to ease Argo data analysis for the vast majority of users, we implemented in **argopy** different levels of verbosity and data processing to hide or simply remove variables only meaningful to experts. -.. _user-mode-details: +.. _user-mode-definition: -User mode details ------------------ +Definitions +----------- **argopy** provides 3 user modes: @@ -49,44 +55,180 @@ User mode details - 🏊 **standard** mode simplifies the dataset, remove most of its jargon and return *a priori* good data, - 🚣 **research** mode simplifies the dataset to its heart, preserving only data of the highest quality for research studies, including studies sensitive to small pressure and salinity bias (e.g. calculations of global ocean heat content or mixed layer depth). -In **standard** and **research** modes, fetched data are automatically filtered to account for their quality (using the *quality control flags*) and level of processing by the data centers (considering for each parameter the data mode which indicates if a human expert has carefully looked at the data or not). Both mode return a postprocessed subset of the full Argo dataset. +In **standard** and **research** modes, fetched data are automatically filtered to account for their quality (using the *quality control flags*) and level of processing by the data centers (considering for each parameter the data mode which indicates if a human expert has carefully looked at the data or not). Both modes return a postprocessed subset of the full Argo dataset. Hence the main difference between the **standard** and **research** modes is in the level of data quality insurance. -In **standard** mode, only good or probably good data are returned and includes real time data that have been validated automatically but not by a human expert. +In **standard** mode, only good or probably good data are returned and these may include real time data that have been validated automatically but not by a human expert. The **research** mode is the safer choice, with data of the highest quality, carefully checked in delayed mode by a human expert of the `Argo Data Management Team `_. -.. list-table:: Table of **argopy** user mode data processing details for **physical** parameters (``phy`` :ref:`dataset `) + +.. _user-mode-standard: + +|mode_standard| Standard mode (default) +--------------------------------------- + +.. list-table:: Table of **argopy** data processing details in ``standard`` user mode |mode_standard| :header-rows: 1 :stub-columns: 1 - * - - - ``expert`` - - ``standard`` - - ``research`` - * - - - 🏄 - - 🏊 - - 🚣 - * - Level of quality (QC flags) retained - - all - - good or probably good (QC=[1,2]) - - good (QC=1) - * - Level of assessment (Data mode) retained - - all: [R,D,A] modes - - all: [R,D,A] modes, but PARAM_ADJUSTED and PARAM are merged in a single variable according to the mode - - best only (D mode only) - * - Pressure error - - any - - any + * - Parameters + - Dataset + - Level of assessment (data mode) + - Level of quality (QC flags) + - Pressure error + - Return variables + * - Pressure, temperature, salinity + - |ds_phy| + |ds_bgc| + - real time, adjusted and delayed mode data: [R,A,D] modes + - good or probably good values (QC=[1,2]) + - *not used* + - all without jargon [a]_ + * - Radiometry parameters [b]_ and BBP700 [c]_ + - |ds_bgc| + - real time only: [R] mode + - good or probably good values, estimated or changed values (QC=[1,2,5,8]) + - *not used* + - all without jargon [a]_ + * - CDOM [d]_ + - |ds_bgc| + - None allowed + - None allowed + - *not used* + - all without jargon [a]_ + * - All other BGC parameters [e]_ + - |ds_bgc| + - real time data with adjusted values, delayed mode data: [A,D] modes + - good or probably good data, estimated or changed values (QC=[1,2,5,8]) + - *not used* + - all without jargon [a]_ + + +.. [a] The complete list is available with :class:`utils.list_standard_variables`. Note that DATA_MODE/PARAM_DATA_MODE and QC flags variables are retained while PARAM_ADJUSTED and PARAM variables are merged (i.e. PARAM_ADJUSTED is removed). +.. [b] The list of radiometry parameters is available with :class:`utils.list_radiometry_parameters`. +.. [c] Particle backscattering at 700 nanometers +.. [d] Concentration of coloured dissolved organic matter in seawater +.. [e] The complete list of BGC parameters is available with :class:`utils.list_bgc_s_parameters`. + + +.. tabs:: + + .. tab:: |mode_standard| Example with |ds_phy| : core+deep missions + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='standard'): + ds = argopy.DataFetcher(src='gdac').profile(6902746, 12).to_xarray() + print(ds.data_vars) + + + .. tab:: |mode_standard| Example with |ds_bgc| : BGC mission + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='standard'): + ds = argopy.DataFetcher(src='erddap', ds='bgc').profile(5903248, 34).to_xarray() + print(ds.data_vars) + + + +|mode_research| Research mode +----------------------------- + +.. list-table:: Table of **argopy** data processing details in ``research`` user mode |mode_research| + :header-rows: 1 + :stub-columns: 1 + + * - Parameters + - Dataset + - Level of assessment (data mode) + - Level of quality (QC flags) + - Pressure error + - Return variables + * - Pressure, temperature, salinity + - |ds_phy| + |ds_bgc| + - delayed mode data only: [D] mode + - good values (QC=[1]) - smaller than 20db - * - Variables returned - - all - - all without jargon (DATA_MODE and QC_FLAG are retained) - - comprehensive minimum + - comprehensive minimum [a]_ + * - CDOM [d]_ + - |ds_bgc| + - None allowed + - None allowed + - *not used* + - comprehensive minimum [a]_ + * - All other BGC parameters [e]_ + - |ds_bgc| + - delayed mode data only: [D] mode + - good data, estimated or changed values (QC=[1,5,8]) + - *not used* + - comprehensive minimum [a]_ + + +.. [a] i.e.: float ID, profile number and direction and all parameter values, including error estimates +.. [b] The list of radiometry parameters is available with :class:`utils.list_radiometry_parameters` +.. [c] Particle backscattering at 700 nanometers +.. [d] Concentration of coloured dissolved organic matter in seawater +.. [e] The complete list of BGC parameters is available with :class:`utils.list_bgc_s_parameters`. + + +.. tabs:: + + .. tab:: |mode_research| Example with |ds_phy| : core+deep missions + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='research'): + ds = argopy.DataFetcher(src='gdac').profile(6902746, 12).to_xarray() + print(ds.data_vars) + + + .. tab:: |mode_research| Example with |ds_bgc| : BGC mission + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='research'): + ds = argopy.DataFetcher(src='erddap', ds='bgc').profile(5903248, 34).to_xarray() + print(ds.data_vars) + + +|mode_expert| Expert mode +------------------------- + +No pre or post processing is performed, this user mode returns all the Argo data as they are in data source. + + +.. tabs:: + + .. tab:: |mode_expert| Example with |ds_phy| : core+deep missions + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='expert'): + ds = argopy.DataFetcher(src='gdac').profile(6902746, 12).to_xarray() + print(ds.data_vars) + + + .. tab:: |mode_expert| Example with |ds_bgc| : BGC mission + + .. ipython:: python + :okwarning: + + import argopy + with argopy.set_options(mode='expert'): + ds = argopy.DataFetcher(src='gdac', ds='bgc').profile(5903248, 34).to_xarray() + print(ds.data_vars) -.. admonition:: About the **bgc** dataset - The table of **argopy** user mode data processing details for **biogeochemical** parameters is being defined (:issue:`280`) and will be implemented in a near future release. How to select a user mode ? --------------------------- @@ -127,46 +269,3 @@ can use one of the following 3 methods: :okwarning: ArgoDataFetcher(mode='research').profile(6902746, 34) - -Example of differences in user modes ------------------------------------- - -To highlight differences in data returned for each user modes, let’s compare data fetched for one profile. - -You will note that the **standard** and **research** modes have fewer variables to let you -focus on your analysis. For **expert**, all Argo variables for you to -work with are here. - - -.. tabs:: - - .. tab:: In **expert** mode: - - .. ipython:: python - :okwarning: - - with argopy.set_options(mode='expert'): - ds = ArgoDataFetcher(src='gdac').profile(6902755, 12).to_xarray() - print(ds.data_vars) - - .. tab:: In **standard** mode: - - .. ipython:: python - :okwarning: - - with argopy.set_options(mode='standard'): - ds = ArgoDataFetcher(src='gdac').profile(6902755, 12).to_xarray() - print(ds.data_vars) - - .. tab:: In **research** mode: - - .. ipython:: python - :okwarning: - - with argopy.set_options(mode='research'): - ds = ArgoDataFetcher(src='gdac').profile(6902755, 12).to_xarray() - print(ds.data_vars) - -.. note:: - - A note for **expert** users looking at **standard** and **research** mode results: they are no ``PARAM_ADJUSTED`` variables because they've been renamed ``PARAM`` wherever the ``DATA_MODE`` variable was ``ADJUSTED`` or ``DELAYED``. \ No newline at end of file diff --git a/docs/whats-new.rst b/docs/whats-new.rst index eb70587c..09e8cfd1 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -8,6 +8,89 @@ What's New |pypi dwn| |conda dwn| +Coming up next in v1.0 +---------------------- + +.. versionadded:: v1.0 + + This new release is a major ! + + It comes with improved support for the BGC-Argo dataset but also introduces breaking changes (see below). + + +Features and front-end API +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. currentmodule:: xarray + +- **Improved support for BGC** + - **argopy** now support `standard` and `research` user modes for the `erddap` data source with the `bgc` dataset. These new user modes follows the last available ADMT recommendations to bring users a finely tuned set of BGC parameters. + + + + - New BGC method :class:`Dataset.argo.canyon_med` to make CANYON-MED predictions of Water-Column Nutrient Concentrations and Carbonate System Variables in the Mediterranean Sea. This method can be used to predict PO4, NO3, DIC, SiOH4, AT and pHT. (:pr:`364`) by `G. Maze `_. + + .. currentmodule:: argopy + + .. code-block:: python + + from argopy import DataFetcher + ArgoSet = DataFetcher(ds='bgc', mode='standard', params='DOXY', measured='DOXY').float(1902605) + ds = ArgoSet.to_xarray() + + ds.argo.canyon_med.predict() + ds.argo.canyon_med.predict('PO4') + + - the :class:`argopy.ArgoIndex` now support the *auxiliary* index file. Simply use the keyword `aux`. (:pr:`356`) by `G. Maze `_. + + .. code-block:: python + + from argopy import ArgoIndex + ArgoIndex(index_file="aux").load() + +.. currentmodule:: xarray + +- A xarray argo accessor extensions mechanism with a new decorator :class:`argopy.extensions.register_argo_accessor`. It allows to register a class as a property to the :class:`Dataset.argo` accessor. (:pr:`364`) by `G. Maze `_. + +.. code-block:: python + + @register_argo_accessor('floats') + class WorkWithWMO(ArgoAccessorExtension): + """Example of a new Argo dataset feature""" + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self._uid = argopy.utils.to_list(np.unique(self._obj["PLATFORM_NUMBER"].values)) + + @property + def wmo(self): + return self._uid + + @property + def N(self): + return len(self.wmo) + +This makes syntax like this possible: + +.. code-block:: python + + ds.argo.floats.N + ds.argo.floats.wmo + +.. currentmodule:: argopy + +Breaking changes +^^^^^^^^^^^^^^^^ + +.. currentmodule:: xarray + +- In the :class:`Dataset.argo` accessor (:pr:`356`) by `G. Maze `_: + - the :meth:`Dataset.argo.filter_data_mode` has been redesigned to actually implement a real filter of data points on data mode values, i.e. to keep points with specific data mode values, + - new :meth:`Dataset.argo.transform_data_mode` method must now be used to merge adjusted and non-adjusted measurements according to their data mode and reduce the number of variables in the dataset, which is what was doing in previous versions the poorly named `filter_data_mode`. + +.. currentmodule:: argopy + + v0.1.17 (20 Sep. 2024) ---------------------- @@ -40,7 +123,6 @@ Energy Considering `energy used by CI tests `_, this release has required about 75.4kJ of energy to produce 6h11s39 of computation time. - v0.1.16 (27 Aug. 2024) ---------------------- @@ -583,7 +665,7 @@ The new profile dashboard can also be accessed with: import argopy argopy.dashboard(5904797, 11) -We added the Ocean-OPS (former JCOMMOPS) dashboard for all floats and the Argo-BGC dashboard for BGC floats: +We added the Ocean-OPS (former JCOMMOPS) dashboard for all floats and the BGC-Argo dashboard for BGC floats: .. code-block:: python